98404f31177c51a872a5422c016d1e2b55a9eed5
[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-06-13 15:24+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:2962 ../src/guestfs.pod:2966 ../src/guestfs.pod:2970
927 #: ../src/guestfs.pod:2974 ../src/guestfs-actions.pod:15
928 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
929 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
930 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1597
931 #: ../src/guestfs-actions.pod:1601 ../src/guestfs-actions.pod:1605
932 #: ../src/guestfs-actions.pod:1609 ../src/guestfs-actions.pod:1617
933 #: ../src/guestfs-actions.pod:1621 ../src/guestfs-actions.pod:1625
934 #: ../src/guestfs-actions.pod:1635 ../src/guestfs-actions.pod:1639
935 #: ../src/guestfs-actions.pod:1643 ../src/guestfs-actions.pod:1781
936 #: ../src/guestfs-actions.pod:1785 ../src/guestfs-actions.pod:1790
937 #: ../src/guestfs-actions.pod:1795 ../src/guestfs-actions.pod:1856
938 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1865
939 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
940 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
941 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
942 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
943 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
944 #: ../fish/guestfish-actions.pod:1069 ../fish/guestfish-actions.pod:1073
945 #: ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081
946 #: ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1093
947 #: ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1107
948 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1115
949 #: ../fish/guestfish-actions.pod:1205 ../fish/guestfish-actions.pod:1209
950 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
951 #: ../fish/guestfish-actions.pod:1261 ../fish/guestfish-actions.pod:1265
952 #: ../fish/guestfish-actions.pod:1270 ../tools/virt-edit.pl:351
953 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
954 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
955 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
956 #: ../tools/virt-win-reg.pl:548
957 msgid "*"
958 msgstr ""
959
960 # type: textblock
961 #. type: textblock
962 #: ../src/guestfs.pod:390
963 msgid ""
964 "The kernel version that the command runs under will be different from what "
965 "it expects."
966 msgstr ""
967
968 # type: textblock
969 #. type: textblock
970 #: ../src/guestfs.pod:395
971 msgid ""
972 "If the command needs to communicate with daemons, then most likely they "
973 "won't be running."
974 msgstr ""
975
976 # type: textblock
977 #. type: textblock
978 #: ../src/guestfs.pod:400
979 msgid "The command will be running in limited memory."
980 msgstr ""
981
982 # type: textblock
983 #. type: textblock
984 #: ../src/guestfs.pod:404
985 msgid ""
986 "The network may not be available unless you enable it (see L</"
987 "guestfs_set_network>)."
988 msgstr ""
989
990 # type: textblock
991 #. type: textblock
992 #: ../src/guestfs.pod:409
993 msgid "Only supports Linux guests (not Windows, BSD, etc)."
994 msgstr ""
995
996 # type: textblock
997 #. type: textblock
998 #: ../src/guestfs.pod:413
999 msgid ""
1000 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
1001 msgstr ""
1002
1003 # type: textblock
1004 #. type: textblock
1005 #: ../src/guestfs.pod:418
1006 msgid ""
1007 "For SELinux guests, you may need to enable SELinux and load policy first.  "
1008 "See L</SELINUX> in this manpage."
1009 msgstr ""
1010
1011 # type: textblock
1012 #. type: textblock
1013 #: ../src/guestfs.pod:423
1014 msgid ""
1015 "I<Security:> It is not safe to run commands from untrusted, possibly "
1016 "malicious guests.  These commands may attempt to exploit your program by "
1017 "sending unexpected output.  They could also try to exploit the Linux kernel "
1018 "or qemu provided by the libguestfs appliance.  They could use the network "
1019 "provided by the libguestfs appliance to bypass ordinary network partitions "
1020 "and firewalls.  They could use the elevated privileges or different SELinux "
1021 "context of your program to their advantage."
1022 msgstr ""
1023
1024 # type: textblock
1025 #. type: textblock
1026 #: ../src/guestfs.pod:432
1027 msgid ""
1028 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
1029 "(a script which runs when the guest next boots normally), and to have this "
1030 "script run the commands you want in the normal context of the running guest, "
1031 "network security and so on.  For information about other security issues, "
1032 "see L</SECURITY>."
1033 msgstr ""
1034
1035 # type: textblock
1036 #. type: textblock
1037 #: ../src/guestfs.pod:440
1038 msgid ""
1039 "The two main API calls to run commands are L</guestfs_command> and L</"
1040 "guestfs_sh> (there are also variations)."
1041 msgstr ""
1042
1043 # type: textblock
1044 #. type: textblock
1045 #: ../src/guestfs.pod:443
1046 msgid ""
1047 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
1048 "shell globs, redirections, etc will work."
1049 msgstr ""
1050
1051 # type: =head2
1052 #. type: =head2
1053 #: ../src/guestfs.pod:446
1054 msgid "CONFIGURATION FILES"
1055 msgstr ""
1056
1057 # type: textblock
1058 #. type: textblock
1059 #: ../src/guestfs.pod:448
1060 msgid ""
1061 "To read and write configuration files in Linux guest filesystems, we "
1062 "strongly recommend using Augeas.  For example, Augeas understands how to "
1063 "read and write, say, a Linux shadow password file or X.org configuration "
1064 "file, and so avoids you having to write that code."
1065 msgstr ""
1066
1067 # type: textblock
1068 #. type: textblock
1069 #: ../src/guestfs.pod:453
1070 msgid ""
1071 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1072 "document Augeas itself here because there is excellent documentation on the "
1073 "L<http://augeas.net/> website."
1074 msgstr ""
1075
1076 # type: textblock
1077 #. type: textblock
1078 #: ../src/guestfs.pod:457
1079 msgid ""
1080 "If you don't want to use Augeas (you fool!) then try calling L</"
1081 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1082 "over."
1083 msgstr ""
1084
1085 # type: =head2
1086 #. type: =head2
1087 #: ../src/guestfs.pod:461
1088 msgid "SELINUX"
1089 msgstr ""
1090
1091 # type: textblock
1092 #. type: textblock
1093 #: ../src/guestfs.pod:463
1094 msgid ""
1095 "We support SELinux guests.  To ensure that labeling happens correctly in "
1096 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1097 msgstr ""
1098
1099 # type: =item
1100 #. type: =item
1101 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1102 #: ../src/guestfs.pod:2425
1103 msgid "1."
1104 msgstr ""
1105
1106 # type: textblock
1107 #. type: textblock
1108 #: ../src/guestfs.pod:471
1109 msgid "Before launching, do:"
1110 msgstr ""
1111
1112 # type: verbatim
1113 #. type: verbatim
1114 #: ../src/guestfs.pod:473
1115 #, no-wrap
1116 msgid ""
1117 " guestfs_set_selinux (g, 1);\n"
1118 "\n"
1119 msgstr ""
1120
1121 # type: =item
1122 #. type: =item
1123 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1124 #: ../src/guestfs.pod:2450
1125 msgid "2."
1126 msgstr ""
1127
1128 # type: textblock
1129 #. type: textblock
1130 #: ../src/guestfs.pod:477
1131 msgid ""
1132 "After mounting the guest's filesystem(s), load the policy.  This is best "
1133 "done by running the L<load_policy(8)> command in the guest itself:"
1134 msgstr ""
1135
1136 # type: verbatim
1137 #. type: verbatim
1138 #: ../src/guestfs.pod:481
1139 #, no-wrap
1140 msgid ""
1141 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1142 "\n"
1143 msgstr ""
1144
1145 # type: textblock
1146 #. type: textblock
1147 #: ../src/guestfs.pod:483
1148 msgid ""
1149 "(Older versions of C<load_policy> require you to specify the name of the "
1150 "policy file)."
1151 msgstr ""
1152
1153 # type: =item
1154 #. type: =item
1155 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1156 msgid "3."
1157 msgstr ""
1158
1159 # type: textblock
1160 #. type: textblock
1161 #: ../src/guestfs.pod:488
1162 msgid ""
1163 "Optionally, set the security context for the API.  The correct security "
1164 "context to use can only be known by inspecting the guest.  As an example:"
1165 msgstr ""
1166
1167 # type: verbatim
1168 #. type: verbatim
1169 #: ../src/guestfs.pod:492
1170 #, no-wrap
1171 msgid ""
1172 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1173 "\n"
1174 msgstr ""
1175
1176 # type: textblock
1177 #. type: textblock
1178 #: ../src/guestfs.pod:496
1179 msgid "This will work for running commands and editing existing files."
1180 msgstr ""
1181
1182 # type: textblock
1183 #. type: textblock
1184 #: ../src/guestfs.pod:498
1185 msgid ""
1186 "When new files are created, you may need to label them explicitly, for "
1187 "example by running the external command C<restorecon pathname>."
1188 msgstr ""
1189
1190 # type: =head2
1191 #. type: =head2
1192 #: ../src/guestfs.pod:502
1193 msgid "UMASK"
1194 msgstr ""
1195
1196 # type: textblock
1197 #. type: textblock
1198 #: ../src/guestfs.pod:504
1199 msgid ""
1200 "Certain calls are affected by the current file mode creation mask (the "
1201 "\"umask\").  In particular ones which create files or directories, such as "
1202 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1203 "either the default mode that the file is created with or modifies the mode "
1204 "that you supply."
1205 msgstr ""
1206
1207 # type: textblock
1208 #. type: textblock
1209 #: ../src/guestfs.pod:510
1210 msgid ""
1211 "The default umask is C<022>, so files are created with modes such as C<0644> "
1212 "and directories with C<0755>."
1213 msgstr ""
1214
1215 # type: textblock
1216 #. type: textblock
1217 #: ../src/guestfs.pod:513
1218 msgid ""
1219 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1220 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1221 "guestfs_chmod> after creating each file or directory."
1222 msgstr ""
1223
1224 # type: textblock
1225 #. type: textblock
1226 #: ../src/guestfs.pod:517
1227 msgid "For more information about umask, see L<umask(2)>."
1228 msgstr ""
1229
1230 # type: =head1
1231 #. type: =head1
1232 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1233 msgid "ENCRYPTED DISKS"
1234 msgstr ""
1235
1236 # type: textblock
1237 #. type: textblock
1238 #: ../src/guestfs.pod:521
1239 msgid ""
1240 "Libguestfs allows you to access Linux guests which have been encrypted using "
1241 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1242 "standard.  This includes nearly all whole disk encryption systems used by "
1243 "modern Linux guests."
1244 msgstr ""
1245
1246 # type: textblock
1247 #. type: textblock
1248 #: ../src/guestfs.pod:527
1249 msgid ""
1250 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1251 "returns the string C<crypto_LUKS>)."
1252 msgstr ""
1253
1254 # type: textblock
1255 #. type: textblock
1256 #: ../src/guestfs.pod:530
1257 msgid ""
1258 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1259 "will require the passphrase!"
1260 msgstr ""
1261
1262 # type: textblock
1263 #. type: textblock
1264 #: ../src/guestfs.pod:533
1265 msgid ""
1266 "Opening a LUKS device creates a new device mapper device called C</dev/"
1267 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1268 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1269 "from and encrypted to the underlying block device respectively."
1270 msgstr ""
1271
1272 # type: textblock
1273 #. type: textblock
1274 #: ../src/guestfs.pod:539
1275 msgid ""
1276 "LVM volume groups on the device can be made visible by calling L</"
1277 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1278 "(s) can now be mounted in the usual way."
1279 msgstr ""
1280
1281 # type: textblock
1282 #. type: textblock
1283 #: ../src/guestfs.pod:543
1284 msgid ""
1285 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1286 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1287 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1288 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1289 "underlying encrypted block device)."
1290 msgstr ""
1291
1292 # type: =head2
1293 #. type: =head2
1294 #: ../src/guestfs.pod:550
1295 msgid "INSPECTION"
1296 msgstr ""
1297
1298 #. type: textblock
1299 #: ../src/guestfs.pod:552
1300 msgid ""
1301 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1302 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1303 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1304 "version 1.5.3 the most frequently used part of this library has been "
1305 "rewritten in C and moved into the core code)."
1306 msgstr ""
1307
1308 # type: textblock
1309 #. type: textblock
1310 #: ../src/guestfs.pod:559
1311 msgid ""
1312 "Add all disks belonging to the unknown virtual machine and call L</"
1313 "guestfs_launch> in the usual way."
1314 msgstr ""
1315
1316 # type: textblock
1317 #. type: textblock
1318 #: ../src/guestfs.pod:562
1319 msgid ""
1320 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1321 "and certain heuristics, and returns a list of operating systems that were "
1322 "found.  An empty list means none were found.  A single element is the root "
1323 "filesystem of the operating system.  For dual- or multi-boot guests, "
1324 "multiple roots can be returned, each one corresponding to a separate "
1325 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1326 "world of virtualization, but since this scenario can happen, we have built "
1327 "libguestfs to deal with it.)"
1328 msgstr ""
1329
1330 # type: textblock
1331 #. type: textblock
1332 #: ../src/guestfs.pod:571
1333 msgid ""
1334 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1335 "to get additional details about that operating system.  For example, call L</"
1336 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1337 "Windows and Linux-based operating systems respectively."
1338 msgstr ""
1339
1340 # type: textblock
1341 #. type: textblock
1342 #: ../src/guestfs.pod:577
1343 msgid ""
1344 "Un*x-like and Linux-based operating systems usually consist of several "
1345 "filesystems which are mounted at boot time (for example, a separate boot "
1346 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1347 "filesystems correspond to mount points.  Call "
1348 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1349 "hash table like this example:"
1350 msgstr ""
1351
1352 # type: verbatim
1353 #. type: verbatim
1354 #: ../src/guestfs.pod:584
1355 #, no-wrap
1356 msgid ""
1357 " /boot => /dev/sda1\n"
1358 " /     => /dev/vg_guest/lv_root\n"
1359 " /usr  => /dev/vg_guest/lv_usr\n"
1360 "\n"
1361 msgstr ""
1362
1363 # type: textblock
1364 #. type: textblock
1365 #: ../src/guestfs.pod:588
1366 msgid ""
1367 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1368 "filesystems as suggested."
1369 msgstr ""
1370
1371 # type: textblock
1372 #. type: textblock
1373 #: ../src/guestfs.pod:591
1374 msgid ""
1375 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1376 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1377 msgstr ""
1378
1379 # type: textblock
1380 #. type: textblock
1381 #: ../src/guestfs.pod:595
1382 msgid ""
1383 "Inspection currently only works for some common operating systems.  "
1384 "Contributors are welcome to send patches for other operating systems that we "
1385 "currently cannot detect."
1386 msgstr ""
1387
1388 # type: textblock
1389 #. type: textblock
1390 #: ../src/guestfs.pod:599
1391 msgid ""
1392 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1393 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1394 "encrypted devices."
1395 msgstr ""
1396
1397 # type: textblock
1398 #. type: textblock
1399 #: ../src/guestfs.pod:603
1400 msgid ""
1401 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1402 "inspection and caches the results in the guest handle.  Subsequent calls to "
1403 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1404 "read the disks.  If you change the content of the guest disks, you can redo "
1405 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1406 "guestfs_inspect_list_applications> works a little differently from the other "
1407 "calls and does read the disks.  See documentation for that function for "
1408 "details)."
1409 msgstr ""
1410
1411 #. type: =head3
1412 #: ../src/guestfs.pod:612
1413 msgid "INSPECTING INSTALL DISKS"
1414 msgstr ""
1415
1416 #. type: textblock
1417 #: ../src/guestfs.pod:614
1418 msgid ""
1419 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1420 "CDs and more."
1421 msgstr ""
1422
1423 #. type: textblock
1424 #: ../src/guestfs.pod:617
1425 msgid ""
1426 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1427 "system, which currently can be C<installed> (a regular operating system) or "
1428 "C<installer> (some sort of install disk)."
1429 msgstr ""
1430
1431 #. type: textblock
1432 #: ../src/guestfs.pod:621
1433 msgid ""
1434 "Further information is available about the operating system that can be "
1435 "installed using the regular inspection APIs like L</"
1436 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1437 msgstr ""
1438
1439 #. type: textblock
1440 #: ../src/guestfs.pod:626
1441 msgid ""
1442 "Some additional information specific to installer disks is also available "
1443 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1444 "guestfs_inspect_is_multipart> calls."
1445 msgstr ""
1446
1447 # type: =head2
1448 #. type: =head2
1449 #: ../src/guestfs.pod:631
1450 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1451 msgstr ""
1452
1453 # type: textblock
1454 #. type: textblock
1455 #: ../src/guestfs.pod:633
1456 msgid ""
1457 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1458 "ntfs-3g.org/> driver."
1459 msgstr ""
1460
1461 # type: =head3
1462 #. type: =head3
1463 #: ../src/guestfs.pod:636
1464 msgid "DRIVE LETTERS AND PATHS"
1465 msgstr ""
1466
1467 # type: textblock
1468 #. type: textblock
1469 #: ../src/guestfs.pod:638
1470 msgid ""
1471 "DOS and Windows still use drive letters, and the filesystems are always "
1472 "treated as case insensitive by Windows itself, and therefore you might find "
1473 "a Windows configuration file referring to a path like C<c:\\windows"
1474 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1475 "might be referred to as C</WINDOWS/System32>."
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:644
1480 msgid ""
1481 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1482 "L</guestfs_inspect_get_drive_mappings>)"
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:647
1487 msgid ""
1488 "Dealing with separator characters (backslash vs forward slash) is outside "
1489 "the scope of libguestfs, but usually a simple character replacement will "
1490 "work."
1491 msgstr ""
1492
1493 #. type: textblock
1494 #: ../src/guestfs.pod:651
1495 msgid ""
1496 "To resolve the case insensitivity of paths, call L</"
1497 "guestfs_case_sensitive_path>."
1498 msgstr ""
1499
1500 # type: =head3
1501 #. type: =head3
1502 #: ../src/guestfs.pod:654
1503 msgid "ACCESSING THE WINDOWS REGISTRY"
1504 msgstr ""
1505
1506 # type: textblock
1507 #. type: textblock
1508 #: ../src/guestfs.pod:656
1509 msgid ""
1510 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1511 "files, through the library C<hivex> which is part of the libguestfs project "
1512 "although ships as a separate tarball.  You have to locate and download the "
1513 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1514 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1515 "reg(1)> for more help on this issue."
1516 msgstr ""
1517
1518 # type: =head3
1519 #. type: =head3
1520 #: ../src/guestfs.pod:664
1521 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1522 msgstr ""
1523
1524 # type: textblock
1525 #. type: textblock
1526 #: ../src/guestfs.pod:666
1527 msgid ""
1528 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1529 "provide something which looks like a Linux symlink.  The way it tries to do "
1530 "the rewriting is described here:"
1531 msgstr ""
1532
1533 # type: textblock
1534 #. type: textblock
1535 #: ../src/guestfs.pod:670
1536 msgid ""
1537 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1538 "symbolic-links/>"
1539 msgstr ""
1540
1541 # type: textblock
1542 #. type: textblock
1543 #: ../src/guestfs.pod:672
1544 msgid ""
1545 "The essential problem is that ntfs-3g simply does not have enough "
1546 "information to do a correct job.  NTFS links can contain drive letters and "
1547 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1548 "It is almost certainly the case that libguestfs callers should ignore what "
1549 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1550 msgstr ""
1551
1552 # type: textblock
1553 #. type: textblock
1554 #: ../src/guestfs.pod:679
1555 msgid ""
1556 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1557 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1558 "attribute, and read the raw reparse data from that (you can find the format "
1559 "documented in various places around the web)."
1560 msgstr ""
1561
1562 # type: =head3
1563 #. type: =head3
1564 #: ../src/guestfs.pod:684
1565 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1566 msgstr ""
1567
1568 # type: textblock
1569 #. type: textblock
1570 #: ../src/guestfs.pod:686
1571 msgid ""
1572 "There are other useful extended attributes that can be read from ntfs-3g "
1573 "filesystems (using L</guestfs_getxattr>).  See:"
1574 msgstr ""
1575
1576 # type: textblock
1577 #. type: textblock
1578 #: ../src/guestfs.pod:689
1579 msgid ""
1580 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1581 msgstr ""
1582
1583 # type: =head2
1584 #. type: =head2
1585 #: ../src/guestfs.pod:691
1586 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1587 msgstr ""
1588
1589 # type: textblock
1590 #. type: textblock
1591 #: ../src/guestfs.pod:693
1592 msgid ""
1593 "Although we don't want to discourage you from using the C API, we will "
1594 "mention here that the same API is also available in other languages."
1595 msgstr ""
1596
1597 #. type: textblock
1598 #: ../src/guestfs.pod:696
1599 msgid ""
1600 "The API is broadly identical in all supported languages.  This means that "
1601 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1602 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1603 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1604 "each language."
1605 msgstr ""
1606
1607 # type: textblock
1608 #. type: textblock
1609 #: ../src/guestfs.pod:702
1610 msgid ""
1611 "Error messages are automatically transformed into exceptions if the language "
1612 "supports it."
1613 msgstr ""
1614
1615 # type: textblock
1616 #. type: textblock
1617 #: ../src/guestfs.pod:705
1618 msgid ""
1619 "We don't try to \"object orientify\" parts of the API in OO languages, "
1620 "although contributors are welcome to write higher level APIs above what we "
1621 "provide in their favourite languages if they wish."
1622 msgstr ""
1623
1624 # type: =item
1625 #. type: =item
1626 #: ../src/guestfs.pod:711
1627 msgid "B<C++>"
1628 msgstr ""
1629
1630 # type: textblock
1631 #. type: textblock
1632 #: ../src/guestfs.pod:713
1633 msgid ""
1634 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1635 "identical to the C API.  C++ classes and exceptions are not used."
1636 msgstr ""
1637
1638 # type: =item
1639 #. type: =item
1640 #: ../src/guestfs.pod:717
1641 msgid "B<C#>"
1642 msgstr ""
1643
1644 # type: textblock
1645 #. type: textblock
1646 #: ../src/guestfs.pod:719
1647 msgid ""
1648 "The C# bindings are highly experimental.  Please read the warnings at the "
1649 "top of C<csharp/Libguestfs.cs>."
1650 msgstr ""
1651
1652 # type: =item
1653 #. type: =item
1654 #: ../src/guestfs.pod:722
1655 msgid "B<Haskell>"
1656 msgstr ""
1657
1658 # type: textblock
1659 #. type: textblock
1660 #: ../src/guestfs.pod:724
1661 msgid ""
1662 "This is the only language binding that is working but incomplete.  Only "
1663 "calls which return simple integers have been bound in Haskell, and we are "
1664 "looking for help to complete this binding."
1665 msgstr ""
1666
1667 # type: =item
1668 #. type: =item
1669 #: ../src/guestfs.pod:728
1670 msgid "B<Java>"
1671 msgstr ""
1672
1673 # type: textblock
1674 #. type: textblock
1675 #: ../src/guestfs.pod:730
1676 msgid ""
1677 "Full documentation is contained in the Javadoc which is distributed with "
1678 "libguestfs."
1679 msgstr ""
1680
1681 # type: =item
1682 #. type: =item
1683 #: ../src/guestfs.pod:733
1684 msgid "B<OCaml>"
1685 msgstr ""
1686
1687 #. type: textblock
1688 #: ../src/guestfs.pod:735
1689 msgid "See L<guestfs-ocaml(3)>."
1690 msgstr ""
1691
1692 # type: =item
1693 #. type: =item
1694 #: ../src/guestfs.pod:737
1695 msgid "B<Perl>"
1696 msgstr ""
1697
1698 #. type: textblock
1699 #: ../src/guestfs.pod:739
1700 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1701 msgstr ""
1702
1703 # type: =item
1704 #. type: =item
1705 #: ../src/guestfs.pod:741
1706 msgid "B<PHP>"
1707 msgstr ""
1708
1709 # type: textblock
1710 #. type: textblock
1711 #: ../src/guestfs.pod:743
1712 msgid ""
1713 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1714 "the php-libguestfs package for your distribution."
1715 msgstr ""
1716
1717 # type: textblock
1718 #. type: textblock
1719 #: ../src/guestfs.pod:746
1720 msgid "The PHP binding only works correctly on 64 bit machines."
1721 msgstr ""
1722
1723 # type: =item
1724 #. type: =item
1725 #: ../src/guestfs.pod:748
1726 msgid "B<Python>"
1727 msgstr ""
1728
1729 #. type: textblock
1730 #: ../src/guestfs.pod:750
1731 msgid "See L<guestfs-python(3)>."
1732 msgstr ""
1733
1734 # type: =item
1735 #. type: =item
1736 #: ../src/guestfs.pod:752
1737 msgid "B<Ruby>"
1738 msgstr ""
1739
1740 #. type: textblock
1741 #: ../src/guestfs.pod:754
1742 msgid "See L<guestfs-ruby(3)>."
1743 msgstr ""
1744
1745 # type: =item
1746 #. type: =item
1747 #: ../src/guestfs.pod:756
1748 msgid "B<shell scripts>"
1749 msgstr ""
1750
1751 #. type: textblock
1752 #: ../src/guestfs.pod:758
1753 msgid "See L<guestfish(1)>."
1754 msgstr ""
1755
1756 # type: =head2
1757 #. type: =head2
1758 #: ../src/guestfs.pod:762
1759 msgid "LIBGUESTFS GOTCHAS"
1760 msgstr ""
1761
1762 # type: textblock
1763 #. type: textblock
1764 #: ../src/guestfs.pod:764
1765 msgid ""
1766 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1767 "system [...] that works in the way it is documented but is counterintuitive "
1768 "and almost invites mistakes.\""
1769 msgstr ""
1770
1771 # type: textblock
1772 #. type: textblock
1773 #: ../src/guestfs.pod:768
1774 msgid ""
1775 "Since we developed libguestfs and the associated tools, there are several "
1776 "things we would have designed differently, but are now stuck with for "
1777 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1778 "release, you can expect these to change.  Beware of them."
1779 msgstr ""
1780
1781 # type: =item
1782 #. type: =item
1783 #: ../src/guestfs.pod:776
1784 msgid "Autosync / forgetting to sync."
1785 msgstr ""
1786
1787 #. type: textblock
1788 #: ../src/guestfs.pod:778
1789 msgid ""
1790 "I<Update:> Autosync is enabled by default for all API users starting from "
1791 "libguestfs 1.5.24.  This section only applies to older versions."
1792 msgstr ""
1793
1794 # type: textblock
1795 #. type: textblock
1796 #: ../src/guestfs.pod:781
1797 msgid ""
1798 "When modifying a filesystem from C or another language, you B<must> unmount "
1799 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1800 "libguestfs handle.  You can also call:"
1801 msgstr ""
1802
1803 # type: verbatim
1804 #. type: verbatim
1805 #: ../src/guestfs.pod:785
1806 #, no-wrap
1807 msgid ""
1808 " guestfs_set_autosync (g, 1);\n"
1809 "\n"
1810 msgstr ""
1811
1812 # type: textblock
1813 #. type: textblock
1814 #: ../src/guestfs.pod:787
1815 msgid ""
1816 "to have the unmount/sync done automatically for you when the handle 'g' is "
1817 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1818 msgstr ""
1819
1820 # type: textblock
1821 #. type: textblock
1822 #: ../src/guestfs.pod:791
1823 msgid ""
1824 "If you forget to do this, then it is entirely possible that your changes "
1825 "won't be written out, or will be partially written, or (very rarely) that "
1826 "you'll get disk corruption."
1827 msgstr ""
1828
1829 # type: textblock
1830 #. type: textblock
1831 #: ../src/guestfs.pod:795
1832 msgid ""
1833 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1834 "guestfish scripts that forget to sync will work just fine, which can make "
1835 "this very puzzling if you are trying to debug a problem."
1836 msgstr ""
1837
1838 # type: =item
1839 #. type: =item
1840 #: ../src/guestfs.pod:799
1841 msgid "Mount option C<-o sync> should not be the default."
1842 msgstr ""
1843
1844 # type: textblock
1845 #. type: textblock
1846 #: ../src/guestfs.pod:801
1847 msgid ""
1848 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1849 "However C<-o sync> does not add any reliability benefit, but does have a "
1850 "very large performance impact."
1851 msgstr ""
1852
1853 # type: textblock
1854 #. type: textblock
1855 #: ../src/guestfs.pod:805
1856 msgid ""
1857 "The work around is to use L</guestfs_mount_options> and set the mount "
1858 "options that you actually want to use."
1859 msgstr ""
1860
1861 # type: =item
1862 #. type: =item
1863 #: ../src/guestfs.pod:808
1864 msgid "Read-only should be the default."
1865 msgstr ""
1866
1867 # type: textblock
1868 #. type: textblock
1869 #: ../src/guestfs.pod:810
1870 msgid ""
1871 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1872 "specify I<--rw> if you want to make changes to the image."
1873 msgstr ""
1874
1875 # type: textblock
1876 #. type: textblock
1877 #: ../src/guestfs.pod:813
1878 msgid "This would reduce the potential to corrupt live VM images."
1879 msgstr ""
1880
1881 # type: textblock
1882 #. type: textblock
1883 #: ../src/guestfs.pod:815
1884 msgid ""
1885 "Note that many filesystems change the disk when you just mount and unmount, "
1886 "even if you didn't perform any writes.  You need to use L</"
1887 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1888 msgstr ""
1889
1890 # type: =item
1891 #. type: =item
1892 #: ../src/guestfs.pod:819
1893 msgid "guestfish command line is hard to use."
1894 msgstr ""
1895
1896 # type: textblock
1897 #. type: textblock
1898 #: ../src/guestfs.pod:821
1899 msgid ""
1900 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1901 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1902 "exist, so it fails.  In earlier versions of guestfish the error message was "
1903 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1904 "we should have used C<guestfish -c command> to run commands."
1905 msgstr ""
1906
1907 # type: =item
1908 #. type: =item
1909 #: ../src/guestfs.pod:828
1910 msgid "guestfish megabyte modifiers don't work right on all commands"
1911 msgstr ""
1912
1913 # type: textblock
1914 #. type: textblock
1915 #: ../src/guestfs.pod:830
1916 msgid ""
1917 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1918 "other modifiers).  What guestfish actually does is to multiply the number "
1919 "part by the modifier part and pass the result to the C API.  However this "
1920 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1921 "expecting some other unit (eg. megabytes)."
1922 msgstr ""
1923
1924 # type: textblock
1925 #. type: textblock
1926 #: ../src/guestfs.pod:837
1927 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1928 msgstr ""
1929
1930 # type: verbatim
1931 #. type: verbatim
1932 #: ../src/guestfs.pod:839
1933 #, no-wrap
1934 msgid ""
1935 " lvcreate LV VG 100M\n"
1936 "\n"
1937 msgstr ""
1938
1939 # type: textblock
1940 #. type: textblock
1941 #: ../src/guestfs.pod:841
1942 msgid ""
1943 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1944 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1945 "megabytes * megabytes) logical volume.  The error message you get from this "
1946 "is also a little obscure."
1947 msgstr ""
1948
1949 # type: textblock
1950 #. type: textblock
1951 #: ../src/guestfs.pod:846
1952 msgid ""
1953 "This could be fixed in the generator by specially marking parameters and "
1954 "return values which take bytes or other units."
1955 msgstr ""
1956
1957 # type: =item
1958 #. type: =item
1959 #: ../src/guestfs.pod:849
1960 msgid "Ambiguity between devices and paths"
1961 msgstr ""
1962
1963 # type: textblock
1964 #. type: textblock
1965 #: ../src/guestfs.pod:851
1966 msgid ""
1967 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1968 "sdb2>) and a similar pathname.  A file might just happen to be called "
1969 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1970 msgstr ""
1971
1972 # type: textblock
1973 #. type: textblock
1974 #: ../src/guestfs.pod:856
1975 msgid ""
1976 "In the current API we usually resolve this ambiguity by having two separate "
1977 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1978 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1979 "detecting if the path supplied begins with C</dev/>."
1980 msgstr ""
1981
1982 # type: textblock
1983 #. type: textblock
1984 #: ../src/guestfs.pod:862
1985 msgid ""
1986 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1987 "make paths/devices into structured names.  One way to do this would be to "
1988 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1989 "aspect of grub.  Another way would be to use a structured type, equivalent "
1990 "to this OCaml type:"
1991 msgstr ""
1992
1993 # type: verbatim
1994 #. type: verbatim
1995 #: ../src/guestfs.pod:868
1996 #, no-wrap
1997 msgid ""
1998 " type path = Path of string | Device of int | Partition of int * int\n"
1999 "\n"
2000 msgstr ""
2001
2002 # type: textblock
2003 #. type: textblock
2004 #: ../src/guestfs.pod:870
2005 msgid "which would allow you to pass arguments like:"
2006 msgstr ""
2007
2008 # type: verbatim
2009 #. type: verbatim
2010 #: ../src/guestfs.pod:872
2011 #, no-wrap
2012 msgid ""
2013 " Path \"/foo/bar\"\n"
2014 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
2015 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
2016 " Path \"/dev/sdb2\"    (* not a device *)\n"
2017 "\n"
2018 msgstr ""
2019
2020 # type: textblock
2021 #. type: textblock
2022 #: ../src/guestfs.pod:877
2023 msgid ""
2024 "As you can see there are still problems to resolve even with this "
2025 "representation.  Also consider how it might work in guestfish."
2026 msgstr ""
2027
2028 # type: =head2
2029 #. type: =head2
2030 #: ../src/guestfs.pod:882
2031 msgid "KEYS AND PASSPHRASES"
2032 msgstr ""
2033
2034 # type: textblock
2035 #. type: textblock
2036 #: ../src/guestfs.pod:884
2037 msgid ""
2038 "Certain libguestfs calls take a parameter that contains sensitive key "
2039 "material, passed in as a C string."
2040 msgstr ""
2041
2042 # type: textblock
2043 #. type: textblock
2044 #: ../src/guestfs.pod:887
2045 msgid ""
2046 "In the future we would hope to change the libguestfs implementation so that "
2047 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
2048 "swap.  However this is I<not> done at the moment, because of the complexity "
2049 "of such an implementation."
2050 msgstr ""
2051
2052 # type: textblock
2053 #. type: textblock
2054 #: ../src/guestfs.pod:892
2055 msgid ""
2056 "Therefore you should be aware that any key parameter you pass to libguestfs "
2057 "might end up being written out to the swap partition.  If this is a concern, "
2058 "scrub the swap partition or don't use libguestfs on encrypted devices."
2059 msgstr ""
2060
2061 # type: =head1
2062 #. type: =head2
2063 #: ../src/guestfs.pod:897
2064 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
2065 msgstr ""
2066
2067 # type: textblock
2068 #. type: textblock
2069 #: ../src/guestfs.pod:899
2070 msgid ""
2071 "All high-level libguestfs actions are synchronous.  If you want to use "
2072 "libguestfs asynchronously then you must create a thread."
2073 msgstr ""
2074
2075 # type: textblock
2076 #. type: textblock
2077 #: ../src/guestfs.pod:902
2078 msgid ""
2079 "Only use the handle from a single thread.  Either use the handle exclusively "
2080 "from one thread, or provide your own mutex so that two threads cannot issue "
2081 "calls on the same handle at the same time."
2082 msgstr ""
2083
2084 # type: textblock
2085 #. type: textblock
2086 #: ../src/guestfs.pod:906
2087 msgid ""
2088 "See the graphical program guestfs-browser for one possible architecture for "
2089 "multithreaded programs using libvirt and libguestfs."
2090 msgstr ""
2091
2092 # type: =head1
2093 #. type: =head2
2094 #: ../src/guestfs.pod:909
2095 msgid "PATH"
2096 msgstr ""
2097
2098 #. type: textblock
2099 #: ../src/guestfs.pod:911
2100 msgid ""
2101 "Libguestfs needs a supermin appliance, which it finds by looking along an "
2102 "internal path."
2103 msgstr ""
2104
2105 # type: textblock
2106 #. type: textblock
2107 #: ../src/guestfs.pod:914
2108 msgid ""
2109 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
2110 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
2111 msgstr ""
2112
2113 # type: textblock
2114 #. type: textblock
2115 #: ../src/guestfs.pod:917
2116 msgid ""
2117 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
2118 "to change the directories that libguestfs will search in.  The value is a "
2119 "colon-separated list of paths.  The current directory is I<not> searched "
2120 "unless the path contains an empty element or C<.>.  For example "
2121 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
2122 "then C</usr/lib/guestfs>."
2123 msgstr ""
2124
2125 # type: =head1
2126 #. type: =head2
2127 #: ../src/guestfs.pod:924
2128 msgid "QEMU WRAPPERS"
2129 msgstr ""
2130
2131 # type: textblock
2132 #. type: textblock
2133 #: ../src/guestfs.pod:926
2134 msgid ""
2135 "If you want to compile your own qemu, run qemu from a non-standard location, "
2136 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
2137 "around qemu."
2138 msgstr ""
2139
2140 # type: textblock
2141 #. type: textblock
2142 #: ../src/guestfs.pod:930
2143 msgid ""
2144 "There is one important rule to remember: you I<must C<exec qemu>> as the "
2145 "last command in the shell script (so that qemu replaces the shell and "
2146 "becomes the direct child of the libguestfs-using program).  If you don't do "
2147 "this, then the qemu process won't be cleaned up correctly."
2148 msgstr ""
2149
2150 # type: textblock
2151 #. type: textblock
2152 #: ../src/guestfs.pod:935
2153 msgid ""
2154 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2155 "source:"
2156 msgstr ""
2157
2158 # type: verbatim
2159 #. type: verbatim
2160 #: ../src/guestfs.pod:938
2161 #, no-wrap
2162 msgid ""
2163 " #!/bin/sh -\n"
2164 " qemudir=/home/rjones/d/qemu\n"
2165 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2166 "\n"
2167 msgstr ""
2168
2169 # type: textblock
2170 #. type: textblock
2171 #: ../src/guestfs.pod:942
2172 msgid ""
2173 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2174 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
2175 "example:"
2176 msgstr ""
2177
2178 # type: verbatim
2179 #. type: verbatim
2180 #: ../src/guestfs.pod:946
2181 #, no-wrap
2182 msgid ""
2183 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2184 "\n"
2185 msgstr ""
2186
2187 # type: textblock
2188 #. type: textblock
2189 #: ../src/guestfs.pod:948
2190 msgid ""
2191 "Note that libguestfs also calls qemu with the -help and -version options in "
2192 "order to determine features."
2193 msgstr ""
2194
2195 #. type: =head2
2196 #: ../src/guestfs.pod:951
2197 msgid "ATTACHING TO RUNNING DAEMONS"
2198 msgstr ""
2199
2200 #. type: textblock
2201 #: ../src/guestfs.pod:953
2202 msgid ""
2203 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2204 "babies.  Use with caution."
2205 msgstr ""
2206
2207 #. type: textblock
2208 #: ../src/guestfs.pod:956
2209 msgid ""
2210 "I<Note (2):> This section explains how to attach to a running daemon from a "
2211 "low level perspective.  For most users, simply using virt tools such as "
2212 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2213 msgstr ""
2214
2215 #. type: =head3
2216 #: ../src/guestfs.pod:960
2217 msgid "Using guestfs_set_attach_method"
2218 msgstr ""
2219
2220 #. type: textblock
2221 #: ../src/guestfs.pod:962
2222 msgid ""
2223 "By calling L</guestfs_set_attach_method> you can change how the library "
2224 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2225 "ARCHITECTURE> for some background)."
2226 msgstr ""
2227
2228 #. type: textblock
2229 #: ../src/guestfs.pod:966
2230 msgid ""
2231 "The normal attach method is C<appliance>, where a small appliance is created "
2232 "containing the daemon, and then the library connects to this."
2233 msgstr ""
2234
2235 #. type: textblock
2236 #: ../src/guestfs.pod:969
2237 msgid ""
2238 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2239 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2240 "daemon over the Unix domain socket."
2241 msgstr ""
2242
2243 #. type: textblock
2244 #: ../src/guestfs.pod:973
2245 msgid ""
2246 "The normal use for this is to connect to a running virtual machine that "
2247 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2248 "files inside the live virtual machine."
2249 msgstr ""
2250
2251 #. type: =head3
2252 #: ../src/guestfs.pod:977
2253 msgid "Using guestfs_add_domain with live flag"
2254 msgstr ""
2255
2256 #. type: textblock
2257 #: ../src/guestfs.pod:979
2258 msgid ""
2259 "L</guestfs_add_domain> provides some help for getting the correct attach "
2260 "method.  If you pass the C<live> option to this function, then (if the "
2261 "virtual machine is running) it will examine the libvirt XML looking for a "
2262 "virtio-serial channel to connect to:"
2263 msgstr ""
2264
2265 #. type: verbatim
2266 #: ../src/guestfs.pod:985
2267 #, no-wrap
2268 msgid ""
2269 " <domain>\n"
2270 "   ...\n"
2271 "   <devices>\n"
2272 "     ...\n"
2273 "     <channel type='unix'>\n"
2274 "       <source mode='bind' path='/path/to/socket'/>\n"
2275 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2276 "     </channel>\n"
2277 "     ...\n"
2278 "   </devices>\n"
2279 " </domain>\n"
2280 "\n"
2281 msgstr ""
2282
2283 #. type: textblock
2284 #: ../src/guestfs.pod:997
2285 msgid ""
2286 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2287 "method to C<unix:/path/to/socket>."
2288 msgstr ""
2289
2290 #. type: textblock
2291 #: ../src/guestfs.pod:1000
2292 msgid ""
2293 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2294 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2295 "to attach to and modify live virtual machines."
2296 msgstr ""
2297
2298 #. type: textblock
2299 #: ../src/guestfs.pod:1004
2300 msgid ""
2301 "The virtual machine needs to have been set up beforehand so that it has the "
2302 "virtio-serial channel and so that guestfsd is running inside it."
2303 msgstr ""
2304
2305 # type: =head2
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1008
2308 msgid "ABI GUARANTEE"
2309 msgstr ""
2310
2311 # type: textblock
2312 #. type: textblock
2313 #: ../src/guestfs.pod:1010
2314 msgid ""
2315 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2316 "actions as outlined in this section.  Although we will deprecate some "
2317 "actions, for example if they get replaced by newer calls, we will keep the "
2318 "old actions forever.  This allows you the developer to program in confidence "
2319 "against the libguestfs API."
2320 msgstr ""
2321
2322 # type: =head1
2323 #. type: =head2
2324 #: ../src/guestfs.pod:1016
2325 msgid "BLOCK DEVICE NAMING"
2326 msgstr ""
2327
2328 # type: textblock
2329 #. type: textblock
2330 #: ../src/guestfs.pod:1018
2331 msgid ""
2332 "In the kernel there is now quite a profusion of schemata for naming block "
2333 "devices (in this context, by I<block device> I mean a physical or virtual "
2334 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2335 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2336 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2337 "for the old IDE driver (particularly for SATA devices) those devices also "
2338 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2339 "paravirtualized drivers.  This has created several different naming systems, "
2340 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2341 msgstr ""
2342
2343 # type: textblock
2344 #. type: textblock
2345 #: ../src/guestfs.pod:1030
2346 msgid ""
2347 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2348 "Linux kernel to access block devices.  We can run a variety of appliances "
2349 "based on a variety of Linux kernels."
2350 msgstr ""
2351
2352 # type: textblock
2353 #. type: textblock
2354 #: ../src/guestfs.pod:1034
2355 msgid ""
2356 "This causes a problem for libguestfs because many API calls use device or "
2357 "partition names.  Working scripts and the recipe (example) scripts that we "
2358 "make available over the internet could fail if the naming scheme changes."
2359 msgstr ""
2360
2361 # type: textblock
2362 #. type: textblock
2363 #: ../src/guestfs.pod:1039
2364 msgid ""
2365 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2366 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2367 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2368 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2369 msgstr ""
2370
2371 # type: textblock
2372 #. type: textblock
2373 #: ../src/guestfs.pod:1045
2374 msgid ""
2375 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2376 "L</guestfs_list_partitions> and similar calls return the true names of the "
2377 "devices and partitions as known to the appliance."
2378 msgstr ""
2379
2380 # type: =head2
2381 #. type: =head3
2382 #: ../src/guestfs.pod:1050
2383 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2384 msgstr ""
2385
2386 # type: textblock
2387 #. type: textblock
2388 #: ../src/guestfs.pod:1052
2389 msgid ""
2390 "Usually this translation is transparent.  However in some (very rare)  cases "
2391 "you may need to know the exact algorithm.  Such cases include where you use "
2392 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2393 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2394 msgstr ""
2395
2396 # type: textblock
2397 #. type: textblock
2398 #: ../src/guestfs.pod:1058
2399 msgid ""
2400 "The algorithm is applied only to I<parameters> which are known to be either "
2401 "device or partition names.  Return values from functions such as L</"
2402 "guestfs_list_devices> are never changed."
2403 msgstr ""
2404
2405 # type: textblock
2406 #. type: textblock
2407 #: ../src/guestfs.pod:1066
2408 msgid "Is the string a parameter which is a device or partition name?"
2409 msgstr ""
2410
2411 # type: textblock
2412 #. type: textblock
2413 #: ../src/guestfs.pod:1070
2414 msgid "Does the string begin with C</dev/sd>?"
2415 msgstr ""
2416
2417 # type: textblock
2418 #. type: textblock
2419 #: ../src/guestfs.pod:1074
2420 msgid ""
2421 "Does the named device exist? If so, we use that device.  However if I<not> "
2422 "then we continue with this algorithm."
2423 msgstr ""
2424
2425 # type: textblock
2426 #. type: textblock
2427 #: ../src/guestfs.pod:1079
2428 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2429 msgstr ""
2430
2431 # type: textblock
2432 #. type: textblock
2433 #: ../src/guestfs.pod:1081
2434 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2435 msgstr ""
2436
2437 # type: textblock
2438 #. type: textblock
2439 #: ../src/guestfs.pod:1083
2440 msgid "If that named device exists, use it.  If not, continue."
2441 msgstr ""
2442
2443 # type: textblock
2444 #. type: textblock
2445 #: ../src/guestfs.pod:1087
2446 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2447 msgstr ""
2448
2449 # type: textblock
2450 #. type: textblock
2451 #: ../src/guestfs.pod:1089
2452 msgid "If that named device exists, use it.  If not, return an error."
2453 msgstr ""
2454
2455 # type: =head3
2456 #. type: =head3
2457 #: ../src/guestfs.pod:1093
2458 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2459 msgstr ""
2460
2461 # type: textblock
2462 #. type: textblock
2463 #: ../src/guestfs.pod:1095
2464 msgid ""
2465 "Although the standard naming scheme and automatic translation is useful for "
2466 "simple programs and guestfish scripts, for larger programs it is best not to "
2467 "rely on this mechanism."
2468 msgstr ""
2469
2470 # type: textblock
2471 #. type: textblock
2472 #: ../src/guestfs.pod:1099
2473 msgid ""
2474 "Where possible for maximum future portability programs using libguestfs "
2475 "should use these future-proof techniques:"
2476 msgstr ""
2477
2478 # type: textblock
2479 #. type: textblock
2480 #: ../src/guestfs.pod:1106
2481 msgid ""
2482 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2483 "device names, and then use those names directly."
2484 msgstr ""
2485
2486 # type: textblock
2487 #. type: textblock
2488 #: ../src/guestfs.pod:1109
2489 msgid ""
2490 "Since those device names exist by definition, they will never be translated."
2491 msgstr ""
2492
2493 # type: textblock
2494 #. type: textblock
2495 #: ../src/guestfs.pod:1114
2496 msgid ""
2497 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2498 "filesystem labels."
2499 msgstr ""
2500
2501 # type: =head1
2502 #. type: =head1
2503 #: ../src/guestfs.pod:1119
2504 msgid "SECURITY"
2505 msgstr ""
2506
2507 # type: textblock
2508 #. type: textblock
2509 #: ../src/guestfs.pod:1121
2510 msgid ""
2511 "This section discusses security implications of using libguestfs, "
2512 "particularly with untrusted or malicious guests or disk images."
2513 msgstr ""
2514
2515 # type: =head2
2516 #. type: =head2
2517 #: ../src/guestfs.pod:1124
2518 msgid "GENERAL SECURITY CONSIDERATIONS"
2519 msgstr ""
2520
2521 # type: textblock
2522 #. type: textblock
2523 #: ../src/guestfs.pod:1126
2524 msgid ""
2525 "Be careful with any files or data that you download from a guest (by "
2526 "\"download\" we mean not just the L</guestfs_download> command but any "
2527 "command that reads files, filenames, directories or anything else from a "
2528 "disk image).  An attacker could manipulate the data to fool your program "
2529 "into doing the wrong thing.  Consider cases such as:"
2530 msgstr ""
2531
2532 # type: textblock
2533 #. type: textblock
2534 #: ../src/guestfs.pod:1136
2535 msgid "the data (file etc) not being present"
2536 msgstr ""
2537
2538 # type: textblock
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1140
2541 msgid "being present but empty"
2542 msgstr ""
2543
2544 # type: textblock
2545 #. type: textblock
2546 #: ../src/guestfs.pod:1144
2547 msgid "being much larger than normal"
2548 msgstr ""
2549
2550 # type: textblock
2551 #. type: textblock
2552 #: ../src/guestfs.pod:1148
2553 msgid "containing arbitrary 8 bit data"
2554 msgstr ""
2555
2556 # type: textblock
2557 #. type: textblock
2558 #: ../src/guestfs.pod:1152
2559 msgid "being in an unexpected character encoding"
2560 msgstr ""
2561
2562 # type: textblock
2563 #. type: textblock
2564 #: ../src/guestfs.pod:1156
2565 msgid "containing homoglyphs."
2566 msgstr ""
2567
2568 # type: =head2
2569 #. type: =head2
2570 #: ../src/guestfs.pod:1160
2571 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2572 msgstr ""
2573
2574 # type: textblock
2575 #. type: textblock
2576 #: ../src/guestfs.pod:1162
2577 msgid ""
2578 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2579 "(VFS) module can sometimes be escalated into exploits by deliberately "
2580 "creating a malicious, malformed filesystem.  These exploits are very severe "
2581 "for two reasons.  Firstly there are very many filesystem drivers in the "
2582 "kernel, and many of them are infrequently used and not much developer "
2583 "attention has been paid to the code.  Linux userspace helps potential "
2584 "crackers by detecting the filesystem type and automatically choosing the "
2585 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2586 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2587 "exploit (worse in some ways), giving immediate and total access to the "
2588 "system right down to the hardware level."
2589 msgstr ""
2590
2591 # type: textblock
2592 #. type: textblock
2593 #: ../src/guestfs.pod:1175
2594 msgid ""
2595 "That explains why you should never mount a filesystem from an untrusted "
2596 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2597 "inside a qemu virtual machine, usually running as a non-root user.  The "
2598 "attacker would need to write a filesystem which first exploited the kernel, "
2599 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2600 "the libguestfs protocol, and finally to be as serious as the host kernel "
2601 "exploit it would need to escalate its privileges to root.  This multi-step "
2602 "escalation, performed by a static piece of data, is thought to be extremely "
2603 "hard to do, although we never say 'never' about security issues."
2604 msgstr ""
2605
2606 # type: textblock
2607 #. type: textblock
2608 #: ../src/guestfs.pod:1186
2609 msgid ""
2610 "In any case callers can reduce the attack surface by forcing the filesystem "
2611 "type when mounting (use L</guestfs_mount_vfs>)."
2612 msgstr ""
2613
2614 # type: =head2
2615 #. type: =head2
2616 #: ../src/guestfs.pod:1189
2617 msgid "PROTOCOL SECURITY"
2618 msgstr ""
2619
2620 # type: textblock
2621 #. type: textblock
2622 #: ../src/guestfs.pod:1191
2623 msgid ""
2624 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2625 "defined upper message size.  However a program that uses libguestfs must "
2626 "also take care - for example you can write a program that downloads a binary "
2627 "from a disk image and executes it locally, and no amount of protocol "
2628 "security will save you from the consequences."
2629 msgstr ""
2630
2631 # type: =head2
2632 #. type: =head2
2633 #: ../src/guestfs.pod:1197
2634 msgid "INSPECTION SECURITY"
2635 msgstr ""
2636
2637 # type: textblock
2638 #. type: textblock
2639 #: ../src/guestfs.pod:1199
2640 msgid ""
2641 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2642 "directly from the guest, and these could contain any 8 bit data.  Callers "
2643 "should be careful to escape these before printing them to a structured file "
2644 "(for example, use HTML escaping if creating a web page)."
2645 msgstr ""
2646
2647 # type: textblock
2648 #. type: textblock
2649 #: ../src/guestfs.pod:1205
2650 msgid ""
2651 "Guest configuration may be altered in unusual ways by the administrator of "
2652 "the virtual machine, and may not reflect reality (particularly for untrusted "
2653 "or actively malicious guests).  For example we parse the hostname from "
2654 "configuration files like C</etc/sysconfig/network> that we find in the "
2655 "guest, but the guest administrator can easily manipulate these files to "
2656 "provide the wrong hostname."
2657 msgstr ""
2658
2659 # type: textblock
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1213
2662 msgid ""
2663 "The inspection API parses guest configuration using two external libraries: "
2664 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2665 "designed to be robust in the face of malicious data, although denial of "
2666 "service attacks are still possible, for example with oversized configuration "
2667 "files."
2668 msgstr ""
2669
2670 # type: =head2
2671 #. type: =head2
2672 #: ../src/guestfs.pod:1219
2673 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2674 msgstr ""
2675
2676 # type: textblock
2677 #. type: textblock
2678 #: ../src/guestfs.pod:1221
2679 msgid ""
2680 "Be very cautious about running commands from the guest.  By running a "
2681 "command in the guest, you are giving CPU time to a binary that you do not "
2682 "control, under the same user account as the library, albeit wrapped in qemu "
2683 "virtualization.  More information and alternatives can be found in the "
2684 "section L</RUNNING COMMANDS>."
2685 msgstr ""
2686
2687 # type: =head2
2688 #. type: =head2
2689 #: ../src/guestfs.pod:1227
2690 msgid "CVE-2010-3851"
2691 msgstr ""
2692
2693 # type: textblock
2694 #. type: textblock
2695 #: ../src/guestfs.pod:1229
2696 msgid "https://bugzilla.redhat.com/642934"
2697 msgstr ""
2698
2699 # type: textblock
2700 #. type: textblock
2701 #: ../src/guestfs.pod:1231
2702 msgid ""
2703 "This security bug concerns the automatic disk format detection that qemu "
2704 "does on disk images."
2705 msgstr ""
2706
2707 # type: textblock
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1234
2710 msgid ""
2711 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2712 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2713 "for one of the known headers, and if none is found then assuming the disk "
2714 "image must be raw."
2715 msgstr ""
2716
2717 # type: textblock
2718 #. type: textblock
2719 #: ../src/guestfs.pod:1239
2720 msgid ""
2721 "This allows a guest which has been given a raw disk image to write some "
2722 "other header.  At next boot (or when the disk image is accessed by "
2723 "libguestfs) qemu would do autodetection and think the disk image format was, "
2724 "say, qcow2 based on the header written by the guest."
2725 msgstr ""
2726
2727 # type: textblock
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1244
2730 msgid ""
2731 "This in itself would not be a problem, but qcow2 offers many features, one "
2732 "of which is to allow a disk image to refer to another image (called the "
2733 "\"backing disk\").  It does this by placing the path to the backing disk "
2734 "into the qcow2 header.  This path is not validated and could point to any "
2735 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2736 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2737 "control of the attacker."
2738 msgstr ""
2739
2740 # type: textblock
2741 #. type: textblock
2742 #: ../src/guestfs.pod:1252
2743 msgid ""
2744 "In libguestfs this is rather hard to exploit except under two circumstances:"
2745 msgstr ""
2746
2747 # type: textblock
2748 #. type: textblock
2749 #: ../src/guestfs.pod:1259
2750 msgid "You have enabled the network or have opened the disk in write mode."
2751 msgstr ""
2752
2753 # type: textblock
2754 #. type: textblock
2755 #: ../src/guestfs.pod:1263
2756 msgid ""
2757 "You are also running untrusted code from the guest (see L</RUNNING "
2758 "COMMANDS>)."
2759 msgstr ""
2760
2761 # type: textblock
2762 #. type: textblock
2763 #: ../src/guestfs.pod:1268
2764 msgid ""
2765 "The way to avoid this is to specify the expected disk format when adding "
2766 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2767 "should always do this if the disk is raw format, and it's a good idea for "
2768 "other cases too."
2769 msgstr ""
2770
2771 # type: textblock
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1273
2774 msgid ""
2775 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2776 "format is fetched from libvirt and passed through."
2777 msgstr ""
2778
2779 # type: textblock
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1276
2782 msgid ""
2783 "For libguestfs tools, use the I<--format> command line parameter as "
2784 "appropriate."
2785 msgstr ""
2786
2787 # type: =head1
2788 #. type: =head1
2789 #: ../src/guestfs.pod:1279
2790 msgid "CONNECTION MANAGEMENT"
2791 msgstr ""
2792
2793 # type: =head2
2794 #. type: =head2
2795 #: ../src/guestfs.pod:1281
2796 msgid "guestfs_h *"
2797 msgstr ""
2798
2799 # type: textblock
2800 #. type: textblock
2801 #: ../src/guestfs.pod:1283
2802 msgid ""
2803 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2804 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2805 "handle and release all resources used."
2806 msgstr ""
2807
2808 #. type: textblock
2809 #: ../src/guestfs.pod:1287
2810 msgid ""
2811 "For information on using multiple handles and threads, see the section L</"
2812 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2813 msgstr ""
2814
2815 # type: =head2
2816 #. type: =head2
2817 #: ../src/guestfs.pod:1290
2818 msgid "guestfs_create"
2819 msgstr ""
2820
2821 # type: verbatim
2822 #. type: verbatim
2823 #: ../src/guestfs.pod:1292
2824 #, no-wrap
2825 msgid ""
2826 " guestfs_h *guestfs_create (void);\n"
2827 "\n"
2828 msgstr ""
2829
2830 # type: textblock
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1294
2833 msgid "Create a connection handle."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1296
2838 msgid ""
2839 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2840 "NULL."
2841 msgstr ""
2842
2843 #. type: textblock
2844 #: ../src/guestfs.pod:1299
2845 msgid ""
2846 "You have to \"configure\" the handle after creating it.  This includes "
2847 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2848 "handle at least once."
2849 msgstr ""
2850
2851 # type: textblock
2852 #. type: textblock
2853 #: ../src/guestfs.pod:1303
2854 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2855 msgstr ""
2856
2857 #. type: textblock
2858 #: ../src/guestfs.pod:1305
2859 msgid ""
2860 "You may also want to configure error handling for the handle.  See the L</"
2861 "ERROR HANDLING> section below."
2862 msgstr ""
2863
2864 # type: =head2
2865 #. type: =head2
2866 #: ../src/guestfs.pod:1308
2867 msgid "guestfs_close"
2868 msgstr ""
2869
2870 # type: verbatim
2871 #. type: verbatim
2872 #: ../src/guestfs.pod:1310
2873 #, no-wrap
2874 msgid ""
2875 " void guestfs_close (guestfs_h *g);\n"
2876 "\n"
2877 msgstr ""
2878
2879 # type: textblock
2880 #. type: textblock
2881 #: ../src/guestfs.pod:1312
2882 msgid "This closes the connection handle and frees up all resources used."
2883 msgstr ""
2884
2885 #. type: textblock
2886 #: ../src/guestfs.pod:1314
2887 msgid ""
2888 "If autosync was set on the handle and the handle was launched, then this "
2889 "implicitly calls various functions to unmount filesystems and sync the "
2890 "disk.  See L</guestfs_set_autosync> for more details."
2891 msgstr ""
2892
2893 #. type: textblock
2894 #: ../src/guestfs.pod:1318
2895 msgid "If a close callback was set on the handle, then it is called."
2896 msgstr ""
2897
2898 # type: =head1
2899 #. type: =head1
2900 #: ../src/guestfs.pod:1320
2901 msgid "ERROR HANDLING"
2902 msgstr ""
2903
2904 # type: textblock
2905 #. type: textblock
2906 #: ../src/guestfs.pod:1322
2907 msgid ""
2908 "API functions can return errors.  For example, almost all functions that "
2909 "return C<int> will return C<-1> to indicate an error."
2910 msgstr ""
2911
2912 # type: textblock
2913 #. type: textblock
2914 #: ../src/guestfs.pod:1325
2915 msgid ""
2916 "Additional information is available for errors: an error message string and "
2917 "optionally an error number (errno) if the thing that failed was a system "
2918 "call."
2919 msgstr ""
2920
2921 # type: textblock
2922 #. type: textblock
2923 #: ../src/guestfs.pod:1329
2924 msgid ""
2925 "You can get at the additional information about the last error on the handle "
2926 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2927 "up an error handler with L</guestfs_set_error_handler>."
2928 msgstr ""
2929
2930 # type: textblock
2931 #. type: textblock
2932 #: ../src/guestfs.pod:1334
2933 msgid ""
2934 "When the handle is created, a default error handler is installed which "
2935 "prints the error message string to C<stderr>.  For small short-running "
2936 "command line programs it is sufficient to do:"
2937 msgstr ""
2938
2939 # type: verbatim
2940 #. type: verbatim
2941 #: ../src/guestfs.pod:1338
2942 #, no-wrap
2943 msgid ""
2944 " if (guestfs_launch (g) == -1)\n"
2945 "   exit (EXIT_FAILURE);\n"
2946 "\n"
2947 msgstr ""
2948
2949 # type: textblock
2950 #. type: textblock
2951 #: ../src/guestfs.pod:1341
2952 msgid ""
2953 "since the default error handler will ensure that an error message has been "
2954 "printed to C<stderr> before the program exits."
2955 msgstr ""
2956
2957 # type: textblock
2958 #. type: textblock
2959 #: ../src/guestfs.pod:1344
2960 msgid ""
2961 "For other programs the caller will almost certainly want to install an "
2962 "alternate error handler or do error handling in-line like this:"
2963 msgstr ""
2964
2965 # type: verbatim
2966 #. type: verbatim
2967 #: ../src/guestfs.pod:1347
2968 #, no-wrap
2969 msgid ""
2970 " g = guestfs_create ();\n"
2971 " \n"
2972 msgstr ""
2973
2974 # type: verbatim
2975 #. type: verbatim
2976 #: ../src/guestfs.pod:1349
2977 #, no-wrap
2978 msgid ""
2979 " /* This disables the default behaviour of printing errors\n"
2980 "    on stderr. */\n"
2981 " guestfs_set_error_handler (g, NULL, NULL);\n"
2982 " \n"
2983 msgstr ""
2984
2985 # type: verbatim
2986 #. type: verbatim
2987 #: ../src/guestfs.pod:1353
2988 #, no-wrap
2989 msgid ""
2990 " if (guestfs_launch (g) == -1) {\n"
2991 "   /* Examine the error message and print it etc. */\n"
2992 "   char *msg = guestfs_last_error (g);\n"
2993 "   int errnum = guestfs_last_errno (g);\n"
2994 "   fprintf (stderr, \"%s\\n\", msg);\n"
2995 "   /* ... */\n"
2996 "  }\n"
2997 "\n"
2998 msgstr ""
2999
3000 # type: textblock
3001 #. type: textblock
3002 #: ../src/guestfs.pod:1361
3003 msgid ""
3004 "Out of memory errors are handled differently.  The default action is to call "
3005 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
3006 "guestfs_set_out_of_memory_handler>."
3007 msgstr ""
3008
3009 # type: textblock
3010 #. type: textblock
3011 #: ../src/guestfs.pod:1365
3012 msgid ""
3013 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
3014 "because there is no handle if this happens there is no way to get additional "
3015 "error information.  However L</guestfs_create> is supposed to be a "
3016 "lightweight operation which can only fail because of insufficient memory (it "
3017 "returns NULL in this case)."
3018 msgstr ""
3019
3020 # type: =head2
3021 #. type: =head2
3022 #: ../src/guestfs.pod:1371
3023 msgid "guestfs_last_error"
3024 msgstr ""
3025
3026 # type: verbatim
3027 #. type: verbatim
3028 #: ../src/guestfs.pod:1373
3029 #, no-wrap
3030 msgid ""
3031 " const char *guestfs_last_error (guestfs_h *g);\n"
3032 "\n"
3033 msgstr ""
3034
3035 # type: textblock
3036 #. type: textblock
3037 #: ../src/guestfs.pod:1375
3038 msgid ""
3039 "This returns the last error message that happened on C<g>.  If there has not "
3040 "been an error since the handle was created, then this returns C<NULL>."
3041 msgstr ""
3042
3043 # type: textblock
3044 #. type: textblock
3045 #: ../src/guestfs.pod:1379
3046 msgid ""
3047 "The lifetime of the returned string is until the next error occurs, or L</"
3048 "guestfs_close> is called."
3049 msgstr ""
3050
3051 # type: =head2
3052 #. type: =head2
3053 #: ../src/guestfs.pod:1382
3054 msgid "guestfs_last_errno"
3055 msgstr ""
3056
3057 # type: verbatim
3058 #. type: verbatim
3059 #: ../src/guestfs.pod:1384
3060 #, no-wrap
3061 msgid ""
3062 " int guestfs_last_errno (guestfs_h *g);\n"
3063 "\n"
3064 msgstr ""
3065
3066 # type: textblock
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1386
3069 msgid "This returns the last error number (errno) that happened on C<g>."
3070 msgstr ""
3071
3072 # type: textblock
3073 #. type: textblock
3074 #: ../src/guestfs.pod:1388
3075 msgid "If successful, an errno integer not equal to zero is returned."
3076 msgstr ""
3077
3078 # type: textblock
3079 #. type: textblock
3080 #: ../src/guestfs.pod:1390
3081 msgid ""
3082 "If no error, this returns 0.  This call can return 0 in three situations:"
3083 msgstr ""
3084
3085 # type: textblock
3086 #. type: textblock
3087 #: ../src/guestfs.pod:1397
3088 msgid "There has not been any error on the handle."
3089 msgstr ""
3090
3091 # type: textblock
3092 #. type: textblock
3093 #: ../src/guestfs.pod:1401
3094 msgid ""
3095 "There has been an error but the errno was meaningless.  This corresponds to "
3096 "the case where the error did not come from a failed system call, but for "
3097 "some other reason."
3098 msgstr ""
3099
3100 # type: textblock
3101 #. type: textblock
3102 #: ../src/guestfs.pod:1407
3103 msgid ""
3104 "There was an error from a failed system call, but for some reason the errno "
3105 "was not captured and returned.  This usually indicates a bug in libguestfs."
3106 msgstr ""
3107
3108 # type: textblock
3109 #. type: textblock
3110 #: ../src/guestfs.pod:1413
3111 msgid ""
3112 "Libguestfs tries to convert the errno from inside the applicance into a "
3113 "corresponding errno for the caller (not entirely trivial: the appliance "
3114 "might be running a completely different operating system from the library "
3115 "and error numbers are not standardized across Un*xen).  If this could not be "
3116 "done, then the error is translated to C<EINVAL>.  In practice this should "
3117 "only happen in very rare circumstances."
3118 msgstr ""
3119
3120 # type: =head2
3121 #. type: =head2
3122 #: ../src/guestfs.pod:1421
3123 msgid "guestfs_set_error_handler"
3124 msgstr ""
3125
3126 # type: verbatim
3127 #. type: verbatim
3128 #: ../src/guestfs.pod:1423
3129 #, no-wrap
3130 msgid ""
3131 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
3132 "                                           void *opaque,\n"
3133 "                                           const char *msg);\n"
3134 " void guestfs_set_error_handler (guestfs_h *g,\n"
3135 "                                 guestfs_error_handler_cb cb,\n"
3136 "                                 void *opaque);\n"
3137 "\n"
3138 msgstr ""
3139
3140 # type: textblock
3141 #. type: textblock
3142 #: ../src/guestfs.pod:1430
3143 msgid ""
3144 "The callback C<cb> will be called if there is an error.  The parameters "
3145 "passed to the callback are an opaque data pointer and the error message "
3146 "string."
3147 msgstr ""
3148
3149 # type: textblock
3150 #. type: textblock
3151 #: ../src/guestfs.pod:1434
3152 msgid ""
3153 "C<errno> is not passed to the callback.  To get that the callback must call "
3154 "L</guestfs_last_errno>."
3155 msgstr ""
3156
3157 # type: textblock
3158 #. type: textblock
3159 #: ../src/guestfs.pod:1437
3160 msgid ""
3161 "Note that the message string C<msg> is freed as soon as the callback "
3162 "function returns, so if you want to stash it somewhere you must make your "
3163 "own copy."
3164 msgstr ""
3165
3166 # type: textblock
3167 #. type: textblock
3168 #: ../src/guestfs.pod:1441
3169 msgid "The default handler prints messages on C<stderr>."
3170 msgstr ""
3171
3172 # type: textblock
3173 #. type: textblock
3174 #: ../src/guestfs.pod:1443
3175 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
3176 msgstr ""
3177
3178 # type: =head2
3179 #. type: =head2
3180 #: ../src/guestfs.pod:1445
3181 msgid "guestfs_get_error_handler"
3182 msgstr ""
3183
3184 # type: verbatim
3185 #. type: verbatim
3186 #: ../src/guestfs.pod:1447
3187 #, no-wrap
3188 msgid ""
3189 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
3190 "                                                     void **opaque_rtn);\n"
3191 "\n"
3192 msgstr ""
3193
3194 # type: textblock
3195 #. type: textblock
3196 #: ../src/guestfs.pod:1450
3197 msgid "Returns the current error handler callback."
3198 msgstr ""
3199
3200 # type: =head2
3201 #. type: =head2
3202 #: ../src/guestfs.pod:1452
3203 msgid "guestfs_set_out_of_memory_handler"
3204 msgstr ""
3205
3206 # type: verbatim
3207 #. type: verbatim
3208 #: ../src/guestfs.pod:1454
3209 #, no-wrap
3210 msgid ""
3211 " typedef void (*guestfs_abort_cb) (void);\n"
3212 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
3213 "                                        guestfs_abort_cb);\n"
3214 "\n"
3215 msgstr ""
3216
3217 # type: textblock
3218 #. type: textblock
3219 #: ../src/guestfs.pod:1458
3220 msgid ""
3221 "The callback C<cb> will be called if there is an out of memory situation.  "
3222 "I<Note this callback must not return>."
3223 msgstr ""
3224
3225 # type: textblock
3226 #. type: textblock
3227 #: ../src/guestfs.pod:1461
3228 msgid "The default is to call L<abort(3)>."
3229 msgstr ""
3230
3231 # type: textblock
3232 #. type: textblock
3233 #: ../src/guestfs.pod:1463
3234 msgid ""
3235 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
3236 msgstr ""
3237
3238 # type: =head2
3239 #. type: =head2
3240 #: ../src/guestfs.pod:1466
3241 msgid "guestfs_get_out_of_memory_handler"
3242 msgstr ""
3243
3244 # type: verbatim
3245 #. type: verbatim
3246 #: ../src/guestfs.pod:1468
3247 #, no-wrap
3248 msgid ""
3249 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
3250 "\n"
3251 msgstr ""
3252
3253 # type: textblock
3254 #. type: textblock
3255 #: ../src/guestfs.pod:1470
3256 msgid "This returns the current out of memory handler."
3257 msgstr ""
3258
3259 # type: =head1
3260 #. type: =head1
3261 #: ../src/guestfs.pod:1472
3262 msgid "API CALLS"
3263 msgstr ""
3264
3265 # type: textblock
3266 #. type: textblock
3267 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1008
3268 msgid "@ACTIONS@"
3269 msgstr ""
3270
3271 # type: =head1
3272 #. type: =head1
3273 #: ../src/guestfs.pod:1476
3274 msgid "STRUCTURES"
3275 msgstr ""
3276
3277 # type: textblock
3278 #. type: textblock
3279 #: ../src/guestfs.pod:1478
3280 msgid "@STRUCTS@"
3281 msgstr ""
3282
3283 # type: =head1
3284 #. type: =head1
3285 #: ../src/guestfs.pod:1480
3286 msgid "AVAILABILITY"
3287 msgstr ""
3288
3289 # type: =head2
3290 #. type: =head2
3291 #: ../src/guestfs.pod:1482
3292 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3293 msgstr ""
3294
3295 # type: textblock
3296 #. type: textblock
3297 #: ../src/guestfs.pod:1484
3298 msgid ""
3299 "Using L</guestfs_available> you can test availability of the following "
3300 "groups of functions.  This test queries the appliance to see if the "
3301 "appliance you are currently using supports the functionality."
3302 msgstr ""
3303
3304 # type: textblock
3305 #. type: textblock
3306 #: ../src/guestfs.pod:1489
3307 msgid "@AVAILABILITY@"
3308 msgstr ""
3309
3310 # type: =head2
3311 #. type: =head2
3312 #: ../src/guestfs.pod:1491
3313 msgid "GUESTFISH supported COMMAND"
3314 msgstr ""
3315
3316 # type: textblock
3317 #. type: textblock
3318 #: ../src/guestfs.pod:1493
3319 msgid ""
3320 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3321 "prints out the available groups and whether they are supported by this build "
3322 "of libguestfs.  Note however that you have to do C<run> first."
3323 msgstr ""
3324
3325 # type: =head2
3326 #. type: =head2
3327 #: ../src/guestfs.pod:1498
3328 msgid "SINGLE CALLS AT COMPILE TIME"
3329 msgstr ""
3330
3331 # type: textblock
3332 #. type: textblock
3333 #: ../src/guestfs.pod:1500
3334 msgid ""
3335 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3336 "function, such as:"
3337 msgstr ""
3338
3339 # type: verbatim
3340 #. type: verbatim
3341 #: ../src/guestfs.pod:1503
3342 #, no-wrap
3343 msgid ""
3344 " #define LIBGUESTFS_HAVE_DD 1\n"
3345 "\n"
3346 msgstr ""
3347
3348 # type: textblock
3349 #. type: textblock
3350 #: ../src/guestfs.pod:1505
3351 msgid "if L</guestfs_dd> is available."
3352 msgstr ""
3353
3354 # type: textblock
3355 #. type: textblock
3356 #: ../src/guestfs.pod:1507
3357 msgid ""
3358 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3359 "function is available at compile time, we recommended using build tools such "
3360 "as autoconf or cmake.  For example in autotools you could use:"
3361 msgstr ""
3362
3363 # type: verbatim
3364 #. type: verbatim
3365 #: ../src/guestfs.pod:1512
3366 #, no-wrap
3367 msgid ""
3368 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3369 " AC_CHECK_FUNCS([guestfs_dd])\n"
3370 "\n"
3371 msgstr ""
3372
3373 # type: textblock
3374 #. type: textblock
3375 #: ../src/guestfs.pod:1515
3376 msgid ""
3377 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3378 "in your program."
3379 msgstr ""
3380
3381 # type: =head2
3382 #. type: =head2
3383 #: ../src/guestfs.pod:1518
3384 msgid "SINGLE CALLS AT RUN TIME"
3385 msgstr ""
3386
3387 # type: textblock
3388 #. type: textblock
3389 #: ../src/guestfs.pod:1520
3390 msgid ""
3391 "Testing at compile time doesn't guarantee that a function really exists in "
3392 "the library.  The reason is that you might be dynamically linked against a "
3393 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3394 "This situation unfortunately results in a segmentation fault, which is a "
3395 "shortcoming of the C dynamic linking system itself."
3396 msgstr ""
3397
3398 # type: textblock
3399 #. type: textblock
3400 #: ../src/guestfs.pod:1527
3401 msgid ""
3402 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3403 "in this example program (note that you still need the compile time check as "
3404 "well):"
3405 msgstr ""
3406
3407 # type: verbatim
3408 #. type: verbatim
3409 #: ../src/guestfs.pod:1531
3410 #, no-wrap
3411 msgid ""
3412 " #include <stdio.h>\n"
3413 " #include <stdlib.h>\n"
3414 " #include <unistd.h>\n"
3415 " #include <dlfcn.h>\n"
3416 " #include <guestfs.h>\n"
3417 " \n"
3418 msgstr ""
3419
3420 # type: verbatim
3421 #. type: verbatim
3422 #: ../src/guestfs.pod:1537
3423 #, no-wrap
3424 msgid ""
3425 " main ()\n"
3426 " {\n"
3427 " #ifdef LIBGUESTFS_HAVE_DD\n"
3428 "   void *dl;\n"
3429 "   int has_function;\n"
3430 " \n"
3431 msgstr ""
3432
3433 # type: verbatim
3434 #. type: verbatim
3435 #: ../src/guestfs.pod:1543
3436 #, no-wrap
3437 msgid ""
3438 "   /* Test if the function guestfs_dd is really available. */\n"
3439 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3440 "   if (!dl) {\n"
3441 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3442 "     exit (EXIT_FAILURE);\n"
3443 "   }\n"
3444 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3445 "   dlclose (dl);\n"
3446 " \n"
3447 msgstr ""
3448
3449 # type: verbatim
3450 #. type: verbatim
3451 #: ../src/guestfs.pod:1552
3452 #, no-wrap
3453 msgid ""
3454 "   if (!has_function)\n"
3455 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3456 "   else {\n"
3457 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3458 "     /* Now it's safe to call\n"
3459 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3460 "     */\n"
3461 "   }\n"
3462 " #else\n"
3463 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3464 " #endif\n"
3465 "  }\n"
3466 "\n"
3467 msgstr ""
3468
3469 # type: textblock
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1565
3472 msgid ""
3473 "You may think the above is an awful lot of hassle, and it is.  There are "
3474 "other ways outside of the C linking system to ensure that this kind of "
3475 "incompatibility never arises, such as using package versioning:"
3476 msgstr ""
3477
3478 # type: verbatim
3479 #. type: verbatim
3480 #: ../src/guestfs.pod:1570
3481 #, no-wrap
3482 msgid ""
3483 " Requires: libguestfs >= 1.0.80\n"
3484 "\n"
3485 msgstr ""
3486
3487 # type: =head1
3488 #. type: =head1
3489 #: ../src/guestfs.pod:1572
3490 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3491 msgstr ""
3492
3493 # type: textblock
3494 #. type: textblock
3495 #: ../src/guestfs.pod:1574
3496 msgid ""
3497 "A recent feature of the API is the introduction of calls which take optional "
3498 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3499 "takes variable arguments (ie. C<...>), as in this example:"
3500 msgstr ""
3501
3502 # type: verbatim
3503 #. type: verbatim
3504 #: ../src/guestfs.pod:1579
3505 #, no-wrap
3506 msgid ""
3507 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3508 "\n"
3509 msgstr ""
3510
3511 # type: textblock
3512 #. type: textblock
3513 #: ../src/guestfs.pod:1581
3514 msgid ""
3515 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3516 "call with no optional arguments specified:"
3517 msgstr ""
3518
3519 # type: verbatim
3520 #. type: verbatim
3521 #: ../src/guestfs.pod:1584
3522 #, no-wrap
3523 msgid ""
3524 " guestfs_add_drive_opts (g, filename, -1);\n"
3525 "\n"
3526 msgstr ""
3527
3528 # type: textblock
3529 #. type: textblock
3530 #: ../src/guestfs.pod:1586
3531 msgid "With a single optional argument:"
3532 msgstr ""
3533
3534 # type: verbatim
3535 #. type: verbatim
3536 #: ../src/guestfs.pod:1588
3537 #, no-wrap
3538 msgid ""
3539 " guestfs_add_drive_opts (g, filename,\n"
3540 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3541 "                         -1);\n"
3542 "\n"
3543 msgstr ""
3544
3545 # type: textblock
3546 #. type: textblock
3547 #: ../src/guestfs.pod:1592
3548 msgid "With two:"
3549 msgstr ""
3550
3551 # type: verbatim
3552 #. type: verbatim
3553 #: ../src/guestfs.pod:1594
3554 #, no-wrap
3555 msgid ""
3556 " guestfs_add_drive_opts (g, filename,\n"
3557 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3558 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3559 "                         -1);\n"
3560 "\n"
3561 msgstr ""
3562
3563 # type: textblock
3564 #. type: textblock
3565 #: ../src/guestfs.pod:1599
3566 msgid ""
3567 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3568 "happen!"
3569 msgstr ""
3570
3571 # type: =head2
3572 #. type: =head2
3573 #: ../src/guestfs.pod:1602
3574 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3575 msgstr ""
3576
3577 # type: textblock
3578 #. type: textblock
3579 #: ../src/guestfs.pod:1604
3580 msgid ""
3581 "The second variant has the same name with the suffix C<_va>, which works the "
3582 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3583 "example function, this is declared:"
3584 msgstr ""
3585
3586 # type: verbatim
3587 #. type: verbatim
3588 #: ../src/guestfs.pod:1608
3589 #, no-wrap
3590 msgid ""
3591 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3592 "                                va_list args);\n"
3593 "\n"
3594 msgstr ""
3595
3596 # type: =head2
3597 #. type: =head2
3598 #: ../src/guestfs.pod:1611
3599 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3600 msgstr ""
3601
3602 # type: textblock
3603 #. type: textblock
3604 #: ../src/guestfs.pod:1613
3605 msgid ""
3606 "The third variant is useful where you need to construct these calls.  You "
3607 "pass in a structure where you fill in the optional fields.  The structure "
3608 "has a bitmask as the first element which you must set to indicate which "
3609 "fields you have filled in.  For our example function the structure and call "
3610 "are declared:"
3611 msgstr ""
3612
3613 # type: verbatim
3614 #. type: verbatim
3615 #: ../src/guestfs.pod:1619
3616 #, no-wrap
3617 msgid ""
3618 " struct guestfs_add_drive_opts_argv {\n"
3619 "   uint64_t bitmask;\n"
3620 "   int readonly;\n"
3621 "   const char *format;\n"
3622 "   /* ... */\n"
3623 " };\n"
3624 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3625 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3626 "\n"
3627 msgstr ""
3628
3629 # type: textblock
3630 #. type: textblock
3631 #: ../src/guestfs.pod:1628
3632 msgid "You could call it like this:"
3633 msgstr ""
3634
3635 # type: verbatim
3636 #. type: verbatim
3637 #: ../src/guestfs.pod:1630
3638 #, no-wrap
3639 msgid ""
3640 " struct guestfs_add_drive_opts_argv optargs = {\n"
3641 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3642 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3643 "   .readonly = 1,\n"
3644 "   .format = \"qcow2\"\n"
3645 " };\n"
3646 " \n"
3647 msgstr ""
3648
3649 # type: verbatim
3650 #. type: verbatim
3651 #: ../src/guestfs.pod:1637
3652 #, no-wrap
3653 msgid ""
3654 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3655 "\n"
3656 msgstr ""
3657
3658 # type: textblock
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3661 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:9
3662 #: ../fish/guestfish-actions.pod:1257 ../tools/virt-win-reg.pl:532
3663 msgid "Notes:"
3664 msgstr ""
3665
3666 # type: textblock
3667 #. type: textblock
3668 #: ../src/guestfs.pod:1645
3669 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3670 msgstr ""
3671
3672 # type: textblock
3673 #. type: textblock
3674 #: ../src/guestfs.pod:1650
3675 msgid "You do not need to fill in all fields of the structure."
3676 msgstr ""
3677
3678 # type: textblock
3679 #. type: textblock
3680 #: ../src/guestfs.pod:1654
3681 msgid ""
3682 "There must be a one-to-one correspondence between fields of the structure "
3683 "that are filled in, and bits set in the bitmask."
3684 msgstr ""
3685
3686 # type: =head2
3687 #. type: =head2
3688 #: ../src/guestfs.pod:1659
3689 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3690 msgstr ""
3691
3692 # type: textblock
3693 #. type: textblock
3694 #: ../src/guestfs.pod:1661
3695 msgid ""
3696 "In other languages, optional arguments are expressed in the way that is "
3697 "natural for that language.  We refer you to the language-specific "
3698 "documentation for more details on that."
3699 msgstr ""
3700
3701 # type: textblock
3702 #. type: textblock
3703 #: ../src/guestfs.pod:1665
3704 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3705 msgstr ""
3706
3707 # type: =head2
3708 #. type: =head2
3709 #: ../src/guestfs.pod:1667
3710 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3711 msgstr ""
3712
3713 #. type: textblock
3714 #: ../src/guestfs.pod:1669
3715 msgid ""
3716 "B<Note:> This section documents the generic event mechanism introduced in "
3717 "libguestfs 1.10, which you should use in new code if possible.  The old "
3718 "functions C<guestfs_set_log_message_callback>, "
3719 "C<guestfs_set_subprocess_quit_callback>, "
3720 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3721 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3722 "page."
3723 msgstr ""
3724
3725 #. type: textblock
3726 #: ../src/guestfs.pod:1677
3727 msgid ""
3728 "Handles generate events when certain things happen, such as log messages "
3729 "being generated, progress messages during long-running operations, or the "
3730 "handle being closed.  The API calls described below let you register a "
3731 "callback to be called when events happen.  You can register multiple "
3732 "callbacks (for the same, different or overlapping sets of events), and "
3733 "individually remove callbacks.  If callbacks are not removed, then they "
3734 "remain in force until the handle is closed."
3735 msgstr ""
3736
3737 #. type: textblock
3738 #: ../src/guestfs.pod:1685
3739 msgid ""
3740 "In the current implementation, events are only generated synchronously: that "
3741 "means that events (and hence callbacks) can only happen while you are in the "
3742 "middle of making another libguestfs call.  The callback is called in the "
3743 "same thread."
3744 msgstr ""
3745
3746 #. type: textblock
3747 #: ../src/guestfs.pod:1690
3748 msgid ""
3749 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3750 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3751 msgstr ""
3752
3753 #. type: =head3
3754 #: ../src/guestfs.pod:1694
3755 msgid "CLASSES OF EVENTS"
3756 msgstr ""
3757
3758 #. type: =item
3759 #: ../src/guestfs.pod:1698
3760 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3761 msgstr ""
3762
3763 #. type: textblock
3764 #: ../src/guestfs.pod:1701
3765 msgid ""
3766 "The callback function will be called while the handle is being closed "
3767 "(synchronously from L</guestfs_close>)."
3768 msgstr ""
3769
3770 # type: textblock
3771 #. type: textblock
3772 #: ../src/guestfs.pod:1704
3773 msgid ""
3774 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3775 "handles that are open when the program exits.  This means that this callback "
3776 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3777 "problems in higher-level languages (eg. if your HLL interpreter has already "
3778 "been cleaned up by the time this is called, and if your callback then jumps "
3779 "into some HLL function)."
3780 msgstr ""
3781
3782 #. type: textblock
3783 #: ../src/guestfs.pod:1711
3784 msgid ""
3785 "If no callback is registered: the handle is closed without any callback "
3786 "being invoked."
3787 msgstr ""
3788
3789 #. type: =item
3790 #: ../src/guestfs.pod:1714
3791 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3792 msgstr ""
3793
3794 #. type: textblock
3795 #: ../src/guestfs.pod:1717
3796 msgid ""
3797 "The callback function will be called when the child process quits, either "
3798 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3799 "corresponds to a transition from any state to the CONFIG state)."
3800 msgstr ""
3801
3802 #. type: textblock
3803 #: ../src/guestfs.pod:1721 ../src/guestfs.pod:1730
3804 msgid "If no callback is registered: the event is ignored."
3805 msgstr ""
3806
3807 #. type: =item
3808 #: ../src/guestfs.pod:1723
3809 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1726
3814 msgid ""
3815 "The callback function will be called when the child process becomes ready "
3816 "first time after it has been launched.  (This corresponds to a transition "
3817 "from LAUNCHING to the READY state)."
3818 msgstr ""
3819
3820 #. type: =item
3821 #: ../src/guestfs.pod:1732
3822 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3823 msgstr ""
3824
3825 # type: textblock
3826 #. type: textblock
3827 #: ../src/guestfs.pod:1735
3828 msgid ""
3829 "Some long-running operations can generate progress messages.  If this "
3830 "callback is registered, then it will be called each time a progress message "
3831 "is generated (usually two seconds after the operation started, and three "
3832 "times per second thereafter until it completes, although the frequency may "
3833 "change in future versions)."
3834 msgstr ""
3835
3836 #. type: textblock
3837 #: ../src/guestfs.pod:1741
3838 msgid ""
3839 "The callback receives in the payload four unsigned 64 bit numbers which are "
3840 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3841 msgstr ""
3842
3843 #. type: textblock
3844 #: ../src/guestfs.pod:1744
3845 msgid ""
3846 "The units of C<total> are not defined, although for some operations C<total> "
3847 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3848 "or megabytes), and C<position> may be the portion which has been transferred."
3849 msgstr ""
3850
3851 # type: textblock
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1749
3854 msgid "The only defined and stable parts of the API are:"
3855 msgstr ""
3856
3857 # type: textblock
3858 #. type: textblock
3859 #: ../src/guestfs.pod:1755
3860 msgid ""
3861 "The callback can display to the user some type of progress bar or indicator "
3862 "which shows the ratio of C<position>:C<total>."
3863 msgstr ""
3864
3865 # type: textblock
3866 #. type: textblock
3867 #: ../src/guestfs.pod:1760
3868 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3869 msgstr ""
3870
3871 #. type: textblock
3872 #: ../src/guestfs.pod:1764
3873 msgid ""
3874 "If any progress notification is sent during a call, then a final progress "
3875 "notification is always sent when C<position> = C<total> (I<unless> the call "
3876 "fails with an error)."
3877 msgstr ""
3878
3879 # type: textblock
3880 #. type: textblock
3881 #: ../src/guestfs.pod:1768
3882 msgid ""
3883 "This is to simplify caller code, so callers can easily set the progress "
3884 "indicator to \"100%\" at the end of the operation, without requiring special "
3885 "code to detect this case."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:1774
3890 msgid ""
3891 "For some calls we are unable to estimate the progress of the call, but we "
3892 "can still generate progress messages to indicate activity.  This is known as "
3893 "\"pulse mode\", and is directly supported by certain progress bar "
3894 "implementations (eg. GtkProgressBar)."
3895 msgstr ""
3896
3897 #. type: textblock
3898 #: ../src/guestfs.pod:1779
3899 msgid ""
3900 "For these calls, zero or more progress messages are generated with "
3901 "C<position = 0> and C<total = 1>, followed by a final message with "
3902 "C<position = total = 1>."
3903 msgstr ""
3904
3905 #. type: textblock
3906 #: ../src/guestfs.pod:1783
3907 msgid ""
3908 "As noted above, if the call fails with an error then the final message may "
3909 "not be generated."
3910 msgstr ""
3911
3912 #. type: textblock
3913 #: ../src/guestfs.pod:1788
3914 msgid ""
3915 "The callback also receives the procedure number (C<proc_nr>) and serial "
3916 "number (C<serial>) of the call.  These are only useful for debugging "
3917 "protocol issues, and the callback can normally ignore them.  The callback "
3918 "may want to print these numbers in error messages or debugging messages."
3919 msgstr ""
3920
3921 #. type: textblock
3922 #: ../src/guestfs.pod:1794
3923 msgid "If no callback is registered: progress messages are discarded."
3924 msgstr ""
3925
3926 #. type: =item
3927 #: ../src/guestfs.pod:1796
3928 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3929 msgstr ""
3930
3931 #. type: textblock
3932 #: ../src/guestfs.pod:1799
3933 msgid ""
3934 "The callback function is called whenever a log message is generated by qemu, "
3935 "the appliance kernel, guestfsd (daemon), or utility programs."
3936 msgstr ""
3937
3938 #. type: textblock
3939 #: ../src/guestfs.pod:1802
3940 msgid ""
3941 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3942 "guestfs_launch>) then additional debug messages are generated."
3943 msgstr ""
3944
3945 #. type: textblock
3946 #: ../src/guestfs.pod:1805 ../src/guestfs.pod:1819
3947 msgid ""
3948 "If no callback is registered: the messages are discarded unless the verbose "
3949 "flag is set in which case they are sent to stderr.  You can override the "
3950 "printing of verbose messages to stderr by setting up a callback."
3951 msgstr ""
3952
3953 #. type: =item
3954 #: ../src/guestfs.pod:1810
3955 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3956 msgstr ""
3957
3958 #. type: textblock
3959 #: ../src/guestfs.pod:1813
3960 msgid ""
3961 "The callback function is called whenever a log message is generated by the "
3962 "library part of libguestfs."
3963 msgstr ""
3964
3965 #. type: textblock
3966 #: ../src/guestfs.pod:1816
3967 msgid ""
3968 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3969 "messages are generated."
3970 msgstr ""
3971
3972 #. type: =item
3973 #: ../src/guestfs.pod:1824
3974 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3975 msgstr ""
3976
3977 #. type: textblock
3978 #: ../src/guestfs.pod:1827
3979 msgid ""
3980 "The callback function is called whenever a trace message is generated.  This "
3981 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3982 msgstr ""
3983
3984 #. type: textblock
3985 #: ../src/guestfs.pod:1830
3986 msgid ""
3987 "If no callback is registered: the messages are sent to stderr.  You can "
3988 "override the printing of trace messages to stderr by setting up a callback."
3989 msgstr ""
3990
3991 #. type: =head3
3992 #: ../src/guestfs.pod:1836
3993 msgid "guestfs_set_event_callback"
3994 msgstr ""
3995
3996 #. type: verbatim
3997 #: ../src/guestfs.pod:1838
3998 #, no-wrap
3999 msgid ""
4000 " int guestfs_set_event_callback (guestfs_h *g,\n"
4001 "                                 guestfs_event_callback cb,\n"
4002 "                                 uint64_t event_bitmask,\n"
4003 "                                 int flags,\n"
4004 "                                 void *opaque);\n"
4005 "\n"
4006 msgstr ""
4007
4008 #. type: textblock
4009 #: ../src/guestfs.pod:1844
4010 msgid ""
4011 "This function registers a callback (C<cb>) for all event classes in the "
4012 "C<event_bitmask>."
4013 msgstr ""
4014
4015 #. type: textblock
4016 #: ../src/guestfs.pod:1847
4017 msgid ""
4018 "For example, to register for all log message events, you could call this "
4019 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
4020 "To register a single callback for all possible classes of events, use "
4021 "C<GUESTFS_EVENT_ALL>."
4022 msgstr ""
4023
4024 #. type: textblock
4025 #: ../src/guestfs.pod:1853
4026 msgid "C<flags> should always be passed as 0."
4027 msgstr ""
4028
4029 #. type: textblock
4030 #: ../src/guestfs.pod:1855
4031 msgid ""
4032 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
4033 "it for any purpose."
4034 msgstr ""
4035
4036 #. type: textblock
4037 #: ../src/guestfs.pod:1858
4038 msgid ""
4039 "The return value is the event handle (an integer) which you can use to "
4040 "delete the callback (see below)."
4041 msgstr ""
4042
4043 #. type: textblock
4044 #: ../src/guestfs.pod:1861
4045 msgid ""
4046 "If there is an error, this function returns C<-1>, and sets the error in the "
4047 "handle in the usual way (see L</guestfs_last_error> etc.)"
4048 msgstr ""
4049
4050 #. type: textblock
4051 #: ../src/guestfs.pod:1864
4052 msgid ""
4053 "Callbacks remain in effect until they are deleted, or until the handle is "
4054 "closed."
4055 msgstr ""
4056
4057 #. type: textblock
4058 #: ../src/guestfs.pod:1867
4059 msgid ""
4060 "In the case where multiple callbacks are registered for a particular event "
4061 "class, all of the callbacks are called.  The order in which multiple "
4062 "callbacks are called is not defined."
4063 msgstr ""
4064
4065 #. type: =head3
4066 #: ../src/guestfs.pod:1871
4067 msgid "guestfs_delete_event_callback"
4068 msgstr ""
4069
4070 #. type: verbatim
4071 #: ../src/guestfs.pod:1873
4072 #, no-wrap
4073 msgid ""
4074 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
4075 "\n"
4076 msgstr ""
4077
4078 #. type: textblock
4079 #: ../src/guestfs.pod:1875
4080 msgid ""
4081 "Delete a callback that was previously registered.  C<event_handle> should be "
4082 "the integer that was returned by a previous call to "
4083 "C<guestfs_set_event_callback> on the same handle."
4084 msgstr ""
4085
4086 #. type: =head3
4087 #: ../src/guestfs.pod:1879
4088 msgid "guestfs_event_callback"
4089 msgstr ""
4090
4091 #. type: verbatim
4092 #: ../src/guestfs.pod:1881
4093 #, no-wrap
4094 msgid ""
4095 " typedef void (*guestfs_event_callback) (\n"
4096 "                  guestfs_h *g,\n"
4097 "                  void *opaque,\n"
4098 "                  uint64_t event,\n"
4099 "                  int event_handle,\n"
4100 "                  int flags,\n"
4101 "                  const char *buf, size_t buf_len,\n"
4102 "                  const uint64_t *array, size_t array_len);\n"
4103 "\n"
4104 msgstr ""
4105
4106 #. type: textblock
4107 #: ../src/guestfs.pod:1890
4108 msgid ""
4109 "This is the type of the event callback function that you have to provide."
4110 msgstr ""
4111
4112 #. type: textblock
4113 #: ../src/guestfs.pod:1893
4114 msgid ""
4115 "The basic parameters are: the handle (C<g>), the opaque user pointer "
4116 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
4117 "handle, and C<flags> which in the current API you should ignore."
4118 msgstr ""
4119
4120 #. type: textblock
4121 #: ../src/guestfs.pod:1897
4122 msgid ""
4123 "The remaining parameters contain the event payload (if any).  Each event may "
4124 "contain a payload, which usually relates to the event class, but for future "
4125 "proofing your code should be written to handle any payload for any event "
4126 "class."
4127 msgstr ""
4128
4129 #. type: textblock
4130 #: ../src/guestfs.pod:1902
4131 msgid ""
4132 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
4133 "there is no message buffer).  Note that this message buffer can contain "
4134 "arbitrary 8 bit data, including NUL bytes."
4135 msgstr ""
4136
4137 #. type: textblock
4138 #: ../src/guestfs.pod:1906
4139 msgid ""
4140 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
4141 "moment this is only used for progress messages."
4142 msgstr ""
4143
4144 #. type: =head3
4145 #: ../src/guestfs.pod:1909
4146 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
4147 msgstr ""
4148
4149 #. type: textblock
4150 #: ../src/guestfs.pod:1911
4151 msgid ""
4152 "One motivation for the generic event API was to allow GUI programs to "
4153 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
4154 "unconditionally to C<stderr>."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:1915
4159 msgid ""
4160 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
4161 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
4162 "messages are not events; you must capture error messages separately)."
4163 msgstr ""
4164
4165 #. type: textblock
4166 #: ../src/guestfs.pod:1920
4167 msgid ""
4168 "Programs have to set up a callback to capture the classes of events of "
4169 "interest:"
4170 msgstr ""
4171
4172 #. type: verbatim
4173 #: ../src/guestfs.pod:1923
4174 #, no-wrap
4175 msgid ""
4176 " int eh =\n"
4177 "   guestfs_set_event_callback\n"
4178 "     (g, message_callback,\n"
4179 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
4180 "      GUESTFS_EVENT_TRACE,\n"
4181 "      0, NULL) == -1)\n"
4182 " if (eh == -1) {\n"
4183 "   // handle error in the usual way\n"
4184 " }\n"
4185 "\n"
4186 msgstr ""
4187
4188 #. type: textblock
4189 #: ../src/guestfs.pod:1933
4190 msgid ""
4191 "The callback can then direct messages to the appropriate place.  In this "
4192 "example, messages are directed to syslog:"
4193 msgstr ""
4194
4195 #. type: verbatim
4196 #: ../src/guestfs.pod:1936
4197 #, no-wrap
4198 msgid ""
4199 " static void\n"
4200 " message_callback (\n"
4201 "         guestfs_h *g,\n"
4202 "         void *opaque,\n"
4203 "         uint64_t event,\n"
4204 "         int event_handle,\n"
4205 "         int flags,\n"
4206 "         const char *buf, size_t buf_len,\n"
4207 "         const uint64_t *array, size_t array_len)\n"
4208 " {\n"
4209 "   const int priority = LOG_USER|LOG_INFO;\n"
4210 "   if (buf_len > 0)\n"
4211 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
4212 " }\n"
4213 "\n"
4214 msgstr ""
4215
4216 # type: =head1
4217 #. type: =head1
4218 #: ../src/guestfs.pod:1951
4219 msgid "PRIVATE DATA AREA"
4220 msgstr ""
4221
4222 #. type: textblock
4223 #: ../src/guestfs.pod:1953
4224 msgid ""
4225 "You can attach named pieces of private data to the libguestfs handle, fetch "
4226 "them by name, and walk over them, for the lifetime of the handle.  This is "
4227 "called the private data area and is only available from the C API."
4228 msgstr ""
4229
4230 # type: textblock
4231 #. type: textblock
4232 #: ../src/guestfs.pod:1958
4233 msgid "To attach a named piece of data, use the following call:"
4234 msgstr ""
4235
4236 # type: verbatim
4237 #. type: verbatim
4238 #: ../src/guestfs.pod:1960
4239 #, no-wrap
4240 msgid ""
4241 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
4242 "\n"
4243 msgstr ""
4244
4245 #. type: textblock
4246 #: ../src/guestfs.pod:1962
4247 msgid ""
4248 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
4249 "pointer (which can be C<NULL>).  Any previous item with the same key is "
4250 "overwritten."
4251 msgstr ""
4252
4253 #. type: textblock
4254 #: ../src/guestfs.pod:1966
4255 msgid ""
4256 "You can use any C<key> you want, but your key should I<not> start with an "
4257 "underscore character.  Keys beginning with an underscore character are "
4258 "reserved for internal libguestfs purposes (eg. for implementing language "
4259 "bindings).  It is recommended that you prefix the key with some unique "
4260 "string to avoid collisions with other users."
4261 msgstr ""
4262
4263 # type: textblock
4264 #. type: textblock
4265 #: ../src/guestfs.pod:1972
4266 msgid "To retrieve the pointer, use:"
4267 msgstr ""
4268
4269 # type: verbatim
4270 #. type: verbatim
4271 #: ../src/guestfs.pod:1974
4272 #, no-wrap
4273 msgid ""
4274 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
4275 "\n"
4276 msgstr ""
4277
4278 # type: textblock
4279 #. type: textblock
4280 #: ../src/guestfs.pod:1976
4281 msgid ""
4282 "This function returns C<NULL> if either no data is found associated with "
4283 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
4284 "C<NULL>."
4285 msgstr ""
4286
4287 #. type: textblock
4288 #: ../src/guestfs.pod:1980
4289 msgid ""
4290 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4291 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
4292 "all.  In particular, libguestfs does I<not> try to free the data when the "
4293 "handle is closed.  If the data must be freed, then the caller must either "
4294 "free it before calling L</guestfs_close> or must set up a close callback to "
4295 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4296 msgstr ""
4297
4298 #. type: textblock
4299 #: ../src/guestfs.pod:1987
4300 msgid "To walk over all entries, use these two functions:"
4301 msgstr ""
4302
4303 #. type: verbatim
4304 #: ../src/guestfs.pod:1989
4305 #, no-wrap
4306 msgid ""
4307 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4308 "\n"
4309 msgstr ""
4310
4311 #. type: verbatim
4312 #: ../src/guestfs.pod:1991
4313 #, no-wrap
4314 msgid ""
4315 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4316 "\n"
4317 msgstr ""
4318
4319 #. type: textblock
4320 #: ../src/guestfs.pod:1993
4321 msgid ""
4322 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4323 "not have any particular meaning -- keys are not returned in any defined "
4324 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4325 "corresponding data pointer is returned from the function.  C<NULL> is "
4326 "returned if there are no keys stored in the handle."
4327 msgstr ""
4328
4329 #. type: textblock
4330 #: ../src/guestfs.pod:1999
4331 msgid ""
4332 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4333 "value of this function is also C<NULL> is there are no further entries to "
4334 "return."
4335 msgstr ""
4336
4337 #. type: textblock
4338 #: ../src/guestfs.pod:2003
4339 msgid "Notes about walking over entries:"
4340 msgstr ""
4341
4342 #. type: textblock
4343 #: ../src/guestfs.pod:2009
4344 msgid ""
4345 "You must not call C<guestfs_set_private> while walking over the entries."
4346 msgstr ""
4347
4348 #. type: textblock
4349 #: ../src/guestfs.pod:2014
4350 msgid ""
4351 "The handle maintains an internal iterator which is reset when you call "
4352 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4353 "call C<guestfs_set_private>."
4354 msgstr ""
4355
4356 #. type: textblock
4357 #: ../src/guestfs.pod:2020
4358 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4359 msgstr ""
4360
4361 #. type: verbatim
4362 #: ../src/guestfs.pod:2022
4363 #, no-wrap
4364 msgid ""
4365 " guestfs_set_private (g, key, NULL);\n"
4366 "\n"
4367 msgstr ""
4368
4369 #. type: textblock
4370 #: ../src/guestfs.pod:2024
4371 msgid "then that C<key> is not returned when walking."
4372 msgstr ""
4373
4374 #. type: textblock
4375 #: ../src/guestfs.pod:2028
4376 msgid ""
4377 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4378 "C<guestfs_next_private> or C<guestfs_set_private>."
4379 msgstr ""
4380
4381 #. type: textblock
4382 #: ../src/guestfs.pod:2034
4383 msgid ""
4384 "The following example code shows how to print all keys and data pointers "
4385 "that are associated with the handle C<g>:"
4386 msgstr ""
4387
4388 #. type: verbatim
4389 #: ../src/guestfs.pod:2037
4390 #, no-wrap
4391 msgid ""
4392 " const char *key;\n"
4393 " void *data = guestfs_first_private (g, &key);\n"
4394 " while (data != NULL)\n"
4395 "   {\n"
4396 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4397 "     data = guestfs_next_private (g, &key);\n"
4398 "   }\n"
4399 "\n"
4400 msgstr ""
4401
4402 #. type: textblock
4403 #: ../src/guestfs.pod:2045
4404 msgid ""
4405 "More commonly you are only interested in keys that begin with an application-"
4406 "specific prefix C<foo_>.  Modify the loop like so:"
4407 msgstr ""
4408
4409 #. type: verbatim
4410 #: ../src/guestfs.pod:2048
4411 #, no-wrap
4412 msgid ""
4413 " const char *key;\n"
4414 " void *data = guestfs_first_private (g, &key);\n"
4415 " while (data != NULL)\n"
4416 "   {\n"
4417 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4418 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4419 "     data = guestfs_next_private (g, &key);\n"
4420 "   }\n"
4421 "\n"
4422 msgstr ""
4423
4424 #. type: textblock
4425 #: ../src/guestfs.pod:2057
4426 msgid ""
4427 "If you need to modify keys while walking, then you have to jump back to the "
4428 "beginning of the loop.  For example, to delete all keys prefixed with "
4429 "C<foo_>:"
4430 msgstr ""
4431
4432 #. type: verbatim
4433 #: ../src/guestfs.pod:2061
4434 #, no-wrap
4435 msgid ""
4436 "  const char *key;\n"
4437 "  void *data;\n"
4438 " again:\n"
4439 "  data = guestfs_first_private (g, &key);\n"
4440 "  while (data != NULL)\n"
4441 "    {\n"
4442 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4443 "        {\n"
4444 "          guestfs_set_private (g, key, NULL);\n"
4445 "          /* note that 'key' pointer is now invalid, and so is\n"
4446 "             the internal iterator */\n"
4447 "          goto again;\n"
4448 "        }\n"
4449 "      data = guestfs_next_private (g, &key);\n"
4450 "    }\n"
4451 "\n"
4452 msgstr ""
4453
4454 #. type: textblock
4455 #: ../src/guestfs.pod:2077
4456 msgid ""
4457 "Note that the above loop is guaranteed to terminate because the keys are "
4458 "being deleted, but other manipulations of keys within the loop might not "
4459 "terminate unless you also maintain an indication of which keys have been "
4460 "visited."
4461 msgstr ""
4462
4463 # type: =end
4464 #. type: =end
4465 #: ../src/guestfs.pod:2082 ../src/guestfs.pod:2087
4466 msgid "html"
4467 msgstr ""
4468
4469 # type: textblock
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2084
4472 msgid ""
4473 "<!-- old anchor for the next section --> <a name="
4474 "\"state_machine_and_low_level_event_api\"/>"
4475 msgstr ""
4476
4477 # type: =head1
4478 #. type: =head1
4479 #: ../src/guestfs.pod:2089
4480 msgid "ARCHITECTURE"
4481 msgstr ""
4482
4483 # type: textblock
4484 #. type: textblock
4485 #: ../src/guestfs.pod:2091
4486 msgid ""
4487 "Internally, libguestfs is implemented by running an appliance (a special "
4488 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4489 "process of the main program."
4490 msgstr ""
4491
4492 # type: verbatim
4493 #. type: verbatim
4494 #: ../src/guestfs.pod:2095
4495 #, no-wrap
4496 msgid ""
4497 "  ___________________\n"
4498 " /                   \\\n"
4499 " | main program      |\n"
4500 " |                   |\n"
4501 " |                   |           child process / appliance\n"
4502 " |                   |           __________________________\n"
4503 " |                   |          / qemu                     \\\n"
4504 " +-------------------+   RPC    |      +-----------------+ |\n"
4505 " | libguestfs     <--------------------> guestfsd        | |\n"
4506 " |                   |          |      +-----------------+ |\n"
4507 " \\___________________/          |      | Linux kernel    | |\n"
4508 "                                |      +--^--------------+ |\n"
4509 "                                \\_________|________________/\n"
4510 "                                          |\n"
4511 "                                   _______v______\n"
4512 "                                  /              \\\n"
4513 "                                  | Device or    |\n"
4514 "                                  | disk image   |\n"
4515 "                                  \\______________/\n"
4516 "\n"
4517 msgstr ""
4518
4519 # type: textblock
4520 #. type: textblock
4521 #: ../src/guestfs.pod:2115
4522 msgid ""
4523 "The library, linked to the main program, creates the child process and hence "
4524 "the appliance in the L</guestfs_launch> function."
4525 msgstr ""
4526
4527 # type: textblock
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2118
4530 msgid ""
4531 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4532 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4533 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4534 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4535 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4536 "attached to the qemu process which translates device access by the "
4537 "appliance's Linux kernel into accesses to the image."
4538 msgstr ""
4539
4540 # type: textblock
4541 #. type: textblock
4542 #: ../src/guestfs.pod:2127
4543 msgid ""
4544 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4545 "Although the disk image you are attached to might also be used by some "
4546 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4547 "care if both libguestfs's qemu process and your virtual machine are trying "
4548 "to update the disk image at the same time, since these usually results in "
4549 "massive disk corruption)."
4550 msgstr ""
4551
4552 # type: =head1
4553 #. type: =head1
4554 #: ../src/guestfs.pod:2134
4555 msgid "STATE MACHINE"
4556 msgstr ""
4557
4558 # type: textblock
4559 #. type: textblock
4560 #: ../src/guestfs.pod:2136
4561 msgid "libguestfs uses a state machine to model the child process:"
4562 msgstr ""
4563
4564 # type: verbatim
4565 #. type: verbatim
4566 #: ../src/guestfs.pod:2138
4567 #, no-wrap
4568 msgid ""
4569 "                         |\n"
4570 "                    guestfs_create\n"
4571 "                         |\n"
4572 "                         |\n"
4573 "                     ____V_____\n"
4574 "                    /          \\\n"
4575 "                    |  CONFIG  |\n"
4576 "                    \\__________/\n"
4577 "                     ^ ^   ^  \\\n"
4578 "                    /  |    \\  \\ guestfs_launch\n"
4579 "                   /   |    _\\__V______\n"
4580 "                  /    |   /           \\\n"
4581 "                 /     |   | LAUNCHING |\n"
4582 "                /      |   \\___________/\n"
4583 "               /       |       /\n"
4584 "              /        |  guestfs_launch\n"
4585 "             /         |     /\n"
4586 "    ______  /        __|____V\n"
4587 "   /      \\ ------> /        \\\n"
4588 "   | BUSY |         | READY  |\n"
4589 "   \\______/ <------ \\________/\n"
4590 "\n"
4591 msgstr ""
4592
4593 # type: textblock
4594 #. type: textblock
4595 #: ../src/guestfs.pod:2160
4596 msgid ""
4597 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4598 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4599 "(3) alternating between READY and BUSY as commands are issued to, and "
4600 "carried out by, the child process."
4601 msgstr ""
4602
4603 # type: textblock
4604 #. type: textblock
4605 #: ../src/guestfs.pod:2165
4606 msgid ""
4607 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4608 "asynchronously at any time (eg. due to some internal error), and that causes "
4609 "the state to transition back to CONFIG."
4610 msgstr ""
4611
4612 # type: textblock
4613 #. type: textblock
4614 #: ../src/guestfs.pod:2169
4615 msgid ""
4616 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4617 "issued when in the CONFIG state."
4618 msgstr ""
4619
4620 # type: textblock
4621 #. type: textblock
4622 #: ../src/guestfs.pod:2172
4623 msgid ""
4624 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4625 "L</guestfs_launch> blocks until the child process is READY to accept "
4626 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4627 "moves the state from CONFIG to LAUNCHING while it is running."
4628 msgstr ""
4629
4630 # type: textblock
4631 #. type: textblock
4632 #: ../src/guestfs.pod:2178
4633 msgid ""
4634 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4635 "state.  These API calls block waiting for the command to be carried out (ie. "
4636 "the state to transition to BUSY and then back to READY).  There are no non-"
4637 "blocking versions, and no way to issue more than one command per handle at "
4638 "the same time."
4639 msgstr ""
4640
4641 # type: textblock
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2184
4644 msgid ""
4645 "Finally, the child process sends asynchronous messages back to the main "
4646 "program, such as kernel log messages.  You can register a callback to "
4647 "receive these messages."
4648 msgstr ""
4649
4650 # type: =head1
4651 #. type: =head1
4652 #: ../src/guestfs.pod:2188
4653 msgid "INTERNALS"
4654 msgstr ""
4655
4656 # type: =head2
4657 #. type: =head2
4658 #: ../src/guestfs.pod:2190
4659 msgid "COMMUNICATION PROTOCOL"
4660 msgstr ""
4661
4662 # type: textblock
4663 #. type: textblock
4664 #: ../src/guestfs.pod:2192
4665 msgid ""
4666 "Don't rely on using this protocol directly.  This section documents how it "
4667 "currently works, but it may change at any time."
4668 msgstr ""
4669
4670 # type: textblock
4671 #. type: textblock
4672 #: ../src/guestfs.pod:2195
4673 msgid ""
4674 "The protocol used to talk between the library and the daemon running inside "
4675 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4676 "1014, RFC 1832, RFC 4506)."
4677 msgstr ""
4678
4679 # type: textblock
4680 #. type: textblock
4681 #: ../src/guestfs.pod:2199
4682 msgid ""
4683 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4684 "this file is automatically generated)."
4685 msgstr ""
4686
4687 # type: textblock
4688 #. type: textblock
4689 #: ../src/guestfs.pod:2202
4690 msgid ""
4691 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4692 "and C<FileOut> parameters, which are handled with very simple request/reply "
4693 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4694 "parameters, which use the same request and reply messages, but they may also "
4695 "be followed by files sent using a chunked encoding."
4696 msgstr ""
4697
4698 # type: =head3
4699 #. type: =head3
4700 #: ../src/guestfs.pod:2209
4701 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4702 msgstr ""
4703
4704 # type: textblock
4705 #. type: textblock
4706 #: ../src/guestfs.pod:2211
4707 msgid "For ordinary functions, the request message is:"
4708 msgstr ""
4709
4710 # type: verbatim
4711 #. type: verbatim
4712 #: ../src/guestfs.pod:2213
4713 #, no-wrap
4714 msgid ""
4715 " total length (header + arguments,\n"
4716 "      but not including the length word itself)\n"
4717 " struct guestfs_message_header (encoded as XDR)\n"
4718 " struct guestfs_<foo>_args (encoded as XDR)\n"
4719 "\n"
4720 msgstr ""
4721
4722 # type: textblock
4723 #. type: textblock
4724 #: ../src/guestfs.pod:2218
4725 msgid ""
4726 "The total length field allows the daemon to allocate a fixed size buffer "
4727 "into which it slurps the rest of the message.  As a result, the total length "
4728 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4729 "effective size of any request is limited to somewhere under this size."
4730 msgstr ""
4731
4732 # type: textblock
4733 #. type: textblock
4734 #: ../src/guestfs.pod:2224
4735 msgid ""
4736 "Note also that many functions don't take any arguments, in which case the "
4737 "C<guestfs_I<foo>_args> is completely omitted."
4738 msgstr ""
4739
4740 # type: textblock
4741 #. type: textblock
4742 #: ../src/guestfs.pod:2227
4743 msgid ""
4744 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4745 "receiver knows what type of args structure to expect, or none at all."
4746 msgstr ""
4747
4748 # type: textblock
4749 #. type: textblock
4750 #: ../src/guestfs.pod:2231
4751 msgid ""
4752 "For functions that take optional arguments, the optional arguments are "
4753 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4754 "arguments.  A bitmask in the header indicates which optional arguments are "
4755 "meaningful.  The bitmask is also checked to see if it contains bits set "
4756 "which the daemon does not know about (eg. if more optional arguments were "
4757 "added in a later version of the library), and this causes the call to be "
4758 "rejected."
4759 msgstr ""
4760
4761 # type: textblock
4762 #. type: textblock
4763 #: ../src/guestfs.pod:2239
4764 msgid "The reply message for ordinary functions is:"
4765 msgstr ""
4766
4767 # type: verbatim
4768 #. type: verbatim
4769 #: ../src/guestfs.pod:2241
4770 #, no-wrap
4771 msgid ""
4772 " total length (header + ret,\n"
4773 "      but not including the length word itself)\n"
4774 " struct guestfs_message_header (encoded as XDR)\n"
4775 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4776 "\n"
4777 msgstr ""
4778
4779 # type: textblock
4780 #. type: textblock
4781 #: ../src/guestfs.pod:2246
4782 msgid ""
4783 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4784 "functions that return no formal return values."
4785 msgstr ""
4786
4787 # type: textblock
4788 #. type: textblock
4789 #: ../src/guestfs.pod:2249
4790 msgid ""
4791 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4792 msgstr ""
4793
4794 # type: textblock
4795 #. type: textblock
4796 #: ../src/guestfs.pod:2252
4797 msgid ""
4798 "In the case of an error, a flag is set in the header, and the reply message "
4799 "is slightly changed:"
4800 msgstr ""
4801
4802 # type: verbatim
4803 #. type: verbatim
4804 #: ../src/guestfs.pod:2255
4805 #, no-wrap
4806 msgid ""
4807 " total length (header + error,\n"
4808 "      but not including the length word itself)\n"
4809 " struct guestfs_message_header (encoded as XDR)\n"
4810 " struct guestfs_message_error (encoded as XDR)\n"
4811 "\n"
4812 msgstr ""
4813
4814 # type: textblock
4815 #. type: textblock
4816 #: ../src/guestfs.pod:2260
4817 msgid ""
4818 "The C<guestfs_message_error> structure contains the error message as a "
4819 "string."
4820 msgstr ""
4821
4822 # type: =head3
4823 #. type: =head3
4824 #: ../src/guestfs.pod:2263
4825 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4826 msgstr ""
4827
4828 # type: textblock
4829 #. type: textblock
4830 #: ../src/guestfs.pod:2265
4831 msgid ""
4832 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4833 "The normal request message is sent (see above).  However this is followed by "
4834 "a sequence of file chunks."
4835 msgstr ""
4836
4837 # type: verbatim
4838 #. type: verbatim
4839 #: ../src/guestfs.pod:2269
4840 #, no-wrap
4841 msgid ""
4842 " total length (header + arguments,\n"
4843 "      but not including the length word itself,\n"
4844 "      and not including the chunks)\n"
4845 " struct guestfs_message_header (encoded as XDR)\n"
4846 " struct guestfs_<foo>_args (encoded as XDR)\n"
4847 " sequence of chunks for FileIn param #0\n"
4848 " sequence of chunks for FileIn param #1 etc.\n"
4849 "\n"
4850 msgstr ""
4851
4852 # type: textblock
4853 #. type: textblock
4854 #: ../src/guestfs.pod:2277
4855 msgid "The \"sequence of chunks\" is:"
4856 msgstr ""
4857
4858 # type: verbatim
4859 #. type: verbatim
4860 #: ../src/guestfs.pod:2279
4861 #, no-wrap
4862 msgid ""
4863 " length of chunk (not including length word itself)\n"
4864 " struct guestfs_chunk (encoded as XDR)\n"
4865 " length of chunk\n"
4866 " struct guestfs_chunk (encoded as XDR)\n"
4867 "   ...\n"
4868 " length of chunk\n"
4869 " struct guestfs_chunk (with data.data_len == 0)\n"
4870 "\n"
4871 msgstr ""
4872
4873 # type: textblock
4874 #. type: textblock
4875 #: ../src/guestfs.pod:2287
4876 msgid ""
4877 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4878 "is set in the final chunk to indicate either successful completion or early "
4879 "cancellation."
4880 msgstr ""
4881
4882 # type: textblock
4883 #. type: textblock
4884 #: ../src/guestfs.pod:2291
4885 msgid ""
4886 "At time of writing there are no functions that have more than one FileIn "
4887 "parameter.  However this is (theoretically) supported, by sending the "
4888 "sequence of chunks for each FileIn parameter one after another (from left to "
4889 "right)."
4890 msgstr ""
4891
4892 # type: textblock
4893 #. type: textblock
4894 #: ../src/guestfs.pod:2296
4895 msgid ""
4896 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4897 "transfer.  The library does this by sending a chunk with a special flag set "
4898 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4899 "RPC, does I<not> send any reply, and goes back to reading the next request."
4900 msgstr ""
4901
4902 # type: textblock
4903 #. type: textblock
4904 #: ../src/guestfs.pod:2302
4905 msgid ""
4906 "The daemon may also cancel.  It does this by writing a special word "
4907 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4908 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4909 "cancel chunk).  The special word is chosen so that even if cancellation "
4910 "happens right at the end of the transfer (after the library has finished "
4911 "writing and has started listening for the reply), the \"spurious\" cancel "
4912 "flag will not be confused with the reply message."
4913 msgstr ""
4914
4915 # type: textblock
4916 #. type: textblock
4917 #: ../src/guestfs.pod:2311
4918 msgid ""
4919 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4920 "limit), and also files where the size is not known in advance (eg. from "
4921 "pipes or sockets).  However the chunks are rather small "
4922 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4923 "to keep much in memory."
4924 msgstr ""
4925
4926 # type: =head3
4927 #. type: =head3
4928 #: ../src/guestfs.pod:2317
4929 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4930 msgstr ""
4931
4932 # type: textblock
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2319
4935 msgid ""
4936 "The protocol for FileOut parameters is exactly the same as for FileIn "
4937 "parameters, but with the roles of daemon and library reversed."
4938 msgstr ""
4939
4940 # type: verbatim
4941 #. type: verbatim
4942 #: ../src/guestfs.pod:2322
4943 #, no-wrap
4944 msgid ""
4945 " total length (header + ret,\n"
4946 "      but not including the length word itself,\n"
4947 "      and not including the chunks)\n"
4948 " struct guestfs_message_header (encoded as XDR)\n"
4949 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4950 " sequence of chunks for FileOut param #0\n"
4951 " sequence of chunks for FileOut param #1 etc.\n"
4952 "\n"
4953 msgstr ""
4954
4955 # type: =head3
4956 #. type: =head3
4957 #: ../src/guestfs.pod:2330
4958 msgid "INITIAL MESSAGE"
4959 msgstr ""
4960
4961 # type: textblock
4962 #. type: textblock
4963 #: ../src/guestfs.pod:2332
4964 msgid ""
4965 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4966 "which indicates that the guest and daemon is alive.  This is what L</"
4967 "guestfs_launch> waits for."
4968 msgstr ""
4969
4970 # type: =head3
4971 #. type: =head3
4972 #: ../src/guestfs.pod:2336
4973 msgid "PROGRESS NOTIFICATION MESSAGES"
4974 msgstr ""
4975
4976 # type: textblock
4977 #. type: textblock
4978 #: ../src/guestfs.pod:2338
4979 msgid ""
4980 "The daemon may send progress notification messages at any time.  These are "
4981 "distinguished by the normal length word being replaced by "
4982 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4983 msgstr ""
4984
4985 #. type: textblock
4986 #: ../src/guestfs.pod:2342
4987 msgid ""
4988 "The library turns them into progress callbacks (see L</"
4989 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4990 "if not."
4991 msgstr ""
4992
4993 # type: textblock
4994 #. type: textblock
4995 #: ../src/guestfs.pod:2346
4996 msgid ""
4997 "The daemon self-limits the frequency of progress messages it sends (see "
4998 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4999 "messages."
5000 msgstr ""
5001
5002 # type: =head1
5003 #. type: =head1
5004 #: ../src/guestfs.pod:2350
5005 msgid "LIBGUESTFS VERSION NUMBERS"
5006 msgstr ""
5007
5008 # type: textblock
5009 #. type: textblock
5010 #: ../src/guestfs.pod:2352
5011 msgid ""
5012 "Since April 2010, libguestfs has started to make separate development and "
5013 "stable releases, along with corresponding branches in our git repository.  "
5014 "These separate releases can be identified by version number:"
5015 msgstr ""
5016
5017 # type: verbatim
5018 #. type: verbatim
5019 #: ../src/guestfs.pod:2357
5020 #, no-wrap
5021 msgid ""
5022 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
5023 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
5024 "       |\n"
5025 "       v\n"
5026 " 1  .  3  .  5\n"
5027 " ^           ^\n"
5028 " |           |\n"
5029 " |           `-------- sub-version\n"
5030 " |\n"
5031 " `------ always '1' because we don't change the ABI\n"
5032 "\n"
5033 msgstr ""
5034
5035 # type: textblock
5036 #. type: textblock
5037 #: ../src/guestfs.pod:2368
5038 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
5039 msgstr ""
5040
5041 # type: textblock
5042 #. type: textblock
5043 #: ../src/guestfs.pod:2370
5044 msgid ""
5045 "As time passes we cherry pick fixes from the development branch and backport "
5046 "those into the stable branch, the effect being that the stable branch should "
5047 "get more stable and less buggy over time.  So the stable releases are ideal "
5048 "for people who don't need new features but would just like the software to "
5049 "work."
5050 msgstr ""
5051
5052 # type: textblock
5053 #. type: textblock
5054 #: ../src/guestfs.pod:2376
5055 msgid "Our criteria for backporting changes are:"
5056 msgstr ""
5057
5058 # type: textblock
5059 #. type: textblock
5060 #: ../src/guestfs.pod:2382
5061 msgid ""
5062 "Documentation changes which don't affect any code are backported unless the "
5063 "documentation refers to a future feature which is not in stable."
5064 msgstr ""
5065
5066 # type: textblock
5067 #. type: textblock
5068 #: ../src/guestfs.pod:2388
5069 msgid ""
5070 "Bug fixes which are not controversial, fix obvious problems, and have been "
5071 "well tested are backported."
5072 msgstr ""
5073
5074 # type: textblock
5075 #. type: textblock
5076 #: ../src/guestfs.pod:2393
5077 msgid ""
5078 "Simple rearrangements of code which shouldn't affect how it works get "
5079 "backported.  This is so that the code in the two branches doesn't get too "
5080 "far out of step, allowing us to backport future fixes more easily."
5081 msgstr ""
5082
5083 # type: textblock
5084 #. type: textblock
5085 #: ../src/guestfs.pod:2399
5086 msgid ""
5087 "We I<don't> backport new features, new APIs, new tools etc, except in one "
5088 "exceptional case: the new feature is required in order to implement an "
5089 "important bug fix."
5090 msgstr ""
5091
5092 # type: textblock
5093 #. type: textblock
5094 #: ../src/guestfs.pod:2405
5095 msgid ""
5096 "A new stable branch starts when we think the new features in development are "
5097 "substantial and compelling enough over the current stable branch to warrant "
5098 "it.  When that happens we create new stable and development versions 1.N.0 "
5099 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
5100 "stable at this point, but by backporting fixes from development, that branch "
5101 "will stabilize over time."
5102 msgstr ""
5103
5104 #. type: =head1
5105 #: ../src/guestfs.pod:2413
5106 msgid "EXTENDING LIBGUESTFS"
5107 msgstr ""
5108
5109 #. type: =head2
5110 #: ../src/guestfs.pod:2415
5111 msgid "ADDING A NEW API ACTION"
5112 msgstr ""
5113
5114 #. type: textblock
5115 #: ../src/guestfs.pod:2417
5116 msgid ""
5117 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
5118 "documentation) are generated, and this makes it easy to extend the "
5119 "libguestfs API."
5120 msgstr ""
5121
5122 #. type: textblock
5123 #: ../src/guestfs.pod:2421
5124 msgid "To add a new API action there are two changes:"
5125 msgstr ""
5126
5127 #. type: textblock
5128 #: ../src/guestfs.pod:2427
5129 msgid ""
5130 "You need to add a description of the call (name, parameters, return type, "
5131 "tests, documentation) to C<generator/generator_actions.ml>."
5132 msgstr ""
5133
5134 #. type: textblock
5135 #: ../src/guestfs.pod:2430
5136 msgid ""
5137 "There are two sorts of API action, depending on whether the call goes "
5138 "through to the daemon in the appliance, or is serviced entirely by the "
5139 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
5140 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
5141 "an example of the latter, since a trace flag is maintained in the handle and "
5142 "all tracing is done on the library side."
5143 msgstr ""
5144
5145 #. type: textblock
5146 #: ../src/guestfs.pod:2438
5147 msgid ""
5148 "Most new actions are of the first type, and get added to the "
5149 "C<daemon_functions> list.  Each function has a unique procedure number used "
5150 "in the RPC protocol which is assigned to that action when we publish "
5151 "libguestfs and cannot be reused.  Take the latest procedure number and "
5152 "increment it."
5153 msgstr ""
5154
5155 #. type: textblock
5156 #: ../src/guestfs.pod:2444
5157 msgid ""
5158 "For library-only actions of the second type, add to the "
5159 "C<non_daemon_functions> list.  Since these functions are serviced by the "
5160 "library and do not travel over the RPC mechanism to the daemon, these "
5161 "functions do not need a procedure number, and so the procedure number is set "
5162 "to C<-1>."
5163 msgstr ""
5164
5165 #. type: textblock
5166 #: ../src/guestfs.pod:2452
5167 msgid "Implement the action (in C):"
5168 msgstr ""
5169
5170 #. type: textblock
5171 #: ../src/guestfs.pod:2454
5172 msgid ""
5173 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
5174 "C<daemon/> directory."
5175 msgstr ""
5176
5177 #. type: textblock
5178 #: ../src/guestfs.pod:2457
5179 msgid ""
5180 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
5181 "(note: double underscore) in the C<src/> directory."
5182 msgstr ""
5183
5184 #. type: textblock
5185 #: ../src/guestfs.pod:2460
5186 msgid "In either case, use another function as an example of what to do."
5187 msgstr ""
5188
5189 #. type: textblock
5190 #: ../src/guestfs.pod:2464
5191 msgid "After making these changes, use C<make> to compile."
5192 msgstr ""
5193
5194 #. type: textblock
5195 #: ../src/guestfs.pod:2466
5196 msgid ""
5197 "Note that you don't need to implement the RPC, language bindings, manual "
5198 "pages or anything else.  It's all automatically generated from the OCaml "
5199 "description."
5200 msgstr ""
5201
5202 #. type: =head2
5203 #: ../src/guestfs.pod:2470
5204 msgid "ADDING TESTS FOR AN API ACTION"
5205 msgstr ""
5206
5207 #. type: textblock
5208 #: ../src/guestfs.pod:2472
5209 msgid ""
5210 "You can supply zero or as many tests as you want per API call.  The tests "
5211 "can either be added as part of the API description (C<generator/"
5212 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
5213 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
5214 "slower, so if possible use the first method."
5215 msgstr ""
5216
5217 #. type: textblock
5218 #: ../src/guestfs.pod:2478
5219 msgid ""
5220 "The following describes the test environment used when you add an API test "
5221 "in C<generator_actions.ml>."
5222 msgstr ""
5223
5224 #. type: textblock
5225 #: ../src/guestfs.pod:2481
5226 msgid "The test environment has 4 block devices:"
5227 msgstr ""
5228
5229 #. type: =item
5230 #: ../src/guestfs.pod:2485
5231 msgid "C</dev/sda> 500MB"
5232 msgstr ""
5233
5234 #. type: textblock
5235 #: ../src/guestfs.pod:2487
5236 msgid "General block device for testing."
5237 msgstr ""
5238
5239 #. type: =item
5240 #: ../src/guestfs.pod:2489
5241 msgid "C</dev/sdb> 50MB"
5242 msgstr ""
5243
5244 #. type: textblock
5245 #: ../src/guestfs.pod:2491
5246 msgid ""
5247 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
5248 "operations."
5249 msgstr ""
5250
5251 #. type: =item
5252 #: ../src/guestfs.pod:2494
5253 msgid "C</dev/sdc> 10MB"
5254 msgstr ""
5255
5256 #. type: textblock
5257 #: ../src/guestfs.pod:2496
5258 msgid "Used in a few tests where two block devices are needed."
5259 msgstr ""
5260
5261 #. type: =item
5262 #: ../src/guestfs.pod:2498
5263 msgid "C</dev/sdd>"
5264 msgstr ""
5265
5266 #. type: textblock
5267 #: ../src/guestfs.pod:2500
5268 msgid "ISO with fixed content (see C<images/test.iso>)."
5269 msgstr ""
5270
5271 #. type: textblock
5272 #: ../src/guestfs.pod:2504
5273 msgid ""
5274 "To be able to run the tests in a reasonable amount of time, the libguestfs "
5275 "appliance and block devices are reused between tests.  So don't try testing "
5276 "L</guestfs_kill_subprocess> :-x"
5277 msgstr ""
5278
5279 #. type: textblock
5280 #: ../src/guestfs.pod:2508
5281 msgid ""
5282 "Each test starts with an initial scenario, selected using one of the "
5283 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
5284 "initialize the disks mentioned above in a particular way as documented in "
5285 "C<generator_types.ml>.  You should not assume anything about the previous "
5286 "contents of other disks that are not initialized."
5287 msgstr ""
5288
5289 #. type: textblock
5290 #: ../src/guestfs.pod:2514
5291 msgid ""
5292 "You can add a prerequisite clause to any individual test.  This is a run-"
5293 "time check, which, if it fails, causes the test to be skipped.  Useful if "
5294 "testing a command which might not work on all variations of libguestfs "
5295 "builds.  A test that has prerequisite of C<Always> means to run "
5296 "unconditionally."
5297 msgstr ""
5298
5299 #. type: textblock
5300 #: ../src/guestfs.pod:2520
5301 msgid ""
5302 "In addition, packagers can skip individual tests by setting environment "
5303 "variables before running C<make check>."
5304 msgstr ""
5305
5306 #. type: verbatim
5307 #: ../src/guestfs.pod:2523
5308 #, no-wrap
5309 msgid ""
5310 " SKIP_TEST_<CMD>_<NUM>=1\n"
5311 "\n"
5312 msgstr ""
5313
5314 #. type: textblock
5315 #: ../src/guestfs.pod:2525
5316 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
5317 msgstr ""
5318
5319 #. type: textblock
5320 #: ../src/guestfs.pod:2527
5321 msgid "or:"
5322 msgstr ""
5323
5324 #. type: verbatim
5325 #: ../src/guestfs.pod:2529
5326 #, no-wrap
5327 msgid ""
5328 " SKIP_TEST_<CMD>=1\n"
5329 "\n"
5330 msgstr ""
5331
5332 #. type: textblock
5333 #: ../src/guestfs.pod:2531
5334 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
5335 msgstr ""
5336
5337 #. type: textblock
5338 #: ../src/guestfs.pod:2533
5339 msgid "Packagers can run only certain tests by setting for example:"
5340 msgstr ""
5341
5342 #. type: verbatim
5343 #: ../src/guestfs.pod:2535
5344 #, no-wrap
5345 msgid ""
5346 " TEST_ONLY=\"vfs_type zerofree\"\n"
5347 "\n"
5348 msgstr ""
5349
5350 #. type: textblock
5351 #: ../src/guestfs.pod:2537
5352 msgid ""
5353 "See C<capitests/tests.c> for more details of how these environment variables "
5354 "work."
5355 msgstr ""
5356
5357 #. type: =head2
5358 #: ../src/guestfs.pod:2540
5359 msgid "DEBUGGING NEW API ACTIONS"
5360 msgstr ""
5361
5362 #. type: textblock
5363 #: ../src/guestfs.pod:2542
5364 msgid "Test new actions work before submitting them."
5365 msgstr ""
5366
5367 #. type: textblock
5368 #: ../src/guestfs.pod:2544
5369 msgid "You can use guestfish to try out new commands."
5370 msgstr ""
5371
5372 #. type: textblock
5373 #: ../src/guestfs.pod:2546
5374 msgid ""
5375 "Debugging the daemon is a problem because it runs inside a minimal "
5376 "environment.  However you can fprintf messages in the daemon to stderr, and "
5377 "they will show up if you use C<guestfish -v>."
5378 msgstr ""
5379
5380 #. type: =head2
5381 #: ../src/guestfs.pod:2550
5382 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5383 msgstr ""
5384
5385 #. type: textblock
5386 #: ../src/guestfs.pod:2552
5387 msgid ""
5388 "Our C source code generally adheres to some basic code-formatting "
5389 "conventions.  The existing code base is not totally consistent on this "
5390 "front, but we do prefer that contributed code be formatted similarly.  In "
5391 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5392 "indentation level, and other than that, follow the K&R style."
5393 msgstr ""
5394
5395 #. type: textblock
5396 #: ../src/guestfs.pod:2558
5397 msgid ""
5398 "If you use Emacs, add the following to one of one of your start-up files (e."
5399 "g., ~/.emacs), to help ensure that you get indentation right:"
5400 msgstr ""
5401
5402 #. type: verbatim
5403 #: ../src/guestfs.pod:2561
5404 #, no-wrap
5405 msgid ""
5406 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5407 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5408 " (add-hook 'find-file-hook\n"
5409 "     '(lambda () (if (and buffer-file-name\n"
5410 "                          (string-match \"/libguestfs\\\\>\"\n"
5411 "                              (buffer-file-name))\n"
5412 "                          (not (string-equal mode-name \"Change Log\"))\n"
5413 "                          (not (string-equal mode-name \"Makefile\")))\n"
5414 "                     (setq indent-tabs-mode nil))))\n"
5415 " \n"
5416 msgstr ""
5417
5418 #. type: verbatim
5419 #: ../src/guestfs.pod:2571
5420 #, no-wrap
5421 msgid ""
5422 " ;;; When editing C sources in libguestfs, use this style.\n"
5423 " (defun libguestfs-c-mode ()\n"
5424 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5425 "   (interactive)\n"
5426 "   (c-set-style \"K&R\")\n"
5427 "   (setq c-indent-level 2)\n"
5428 "   (setq c-basic-offset 2))\n"
5429 " (add-hook 'c-mode-hook\n"
5430 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5431 "                               (buffer-file-name))\n"
5432 "                           (libguestfs-c-mode))))\n"
5433 "\n"
5434 msgstr ""
5435
5436 #. type: textblock
5437 #: ../src/guestfs.pod:2583
5438 msgid "Enable warnings when compiling (and fix any problems this finds):"
5439 msgstr ""
5440
5441 #. type: verbatim
5442 #: ../src/guestfs.pod:2586
5443 #, no-wrap
5444 msgid ""
5445 " ./configure --enable-gcc-warnings\n"
5446 "\n"
5447 msgstr ""
5448
5449 #. type: textblock
5450 #: ../src/guestfs.pod:2588
5451 msgid "Useful targets are:"
5452 msgstr ""
5453
5454 #. type: verbatim
5455 #: ../src/guestfs.pod:2590
5456 #, no-wrap
5457 msgid ""
5458 " make syntax-check  # checks the syntax of the C code\n"
5459 " make check         # runs the test suite\n"
5460 "\n"
5461 msgstr ""
5462
5463 #. type: =head2
5464 #: ../src/guestfs.pod:2593
5465 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5466 msgstr ""
5467
5468 #. type: textblock
5469 #: ../src/guestfs.pod:2595
5470 msgid ""
5471 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5472 "which are used to do shell quoting."
5473 msgstr ""
5474
5475 #. type: =item
5476 #: ../src/guestfs.pod:2600
5477 msgid "%Q"
5478 msgstr ""
5479
5480 #. type: textblock
5481 #: ../src/guestfs.pod:2602
5482 msgid ""
5483 "Simple shell quoted string.  Any spaces or other shell characters are "
5484 "escaped for you."
5485 msgstr ""
5486
5487 #. type: =item
5488 #: ../src/guestfs.pod:2605
5489 msgid "%R"
5490 msgstr ""
5491
5492 #. type: textblock
5493 #: ../src/guestfs.pod:2607
5494 msgid ""
5495 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5496 "the sysroot."
5497 msgstr ""
5498
5499 # type: textblock
5500 #. type: textblock
5501 #: ../src/guestfs.pod:2612 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5502 msgid "For example:"
5503 msgstr ""
5504
5505 #. type: verbatim
5506 #: ../src/guestfs.pod:2614
5507 #, no-wrap
5508 msgid ""
5509 " asprintf (&cmd, \"cat %R\", path);\n"
5510 "\n"
5511 msgstr ""
5512
5513 #. type: textblock
5514 #: ../src/guestfs.pod:2616
5515 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5516 msgstr ""
5517
5518 #. type: textblock
5519 #: ../src/guestfs.pod:2618
5520 msgid ""
5521 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5522 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5523 "they are not passed via the shell (instead, straight to exec).  You probably "
5524 "want to use the C<sysroot_path()> function however."
5525 msgstr ""
5526
5527 #. type: =head2
5528 #: ../src/guestfs.pod:2624
5529 msgid "SUBMITTING YOUR NEW API ACTIONS"
5530 msgstr ""
5531
5532 #. type: textblock
5533 #: ../src/guestfs.pod:2626
5534 msgid ""
5535 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5536 "libguestfs> and CC to L<rjones@redhat.com>."
5537 msgstr ""
5538
5539 #. type: =head2
5540 #: ../src/guestfs.pod:2630
5541 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5542 msgstr ""
5543
5544 #. type: textblock
5545 #: ../src/guestfs.pod:2632
5546 msgid "We support i18n (gettext anyhow) in the library."
5547 msgstr ""
5548
5549 #. type: textblock
5550 #: ../src/guestfs.pod:2634
5551 msgid ""
5552 "However many messages come from the daemon, and we don't translate those at "
5553 "the moment.  One reason is that the appliance generally has all locale files "
5554 "removed from it, because they take up a lot of space.  So we'd have to readd "
5555 "some of those, as well as copying our PO files into the appliance."
5556 msgstr ""
5557
5558 #. type: textblock
5559 #: ../src/guestfs.pod:2640
5560 msgid ""
5561 "Debugging messages are never translated, since they are intended for the "
5562 "programmers."
5563 msgstr ""
5564
5565 #. type: =head2
5566 #: ../src/guestfs.pod:2643
5567 msgid "SOURCE CODE SUBDIRECTORIES"
5568 msgstr ""
5569
5570 #. type: =item
5571 #: ../src/guestfs.pod:2647 ../src/guestfs-actions.pod:5818
5572 #: ../fish/guestfish-actions.pod:3912
5573 msgid "C<appliance>"
5574 msgstr ""
5575
5576 #. type: textblock
5577 #: ../src/guestfs.pod:2649
5578 msgid "The libguestfs appliance, build scripts and so on."
5579 msgstr ""
5580
5581 #. type: =item
5582 #: ../src/guestfs.pod:2651
5583 msgid "C<capitests>"
5584 msgstr ""
5585
5586 #. type: textblock
5587 #: ../src/guestfs.pod:2653
5588 msgid "Automated tests of the C API."
5589 msgstr ""
5590
5591 #. type: =item
5592 #: ../src/guestfs.pod:2655
5593 msgid "C<cat>"
5594 msgstr ""
5595
5596 #. type: textblock
5597 #: ../src/guestfs.pod:2657
5598 msgid ""
5599 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5600 "documentation."
5601 msgstr ""
5602
5603 #. type: =item
5604 #: ../src/guestfs.pod:2660
5605 msgid "C<contrib>"
5606 msgstr ""
5607
5608 #. type: textblock
5609 #: ../src/guestfs.pod:2662
5610 msgid "Outside contributions, experimental parts."
5611 msgstr ""
5612
5613 #. type: =item
5614 #: ../src/guestfs.pod:2664
5615 msgid "C<daemon>"
5616 msgstr ""
5617
5618 #. type: textblock
5619 #: ../src/guestfs.pod:2666
5620 msgid ""
5621 "The daemon that runs inside the libguestfs appliance and carries out actions."
5622 msgstr ""
5623
5624 #. type: =item
5625 #: ../src/guestfs.pod:2669
5626 msgid "C<df>"
5627 msgstr ""
5628
5629 #. type: textblock
5630 #: ../src/guestfs.pod:2671
5631 msgid "L<virt-df(1)> command and documentation."
5632 msgstr ""
5633
5634 #. type: =item
5635 #: ../src/guestfs.pod:2673
5636 msgid "C<examples>"
5637 msgstr ""
5638
5639 #. type: textblock
5640 #: ../src/guestfs.pod:2675
5641 msgid "C API example code."
5642 msgstr ""
5643
5644 #. type: =item
5645 #: ../src/guestfs.pod:2677
5646 msgid "C<fish>"
5647 msgstr ""
5648
5649 #. type: textblock
5650 #: ../src/guestfs.pod:2679
5651 msgid ""
5652 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5653 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5654 "L<virt-tar-out(1)>."
5655 msgstr ""
5656
5657 #. type: =item
5658 #: ../src/guestfs.pod:2683
5659 msgid "C<fuse>"
5660 msgstr ""
5661
5662 #. type: textblock
5663 #: ../src/guestfs.pod:2685
5664 msgid ""
5665 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5666 msgstr ""
5667
5668 #. type: =item
5669 #: ../src/guestfs.pod:2687
5670 msgid "C<generator>"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2689
5675 msgid ""
5676 "The crucially important generator, used to automatically generate large "
5677 "amounts of boilerplate C code for things like RPC and bindings."
5678 msgstr ""
5679
5680 #. type: =item
5681 #: ../src/guestfs.pod:2692
5682 msgid "C<images>"
5683 msgstr ""
5684
5685 #. type: textblock
5686 #: ../src/guestfs.pod:2694
5687 msgid "Files used by the test suite."
5688 msgstr ""
5689
5690 #. type: textblock
5691 #: ../src/guestfs.pod:2696
5692 msgid "Some \"phony\" guest images which we test against."
5693 msgstr ""
5694
5695 #. type: =item
5696 #: ../src/guestfs.pod:2698
5697 msgid "C<inspector>"
5698 msgstr ""
5699
5700 #. type: textblock
5701 #: ../src/guestfs.pod:2700
5702 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5703 msgstr ""
5704
5705 #. type: =item
5706 #: ../src/guestfs.pod:2702
5707 msgid "C<logo>"
5708 msgstr ""
5709
5710 #. type: textblock
5711 #: ../src/guestfs.pod:2704
5712 msgid "Logo used on the website.  The fish is called Arthur by the way."
5713 msgstr ""
5714
5715 #. type: =item
5716 #: ../src/guestfs.pod:2706
5717 msgid "C<m4>"
5718 msgstr ""
5719
5720 #. type: textblock
5721 #: ../src/guestfs.pod:2708
5722 msgid "M4 macros used by autoconf."
5723 msgstr ""
5724
5725 #. type: =item
5726 #: ../src/guestfs.pod:2710
5727 msgid "C<po>"
5728 msgstr ""
5729
5730 #. type: textblock
5731 #: ../src/guestfs.pod:2712
5732 msgid "Translations of simple gettext strings."
5733 msgstr ""
5734
5735 #. type: =item
5736 #: ../src/guestfs.pod:2714
5737 msgid "C<po-docs>"
5738 msgstr ""
5739
5740 #. type: textblock
5741 #: ../src/guestfs.pod:2716
5742 msgid ""
5743 "The build infrastructure and PO files for translations of manpages and POD "
5744 "files.  Eventually this will be combined with the C<po> directory, but that "
5745 "is rather complicated."
5746 msgstr ""
5747
5748 #. type: =item
5749 #: ../src/guestfs.pod:2720
5750 msgid "C<regressions>"
5751 msgstr ""
5752
5753 #. type: textblock
5754 #: ../src/guestfs.pod:2722
5755 msgid "Regression tests."
5756 msgstr ""
5757
5758 #. type: =item
5759 #: ../src/guestfs.pod:2724
5760 msgid "C<rescue>"
5761 msgstr ""
5762
5763 #. type: textblock
5764 #: ../src/guestfs.pod:2726
5765 msgid "L<virt-rescue(1)> command and documentation."
5766 msgstr ""
5767
5768 #. type: =item
5769 #: ../src/guestfs.pod:2728
5770 msgid "C<src>"
5771 msgstr ""
5772
5773 #. type: textblock
5774 #: ../src/guestfs.pod:2730
5775 msgid "Source code to the C library."
5776 msgstr ""
5777
5778 #. type: =item
5779 #: ../src/guestfs.pod:2732
5780 msgid "C<tools>"
5781 msgstr ""
5782
5783 #. type: textblock
5784 #: ../src/guestfs.pod:2734
5785 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5786 msgstr ""
5787
5788 #. type: =item
5789 #: ../src/guestfs.pod:2736
5790 msgid "C<test-tool>"
5791 msgstr ""
5792
5793 #. type: textblock
5794 #: ../src/guestfs.pod:2738
5795 msgid ""
5796 "Test tool for end users to test if their qemu/kernel combination will work "
5797 "with libguestfs."
5798 msgstr ""
5799
5800 #. type: =item
5801 #: ../src/guestfs.pod:2741
5802 msgid "C<csharp>"
5803 msgstr ""
5804
5805 #. type: =item
5806 #: ../src/guestfs.pod:2743
5807 msgid "C<haskell>"
5808 msgstr ""
5809
5810 #. type: =item
5811 #: ../src/guestfs.pod:2745
5812 msgid "C<java>"
5813 msgstr ""
5814
5815 #. type: =item
5816 #: ../src/guestfs.pod:2747
5817 msgid "C<ocaml>"
5818 msgstr ""
5819
5820 #. type: =item
5821 #: ../src/guestfs.pod:2749
5822 msgid "C<php>"
5823 msgstr ""
5824
5825 #. type: =item
5826 #: ../src/guestfs.pod:2751
5827 msgid "C<perl>"
5828 msgstr ""
5829
5830 #. type: =item
5831 #: ../src/guestfs.pod:2753
5832 msgid "C<python>"
5833 msgstr ""
5834
5835 #. type: =item
5836 #: ../src/guestfs.pod:2755
5837 msgid "C<ruby>"
5838 msgstr ""
5839
5840 #. type: textblock
5841 #: ../src/guestfs.pod:2757
5842 msgid "Language bindings."
5843 msgstr ""
5844
5845 #. type: =head1
5846 #: ../src/guestfs.pod:2761
5847 msgid "LIMITS"
5848 msgstr ""
5849
5850 # type: =head2
5851 #. type: =head2
5852 #: ../src/guestfs.pod:2763
5853 msgid "PROTOCOL LIMITS"
5854 msgstr ""
5855
5856 # type: textblock
5857 #. type: textblock
5858 #: ../src/guestfs.pod:2765
5859 msgid ""
5860 "Internally libguestfs uses a message-based protocol to pass API calls and "
5861 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5862 "plenty more detail about this).  The maximum message size used by the "
5863 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5864 "aware of this limit.  The API calls which may be affected are individually "
5865 "documented, with a link back to this section of the documentation."
5866 msgstr ""
5867
5868 # type: textblock
5869 #. type: textblock
5870 #: ../src/guestfs.pod:2773
5871 msgid ""
5872 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5873 "a simple string.  Because this string is at some point internally encoded as "
5874 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5875 "the requested file is larger than this then you will get an error."
5876 msgstr ""
5877
5878 # type: textblock
5879 #. type: textblock
5880 #: ../src/guestfs.pod:2779
5881 msgid ""
5882 "In order to transfer large files into and out of the guest filesystem, you "
5883 "need to use particular calls that support this.  The sections L</UPLOADING> "
5884 "and L</DOWNLOADING> document how to do this."
5885 msgstr ""
5886
5887 # type: textblock
5888 #. type: textblock
5889 #: ../src/guestfs.pod:2783
5890 msgid ""
5891 "You might also consider mounting the disk image using our FUSE filesystem "
5892 "support (L<guestmount(1)>)."
5893 msgstr ""
5894
5895 #. type: =head2
5896 #: ../src/guestfs.pod:2786
5897 msgid "MAXIMUM NUMBER OF DISKS"
5898 msgstr ""
5899
5900 #. type: textblock
5901 #: ../src/guestfs.pod:2788
5902 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5903 msgstr ""
5904
5905 #. type: textblock
5906 #: ../src/guestfs.pod:2791
5907 msgid ""
5908 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5909 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5910 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5911 "purposes."
5912 msgstr ""
5913
5914 #. type: textblock
5915 #: ../src/guestfs.pod:2796
5916 msgid ""
5917 "We are working to substantially raise this limit in future versions but it "
5918 "requires complex changes to qemu."
5919 msgstr ""
5920
5921 #. type: textblock
5922 #: ../src/guestfs.pod:2799
5923 msgid ""
5924 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5925 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5926 "requires changes to qemu."
5927 msgstr ""
5928
5929 #. type: =head2
5930 #: ../src/guestfs.pod:2803
5931 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5932 msgstr ""
5933
5934 #. type: textblock
5935 #: ../src/guestfs.pod:2805
5936 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5937 msgstr ""
5938
5939 #. type: textblock
5940 #: ../src/guestfs.pod:2807
5941 msgid ""
5942 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5943 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5944 msgstr ""
5945
5946 #. type: textblock
5947 #: ../src/guestfs.pod:2810
5948 msgid ""
5949 "If you attach a disk with more than 15 partitions, the extra partitions are "
5950 "ignored by libguestfs."
5951 msgstr ""
5952
5953 #. type: =head2
5954 #: ../src/guestfs.pod:2813
5955 msgid "MAXIMUM SIZE OF A DISK"
5956 msgstr ""
5957
5958 #. type: textblock
5959 #: ../src/guestfs.pod:2815
5960 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5961 msgstr ""
5962
5963 #. type: textblock
5964 #: ../src/guestfs.pod:2817
5965 msgid ""
5966 "We have tested block devices up to 1 exabyte (2**60 or "
5967 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5968 "filesystem."
5969 msgstr ""
5970
5971 #. type: textblock
5972 #: ../src/guestfs.pod:2821
5973 msgid ""
5974 "Although libguestfs probably does not impose any limit, the underlying host "
5975 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5976 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5977 "TB).  If you store disk images as host logical volumes then you are limited "
5978 "by the maximum size of an LV."
5979 msgstr ""
5980
5981 #. type: textblock
5982 #: ../src/guestfs.pod:2827
5983 msgid ""
5984 "For the hugest disk image files, we recommend using XFS on the host for "
5985 "storage."
5986 msgstr ""
5987
5988 #. type: =head2
5989 #: ../src/guestfs.pod:2830
5990 msgid "MAXIMUM SIZE OF A PARTITION"
5991 msgstr ""
5992
5993 #. type: textblock
5994 #: ../src/guestfs.pod:2832
5995 msgid ""
5996 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5997 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5998 "address a partition located beyond 2 TB on the disk."
5999 msgstr ""
6000
6001 #. type: textblock
6002 #: ../src/guestfs.pod:2836
6003 msgid ""
6004 "It is recommended that you use GPT partitions on disks which are larger than "
6005 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
6006 "which are theoretically larger than the largest disk we could support."
6007 msgstr ""
6008
6009 #. type: =head2
6010 #: ../src/guestfs.pod:2841
6011 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
6012 msgstr ""
6013
6014 #. type: textblock
6015 #: ../src/guestfs.pod:2843
6016 msgid ""
6017 "This depends on the filesystem type.  libguestfs itself does not impose any "
6018 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
6019 "what these limits are."
6020 msgstr ""
6021
6022 #. type: =head2
6023 #: ../src/guestfs.pod:2847
6024 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
6025 msgstr ""
6026
6027 #. type: textblock
6028 #: ../src/guestfs.pod:2849
6029 msgid ""
6030 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
6031 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
6032 "uploads and downloads."
6033 msgstr ""
6034
6035 #. type: =head2
6036 #: ../src/guestfs.pod:2853
6037 msgid "INSPECTION LIMITS"
6038 msgstr ""
6039
6040 #. type: textblock
6041 #: ../src/guestfs.pod:2855
6042 msgid ""
6043 "The inspection code has several arbitrary limits on things like the size of "
6044 "Windows Registry hive it will read, and the length of product name.  These "
6045 "are intended to stop a malicious guest from consuming arbitrary amounts of "
6046 "memory and disk space on the host, and should not be reached in practice.  "
6047 "See the source code for more information."
6048 msgstr ""
6049
6050 # type: =head1
6051 #. type: =head1
6052 #: ../src/guestfs.pod:2861 ../fish/guestfish.pod:1015
6053 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
6054 msgid "ENVIRONMENT VARIABLES"
6055 msgstr ""
6056
6057 # type: =item
6058 #. type: =item
6059 #: ../src/guestfs.pod:2865 ../fish/guestfish.pod:1041
6060 msgid "LIBGUESTFS_APPEND"
6061 msgstr ""
6062
6063 # type: textblock
6064 #. type: textblock
6065 #: ../src/guestfs.pod:2867 ../fish/guestfish.pod:1043
6066 msgid "Pass additional options to the guest kernel."
6067 msgstr ""
6068
6069 # type: =item
6070 #. type: =item
6071 #: ../src/guestfs.pod:2869 ../fish/guestfish.pod:1045
6072 msgid "LIBGUESTFS_DEBUG"
6073 msgstr ""
6074
6075 # type: textblock
6076 #. type: textblock
6077 #: ../src/guestfs.pod:2871
6078 msgid ""
6079 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
6080 "effect as calling C<guestfs_set_verbose (g, 1)>."
6081 msgstr ""
6082
6083 # type: =item
6084 #. type: =item
6085 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1050
6086 msgid "LIBGUESTFS_MEMSIZE"
6087 msgstr ""
6088
6089 # type: textblock
6090 #. type: textblock
6091 #: ../src/guestfs.pod:2876 ../fish/guestfish.pod:1052
6092 msgid ""
6093 "Set the memory allocated to the qemu process, in megabytes.  For example:"
6094 msgstr ""
6095
6096 # type: verbatim
6097 #. type: verbatim
6098 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1055
6099 #, no-wrap
6100 msgid ""
6101 " LIBGUESTFS_MEMSIZE=700\n"
6102 "\n"
6103 msgstr ""
6104
6105 # type: =item
6106 #. type: =item
6107 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1057
6108 msgid "LIBGUESTFS_PATH"
6109 msgstr ""
6110
6111 #. type: textblock
6112 #: ../src/guestfs.pod:2883
6113 msgid ""
6114 "Set the path that libguestfs uses to search for a supermin appliance.  See "
6115 "the discussion of paths in section L</PATH> above."
6116 msgstr ""
6117
6118 # type: =item
6119 #. type: =item
6120 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1062
6121 msgid "LIBGUESTFS_QEMU"
6122 msgstr ""
6123
6124 # type: textblock
6125 #. type: textblock
6126 #: ../src/guestfs.pod:2888 ../fish/guestfish.pod:1064
6127 msgid ""
6128 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
6129 "which was found at compile time by the configure script is used."
6130 msgstr ""
6131
6132 # type: textblock
6133 #. type: textblock
6134 #: ../src/guestfs.pod:2892
6135 msgid "See also L</QEMU WRAPPERS> above."
6136 msgstr ""
6137
6138 # type: =item
6139 #. type: =item
6140 #: ../src/guestfs.pod:2894 ../fish/guestfish.pod:1068
6141 msgid "LIBGUESTFS_TRACE"
6142 msgstr ""
6143
6144 # type: textblock
6145 #. type: textblock
6146 #: ../src/guestfs.pod:2896
6147 msgid ""
6148 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
6149 "effect as calling C<guestfs_set_trace (g, 1)>."
6150 msgstr ""
6151
6152 # type: =item
6153 #. type: =item
6154 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1077
6155 msgid "TMPDIR"
6156 msgstr ""
6157
6158 #. type: textblock
6159 #: ../src/guestfs.pod:2901 ../fish/guestfish.pod:1079
6160 msgid ""
6161 "Location of temporary directory, defaults to C</tmp> except for the cached "
6162 "supermin appliance which defaults to C</var/tmp>."
6163 msgstr ""
6164
6165 #. type: textblock
6166 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1082
6167 msgid ""
6168 "If libguestfs was compiled to use the supermin appliance then the real "
6169 "appliance is cached in this directory, shared between all handles belonging "
6170 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
6171 "use in case C</var/tmp> is not large enough."
6172 msgstr ""
6173
6174 # type: =head1
6175 #. type: =head1
6176 #: ../src/guestfs.pod:2912 ../fish/guestfish.pod:1149
6177 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:277
6178 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
6179 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
6180 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
6181 msgid "SEE ALSO"
6182 msgstr ""
6183
6184 #. type: textblock
6185 #: ../src/guestfs.pod:2914
6186 msgid ""
6187 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
6188 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
6189 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
6190 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
6191 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
6192 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
6193 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
6194 msgstr ""
6195
6196 # type: textblock
6197 #. type: textblock
6198 #: ../src/guestfs.pod:2941
6199 msgid ""
6200 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
6201 "(8)>, L<disktype(1)>."
6202 msgstr ""
6203
6204 # type: =head1
6205 #. type: =head1
6206 #: ../src/guestfs.pod:2948 ../tools/virt-win-reg.pl:587
6207 #: ../tools/virt-make-fs.pl:553
6208 msgid "BUGS"
6209 msgstr ""
6210
6211 # type: textblock
6212 #. type: textblock
6213 #: ../src/guestfs.pod:2950
6214 msgid "To get a list of bugs against libguestfs use this link:"
6215 msgstr ""
6216
6217 # type: textblock
6218 #. type: textblock
6219 #: ../src/guestfs.pod:2952
6220 msgid ""
6221 "L<https://bugzilla.redhat.com/buglist.cgi?"
6222 "component=libguestfs&product=Virtualization+Tools>"
6223 msgstr ""
6224
6225 # type: textblock
6226 #. type: textblock
6227 #: ../src/guestfs.pod:2954
6228 msgid "To report a new bug against libguestfs use this link:"
6229 msgstr ""
6230
6231 # type: textblock
6232 #. type: textblock
6233 #: ../src/guestfs.pod:2956
6234 msgid ""
6235 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
6236 "component=libguestfs&product=Virtualization+Tools>"
6237 msgstr ""
6238
6239 # type: textblock
6240 #. type: textblock
6241 #: ../src/guestfs.pod:2958
6242 msgid "When reporting a bug, please check:"
6243 msgstr ""
6244
6245 # type: textblock
6246 #. type: textblock
6247 #: ../src/guestfs.pod:2964
6248 msgid "That the bug hasn't been reported already."
6249 msgstr ""
6250
6251 # type: textblock
6252 #. type: textblock
6253 #: ../src/guestfs.pod:2968
6254 msgid "That you are testing a recent version."
6255 msgstr ""
6256
6257 # type: textblock
6258 #. type: textblock
6259 #: ../src/guestfs.pod:2972
6260 msgid "Describe the bug accurately, and give a way to reproduce it."
6261 msgstr ""
6262
6263 # type: textblock
6264 #. type: textblock
6265 #: ../src/guestfs.pod:2976
6266 msgid ""
6267 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
6268 "bug report."
6269 msgstr ""
6270
6271 # type: =head1
6272 #. type: =head1
6273 #: ../src/guestfs.pod:2981 ../fish/guestfish.pod:1172
6274 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
6275 msgid "AUTHORS"
6276 msgstr ""
6277
6278 # type: textblock
6279 #. type: textblock
6280 #: ../src/guestfs.pod:2983 ../fish/guestfish.pod:1174
6281 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
6282 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6283 msgstr ""
6284
6285 # type: =head1
6286 #. type: =head1
6287 #: ../src/guestfs.pod:2985 ../fish/guestfish.pod:1176
6288 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
6289 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6290 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6291 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6292 msgid "COPYRIGHT"
6293 msgstr ""
6294
6295 #. type: textblock
6296 #: ../src/guestfs.pod:2987 ../fish/guestfish.pod:1178
6297 #: ../test-tool/libguestfs-test-tool.pod:99
6298 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
6299 msgstr ""
6300
6301 # type: textblock
6302 #. type: textblock
6303 #: ../src/guestfs.pod:2990
6304 msgid ""
6305 "This library is free software; you can redistribute it and/or modify it "
6306 "under the terms of the GNU Lesser General Public License as published by the "
6307 "Free Software Foundation; either version 2 of the License, or (at your "
6308 "option) any later version."
6309 msgstr ""
6310
6311 # type: textblock
6312 #. type: textblock
6313 #: ../src/guestfs.pod:2995
6314 msgid ""
6315 "This library is distributed in the hope that it will be useful, but WITHOUT "
6316 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
6317 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
6318 "for more details."
6319 msgstr ""
6320
6321 # type: textblock
6322 #. type: textblock
6323 #: ../src/guestfs.pod:3000
6324 msgid ""
6325 "You should have received a copy of the GNU Lesser General Public License "
6326 "along with this library; if not, write to the Free Software Foundation, "
6327 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
6328 msgstr ""
6329
6330 # type: =head2
6331 #. type: =head2
6332 #: ../src/guestfs-actions.pod:1
6333 msgid "guestfs_add_cdrom"
6334 msgstr ""
6335
6336 # type: verbatim
6337 #. type: verbatim
6338 #: ../src/guestfs-actions.pod:3
6339 #, no-wrap
6340 msgid ""
6341 " int\n"
6342 " guestfs_add_cdrom (guestfs_h *g,\n"
6343 "                    const char *filename);\n"
6344 "\n"
6345 msgstr ""
6346
6347 # type: textblock
6348 #. type: textblock
6349 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
6350 msgid "This function adds a virtual CD-ROM disk image to the guest."
6351 msgstr ""
6352
6353 #. type: textblock
6354 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
6355 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
6356 msgstr ""
6357
6358 # type: textblock
6359 #. type: textblock
6360 #: ../src/guestfs-actions.pod:17
6361 msgid ""
6362 "This call checks for the existence of C<filename>.  This stops you from "
6363 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6364 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
6365 "instead."
6366 msgstr ""
6367
6368 # type: textblock
6369 #. type: textblock
6370 #: ../src/guestfs-actions.pod:24
6371 msgid ""
6372 "If you just want to add an ISO file (often you use this as an efficient way "
6373 "to transfer large files into the guest), then you should probably use "
6374 "C<guestfs_add_drive_ro> instead."
6375 msgstr ""
6376
6377 # type: textblock
6378 #. type: textblock
6379 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
6380 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
6381 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
6382 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
6383 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
6384 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
6385 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
6386 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
6387 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
6388 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
6389 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
6390 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
6391 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
6392 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
6393 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
6394 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
6395 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
6396 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
6397 #: ../src/guestfs-actions.pod:1692 ../src/guestfs-actions.pod:1714
6398 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:2263
6399 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2468
6400 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3456
6401 #: ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3496
6402 #: ../src/guestfs-actions.pod:3651 ../src/guestfs-actions.pod:3665
6403 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
6404 #: ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3743
6405 #: ../src/guestfs-actions.pod:3815 ../src/guestfs-actions.pod:3835
6406 #: ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3875
6407 #: ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3930
6408 #: ../src/guestfs-actions.pod:3949 ../src/guestfs-actions.pod:3968
6409 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4015
6410 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4067
6411 #: ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4095
6412 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4205
6413 #: ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4238
6414 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4307
6415 #: ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4341
6416 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4369
6417 #: ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4401
6418 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4479
6419 #: ../src/guestfs-actions.pod:4552 ../src/guestfs-actions.pod:4583
6420 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4621
6421 #: ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4650
6422 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4678
6423 #: ../src/guestfs-actions.pod:4693 ../src/guestfs-actions.pod:4728
6424 #: ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:4770
6425 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4801
6426 #: ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4887
6427 #: ../src/guestfs-actions.pod:4901 ../src/guestfs-actions.pod:4929
6428 #: ../src/guestfs-actions.pod:4946 ../src/guestfs-actions.pod:4964
6429 #: ../src/guestfs-actions.pod:5098 ../src/guestfs-actions.pod:5155
6430 #: ../src/guestfs-actions.pod:5177 ../src/guestfs-actions.pod:5195
6431 #: ../src/guestfs-actions.pod:5227 ../src/guestfs-actions.pod:5293
6432 #: ../src/guestfs-actions.pod:5310 ../src/guestfs-actions.pod:5323
6433 #: ../src/guestfs-actions.pod:5337 ../src/guestfs-actions.pod:5626
6434 #: ../src/guestfs-actions.pod:5645 ../src/guestfs-actions.pod:5664
6435 #: ../src/guestfs-actions.pod:5676 ../src/guestfs-actions.pod:5688
6436 #: ../src/guestfs-actions.pod:5702 ../src/guestfs-actions.pod:5714
6437 #: ../src/guestfs-actions.pod:5728 ../src/guestfs-actions.pod:5744
6438 #: ../src/guestfs-actions.pod:5765 ../src/guestfs-actions.pod:5784
6439 #: ../src/guestfs-actions.pod:5803 ../src/guestfs-actions.pod:5833
6440 #: ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:5872
6441 #: ../src/guestfs-actions.pod:5890 ../src/guestfs-actions.pod:5909
6442 #: ../src/guestfs-actions.pod:5930 ../src/guestfs-actions.pod:5949
6443 #: ../src/guestfs-actions.pod:5966 ../src/guestfs-actions.pod:5994
6444 #: ../src/guestfs-actions.pod:6018 ../src/guestfs-actions.pod:6037
6445 #: ../src/guestfs-actions.pod:6061 ../src/guestfs-actions.pod:6080
6446 #: ../src/guestfs-actions.pod:6095 ../src/guestfs-actions.pod:6114
6447 #: ../src/guestfs-actions.pod:6151 ../src/guestfs-actions.pod:6181
6448 #: ../src/guestfs-actions.pod:6214 ../src/guestfs-actions.pod:6336
6449 #: ../src/guestfs-actions.pod:6457 ../src/guestfs-actions.pod:6469
6450 #: ../src/guestfs-actions.pod:6482 ../src/guestfs-actions.pod:6495
6451 #: ../src/guestfs-actions.pod:6517 ../src/guestfs-actions.pod:6530
6452 #: ../src/guestfs-actions.pod:6543 ../src/guestfs-actions.pod:6556
6453 #: ../src/guestfs-actions.pod:6571 ../src/guestfs-actions.pod:6630
6454 #: ../src/guestfs-actions.pod:6647 ../src/guestfs-actions.pod:6663
6455 #: ../src/guestfs-actions.pod:6679 ../src/guestfs-actions.pod:6696
6456 #: ../src/guestfs-actions.pod:6709 ../src/guestfs-actions.pod:6729
6457 #: ../src/guestfs-actions.pod:6765 ../src/guestfs-actions.pod:6779
6458 #: ../src/guestfs-actions.pod:6820 ../src/guestfs-actions.pod:6833
6459 #: ../src/guestfs-actions.pod:6851 ../src/guestfs-actions.pod:6885
6460 #: ../src/guestfs-actions.pod:6921 ../src/guestfs-actions.pod:7040
6461 #: ../src/guestfs-actions.pod:7058 ../src/guestfs-actions.pod:7072
6462 #: ../src/guestfs-actions.pod:7127 ../src/guestfs-actions.pod:7140
6463 #: ../src/guestfs-actions.pod:7185 ../src/guestfs-actions.pod:7218
6464 #: ../src/guestfs-actions.pod:7279 ../src/guestfs-actions.pod:7305
6465 #: ../src/guestfs-actions.pod:7371 ../src/guestfs-actions.pod:7390
6466 #: ../src/guestfs-actions.pod:7419
6467 msgid "This function returns 0 on success or -1 on error."
6468 msgstr ""
6469
6470 # type: textblock
6471 #. type: textblock
6472 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6473 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6474 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6475 msgid ""
6476 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6477 "instead."
6478 msgstr ""
6479
6480 # type: textblock
6481 #. type: textblock
6482 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6483 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6484 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962
6485 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4733
6486 #: ../src/guestfs-actions.pod:6159 ../src/guestfs-actions.pod:6189
6487 #: ../src/guestfs-actions.pod:6222 ../src/guestfs-actions.pod:6281
6488 #: ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7313
6489 #: ../src/guestfs-actions.pod:7482 ../fish/guestfish-actions.pod:31
6490 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6491 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1316
6492 #: ../fish/guestfish-actions.pod:1330 ../fish/guestfish-actions.pod:3005
6493 #: ../fish/guestfish-actions.pod:3202 ../fish/guestfish-actions.pod:4174
6494 #: ../fish/guestfish-actions.pod:4197 ../fish/guestfish-actions.pod:4219
6495 #: ../fish/guestfish-actions.pod:4257 ../fish/guestfish-actions.pod:4898
6496 #: ../fish/guestfish-actions.pod:4995
6497 msgid ""
6498 "Deprecated functions will not be removed from the API, but the fact that "
6499 "they are deprecated indicates that there are problems with correct use of "
6500 "these functions."
6501 msgstr ""
6502
6503 # type: textblock
6504 #. type: textblock
6505 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6506 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1913
6507 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2114
6508 #: ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3478
6509 #: ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:5851
6510 #: ../src/guestfs-actions.pod:5968 ../src/guestfs-actions.pod:6082
6511 #: ../src/guestfs-actions.pod:6573 ../src/guestfs-actions.pod:6698
6512 #: ../src/guestfs-actions.pod:7227
6513 msgid "(Added in 0.3)"
6514 msgstr ""
6515
6516 # type: =head2
6517 #. type: =head2
6518 #: ../src/guestfs-actions.pod:41
6519 msgid "guestfs_add_domain"
6520 msgstr ""
6521
6522 # type: verbatim
6523 #. type: verbatim
6524 #: ../src/guestfs-actions.pod:43
6525 #, no-wrap
6526 msgid ""
6527 " int\n"
6528 " guestfs_add_domain (guestfs_h *g,\n"
6529 "                     const char *dom,\n"
6530 "                     ...);\n"
6531 "\n"
6532 msgstr ""
6533
6534 # type: textblock
6535 #. type: textblock
6536 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6537 #: ../src/guestfs-actions.pod:4440
6538 msgid ""
6539 "You may supply a list of optional arguments to this call.  Use zero or more "
6540 "of the following pairs of parameters, and terminate the list with C<-1> on "
6541 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6542 msgstr ""
6543
6544 #. type: verbatim
6545 #: ../src/guestfs-actions.pod:53
6546 #, no-wrap
6547 msgid ""
6548 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6549 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6550 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6551 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6552 "\n"
6553 msgstr ""
6554
6555 # type: textblock
6556 #. type: textblock
6557 #: ../src/guestfs-actions.pod:58
6558 msgid ""
6559 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6560 "It works by connecting to libvirt, requesting the domain and domain XML from "
6561 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6562 "one."
6563 msgstr ""
6564
6565 # type: textblock
6566 #. type: textblock
6567 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6568 msgid ""
6569 "The number of disks added is returned.  This operation is atomic: if an "
6570 "error is returned, then no disks are added."
6571 msgstr ""
6572
6573 # type: textblock
6574 #. type: textblock
6575 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6576 msgid ""
6577 "This function does some minimal checks to make sure the libvirt domain is "
6578 "not running (unless C<readonly> is true).  In a future version we will try "
6579 "to acquire the libvirt lock on each disk."
6580 msgstr ""
6581
6582 # type: textblock
6583 #. type: textblock
6584 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6585 msgid ""
6586 "Disks must be accessible locally.  This often means that adding disks from a "
6587 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6588 "unless those disks are accessible via the same device path locally too."
6589 msgstr ""
6590
6591 #. type: textblock
6592 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6593 msgid ""
6594 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6595 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6596 "libvirt URI (or one set through an environment variable, see the libvirt "
6597 "documentation for full details)."
6598 msgstr ""
6599
6600 #. type: textblock
6601 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6602 msgid ""
6603 "The optional C<live> flag controls whether this call will try to connect to "
6604 "a running virtual machine C<guestfsd> process if it sees a suitable "
6605 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6606 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6607 "DAEMONS> for more information."
6608 msgstr ""
6609
6610 # type: textblock
6611 #. type: textblock
6612 #: ../src/guestfs-actions.pod:88
6613 msgid ""
6614 "The other optional parameters are passed directly through to "
6615 "C<guestfs_add_drive_opts>."
6616 msgstr ""
6617
6618 # type: textblock
6619 #. type: textblock
6620 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6621 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6622 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6623 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6624 #: ../src/guestfs-actions.pod:1671 ../src/guestfs-actions.pod:1874
6625 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2023
6626 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2101
6627 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2777
6628 #: ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:4873
6629 #: ../src/guestfs-actions.pod:5001 ../src/guestfs-actions.pod:5407
6630 #: ../src/guestfs-actions.pod:5433 ../src/guestfs-actions.pod:6806
6631 #: ../src/guestfs-actions.pod:7238 ../src/guestfs-actions.pod:7251
6632 #: ../src/guestfs-actions.pod:7264
6633 msgid "On error this function returns -1."
6634 msgstr ""
6635
6636 # type: textblock
6637 #. type: textblock
6638 #: ../src/guestfs-actions.pod:93
6639 msgid "(Added in 1.7.4)"
6640 msgstr ""
6641
6642 # type: =head2
6643 #. type: =head2
6644 #: ../src/guestfs-actions.pod:95
6645 msgid "guestfs_add_domain_va"
6646 msgstr ""
6647
6648 # type: verbatim
6649 #. type: verbatim
6650 #: ../src/guestfs-actions.pod:97
6651 #, no-wrap
6652 msgid ""
6653 " int\n"
6654 " guestfs_add_domain_va (guestfs_h *g,\n"
6655 "                        const char *dom,\n"
6656 "                        va_list args);\n"
6657 "\n"
6658 msgstr ""
6659
6660 # type: textblock
6661 #. type: textblock
6662 #: ../src/guestfs-actions.pod:102
6663 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6664 msgstr ""
6665
6666 # type: textblock
6667 #. type: textblock
6668 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6669 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6670 #: ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4505
6671 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6672 msgstr ""
6673
6674 # type: =head2
6675 #. type: =head2
6676 #: ../src/guestfs-actions.pod:106
6677 msgid "guestfs_add_domain_argv"
6678 msgstr ""
6679
6680 # type: verbatim
6681 #. type: verbatim
6682 #: ../src/guestfs-actions.pod:108
6683 #, no-wrap
6684 msgid ""
6685 " int\n"
6686 " guestfs_add_domain_argv (guestfs_h *g,\n"
6687 "                          const char *dom,\n"
6688 "                          const struct guestfs_add_domain_argv *optargs);\n"
6689 "\n"
6690 msgstr ""
6691
6692 # type: textblock
6693 #. type: textblock
6694 #: ../src/guestfs-actions.pod:113
6695 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6696 msgstr ""
6697
6698 # type: =head2
6699 #. type: =head2
6700 #: ../src/guestfs-actions.pod:117
6701 msgid "guestfs_add_drive"
6702 msgstr ""
6703
6704 # type: verbatim
6705 #. type: verbatim
6706 #: ../src/guestfs-actions.pod:119
6707 #, no-wrap
6708 msgid ""
6709 " int\n"
6710 " guestfs_add_drive (guestfs_h *g,\n"
6711 "                    const char *filename);\n"
6712 "\n"
6713 msgstr ""
6714
6715 # type: textblock
6716 #. type: textblock
6717 #: ../src/guestfs-actions.pod:123
6718 msgid ""
6719 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6720 "optional parameters, so the disk is added writable, with the format being "
6721 "detected automatically."
6722 msgstr ""
6723
6724 # type: textblock
6725 #. type: textblock
6726 #: ../src/guestfs-actions.pod:127
6727 msgid ""
6728 "Automatic detection of the format opens you up to a potential security hole "
6729 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6730 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6731 "you should think about replacing calls to this function with calls to "
6732 "C<guestfs_add_drive_opts>, and specifying the format."
6733 msgstr ""
6734
6735 # type: =head2
6736 #. type: =head2
6737 #: ../src/guestfs-actions.pod:138
6738 msgid "guestfs_add_drive_opts"
6739 msgstr ""
6740
6741 # type: verbatim
6742 #. type: verbatim
6743 #: ../src/guestfs-actions.pod:140
6744 #, no-wrap
6745 msgid ""
6746 " int\n"
6747 " guestfs_add_drive_opts (guestfs_h *g,\n"
6748 "                         const char *filename,\n"
6749 "                         ...);\n"
6750 "\n"
6751 msgstr ""
6752
6753 # type: verbatim
6754 #. type: verbatim
6755 #: ../src/guestfs-actions.pod:150
6756 #, no-wrap
6757 msgid ""
6758 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6759 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6760 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6761 "\n"
6762 msgstr ""
6763
6764 # type: textblock
6765 #. type: textblock
6766 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6767 msgid ""
6768 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6769 "The first time you call this function, the disk appears as C</dev/sda>, the "
6770 "second time as C</dev/sdb>, and so on."
6771 msgstr ""
6772
6773 # type: textblock
6774 #. type: textblock
6775 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6776 msgid ""
6777 "You don't necessarily need to be root when using libguestfs.  However you "
6778 "obviously do need sufficient permissions to access the filename for whatever "
6779 "operations you want to perform (ie. read access if you just want to read the "
6780 "image or write access if you want to modify the image)."
6781 msgstr ""
6782
6783 # type: textblock
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6786 msgid "This call checks that C<filename> exists."
6787 msgstr ""
6788
6789 # type: textblock
6790 #. type: textblock
6791 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4451
6792 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3016
6793 msgid "The optional arguments are:"
6794 msgstr ""
6795
6796 # type: =item
6797 #. type: =item
6798 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6799 msgid "C<readonly>"
6800 msgstr ""
6801
6802 # type: textblock
6803 #. type: textblock
6804 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6805 msgid ""
6806 "If true then the image is treated as read-only.  Writes are still allowed, "
6807 "but they are stored in a temporary snapshot overlay which is discarded at "
6808 "the end.  The disk that you add is not modified."
6809 msgstr ""
6810
6811 # type: =item
6812 #. type: =item
6813 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6814 msgid "C<format>"
6815 msgstr ""
6816
6817 # type: textblock
6818 #. type: textblock
6819 #: ../src/guestfs-actions.pod:179
6820 msgid ""
6821 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6822 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6823 "Possible formats include C<raw> and C<qcow2>."
6824 msgstr ""
6825
6826 # type: textblock
6827 #. type: textblock
6828 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6829 msgid ""
6830 "Automatic detection of the format opens you up to a potential security hole "
6831 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6832 "RHBZ#642934.  Specifying the format closes this security hole."
6833 msgstr ""
6834
6835 # type: =item
6836 #. type: =item
6837 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6838 msgid "C<iface>"
6839 msgstr ""
6840
6841 # type: textblock
6842 #. type: textblock
6843 #: ../src/guestfs-actions.pod:190
6844 msgid ""
6845 "This rarely-used option lets you emulate the behaviour of the deprecated "
6846 "C<guestfs_add_drive_with_if> call (q.v.)"
6847 msgstr ""
6848
6849 # type: textblock
6850 #. type: textblock
6851 #: ../src/guestfs-actions.pod:197
6852 msgid "(Added in 1.5.23)"
6853 msgstr ""
6854
6855 # type: =head2
6856 #. type: =head2
6857 #: ../src/guestfs-actions.pod:199
6858 msgid "guestfs_add_drive_opts_va"
6859 msgstr ""
6860
6861 # type: verbatim
6862 #. type: verbatim
6863 #: ../src/guestfs-actions.pod:201
6864 #, no-wrap
6865 msgid ""
6866 " int\n"
6867 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6868 "                            const char *filename,\n"
6869 "                            va_list args);\n"
6870 "\n"
6871 msgstr ""
6872
6873 # type: textblock
6874 #. type: textblock
6875 #: ../src/guestfs-actions.pod:206
6876 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6877 msgstr ""
6878
6879 # type: =head2
6880 #. type: =head2
6881 #: ../src/guestfs-actions.pod:210
6882 msgid "guestfs_add_drive_opts_argv"
6883 msgstr ""
6884
6885 # type: verbatim
6886 #. type: verbatim
6887 #: ../src/guestfs-actions.pod:212
6888 #, no-wrap
6889 msgid ""
6890 " int\n"
6891 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6892 "                              const char *filename,\n"
6893 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6894 "\n"
6895 msgstr ""
6896
6897 # type: textblock
6898 #. type: textblock
6899 #: ../src/guestfs-actions.pod:217
6900 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6901 msgstr ""
6902
6903 # type: =head2
6904 #. type: =head2
6905 #: ../src/guestfs-actions.pod:221
6906 msgid "guestfs_add_drive_ro"
6907 msgstr ""
6908
6909 # type: verbatim
6910 #. type: verbatim
6911 #: ../src/guestfs-actions.pod:223
6912 #, no-wrap
6913 msgid ""
6914 " int\n"
6915 " guestfs_add_drive_ro (guestfs_h *g,\n"
6916 "                       const char *filename);\n"
6917 "\n"
6918 msgstr ""
6919
6920 # type: textblock
6921 #. type: textblock
6922 #: ../src/guestfs-actions.pod:227
6923 msgid ""
6924 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6925 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6926 "disk is added read-only, with the format being detected automatically."
6927 msgstr ""
6928
6929 # type: textblock
6930 #. type: textblock
6931 #: ../src/guestfs-actions.pod:234
6932 msgid "(Added in 1.0.38)"
6933 msgstr ""
6934
6935 # type: =head2
6936 #. type: =head2
6937 #: ../src/guestfs-actions.pod:236
6938 msgid "guestfs_add_drive_ro_with_if"
6939 msgstr ""
6940
6941 # type: verbatim
6942 #. type: verbatim
6943 #: ../src/guestfs-actions.pod:238
6944 #, no-wrap
6945 msgid ""
6946 " int\n"
6947 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6948 "                               const char *filename,\n"
6949 "                               const char *iface);\n"
6950 "\n"
6951 msgstr ""
6952
6953 # type: textblock
6954 #. type: textblock
6955 #: ../src/guestfs-actions.pod:243
6956 msgid ""
6957 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6958 "QEMU interface emulation to use at run time."
6959 msgstr ""
6960
6961 # type: textblock
6962 #. type: textblock
6963 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6964 #: ../src/guestfs-actions.pod:2353
6965 msgid "(Added in 1.0.84)"
6966 msgstr ""
6967
6968 # type: =head2
6969 #. type: =head2
6970 #: ../src/guestfs-actions.pod:257
6971 msgid "guestfs_add_drive_with_if"
6972 msgstr ""
6973
6974 # type: verbatim
6975 #. type: verbatim
6976 #: ../src/guestfs-actions.pod:259
6977 #, no-wrap
6978 msgid ""
6979 " int\n"
6980 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6981 "                            const char *filename,\n"
6982 "                            const char *iface);\n"
6983 "\n"
6984 msgstr ""
6985
6986 # type: textblock
6987 #. type: textblock
6988 #: ../src/guestfs-actions.pod:264
6989 msgid ""
6990 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6991 "QEMU interface emulation to use at run time."
6992 msgstr ""
6993
6994 # type: =head2
6995 #. type: =head2
6996 #: ../src/guestfs-actions.pod:278
6997 msgid "guestfs_aug_clear"
6998 msgstr ""
6999
7000 # type: verbatim
7001 #. type: verbatim
7002 #: ../src/guestfs-actions.pod:280
7003 #, no-wrap
7004 msgid ""
7005 " int\n"
7006 " guestfs_aug_clear (guestfs_h *g,\n"
7007 "                    const char *augpath);\n"
7008 "\n"
7009 msgstr ""
7010
7011 # type: textblock
7012 #. type: textblock
7013 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
7014 msgid ""
7015 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
7016 "L<augtool(1)> C<clear> command."
7017 msgstr ""
7018
7019 # type: textblock
7020 #. type: textblock
7021 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2103
7022 msgid "(Added in 1.3.4)"
7023 msgstr ""
7024
7025 # type: =head2
7026 #. type: =head2
7027 #: ../src/guestfs-actions.pod:291
7028 msgid "guestfs_aug_close"
7029 msgstr ""
7030
7031 # type: verbatim
7032 #. type: verbatim
7033 #: ../src/guestfs-actions.pod:293
7034 #, no-wrap
7035 msgid ""
7036 " int\n"
7037 " guestfs_aug_close (guestfs_h *g);\n"
7038 "\n"
7039 msgstr ""
7040
7041 # type: textblock
7042 #. type: textblock
7043 #: ../src/guestfs-actions.pod:296
7044 msgid ""
7045 "Close the current Augeas handle and free up any resources used by it.  After "
7046 "calling this, you have to call C<guestfs_aug_init> again before you can use "
7047 "any other Augeas functions."
7048 msgstr ""
7049
7050 # type: textblock
7051 #. type: textblock
7052 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
7053 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
7054 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
7055 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
7056 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
7057 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
7058 #: ../src/guestfs-actions.pod:5484
7059 msgid "(Added in 0.7)"
7060 msgstr ""
7061
7062 # type: =head2
7063 #. type: =head2
7064 #: ../src/guestfs-actions.pod:305
7065 msgid "guestfs_aug_defnode"
7066 msgstr ""
7067
7068 # type: verbatim
7069 #. type: verbatim
7070 #: ../src/guestfs-actions.pod:307
7071 #, no-wrap
7072 msgid ""
7073 " struct guestfs_int_bool *\n"
7074 " guestfs_aug_defnode (guestfs_h *g,\n"
7075 "                      const char *name,\n"
7076 "                      const char *expr,\n"
7077 "                      const char *val);\n"
7078 "\n"
7079 msgstr ""
7080
7081 # type: textblock
7082 #. type: textblock
7083 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
7084 msgid ""
7085 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
7086 msgstr ""
7087
7088 # type: textblock
7089 #. type: textblock
7090 #: ../src/guestfs-actions.pod:316
7091 msgid ""
7092 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
7093 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
7094 "containing that single node."
7095 msgstr ""
7096
7097 # type: textblock
7098 #. type: textblock
7099 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
7100 msgid ""
7101 "On success this returns a pair containing the number of nodes in the "
7102 "nodeset, and a boolean flag if a node was created."
7103 msgstr ""
7104
7105 # type: textblock
7106 #. type: textblock
7107 #: ../src/guestfs-actions.pod:324
7108 msgid ""
7109 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
7110 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
7111 msgstr ""
7112
7113 # type: =head2
7114 #. type: =head2
7115 #: ../src/guestfs-actions.pod:330
7116 msgid "guestfs_aug_defvar"
7117 msgstr ""
7118
7119 # type: verbatim
7120 #. type: verbatim
7121 #: ../src/guestfs-actions.pod:332
7122 #, no-wrap
7123 msgid ""
7124 " int\n"
7125 " guestfs_aug_defvar (guestfs_h *g,\n"
7126 "                     const char *name,\n"
7127 "                     const char *expr);\n"
7128 "\n"
7129 msgstr ""
7130
7131 # type: textblock
7132 #. type: textblock
7133 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
7134 msgid ""
7135 "Defines an Augeas variable C<name> whose value is the result of evaluating "
7136 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
7137 msgstr ""
7138
7139 # type: textblock
7140 #. type: textblock
7141 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
7142 msgid ""
7143 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
7144 "evaluates to something which is not a nodeset."
7145 msgstr ""
7146
7147 # type: =head2
7148 #. type: =head2
7149 #: ../src/guestfs-actions.pod:348
7150 msgid "guestfs_aug_get"
7151 msgstr ""
7152
7153 # type: verbatim
7154 #. type: verbatim
7155 #: ../src/guestfs-actions.pod:350
7156 #, no-wrap
7157 msgid ""
7158 " char *\n"
7159 " guestfs_aug_get (guestfs_h *g,\n"
7160 "                  const char *augpath);\n"
7161 "\n"
7162 msgstr ""
7163
7164 # type: textblock
7165 #. type: textblock
7166 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
7167 msgid ""
7168 "Look up the value associated with C<path>.  If C<path> matches exactly one "
7169 "node, the C<value> is returned."
7170 msgstr ""
7171
7172 # type: textblock
7173 #. type: textblock
7174 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
7175 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
7176 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
7177 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
7178 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
7179 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1654
7180 #: ../src/guestfs-actions.pod:1817 ../src/guestfs-actions.pod:1834
7181 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:1935
7182 #: ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:2126
7183 #: ../src/guestfs-actions.pod:2318 ../src/guestfs-actions.pod:2525
7184 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
7185 #: ../src/guestfs-actions.pod:2749 ../src/guestfs-actions.pod:2869
7186 #: ../src/guestfs-actions.pod:2900 ../src/guestfs-actions.pod:2924
7187 #: ../src/guestfs-actions.pod:2961 ../src/guestfs-actions.pod:3021
7188 #: ../src/guestfs-actions.pod:3044 ../src/guestfs-actions.pod:3065
7189 #: ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3987
7190 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4267
7191 #: ../src/guestfs-actions.pod:5019 ../src/guestfs-actions.pod:5212
7192 #: ../src/guestfs-actions.pod:5382 ../src/guestfs-actions.pod:5560
7193 #: ../src/guestfs-actions.pod:5609 ../src/guestfs-actions.pod:6242
7194 #: ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6275
7195 #: ../src/guestfs-actions.pod:6306 ../src/guestfs-actions.pod:6980
7196 #: ../src/guestfs-actions.pod:6999 ../src/guestfs-actions.pod:7017
7197 #: ../src/guestfs-actions.pod:7197 ../src/guestfs-actions.pod:7476
7198 msgid ""
7199 "This function returns a string, or NULL on error.  I<The caller must free "
7200 "the returned string after use>."
7201 msgstr ""
7202
7203 # type: =head2
7204 #. type: =head2
7205 #: ../src/guestfs-actions.pod:362
7206 msgid "guestfs_aug_init"
7207 msgstr ""
7208
7209 # type: verbatim
7210 #. type: verbatim
7211 #: ../src/guestfs-actions.pod:364
7212 #, no-wrap
7213 msgid ""
7214 " int\n"
7215 " guestfs_aug_init (guestfs_h *g,\n"
7216 "                   const char *root,\n"
7217 "                   int flags);\n"
7218 "\n"
7219 msgstr ""
7220
7221 # type: textblock
7222 #. type: textblock
7223 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
7224 msgid ""
7225 "Create a new Augeas handle for editing configuration files.  If there was "
7226 "any previous Augeas handle associated with this guestfs session, then it is "
7227 "closed."
7228 msgstr ""
7229
7230 # type: textblock
7231 #. type: textblock
7232 #: ../src/guestfs-actions.pod:373
7233 msgid "You must call this before using any other C<guestfs_aug_*> commands."
7234 msgstr ""
7235
7236 # type: textblock
7237 #. type: textblock
7238 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
7239 msgid ""
7240 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
7241 msgstr ""
7242
7243 # type: textblock
7244 #. type: textblock
7245 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
7246 msgid ""
7247 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
7248 "logical I<or> of the following integers:"
7249 msgstr ""
7250
7251 # type: =item
7252 #. type: =item
7253 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
7254 msgid "C<AUG_SAVE_BACKUP> = 1"
7255 msgstr ""
7256
7257 # type: textblock
7258 #. type: textblock
7259 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
7260 msgid "Keep the original file with a C<.augsave> extension."
7261 msgstr ""
7262
7263 # type: =item
7264 #. type: =item
7265 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
7266 msgid "C<AUG_SAVE_NEWFILE> = 2"
7267 msgstr ""
7268
7269 # type: textblock
7270 #. type: textblock
7271 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
7272 msgid ""
7273 "Save changes into a file with extension C<.augnew>, and do not overwrite "
7274 "original.  Overrides C<AUG_SAVE_BACKUP>."
7275 msgstr ""
7276
7277 # type: =item
7278 #. type: =item
7279 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
7280 msgid "C<AUG_TYPE_CHECK> = 4"
7281 msgstr ""
7282
7283 # type: textblock
7284 #. type: textblock
7285 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7286 msgid "Typecheck lenses (can be expensive)."
7287 msgstr ""
7288
7289 # type: =item
7290 #. type: =item
7291 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
7292 msgid "C<AUG_NO_STDINC> = 8"
7293 msgstr ""
7294
7295 # type: textblock
7296 #. type: textblock
7297 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
7298 msgid "Do not use standard load path for modules."
7299 msgstr ""
7300
7301 # type: =item
7302 #. type: =item
7303 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
7304 msgid "C<AUG_SAVE_NOOP> = 16"
7305 msgstr ""
7306
7307 # type: textblock
7308 #. type: textblock
7309 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
7310 msgid "Make save a no-op, just record what would have been changed."
7311 msgstr ""
7312
7313 # type: =item
7314 #. type: =item
7315 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
7316 msgid "C<AUG_NO_LOAD> = 32"
7317 msgstr ""
7318
7319 # type: textblock
7320 #. type: textblock
7321 #: ../src/guestfs-actions.pod:408
7322 msgid "Do not load the tree in C<guestfs_aug_init>."
7323 msgstr ""
7324
7325 # type: textblock
7326 #. type: textblock
7327 #: ../src/guestfs-actions.pod:412
7328 msgid "To close the handle, you can call C<guestfs_aug_close>."
7329 msgstr ""
7330
7331 # type: textblock
7332 #. type: textblock
7333 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
7334 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7335 msgstr ""
7336
7337 # type: =head2
7338 #. type: =head2
7339 #: ../src/guestfs-actions.pod:420
7340 msgid "guestfs_aug_insert"
7341 msgstr ""
7342
7343 # type: verbatim
7344 #. type: verbatim
7345 #: ../src/guestfs-actions.pod:422
7346 #, no-wrap
7347 msgid ""
7348 " int\n"
7349 " guestfs_aug_insert (guestfs_h *g,\n"
7350 "                     const char *augpath,\n"
7351 "                     const char *label,\n"
7352 "                     int before);\n"
7353 "\n"
7354 msgstr ""
7355
7356 # type: textblock
7357 #. type: textblock
7358 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
7359 msgid ""
7360 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7361 "or after C<path> (depending on the boolean flag C<before>)."
7362 msgstr ""
7363
7364 # type: textblock
7365 #. type: textblock
7366 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
7367 msgid ""
7368 "C<path> must match exactly one existing node in the tree, and C<label> must "
7369 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7370 msgstr ""
7371
7372 # type: =head2
7373 #. type: =head2
7374 #: ../src/guestfs-actions.pod:440
7375 msgid "guestfs_aug_load"
7376 msgstr ""
7377
7378 # type: verbatim
7379 #. type: verbatim
7380 #: ../src/guestfs-actions.pod:442
7381 #, no-wrap
7382 msgid ""
7383 " int\n"
7384 " guestfs_aug_load (guestfs_h *g);\n"
7385 "\n"
7386 msgstr ""
7387
7388 # type: textblock
7389 #. type: textblock
7390 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
7391 msgid "Load files into the tree."
7392 msgstr ""
7393
7394 # type: textblock
7395 #. type: textblock
7396 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
7397 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7398 msgstr ""
7399
7400 # type: =head2
7401 #. type: =head2
7402 #: ../src/guestfs-actions.pod:454
7403 msgid "guestfs_aug_ls"
7404 msgstr ""
7405
7406 # type: verbatim
7407 #. type: verbatim
7408 #: ../src/guestfs-actions.pod:456
7409 #, no-wrap
7410 msgid ""
7411 " char **\n"
7412 " guestfs_aug_ls (guestfs_h *g,\n"
7413 "                 const char *augpath);\n"
7414 "\n"
7415 msgstr ""
7416
7417 # type: textblock
7418 #. type: textblock
7419 #: ../src/guestfs-actions.pod:460
7420 msgid ""
7421 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7422 "sorting the resulting nodes into alphabetical order."
7423 msgstr ""
7424
7425 # type: textblock
7426 #. type: textblock
7427 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
7428 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
7429 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
7430 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
7431 #: ../src/guestfs-actions.pod:1756 ../src/guestfs-actions.pod:2198
7432 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2233
7433 #: ../src/guestfs-actions.pod:2276 ../src/guestfs-actions.pod:2300
7434 #: ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2420
7435 #: ../src/guestfs-actions.pod:2687 ../src/guestfs-actions.pod:2978
7436 #: ../src/guestfs-actions.pod:3267 ../src/guestfs-actions.pod:3557
7437 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3724
7438 #: ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4834
7439 #: ../src/guestfs-actions.pod:5354 ../src/guestfs-actions.pod:5480
7440 #: ../src/guestfs-actions.pod:5594 ../src/guestfs-actions.pod:6322
7441 #: ../src/guestfs-actions.pod:6383 ../src/guestfs-actions.pod:6438
7442 #: ../src/guestfs-actions.pod:6584 ../src/guestfs-actions.pod:6608
7443 #: ../src/guestfs-actions.pod:7090 ../src/guestfs-actions.pod:7110
7444 #: ../src/guestfs-actions.pod:7157 ../src/guestfs-actions.pod:7329
7445 #: ../src/guestfs-actions.pod:7348 ../src/guestfs-actions.pod:7433
7446 #: ../src/guestfs-actions.pod:7452 ../src/guestfs-actions.pod:7498
7447 #: ../src/guestfs-actions.pod:7517
7448 msgid ""
7449 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7450 ">), or NULL if there was an error.  I<The caller must free the strings and "
7451 "the array after use>."
7452 msgstr ""
7453
7454 # type: textblock
7455 #. type: textblock
7456 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
7457 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
7458 #: ../src/guestfs-actions.pod:3345 ../src/guestfs-actions.pod:3376
7459 #: ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:4020
7460 #: ../src/guestfs-actions.pod:4207 ../src/guestfs-actions.pod:4240
7461 #: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4838
7462 #: ../src/guestfs-actions.pod:5295 ../src/guestfs-actions.pod:5690
7463 #: ../src/guestfs-actions.pod:5704 ../src/guestfs-actions.pod:5716
7464 #: ../src/guestfs-actions.pod:6163 ../src/guestfs-actions.pod:6822
7465 #: ../src/guestfs-actions.pod:6835 ../src/guestfs-actions.pod:7074
7466 #: ../src/guestfs-actions.pod:7317
7467 msgid "(Added in 0.8)"
7468 msgstr ""
7469
7470 # type: =head2
7471 #. type: =head2
7472 #: ../src/guestfs-actions.pod:469
7473 msgid "guestfs_aug_match"
7474 msgstr ""
7475
7476 # type: verbatim
7477 #. type: verbatim
7478 #: ../src/guestfs-actions.pod:471
7479 #, no-wrap
7480 msgid ""
7481 " char **\n"
7482 " guestfs_aug_match (guestfs_h *g,\n"
7483 "                    const char *augpath);\n"
7484 "\n"
7485 msgstr ""
7486
7487 # type: textblock
7488 #. type: textblock
7489 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
7490 msgid ""
7491 "Returns a list of paths which match the path expression C<path>.  The "
7492 "returned paths are sufficiently qualified so that they match exactly one "
7493 "node in the current tree."
7494 msgstr ""
7495
7496 # type: =head2
7497 #. type: =head2
7498 #: ../src/guestfs-actions.pod:485
7499 msgid "guestfs_aug_mv"
7500 msgstr ""
7501
7502 # type: verbatim
7503 #. type: verbatim
7504 #: ../src/guestfs-actions.pod:487
7505 #, no-wrap
7506 msgid ""
7507 " int\n"
7508 " guestfs_aug_mv (guestfs_h *g,\n"
7509 "                 const char *src,\n"
7510 "                 const char *dest);\n"
7511 "\n"
7512 msgstr ""
7513
7514 # type: textblock
7515 #. type: textblock
7516 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
7517 msgid ""
7518 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7519 "C<dest> is overwritten if it exists."
7520 msgstr ""
7521
7522 # type: =head2
7523 #. type: =head2
7524 #: ../src/guestfs-actions.pod:499
7525 msgid "guestfs_aug_rm"
7526 msgstr ""
7527
7528 # type: verbatim
7529 #. type: verbatim
7530 #: ../src/guestfs-actions.pod:501
7531 #, no-wrap
7532 msgid ""
7533 " int\n"
7534 " guestfs_aug_rm (guestfs_h *g,\n"
7535 "                 const char *augpath);\n"
7536 "\n"
7537 msgstr ""
7538
7539 # type: textblock
7540 #. type: textblock
7541 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
7542 msgid "Remove C<path> and all of its children."
7543 msgstr ""
7544
7545 # type: textblock
7546 #. type: textblock
7547 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
7548 msgid "On success this returns the number of entries which were removed."
7549 msgstr ""
7550
7551 # type: =head2
7552 #. type: =head2
7553 #: ../src/guestfs-actions.pod:513
7554 msgid "guestfs_aug_save"
7555 msgstr ""
7556
7557 # type: verbatim
7558 #. type: verbatim
7559 #: ../src/guestfs-actions.pod:515
7560 #, no-wrap
7561 msgid ""
7562 " int\n"
7563 " guestfs_aug_save (guestfs_h *g);\n"
7564 "\n"
7565 msgstr ""
7566
7567 # type: textblock
7568 #. type: textblock
7569 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
7570 msgid "This writes all pending changes to disk."
7571 msgstr ""
7572
7573 # type: textblock
7574 #. type: textblock
7575 #: ../src/guestfs-actions.pod:520
7576 msgid ""
7577 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7578 "are saved."
7579 msgstr ""
7580
7581 # type: =head2
7582 #. type: =head2
7583 #: ../src/guestfs-actions.pod:527
7584 msgid "guestfs_aug_set"
7585 msgstr ""
7586
7587 # type: verbatim
7588 #. type: verbatim
7589 #: ../src/guestfs-actions.pod:529
7590 #, no-wrap
7591 msgid ""
7592 " int\n"
7593 " guestfs_aug_set (guestfs_h *g,\n"
7594 "                  const char *augpath,\n"
7595 "                  const char *val);\n"
7596 "\n"
7597 msgstr ""
7598
7599 # type: textblock
7600 #. type: textblock
7601 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7602 msgid "Set the value associated with C<path> to C<val>."
7603 msgstr ""
7604
7605 # type: textblock
7606 #. type: textblock
7607 #: ../src/guestfs-actions.pod:536
7608 msgid ""
7609 "In the Augeas API, it is possible to clear a node by setting the value to "
7610 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7611 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7612 msgstr ""
7613
7614 # type: =head2
7615 #. type: =head2
7616 #: ../src/guestfs-actions.pod:545
7617 msgid "guestfs_available"
7618 msgstr ""
7619
7620 # type: verbatim
7621 #. type: verbatim
7622 #: ../src/guestfs-actions.pod:547
7623 #, no-wrap
7624 msgid ""
7625 " int\n"
7626 " guestfs_available (guestfs_h *g,\n"
7627 "                    char *const *groups);\n"
7628 "\n"
7629 msgstr ""
7630
7631 # type: textblock
7632 #. type: textblock
7633 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7634 msgid ""
7635 "This command is used to check the availability of some groups of "
7636 "functionality in the appliance, which not all builds of the libguestfs "
7637 "appliance will be able to provide."
7638 msgstr ""
7639
7640 # type: textblock
7641 #. type: textblock
7642 #: ../src/guestfs-actions.pod:555
7643 msgid ""
7644 "The libguestfs groups, and the functions that those groups correspond to, "
7645 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7646 "runtime by calling C<guestfs_available_all_groups>."
7647 msgstr ""
7648
7649 # type: textblock
7650 #. type: textblock
7651 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7652 msgid ""
7653 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7654 "\"]> would check for the availability of the Linux inotify functions and "
7655 "Augeas (configuration file editing) functions."
7656 msgstr ""
7657
7658 # type: textblock
7659 #. type: textblock
7660 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7661 msgid "The command returns no error if I<all> requested groups are available."
7662 msgstr ""
7663
7664 # type: textblock
7665 #. type: textblock
7666 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7667 msgid ""
7668 "It fails with an error if one or more of the requested groups is unavailable "
7669 "in the appliance."
7670 msgstr ""
7671
7672 # type: textblock
7673 #. type: textblock
7674 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7675 msgid ""
7676 "If an unknown group name is included in the list of groups then an error is "
7677 "always returned."
7678 msgstr ""
7679
7680 # type: textblock
7681 #. type: textblock
7682 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7683 msgid "I<Notes:>"
7684 msgstr ""
7685
7686 # type: textblock
7687 #. type: textblock
7688 #: ../src/guestfs-actions.pod:579
7689 msgid "You must call C<guestfs_launch> before calling this function."
7690 msgstr ""
7691
7692 # type: textblock
7693 #. type: textblock
7694 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7695 msgid ""
7696 "The reason is because we don't know what groups are supported by the "
7697 "appliance/daemon until it is running and can be queried."
7698 msgstr ""
7699
7700 # type: textblock
7701 #. type: textblock
7702 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7703 msgid ""
7704 "If a group of functions is available, this does not necessarily mean that "
7705 "they will work.  You still have to check for errors when calling individual "
7706 "API functions even if they are available."
7707 msgstr ""
7708
7709 # type: textblock
7710 #. type: textblock
7711 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7712 msgid ""
7713 "It is usually the job of distro packagers to build complete functionality "
7714 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7715 "with all requirements satisfied, will support everything."
7716 msgstr ""
7717
7718 # type: textblock
7719 #. type: textblock
7720 #: ../src/guestfs-actions.pod:601
7721 msgid ""
7722 "This call was added in version C<1.0.80>.  In previous versions of "
7723 "libguestfs all you could do would be to speculatively execute a command to "
7724 "find out if the daemon implemented it.  See also C<guestfs_version>."
7725 msgstr ""
7726
7727 # type: textblock
7728 #. type: textblock
7729 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7730 msgid "(Added in 1.0.80)"
7731 msgstr ""
7732
7733 # type: =head2
7734 #. type: =head2
7735 #: ../src/guestfs-actions.pod:612
7736 msgid "guestfs_available_all_groups"
7737 msgstr ""
7738
7739 # type: verbatim
7740 #. type: verbatim
7741 #: ../src/guestfs-actions.pod:614
7742 #, no-wrap
7743 msgid ""
7744 " char **\n"
7745 " guestfs_available_all_groups (guestfs_h *g);\n"
7746 "\n"
7747 msgstr ""
7748
7749 # type: textblock
7750 #. type: textblock
7751 #: ../src/guestfs-actions.pod:617
7752 msgid ""
7753 "This command returns a list of all optional groups that this daemon knows "
7754 "about.  Note this returns both supported and unsupported groups.  To find "
7755 "out which ones the daemon can actually support you have to call "
7756 "C<guestfs_available> on each member of the returned list."
7757 msgstr ""
7758
7759 # type: textblock
7760 #. type: textblock
7761 #: ../src/guestfs-actions.pod:623
7762 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7763 msgstr ""
7764
7765 # type: textblock
7766 #. type: textblock
7767 #: ../src/guestfs-actions.pod:629
7768 msgid "(Added in 1.3.15)"
7769 msgstr ""
7770
7771 # type: =head2
7772 #. type: =head2
7773 #: ../src/guestfs-actions.pod:631
7774 msgid "guestfs_base64_in"
7775 msgstr ""
7776
7777 # type: verbatim
7778 #. type: verbatim
7779 #: ../src/guestfs-actions.pod:633
7780 #, no-wrap
7781 msgid ""
7782 " int\n"
7783 " guestfs_base64_in (guestfs_h *g,\n"
7784 "                    const char *base64file,\n"
7785 "                    const char *filename);\n"
7786 "\n"
7787 msgstr ""
7788
7789 # type: textblock
7790 #. type: textblock
7791 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7792 msgid ""
7793 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7794 msgstr ""
7795
7796 # type: textblock
7797 #. type: textblock
7798 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7799 msgid "(Added in 1.3.5)"
7800 msgstr ""
7801
7802 # type: =head2
7803 #. type: =head2
7804 #: ../src/guestfs-actions.pod:645
7805 msgid "guestfs_base64_out"
7806 msgstr ""
7807
7808 # type: verbatim
7809 #. type: verbatim
7810 #: ../src/guestfs-actions.pod:647
7811 #, no-wrap
7812 msgid ""
7813 " int\n"
7814 " guestfs_base64_out (guestfs_h *g,\n"
7815 "                     const char *filename,\n"
7816 "                     const char *base64file);\n"
7817 "\n"
7818 msgstr ""
7819
7820 # type: textblock
7821 #. type: textblock
7822 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7823 msgid ""
7824 "This command downloads the contents of C<filename>, writing it out to local "
7825 "file C<base64file> encoded as base64."
7826 msgstr ""
7827
7828 # type: =head2
7829 #. type: =head2
7830 #: ../src/guestfs-actions.pod:659
7831 msgid "guestfs_blockdev_flushbufs"
7832 msgstr ""
7833
7834 # type: verbatim
7835 #. type: verbatim
7836 #: ../src/guestfs-actions.pod:661
7837 #, no-wrap
7838 msgid ""
7839 " int\n"
7840 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7841 "                             const char *device);\n"
7842 "\n"
7843 msgstr ""
7844
7845 # type: textblock
7846 #. type: textblock
7847 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7848 msgid ""
7849 "This tells the kernel to flush internal buffers associated with C<device>."
7850 msgstr ""
7851
7852 # type: textblock
7853 #. type: textblock
7854 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7855 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7856 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7857 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7858 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7859 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7860 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7861 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7862 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7863 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7864 msgid "This uses the L<blockdev(8)> command."
7865 msgstr ""
7866
7867 # type: textblock
7868 #. type: textblock
7869 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7870 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7871 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7872 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7873 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7874 msgid "(Added in 0.9.3)"
7875 msgstr ""
7876
7877 # type: =head2
7878 #. type: =head2
7879 #: ../src/guestfs-actions.pod:674
7880 msgid "guestfs_blockdev_getbsz"
7881 msgstr ""
7882
7883 # type: verbatim
7884 #. type: verbatim
7885 #: ../src/guestfs-actions.pod:676
7886 #, no-wrap
7887 msgid ""
7888 " int\n"
7889 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7890 "                          const char *device);\n"
7891 "\n"
7892 msgstr ""
7893
7894 # type: textblock
7895 #. type: textblock
7896 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7897 msgid "This returns the block size of a device."
7898 msgstr ""
7899
7900 # type: textblock
7901 #. type: textblock
7902 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7903 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7904 msgid ""
7905 "(Note this is different from both I<size in blocks> and I<filesystem block "
7906 "size>)."
7907 msgstr ""
7908
7909 # type: =head2
7910 #. type: =head2
7911 #: ../src/guestfs-actions.pod:691
7912 msgid "guestfs_blockdev_getro"
7913 msgstr ""
7914
7915 # type: verbatim
7916 #. type: verbatim
7917 #: ../src/guestfs-actions.pod:693
7918 #, no-wrap
7919 msgid ""
7920 " int\n"
7921 " guestfs_blockdev_getro (guestfs_h *g,\n"
7922 "                         const char *device);\n"
7923 "\n"
7924 msgstr ""
7925
7926 # type: textblock
7927 #. type: textblock
7928 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7929 msgid ""
7930 "Returns a boolean indicating if the block device is read-only (true if read-"
7931 "only, false if not)."
7932 msgstr ""
7933
7934 # type: textblock
7935 #. type: textblock
7936 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7937 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1911
7938 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1994
7939 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:2064
7940 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:2112
7941 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
7942 #: ../src/guestfs-actions.pod:3121 ../src/guestfs-actions.pod:3284
7943 #: ../src/guestfs-actions.pod:3298 ../src/guestfs-actions.pod:3313
7944 #: ../src/guestfs-actions.pod:3327 ../src/guestfs-actions.pod:3343
7945 #: ../src/guestfs-actions.pod:3358 ../src/guestfs-actions.pod:3374
7946 #: ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3401
7947 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3430
7948 #: ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:4983
7949 msgid "This function returns a C truth value on success or -1 on error."
7950 msgstr ""
7951
7952 # type: =head2
7953 #. type: =head2
7954 #: ../src/guestfs-actions.pod:706
7955 msgid "guestfs_blockdev_getsize64"
7956 msgstr ""
7957
7958 # type: verbatim
7959 #. type: verbatim
7960 #: ../src/guestfs-actions.pod:708
7961 #, no-wrap
7962 msgid ""
7963 " int64_t\n"
7964 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7965 "                             const char *device);\n"
7966 "\n"
7967 msgstr ""
7968
7969 # type: textblock
7970 #. type: textblock
7971 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7972 msgid "This returns the size of the device in bytes."
7973 msgstr ""
7974
7975 # type: textblock
7976 #. type: textblock
7977 #: ../src/guestfs-actions.pod:714
7978 msgid "See also C<guestfs_blockdev_getsz>."
7979 msgstr ""
7980
7981 # type: =head2
7982 #. type: =head2
7983 #: ../src/guestfs-actions.pod:722
7984 msgid "guestfs_blockdev_getss"
7985 msgstr ""
7986
7987 # type: verbatim
7988 #. type: verbatim
7989 #: ../src/guestfs-actions.pod:724
7990 #, no-wrap
7991 msgid ""
7992 " int\n"
7993 " guestfs_blockdev_getss (guestfs_h *g,\n"
7994 "                         const char *device);\n"
7995 "\n"
7996 msgstr ""
7997
7998 # type: textblock
7999 #. type: textblock
8000 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
8001 msgid ""
8002 "This returns the size of sectors on a block device.  Usually 512, but can be "
8003 "larger for modern devices."
8004 msgstr ""
8005
8006 # type: textblock
8007 #. type: textblock
8008 #: ../src/guestfs-actions.pod:731
8009 msgid ""
8010 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
8011 "that)."
8012 msgstr ""
8013
8014 # type: =head2
8015 #. type: =head2
8016 #: ../src/guestfs-actions.pod:740
8017 msgid "guestfs_blockdev_getsz"
8018 msgstr ""
8019
8020 # type: verbatim
8021 #. type: verbatim
8022 #: ../src/guestfs-actions.pod:742
8023 #, no-wrap
8024 msgid ""
8025 " int64_t\n"
8026 " guestfs_blockdev_getsz (guestfs_h *g,\n"
8027 "                         const char *device);\n"
8028 "\n"
8029 msgstr ""
8030
8031 # type: textblock
8032 #. type: textblock
8033 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
8034 msgid ""
8035 "This returns the size of the device in units of 512-byte sectors (even if "
8036 "the sectorsize isn't 512 bytes ... weird)."
8037 msgstr ""
8038
8039 # type: textblock
8040 #. type: textblock
8041 #: ../src/guestfs-actions.pod:749
8042 msgid ""
8043 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
8044 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
8045 msgstr ""
8046
8047 # type: =head2
8048 #. type: =head2
8049 #: ../src/guestfs-actions.pod:759
8050 msgid "guestfs_blockdev_rereadpt"
8051 msgstr ""
8052
8053 # type: verbatim
8054 #. type: verbatim
8055 #: ../src/guestfs-actions.pod:761
8056 #, no-wrap
8057 msgid ""
8058 " int\n"
8059 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
8060 "                            const char *device);\n"
8061 "\n"
8062 msgstr ""
8063
8064 # type: textblock
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
8067 msgid "Reread the partition table on C<device>."
8068 msgstr ""
8069
8070 # type: =head2
8071 #. type: =head2
8072 #: ../src/guestfs-actions.pod:773
8073 msgid "guestfs_blockdev_setbsz"
8074 msgstr ""
8075
8076 # type: verbatim
8077 #. type: verbatim
8078 #: ../src/guestfs-actions.pod:775
8079 #, no-wrap
8080 msgid ""
8081 " int\n"
8082 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
8083 "                          const char *device,\n"
8084 "                          int blocksize);\n"
8085 "\n"
8086 msgstr ""
8087
8088 # type: textblock
8089 #. type: textblock
8090 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
8091 msgid "This sets the block size of a device."
8092 msgstr ""
8093
8094 # type: =head2
8095 #. type: =head2
8096 #: ../src/guestfs-actions.pod:791
8097 msgid "guestfs_blockdev_setro"
8098 msgstr ""
8099
8100 # type: verbatim
8101 #. type: verbatim
8102 #: ../src/guestfs-actions.pod:793
8103 #, no-wrap
8104 msgid ""
8105 " int\n"
8106 " guestfs_blockdev_setro (guestfs_h *g,\n"
8107 "                         const char *device);\n"
8108 "\n"
8109 msgstr ""
8110
8111 # type: textblock
8112 #. type: textblock
8113 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
8114 msgid "Sets the block device named C<device> to read-only."
8115 msgstr ""
8116
8117 # type: =head2
8118 #. type: =head2
8119 #: ../src/guestfs-actions.pod:805
8120 msgid "guestfs_blockdev_setrw"
8121 msgstr ""
8122
8123 # type: verbatim
8124 #. type: verbatim
8125 #: ../src/guestfs-actions.pod:807
8126 #, no-wrap
8127 msgid ""
8128 " int\n"
8129 " guestfs_blockdev_setrw (guestfs_h *g,\n"
8130 "                         const char *device);\n"
8131 "\n"
8132 msgstr ""
8133
8134 # type: textblock
8135 #. type: textblock
8136 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
8137 msgid "Sets the block device named C<device> to read-write."
8138 msgstr ""
8139
8140 # type: =head2
8141 #. type: =head2
8142 #: ../src/guestfs-actions.pod:819
8143 msgid "guestfs_case_sensitive_path"
8144 msgstr ""
8145
8146 # type: verbatim
8147 #. type: verbatim
8148 #: ../src/guestfs-actions.pod:821
8149 #, no-wrap
8150 msgid ""
8151 " char *\n"
8152 " guestfs_case_sensitive_path (guestfs_h *g,\n"
8153 "                              const char *path);\n"
8154 "\n"
8155 msgstr ""
8156
8157 # type: textblock
8158 #. type: textblock
8159 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
8160 msgid ""
8161 "This can be used to resolve case insensitive paths on a filesystem which is "
8162 "case sensitive.  The use case is to resolve paths which you have read from "
8163 "Windows configuration files or the Windows Registry, to the true path."
8164 msgstr ""
8165
8166 # type: textblock
8167 #. type: textblock
8168 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
8169 msgid ""
8170 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
8171 "(and probably others), which is that although the underlying filesystem is "
8172 "case-insensitive, the driver exports the filesystem to Linux as case-"
8173 "sensitive."
8174 msgstr ""
8175
8176 # type: textblock
8177 #. type: textblock
8178 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8179 msgid ""
8180 "One consequence of this is that special directories such as C<c:\\windows> "
8181 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8182 "precise details of how they were created.  In Windows itself this would not "
8183 "be a problem."
8184 msgstr ""
8185
8186 # type: textblock
8187 #. type: textblock
8188 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
8189 msgid ""
8190 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8191 "#posixfilenames1>"
8192 msgstr ""
8193
8194 # type: textblock
8195 #. type: textblock
8196 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
8197 msgid ""
8198 "This function resolves the true case of each element in the path and returns "
8199 "the case-sensitive path."
8200 msgstr ""
8201
8202 # type: textblock
8203 #. type: textblock
8204 #: ../src/guestfs-actions.pod:847
8205 msgid ""
8206 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
8207 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8208 "how the directories were originally created under Windows)."
8209 msgstr ""
8210
8211 # type: textblock
8212 #. type: textblock
8213 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
8214 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8215 msgstr ""
8216
8217 # type: textblock
8218 #. type: textblock
8219 #: ../src/guestfs-actions.pod:855
8220 msgid "See also C<guestfs_realpath>."
8221 msgstr ""
8222
8223 # type: textblock
8224 #. type: textblock
8225 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:7002
8226 msgid "(Added in 1.0.75)"
8227 msgstr ""
8228
8229 # type: =head2
8230 #. type: =head2
8231 #: ../src/guestfs-actions.pod:862
8232 msgid "guestfs_cat"
8233 msgstr ""
8234
8235 # type: verbatim
8236 #. type: verbatim
8237 #: ../src/guestfs-actions.pod:864
8238 #, no-wrap
8239 msgid ""
8240 " char *\n"
8241 " guestfs_cat (guestfs_h *g,\n"
8242 "              const char *path);\n"
8243 "\n"
8244 msgstr ""
8245
8246 # type: textblock
8247 #. type: textblock
8248 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5470
8249 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3671
8250 msgid "Return the contents of the file named C<path>."
8251 msgstr ""
8252
8253 # type: textblock
8254 #. type: textblock
8255 #: ../src/guestfs-actions.pod:870
8256 msgid ""
8257 "Note that this function cannot correctly handle binary files (specifically, "
8258 "files containing C<\\0> character which is treated as end of string).  For "
8259 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8260 "functions which have a more complex interface."
8261 msgstr ""
8262
8263 # type: textblock
8264 #. type: textblock
8265 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
8266 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
8267 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
8268 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1760
8269 #: ../src/guestfs-actions.pod:2218 ../src/guestfs-actions.pod:2237
8270 #: ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2304
8271 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2350
8272 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278
8273 #: ../src/guestfs-actions.pod:5409 ../src/guestfs-actions.pod:5435
8274 #: ../src/guestfs-actions.pod:5459 ../src/guestfs-actions.pod:6387
8275 #: ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6588
8276 #: ../src/guestfs-actions.pod:6612 ../src/guestfs-actions.pod:7281
8277 #: ../src/guestfs-actions.pod:7307 ../src/guestfs-actions.pod:7333
8278 #: ../src/guestfs-actions.pod:7352 ../src/guestfs-actions.pod:7437
8279 #: ../src/guestfs-actions.pod:7456 ../src/guestfs-actions.pod:7502
8280 #: ../src/guestfs-actions.pod:7521 ../fish/guestfish-actions.pod:587
8281 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
8282 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
8283 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
8284 #: ../fish/guestfish-actions.pod:1189 ../fish/guestfish-actions.pod:1490
8285 #: ../fish/guestfish-actions.pod:1500 ../fish/guestfish-actions.pod:1528
8286 #: ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1553
8287 #: ../fish/guestfish-actions.pod:1572 ../fish/guestfish-actions.pod:3541
8288 #: ../fish/guestfish-actions.pod:3556 ../fish/guestfish-actions.pod:3632
8289 #: ../fish/guestfish-actions.pod:3649 ../fish/guestfish-actions.pod:3664
8290 #: ../fish/guestfish-actions.pod:4318 ../fish/guestfish-actions.pod:4364
8291 #: ../fish/guestfish-actions.pod:4449 ../fish/guestfish-actions.pod:4464
8292 #: ../fish/guestfish-actions.pod:4874 ../fish/guestfish-actions.pod:4892
8293 #: ../fish/guestfish-actions.pod:4909 ../fish/guestfish-actions.pod:4919
8294 #: ../fish/guestfish-actions.pod:4967 ../fish/guestfish-actions.pod:4977
8295 #: ../fish/guestfish-actions.pod:5006 ../fish/guestfish-actions.pod:5016
8296 msgid ""
8297 "Because of the message protocol, there is a transfer limit of somewhere "
8298 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
8299 msgstr ""
8300
8301 # type: textblock
8302 #. type: textblock
8303 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3561
8304 #: ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3640
8305 #: ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:4133
8306 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5358
8307 #: ../src/guestfs-actions.pod:5372 ../src/guestfs-actions.pod:7161
8308 #: ../src/guestfs-actions.pod:7175
8309 msgid "(Added in 0.4)"
8310 msgstr ""
8311
8312 # type: =head2
8313 #. type: =head2
8314 #: ../src/guestfs-actions.pod:883
8315 msgid "guestfs_checksum"
8316 msgstr ""
8317
8318 # type: verbatim
8319 #. type: verbatim
8320 #: ../src/guestfs-actions.pod:885
8321 #, no-wrap
8322 msgid ""
8323 " char *\n"
8324 " guestfs_checksum (guestfs_h *g,\n"
8325 "                   const char *csumtype,\n"
8326 "                   const char *path);\n"
8327 "\n"
8328 msgstr ""
8329
8330 # type: textblock
8331 #. type: textblock
8332 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
8333 msgid ""
8334 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8335 msgstr ""
8336
8337 # type: textblock
8338 #. type: textblock
8339 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
8340 msgid ""
8341 "The type of checksum to compute is given by the C<csumtype> parameter which "
8342 "must have one of the following values:"
8343 msgstr ""
8344
8345 # type: =item
8346 #. type: =item
8347 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8348 msgid "C<crc>"
8349 msgstr ""
8350
8351 # type: textblock
8352 #. type: textblock
8353 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
8354 msgid ""
8355 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8356 "C<cksum> command."
8357 msgstr ""
8358
8359 # type: =item
8360 #. type: =item
8361 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8362 msgid "C<md5>"
8363 msgstr ""
8364
8365 # type: textblock
8366 #. type: textblock
8367 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8368 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8369 msgstr ""
8370
8371 # type: =item
8372 #. type: =item
8373 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
8374 msgid "C<sha1>"
8375 msgstr ""
8376
8377 # type: textblock
8378 #. type: textblock
8379 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
8380 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8381 msgstr ""
8382
8383 # type: =item
8384 #. type: =item
8385 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
8386 msgid "C<sha224>"
8387 msgstr ""
8388
8389 # type: textblock
8390 #. type: textblock
8391 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
8392 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8393 msgstr ""
8394
8395 # type: =item
8396 #. type: =item
8397 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
8398 msgid "C<sha256>"
8399 msgstr ""
8400
8401 # type: textblock
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
8404 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8405 msgstr ""
8406
8407 # type: =item
8408 #. type: =item
8409 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
8410 msgid "C<sha384>"
8411 msgstr ""
8412
8413 # type: textblock
8414 #. type: textblock
8415 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
8416 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8417 msgstr ""
8418
8419 # type: =item
8420 #. type: =item
8421 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
8422 msgid "C<sha512>"
8423 msgstr ""
8424
8425 # type: textblock
8426 #. type: textblock
8427 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
8428 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8429 msgstr ""
8430
8431 # type: textblock
8432 #. type: textblock
8433 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
8434 msgid "The checksum is returned as a printable string."
8435 msgstr ""
8436
8437 # type: textblock
8438 #. type: textblock
8439 #: ../src/guestfs-actions.pod:931
8440 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8441 msgstr ""
8442
8443 # type: textblock
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:933
8446 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8447 msgstr ""
8448
8449 # type: textblock
8450 #. type: textblock
8451 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
8452 #: ../src/guestfs-actions.pod:2080 ../src/guestfs-actions.pod:3300
8453 #: ../src/guestfs-actions.pod:3329 ../src/guestfs-actions.pod:3390
8454 #: ../src/guestfs-actions.pod:3417 ../src/guestfs-actions.pod:6858
8455 msgid "(Added in 1.0.2)"
8456 msgstr ""
8457
8458 # type: =head2
8459 #. type: =head2
8460 #: ../src/guestfs-actions.pod:940
8461 msgid "guestfs_checksum_device"
8462 msgstr ""
8463
8464 # type: verbatim
8465 #. type: verbatim
8466 #: ../src/guestfs-actions.pod:942
8467 #, no-wrap
8468 msgid ""
8469 " char *\n"
8470 " guestfs_checksum_device (guestfs_h *g,\n"
8471 "                          const char *csumtype,\n"
8472 "                          const char *device);\n"
8473 "\n"
8474 msgstr ""
8475
8476 # type: textblock
8477 #. type: textblock
8478 #: ../src/guestfs-actions.pod:947
8479 msgid ""
8480 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8481 "device named C<device>.  For the types of checksums supported see the "
8482 "C<guestfs_checksum> command."
8483 msgstr ""
8484
8485 # type: textblock
8486 #. type: textblock
8487 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4889
8488 #: ../src/guestfs-actions.pod:4948 ../src/guestfs-actions.pod:4985
8489 #: ../src/guestfs-actions.pod:5003 ../src/guestfs-actions.pod:5179
8490 #: ../src/guestfs-actions.pod:6767 ../src/guestfs-actions.pod:6781
8491 #: ../src/guestfs-actions.pod:7187
8492 msgid "(Added in 1.3.2)"
8493 msgstr ""
8494
8495 # type: =head2
8496 #. type: =head2
8497 #: ../src/guestfs-actions.pod:956
8498 msgid "guestfs_checksums_out"
8499 msgstr ""
8500
8501 # type: verbatim
8502 #. type: verbatim
8503 #: ../src/guestfs-actions.pod:958
8504 #, no-wrap
8505 msgid ""
8506 " int\n"
8507 " guestfs_checksums_out (guestfs_h *g,\n"
8508 "                        const char *csumtype,\n"
8509 "                        const char *directory,\n"
8510 "                        const char *sumsfile);\n"
8511 "\n"
8512 msgstr ""
8513
8514 # type: textblock
8515 #. type: textblock
8516 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
8517 msgid ""
8518 "This command computes the checksums of all regular files in C<directory> and "
8519 "then emits a list of those checksums to the local output file C<sumsfile>."
8520 msgstr ""
8521
8522 # type: textblock
8523 #. type: textblock
8524 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
8525 msgid ""
8526 "This can be used for verifying the integrity of a virtual machine.  However "
8527 "to be properly secure you should pay attention to the output of the checksum "
8528 "command (it uses the ones from GNU coreutils).  In particular when the "
8529 "filename is not printable, coreutils uses a special backslash syntax.  For "
8530 "more information, see the GNU coreutils info file."
8531 msgstr ""
8532
8533 # type: textblock
8534 #. type: textblock
8535 #: ../src/guestfs-actions.pod:978
8536 msgid "(Added in 1.3.7)"
8537 msgstr ""
8538
8539 # type: =head2
8540 #. type: =head2
8541 #: ../src/guestfs-actions.pod:980
8542 msgid "guestfs_chmod"
8543 msgstr ""
8544
8545 # type: verbatim
8546 #. type: verbatim
8547 #: ../src/guestfs-actions.pod:982
8548 #, no-wrap
8549 msgid ""
8550 " int\n"
8551 " guestfs_chmod (guestfs_h *g,\n"
8552 "                int mode,\n"
8553 "                const char *path);\n"
8554 "\n"
8555 msgstr ""
8556
8557 # type: textblock
8558 #. type: textblock
8559 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
8560 msgid ""
8561 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8562 "supported."
8563 msgstr ""
8564
8565 # type: textblock
8566 #. type: textblock
8567 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
8568 msgid ""
8569 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8570 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8571 "C<700>."
8572 msgstr ""
8573
8574 # type: textblock
8575 #. type: textblock
8576 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4384
8577 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4600
8578 #: ../src/guestfs-actions.pod:4619 ../fish/guestfish-actions.pod:676
8579 #: ../fish/guestfish-actions.pod:2980 ../fish/guestfish-actions.pod:3109
8580 #: ../fish/guestfish-actions.pod:3119 ../fish/guestfish-actions.pod:3129
8581 msgid "The mode actually set is affected by the umask."
8582 msgstr ""
8583
8584 # type: =head2
8585 #. type: =head2
8586 #: ../src/guestfs-actions.pod:1000
8587 msgid "guestfs_chown"
8588 msgstr ""
8589
8590 # type: verbatim
8591 #. type: verbatim
8592 #: ../src/guestfs-actions.pod:1002
8593 #, no-wrap
8594 msgid ""
8595 " int\n"
8596 " guestfs_chown (guestfs_h *g,\n"
8597 "                int owner,\n"
8598 "                int group,\n"
8599 "                const char *path);\n"
8600 "\n"
8601 msgstr ""
8602
8603 # type: textblock
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
8606 msgid "Change the file owner to C<owner> and group to C<group>."
8607 msgstr ""
8608
8609 # type: textblock
8610 #. type: textblock
8611 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3492
8612 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2438
8613 msgid ""
8614 "Only numeric uid and gid are supported.  If you want to use names, you will "
8615 "need to locate and parse the password file yourself (Augeas support makes "
8616 "this relatively easy)."
8617 msgstr ""
8618
8619 # type: =head2
8620 #. type: =head2
8621 #: ../src/guestfs-actions.pod:1018
8622 msgid "guestfs_command"
8623 msgstr ""
8624
8625 # type: verbatim
8626 #. type: verbatim
8627 #: ../src/guestfs-actions.pod:1020
8628 #, no-wrap
8629 msgid ""
8630 " char *\n"
8631 " guestfs_command (guestfs_h *g,\n"
8632 "                  char *const *arguments);\n"
8633 "\n"
8634 msgstr ""
8635
8636 # type: textblock
8637 #. type: textblock
8638 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
8639 msgid ""
8640 "This call runs a command from the guest filesystem.  The filesystem must be "
8641 "mounted, and must contain a compatible operating system (ie. something "
8642 "Linux, with the same or compatible processor architecture)."
8643 msgstr ""
8644
8645 # type: textblock
8646 #. type: textblock
8647 #: ../src/guestfs-actions.pod:1029
8648 msgid ""
8649 "The single parameter is an argv-style list of arguments.  The first element "
8650 "is the name of the program to run.  Subsequent elements are parameters.  The "
8651 "list must be non-empty (ie. must contain a program name).  Note that the "
8652 "command runs directly, and is I<not> invoked via the shell (see "
8653 "C<guestfs_sh>)."
8654 msgstr ""
8655
8656 # type: textblock
8657 #. type: textblock
8658 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
8659 msgid "The return value is anything printed to I<stdout> by the command."
8660 msgstr ""
8661
8662 # type: textblock
8663 #. type: textblock
8664 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
8665 msgid ""
8666 "If the command returns a non-zero exit status, then this function returns an "
8667 "error message.  The error message string is the content of I<stderr> from "
8668 "the command."
8669 msgstr ""
8670
8671 # type: textblock
8672 #. type: textblock
8673 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
8674 msgid ""
8675 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8676 "bin>.  If you require a program from another location, you should provide "
8677 "the full path in the first parameter."
8678 msgstr ""
8679
8680 # type: textblock
8681 #. type: textblock
8682 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8683 msgid ""
8684 "Shared libraries and data files required by the program must be available on "
8685 "filesystems which are mounted in the correct places.  It is the caller's "
8686 "responsibility to ensure all filesystems that are needed are mounted at the "
8687 "right locations."
8688 msgstr ""
8689
8690 # type: textblock
8691 #. type: textblock
8692 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
8693 #: ../src/guestfs-actions.pod:1545
8694 msgid "(Added in 0.9.1)"
8695 msgstr ""
8696
8697 # type: =head2
8698 #. type: =head2
8699 #: ../src/guestfs-actions.pod:1062
8700 msgid "guestfs_command_lines"
8701 msgstr ""
8702
8703 # type: verbatim
8704 #. type: verbatim
8705 #: ../src/guestfs-actions.pod:1064
8706 #, no-wrap
8707 msgid ""
8708 " char **\n"
8709 " guestfs_command_lines (guestfs_h *g,\n"
8710 "                        char *const *arguments);\n"
8711 "\n"
8712 msgstr ""
8713
8714 # type: textblock
8715 #. type: textblock
8716 #: ../src/guestfs-actions.pod:1068
8717 msgid ""
8718 "This is the same as C<guestfs_command>, but splits the result into a list of "
8719 "lines."
8720 msgstr ""
8721
8722 # type: textblock
8723 #. type: textblock
8724 #: ../src/guestfs-actions.pod:1071
8725 msgid "See also: C<guestfs_sh_lines>"
8726 msgstr ""
8727
8728 # type: =head2
8729 #. type: =head2
8730 #: ../src/guestfs-actions.pod:1082
8731 msgid "guestfs_config"
8732 msgstr ""
8733
8734 # type: verbatim
8735 #. type: verbatim
8736 #: ../src/guestfs-actions.pod:1084
8737 #, no-wrap
8738 msgid ""
8739 " int\n"
8740 " guestfs_config (guestfs_h *g,\n"
8741 "                 const char *qemuparam,\n"
8742 "                 const char *qemuvalue);\n"
8743 "\n"
8744 msgstr ""
8745
8746 #. type: textblock
8747 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8748 msgid ""
8749 "This can be used to add arbitrary qemu command line parameters of the form "
8750 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8751 "setting some parameters which would interfere with parameters that we use."
8752 msgstr ""
8753
8754 # type: textblock
8755 #. type: textblock
8756 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8757 msgid "The first character of C<param> string must be a C<-> (dash)."
8758 msgstr ""
8759
8760 # type: textblock
8761 #. type: textblock
8762 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8763 msgid "C<value> can be NULL."
8764 msgstr ""
8765
8766 # type: =head2
8767 #. type: =head2
8768 #: ../src/guestfs-actions.pod:1102
8769 msgid "guestfs_copy_size"
8770 msgstr ""
8771
8772 # type: verbatim
8773 #. type: verbatim
8774 #: ../src/guestfs-actions.pod:1104
8775 #, no-wrap
8776 msgid ""
8777 " int\n"
8778 " guestfs_copy_size (guestfs_h *g,\n"
8779 "                    const char *src,\n"
8780 "                    const char *dest,\n"
8781 "                    int64_t size);\n"
8782 "\n"
8783 msgstr ""
8784
8785 # type: textblock
8786 #. type: textblock
8787 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8788 msgid ""
8789 "This command copies exactly C<size> bytes from one source device or file "
8790 "C<src> to another destination device or file C<dest>."
8791 msgstr ""
8792
8793 # type: textblock
8794 #. type: textblock
8795 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8796 msgid ""
8797 "Note this will fail if the source is too short or if the destination is not "
8798 "large enough."
8799 msgstr ""
8800
8801 #. type: textblock
8802 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8803 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8804 #: ../src/guestfs-actions.pod:1694 ../src/guestfs-actions.pod:1716
8805 #: ../src/guestfs-actions.pod:3473 ../src/guestfs-actions.pod:6853
8806 #: ../src/guestfs-actions.pod:6887 ../src/guestfs-actions.pod:7373
8807 #: ../src/guestfs-actions.pod:7392
8808 msgid ""
8809 "This long-running command can generate progress notification messages so "
8810 "that the caller can display a progress bar or indicator.  To receive these "
8811 "messages, the caller must register a progress event callback.  See L<guestfs"
8812 "(3)/GUESTFS_EVENT_PROGRESS>."
8813 msgstr ""
8814
8815 # type: textblock
8816 #. type: textblock
8817 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4160
8818 #: ../src/guestfs-actions.pod:5385 ../src/guestfs-actions.pod:7094
8819 #: ../src/guestfs-actions.pod:7114 ../src/guestfs-actions.pod:7200
8820 msgid "(Added in 1.0.87)"
8821 msgstr ""
8822
8823 # type: =head2
8824 #. type: =head2
8825 #: ../src/guestfs-actions.pod:1125
8826 msgid "guestfs_cp"
8827 msgstr ""
8828
8829 # type: verbatim
8830 #. type: verbatim
8831 #: ../src/guestfs-actions.pod:1127
8832 #, no-wrap
8833 msgid ""
8834 " int\n"
8835 " guestfs_cp (guestfs_h *g,\n"
8836 "             const char *src,\n"
8837 "             const char *dest);\n"
8838 "\n"
8839 msgstr ""
8840
8841 # type: textblock
8842 #. type: textblock
8843 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8844 msgid ""
8845 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8846 "destination filename or destination directory."
8847 msgstr ""
8848
8849 # type: textblock
8850 #. type: textblock
8851 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8852 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8853 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4852
8854 #: ../src/guestfs-actions.pod:5229
8855 msgid "(Added in 1.0.18)"
8856 msgstr ""
8857
8858 # type: =head2
8859 #. type: =head2
8860 #: ../src/guestfs-actions.pod:1139
8861 msgid "guestfs_cp_a"
8862 msgstr ""
8863
8864 # type: verbatim
8865 #. type: verbatim
8866 #: ../src/guestfs-actions.pod:1141
8867 #, no-wrap
8868 msgid ""
8869 " int\n"
8870 " guestfs_cp_a (guestfs_h *g,\n"
8871 "               const char *src,\n"
8872 "               const char *dest);\n"
8873 "\n"
8874 msgstr ""
8875
8876 # type: textblock
8877 #. type: textblock
8878 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8879 msgid ""
8880 "This copies a file or directory from C<src> to C<dest> recursively using the "
8881 "C<cp -a> command."
8882 msgstr ""
8883
8884 # type: =head2
8885 #. type: =head2
8886 #: ../src/guestfs-actions.pod:1153
8887 msgid "guestfs_dd"
8888 msgstr ""
8889
8890 # type: verbatim
8891 #. type: verbatim
8892 #: ../src/guestfs-actions.pod:1155
8893 #, no-wrap
8894 msgid ""
8895 " int\n"
8896 " guestfs_dd (guestfs_h *g,\n"
8897 "             const char *src,\n"
8898 "             const char *dest);\n"
8899 "\n"
8900 msgstr ""
8901
8902 # type: textblock
8903 #. type: textblock
8904 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8905 msgid ""
8906 "This command copies from one source device or file C<src> to another "
8907 "destination device or file C<dest>.  Normally you would use this to copy to "
8908 "or from a device or partition, for example to duplicate a filesystem."
8909 msgstr ""
8910
8911 # type: textblock
8912 #. type: textblock
8913 #: ../src/guestfs-actions.pod:1165
8914 msgid ""
8915 "If the destination is a device, it must be as large or larger than the "
8916 "source file or device, otherwise the copy will fail.  This command cannot do "
8917 "partial copies (see C<guestfs_copy_size>)."
8918 msgstr ""
8919
8920 # type: =head2
8921 #. type: =head2
8922 #: ../src/guestfs-actions.pod:1173
8923 msgid "guestfs_df"
8924 msgstr ""
8925
8926 # type: verbatim
8927 #. type: verbatim
8928 #: ../src/guestfs-actions.pod:1175
8929 #, no-wrap
8930 msgid ""
8931 " char *\n"
8932 " guestfs_df (guestfs_h *g);\n"
8933 "\n"
8934 msgstr ""
8935
8936 # type: textblock
8937 #. type: textblock
8938 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8939 msgid "This command runs the C<df> command to report disk space used."
8940 msgstr ""
8941
8942 # type: textblock
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8945 msgid ""
8946 "This command is mostly useful for interactive sessions.  It is I<not> "
8947 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8948 "from programs."
8949 msgstr ""
8950
8951 # type: textblock
8952 #. type: textblock
8953 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8954 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2283
8955 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2375
8956 #: ../src/guestfs-actions.pod:4270 ../src/guestfs-actions.pod:4752
8957 #: ../src/guestfs-actions.pod:6591 ../src/guestfs-actions.pod:6615
8958 #: ../src/guestfs-actions.pod:7240 ../src/guestfs-actions.pod:7253
8959 #: ../src/guestfs-actions.pod:7266
8960 msgid "(Added in 1.0.54)"
8961 msgstr ""
8962
8963 # type: =head2
8964 #. type: =head2
8965 #: ../src/guestfs-actions.pod:1189
8966 msgid "guestfs_df_h"
8967 msgstr ""
8968
8969 # type: verbatim
8970 #. type: verbatim
8971 #: ../src/guestfs-actions.pod:1191
8972 #, no-wrap
8973 msgid ""
8974 " char *\n"
8975 " guestfs_df_h (guestfs_h *g);\n"
8976 "\n"
8977 msgstr ""
8978
8979 # type: textblock
8980 #. type: textblock
8981 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8982 msgid ""
8983 "This command runs the C<df -h> command to report disk space used in human-"
8984 "readable format."
8985 msgstr ""
8986
8987 # type: =head2
8988 #. type: =head2
8989 #: ../src/guestfs-actions.pod:1206
8990 msgid "guestfs_dmesg"
8991 msgstr ""
8992
8993 # type: verbatim
8994 #. type: verbatim
8995 #: ../src/guestfs-actions.pod:1208
8996 #, no-wrap
8997 msgid ""
8998 " char *\n"
8999 " guestfs_dmesg (guestfs_h *g);\n"
9000 "\n"
9001 msgstr ""
9002
9003 # type: textblock
9004 #. type: textblock
9005 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
9006 msgid ""
9007 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
9008 "This is sometimes useful for extended debugging of problems."
9009 msgstr ""
9010
9011 # type: textblock
9012 #. type: textblock
9013 #: ../src/guestfs-actions.pod:1215
9014 msgid ""
9015 "Another way to get the same information is to enable verbose messages with "
9016 "C<guestfs_set_verbose> or by setting the environment variable "
9017 "C<LIBGUESTFS_DEBUG=1> before running the program."
9018 msgstr ""
9019
9020 # type: =head2
9021 #. type: =head2
9022 #: ../src/guestfs-actions.pod:1225
9023 msgid "guestfs_download"
9024 msgstr ""
9025
9026 # type: verbatim
9027 #. type: verbatim
9028 #: ../src/guestfs-actions.pod:1227
9029 #, no-wrap
9030 msgid ""
9031 " int\n"
9032 " guestfs_download (guestfs_h *g,\n"
9033 "                   const char *remotefilename,\n"
9034 "                   const char *filename);\n"
9035 "\n"
9036 msgstr ""
9037
9038 # type: textblock
9039 #. type: textblock
9040 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
9041 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
9042 msgid ""
9043 "Download file C<remotefilename> and save it as C<filename> on the local "
9044 "machine."
9045 msgstr ""
9046
9047 # type: textblock
9048 #. type: textblock
9049 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6847
9050 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4622
9051 msgid "C<filename> can also be a named pipe."
9052 msgstr ""
9053
9054 # type: textblock
9055 #. type: textblock
9056 #: ../src/guestfs-actions.pod:1237
9057 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
9058 msgstr ""
9059
9060 # type: =head2
9061 #. type: =head2
9062 #: ../src/guestfs-actions.pod:1248
9063 msgid "guestfs_download_offset"
9064 msgstr ""
9065
9066 # type: verbatim
9067 #. type: verbatim
9068 #: ../src/guestfs-actions.pod:1250
9069 #, no-wrap
9070 msgid ""
9071 " int\n"
9072 " guestfs_download_offset (guestfs_h *g,\n"
9073 "                          const char *remotefilename,\n"
9074 "                          const char *filename,\n"
9075 "                          int64_t offset,\n"
9076 "                          int64_t size);\n"
9077 "\n"
9078 msgstr ""
9079
9080 # type: textblock
9081 #. type: textblock
9082 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
9083 msgid ""
9084 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
9085 "region must be within the file or device)."
9086 msgstr ""
9087
9088 # type: textblock
9089 #. type: textblock
9090 #: ../src/guestfs-actions.pod:1263
9091 msgid ""
9092 "Note that there is no limit on the amount of data that can be downloaded "
9093 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
9094 "full amount unless an error occurs."
9095 msgstr ""
9096
9097 # type: textblock
9098 #. type: textblock
9099 #: ../src/guestfs-actions.pod:1268
9100 msgid "See also C<guestfs_download>, C<guestfs_pread>."
9101 msgstr ""
9102
9103 # type: textblock
9104 #. type: textblock
9105 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6892
9106 msgid "(Added in 1.5.17)"
9107 msgstr ""
9108
9109 # type: =head2
9110 #. type: =head2
9111 #: ../src/guestfs-actions.pod:1279
9112 msgid "guestfs_drop_caches"
9113 msgstr ""
9114
9115 # type: verbatim
9116 #. type: verbatim
9117 #: ../src/guestfs-actions.pod:1281
9118 #, no-wrap
9119 msgid ""
9120 " int\n"
9121 " guestfs_drop_caches (guestfs_h *g,\n"
9122 "                      int whattodrop);\n"
9123 "\n"
9124 msgstr ""
9125
9126 # type: textblock
9127 #. type: textblock
9128 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
9129 msgid ""
9130 "This instructs the guest kernel to drop its page cache, and/or dentries and "
9131 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
9132 "to drop, see L<http://linux-mm.org/Drop_Caches>"
9133 msgstr ""
9134
9135 # type: textblock
9136 #. type: textblock
9137 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
9138 msgid "Setting C<whattodrop> to 3 should drop everything."
9139 msgstr ""
9140
9141 # type: textblock
9142 #. type: textblock
9143 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
9144 msgid ""
9145 "This automatically calls L<sync(2)> before the operation, so that the "
9146 "maximum guest memory is freed."
9147 msgstr ""
9148
9149 # type: =head2
9150 #. type: =head2
9151 #: ../src/guestfs-actions.pod:1299
9152 msgid "guestfs_du"
9153 msgstr ""
9154
9155 # type: verbatim
9156 #. type: verbatim
9157 #: ../src/guestfs-actions.pod:1301
9158 #, no-wrap
9159 msgid ""
9160 " int64_t\n"
9161 " guestfs_du (guestfs_h *g,\n"
9162 "             const char *path);\n"
9163 "\n"
9164 msgstr ""
9165
9166 # type: textblock
9167 #. type: textblock
9168 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
9169 msgid ""
9170 "This command runs the C<du -s> command to estimate file space usage for "
9171 "C<path>."
9172 msgstr ""
9173
9174 # type: textblock
9175 #. type: textblock
9176 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
9177 msgid ""
9178 "C<path> can be a file or a directory.  If C<path> is a directory then the "
9179 "estimate includes the contents of the directory and all subdirectories "
9180 "(recursively)."
9181 msgstr ""
9182
9183 # type: textblock
9184 #. type: textblock
9185 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
9186 msgid ""
9187 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9188 msgstr ""
9189
9190 # type: =head2
9191 #. type: =head2
9192 #: ../src/guestfs-actions.pod:1324
9193 msgid "guestfs_e2fsck_f"
9194 msgstr ""
9195
9196 # type: verbatim
9197 #. type: verbatim
9198 #: ../src/guestfs-actions.pod:1326
9199 #, no-wrap
9200 msgid ""
9201 " int\n"
9202 " guestfs_e2fsck_f (guestfs_h *g,\n"
9203 "                   const char *device);\n"
9204 "\n"
9205 msgstr ""
9206
9207 #. type: textblock
9208 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
9209 msgid ""
9210 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9211 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
9212 "clean (I<-f>)."
9213 msgstr ""
9214
9215 # type: textblock
9216 #. type: textblock
9217 #: ../src/guestfs-actions.pod:1334
9218 msgid ""
9219 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
9220 "Normally you should use C<guestfs_fsck>."
9221 msgstr ""
9222
9223 # type: textblock
9224 #. type: textblock
9225 #: ../src/guestfs-actions.pod:1339
9226 msgid "(Added in 1.0.29)"
9227 msgstr ""
9228
9229 # type: =head2
9230 #. type: =head2
9231 #: ../src/guestfs-actions.pod:1341
9232 msgid "guestfs_echo_daemon"
9233 msgstr ""
9234
9235 # type: verbatim
9236 #. type: verbatim
9237 #: ../src/guestfs-actions.pod:1343
9238 #, no-wrap
9239 msgid ""
9240 " char *\n"
9241 " guestfs_echo_daemon (guestfs_h *g,\n"
9242 "                      char *const *words);\n"
9243 "\n"
9244 msgstr ""
9245
9246 # type: textblock
9247 #. type: textblock
9248 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
9249 msgid ""
9250 "This command concatenates the list of C<words> passed with single spaces "
9251 "between them and returns the resulting string."
9252 msgstr ""
9253
9254 # type: textblock
9255 #. type: textblock
9256 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
9257 msgid "You can use this command to test the connection through to the daemon."
9258 msgstr ""
9259
9260 # type: textblock
9261 #. type: textblock
9262 #: ../src/guestfs-actions.pod:1352
9263 msgid "See also C<guestfs_ping_daemon>."
9264 msgstr ""
9265
9266 # type: textblock
9267 #. type: textblock
9268 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2091
9269 #: ../src/guestfs-actions.pod:6063
9270 msgid "(Added in 1.0.69)"
9271 msgstr ""
9272
9273 # type: =head2
9274 #. type: =head2
9275 #: ../src/guestfs-actions.pod:1359
9276 msgid "guestfs_egrep"
9277 msgstr ""
9278
9279 # type: verbatim
9280 #. type: verbatim
9281 #: ../src/guestfs-actions.pod:1361
9282 #, no-wrap
9283 msgid ""
9284 " char **\n"
9285 " guestfs_egrep (guestfs_h *g,\n"
9286 "                const char *regex,\n"
9287 "                const char *path);\n"
9288 "\n"
9289 msgstr ""
9290
9291 # type: textblock
9292 #. type: textblock
9293 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
9294 msgid ""
9295 "This calls the external C<egrep> program and returns the matching lines."
9296 msgstr ""
9297
9298 # type: textblock
9299 #. type: textblock
9300 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
9301 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
9302 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2221
9303 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2396
9304 #: ../src/guestfs-actions.pod:2409 ../src/guestfs-actions.pod:2424
9305 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2492
9306 #: ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:3653
9307 #: ../src/guestfs-actions.pod:3667 ../src/guestfs-actions.pod:3680
9308 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:4680
9309 #: ../src/guestfs-actions.pod:5563 ../src/guestfs-actions.pod:5612
9310 #: ../src/guestfs-actions.pod:6459 ../src/guestfs-actions.pod:6471
9311 #: ../src/guestfs-actions.pod:6484 ../src/guestfs-actions.pod:6497
9312 #: ../src/guestfs-actions.pod:6519 ../src/guestfs-actions.pod:6532
9313 #: ../src/guestfs-actions.pod:6545 ../src/guestfs-actions.pod:6558
9314 #: ../src/guestfs-actions.pod:7336 ../src/guestfs-actions.pod:7355
9315 #: ../src/guestfs-actions.pod:7440 ../src/guestfs-actions.pod:7459
9316 #: ../src/guestfs-actions.pod:7505 ../src/guestfs-actions.pod:7524
9317 msgid "(Added in 1.0.66)"
9318 msgstr ""
9319
9320 # type: =head2
9321 #. type: =head2
9322 #: ../src/guestfs-actions.pod:1378
9323 msgid "guestfs_egrepi"
9324 msgstr ""
9325
9326 # type: verbatim
9327 #. type: verbatim
9328 #: ../src/guestfs-actions.pod:1380
9329 #, no-wrap
9330 msgid ""
9331 " char **\n"
9332 " guestfs_egrepi (guestfs_h *g,\n"
9333 "                 const char *regex,\n"
9334 "                 const char *path);\n"
9335 "\n"
9336 msgstr ""
9337
9338 # type: textblock
9339 #. type: textblock
9340 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
9341 msgid ""
9342 "This calls the external C<egrep -i> program and returns the matching lines."
9343 msgstr ""
9344
9345 # type: =head2
9346 #. type: =head2
9347 #: ../src/guestfs-actions.pod:1397
9348 msgid "guestfs_equal"
9349 msgstr ""
9350
9351 # type: verbatim
9352 #. type: verbatim
9353 #: ../src/guestfs-actions.pod:1399
9354 #, no-wrap
9355 msgid ""
9356 " int\n"
9357 " guestfs_equal (guestfs_h *g,\n"
9358 "                const char *file1,\n"
9359 "                const char *file2);\n"
9360 "\n"
9361 msgstr ""
9362
9363 # type: textblock
9364 #. type: textblock
9365 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
9366 msgid ""
9367 "This compares the two files C<file1> and C<file2> and returns true if their "
9368 "content is exactly equal, or false otherwise."
9369 msgstr ""
9370
9371 # type: textblock
9372 #. type: textblock
9373 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
9374 msgid "The external L<cmp(1)> program is used for the comparison."
9375 msgstr ""
9376
9377 # type: =head2
9378 #. type: =head2
9379 #: ../src/guestfs-actions.pod:1413
9380 msgid "guestfs_exists"
9381 msgstr ""
9382
9383 # type: verbatim
9384 #. type: verbatim
9385 #: ../src/guestfs-actions.pod:1415
9386 #, no-wrap
9387 msgid ""
9388 " int\n"
9389 " guestfs_exists (guestfs_h *g,\n"
9390 "                 const char *path);\n"
9391 "\n"
9392 msgstr ""
9393
9394 # type: textblock
9395 #. type: textblock
9396 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
9397 msgid ""
9398 "This returns C<true> if and only if there is a file, directory (or anything) "
9399 "with the given C<path> name."
9400 msgstr ""
9401
9402 # type: textblock
9403 #. type: textblock
9404 #: ../src/guestfs-actions.pod:1422
9405 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9406 msgstr ""
9407
9408 # type: =head2
9409 #. type: =head2
9410 #: ../src/guestfs-actions.pod:1428
9411 msgid "guestfs_fallocate"
9412 msgstr ""
9413
9414 # type: verbatim
9415 #. type: verbatim
9416 #: ../src/guestfs-actions.pod:1430
9417 #, no-wrap
9418 msgid ""
9419 " int\n"
9420 " guestfs_fallocate (guestfs_h *g,\n"
9421 "                    const char *path,\n"
9422 "                    int len);\n"
9423 "\n"
9424 msgstr ""
9425
9426 # type: textblock
9427 #. type: textblock
9428 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
9429 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
9430 msgid ""
9431 "This command preallocates a file (containing zero bytes) named C<path> of "
9432 "size C<len> bytes.  If the file exists already, it is overwritten."
9433 msgstr ""
9434
9435 # type: textblock
9436 #. type: textblock
9437 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
9438 msgid ""
9439 "Do not confuse this with the guestfish-specific C<alloc> command which "
9440 "allocates a file in the host and attaches it as a device."
9441 msgstr ""
9442
9443 # type: textblock
9444 #. type: textblock
9445 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
9446 msgid ""
9447 "This function is deprecated.  In new code, use the C<fallocate64> call "
9448 "instead."
9449 msgstr ""
9450
9451 # type: =head2
9452 #. type: =head2
9453 #: ../src/guestfs-actions.pod:1454
9454 msgid "guestfs_fallocate64"
9455 msgstr ""
9456
9457 # type: verbatim
9458 #. type: verbatim
9459 #: ../src/guestfs-actions.pod:1456
9460 #, no-wrap
9461 msgid ""
9462 " int\n"
9463 " guestfs_fallocate64 (guestfs_h *g,\n"
9464 "                      const char *path,\n"
9465 "                      int64_t len);\n"
9466 "\n"
9467 msgstr ""
9468
9469 # type: textblock
9470 #. type: textblock
9471 #: ../src/guestfs-actions.pod:1465
9472 msgid ""
9473 "Note that this call allocates disk blocks for the file.  To create a sparse "
9474 "file use C<guestfs_truncate_size> instead."
9475 msgstr ""
9476
9477 # type: textblock
9478 #. type: textblock
9479 #: ../src/guestfs-actions.pod:1468
9480 msgid ""
9481 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9482 "oversight it only allowed 30 bit lengths to be specified, effectively "
9483 "limiting the maximum size of files created through that call to 1GB."
9484 msgstr ""
9485
9486 # type: textblock
9487 #. type: textblock
9488 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
9489 msgid ""
9490 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9491 "commands which create a file in the host and attach it as a device."
9492 msgstr ""
9493
9494 # type: textblock
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:1479
9497 msgid "(Added in 1.3.17)"
9498 msgstr ""
9499
9500 # type: =head2
9501 #. type: =head2
9502 #: ../src/guestfs-actions.pod:1481
9503 msgid "guestfs_fgrep"
9504 msgstr ""
9505
9506 # type: verbatim
9507 #. type: verbatim
9508 #: ../src/guestfs-actions.pod:1483
9509 #, no-wrap
9510 msgid ""
9511 " char **\n"
9512 " guestfs_fgrep (guestfs_h *g,\n"
9513 "                const char *pattern,\n"
9514 "                const char *path);\n"
9515 "\n"
9516 msgstr ""
9517
9518 # type: textblock
9519 #. type: textblock
9520 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
9521 msgid ""
9522 "This calls the external C<fgrep> program and returns the matching lines."
9523 msgstr ""
9524
9525 # type: =head2
9526 #. type: =head2
9527 #: ../src/guestfs-actions.pod:1500
9528 msgid "guestfs_fgrepi"
9529 msgstr ""
9530
9531 # type: verbatim
9532 #. type: verbatim
9533 #: ../src/guestfs-actions.pod:1502
9534 #, no-wrap
9535 msgid ""
9536 " char **\n"
9537 " guestfs_fgrepi (guestfs_h *g,\n"
9538 "                 const char *pattern,\n"
9539 "                 const char *path);\n"
9540 "\n"
9541 msgstr ""
9542
9543 # type: textblock
9544 #. type: textblock
9545 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
9546 msgid ""
9547 "This calls the external C<fgrep -i> program and returns the matching lines."
9548 msgstr ""
9549
9550 # type: =head2
9551 #. type: =head2
9552 #: ../src/guestfs-actions.pod:1519
9553 msgid "guestfs_file"
9554 msgstr ""
9555
9556 # type: verbatim
9557 #. type: verbatim
9558 #: ../src/guestfs-actions.pod:1521
9559 #, no-wrap
9560 msgid ""
9561 " char *\n"
9562 " guestfs_file (guestfs_h *g,\n"
9563 "               const char *path);\n"
9564 "\n"
9565 msgstr ""
9566
9567 # type: textblock
9568 #. type: textblock
9569 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
9570 msgid ""
9571 "This call uses the standard L<file(1)> command to determine the type or "
9572 "contents of the file."
9573 msgstr ""
9574
9575 # type: textblock
9576 #. type: textblock
9577 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
9578 msgid ""
9579 "This call will also transparently look inside various types of compressed "
9580 "file."
9581 msgstr ""
9582
9583 #. type: textblock
9584 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
9585 msgid ""
9586 "The exact command which runs is C<file -zb path>.  Note in particular that "
9587 "the filename is not prepended to the output (the I<-b> option)."
9588 msgstr ""
9589
9590 #. type: textblock
9591 #: ../src/guestfs-actions.pod:1535 ../fish/guestfish-actions.pod:1014
9592 msgid ""
9593 "The output depends on the output of the underlying L<file(1)> command and it "
9594 "can change in future in ways beyond our control.  In other words, the output "
9595 "is not guaranteed by the ABI."
9596 msgstr ""
9597
9598 #. type: textblock
9599 #: ../src/guestfs-actions.pod:1539
9600 msgid ""
9601 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
9602 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
9603 msgstr ""
9604
9605 # type: =head2
9606 #. type: =head2
9607 #: ../src/guestfs-actions.pod:1547
9608 msgid "guestfs_file_architecture"
9609 msgstr ""
9610
9611 # type: verbatim
9612 #. type: verbatim
9613 #: ../src/guestfs-actions.pod:1549
9614 #, no-wrap
9615 msgid ""
9616 " char *\n"
9617 " guestfs_file_architecture (guestfs_h *g,\n"
9618 "                            const char *filename);\n"
9619 "\n"
9620 msgstr ""
9621
9622 # type: textblock
9623 #. type: textblock
9624 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1025
9625 msgid ""
9626 "This detects the architecture of the binary C<filename>, and returns it if "
9627 "known."
9628 msgstr ""
9629
9630 # type: textblock
9631 #. type: textblock
9632 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
9633 msgid "Currently defined architectures are:"
9634 msgstr ""
9635
9636 # type: =item
9637 #. type: =item
9638 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1032
9639 msgid "\"i386\""
9640 msgstr ""
9641
9642 # type: textblock
9643 #. type: textblock
9644 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1034
9645 msgid ""
9646 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9647 "irrespective of the precise processor requirements of the binary."
9648 msgstr ""
9649
9650 # type: =item
9651 #. type: =item
9652 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9653 msgid "\"x86_64\""
9654 msgstr ""
9655
9656 # type: textblock
9657 #. type: textblock
9658 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
9659 msgid "64 bit x86-64."
9660 msgstr ""
9661
9662 # type: =item
9663 #. type: =item
9664 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1041
9665 msgid "\"sparc\""
9666 msgstr ""
9667
9668 # type: textblock
9669 #. type: textblock
9670 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1043
9671 msgid "32 bit SPARC."
9672 msgstr ""
9673
9674 # type: =item
9675 #. type: =item
9676 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1045
9677 msgid "\"sparc64\""
9678 msgstr ""
9679
9680 # type: textblock
9681 #. type: textblock
9682 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1047
9683 msgid "64 bit SPARC V9 and above."
9684 msgstr ""
9685
9686 # type: =item
9687 #. type: =item
9688 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1049
9689 msgid "\"ia64\""
9690 msgstr ""
9691
9692 # type: textblock
9693 #. type: textblock
9694 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1051
9695 msgid "Intel Itanium."
9696 msgstr ""
9697
9698 # type: =item
9699 #. type: =item
9700 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1053
9701 msgid "\"ppc\""
9702 msgstr ""
9703
9704 # type: textblock
9705 #. type: textblock
9706 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1055
9707 msgid "32 bit Power PC."
9708 msgstr ""
9709
9710 # type: =item
9711 #. type: =item
9712 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1057
9713 msgid "\"ppc64\""
9714 msgstr ""
9715
9716 # type: textblock
9717 #. type: textblock
9718 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1059
9719 msgid "64 bit Power PC."
9720 msgstr ""
9721
9722 # type: textblock
9723 #. type: textblock
9724 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1063
9725 msgid "Libguestfs may return other architecture strings in future."
9726 msgstr ""
9727
9728 # type: textblock
9729 #. type: textblock
9730 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1065
9731 msgid "The function works on at least the following types of files:"
9732 msgstr ""
9733
9734 # type: textblock
9735 #. type: textblock
9736 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1071
9737 msgid "many types of Un*x and Linux binary"
9738 msgstr ""
9739
9740 # type: textblock
9741 #. type: textblock
9742 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1075
9743 msgid "many types of Un*x and Linux shared library"
9744 msgstr ""
9745
9746 # type: textblock
9747 #. type: textblock
9748 #: ../src/guestfs-actions.pod:1607 ../fish/guestfish-actions.pod:1079
9749 msgid "Windows Win32 and Win64 binaries"
9750 msgstr ""
9751
9752 # type: textblock
9753 #. type: textblock
9754 #: ../src/guestfs-actions.pod:1611 ../fish/guestfish-actions.pod:1083
9755 msgid "Windows Win32 and Win64 DLLs"
9756 msgstr ""
9757
9758 # type: textblock
9759 #. type: textblock
9760 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1085
9761 msgid "Win32 binaries and DLLs return C<i386>."
9762 msgstr ""
9763
9764 # type: textblock
9765 #. type: textblock
9766 #: ../src/guestfs-actions.pod:1615 ../fish/guestfish-actions.pod:1087
9767 msgid "Win64 binaries and DLLs return C<x86_64>."
9768 msgstr ""
9769
9770 # type: textblock
9771 #. type: textblock
9772 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1091
9773 msgid "Linux kernel modules"
9774 msgstr ""
9775
9776 # type: textblock
9777 #. type: textblock
9778 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1095
9779 msgid "Linux new-style initrd images"
9780 msgstr ""
9781
9782 # type: textblock
9783 #. type: textblock
9784 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1099
9785 msgid "some non-x86 Linux vmlinuz kernels"
9786 msgstr ""
9787
9788 # type: textblock
9789 #. type: textblock
9790 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1103
9791 msgid "What it can't do currently:"
9792 msgstr ""
9793
9794 # type: textblock
9795 #. type: textblock
9796 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1109
9797 msgid "static libraries (libfoo.a)"
9798 msgstr ""
9799
9800 # type: textblock
9801 #. type: textblock
9802 #: ../src/guestfs-actions.pod:1641 ../fish/guestfish-actions.pod:1113
9803 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9804 msgstr ""
9805
9806 # type: textblock
9807 #. type: textblock
9808 #: ../src/guestfs-actions.pod:1645 ../fish/guestfish-actions.pod:1117
9809 msgid "x86 Linux vmlinuz kernels"
9810 msgstr ""
9811
9812 # type: textblock
9813 #. type: textblock
9814 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1119
9815 msgid ""
9816 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9817 "compressed code, and are horribly hard to unpack.  If you want to find the "
9818 "architecture of a kernel, use the architecture of the associated initrd or "
9819 "kernel module(s) instead."
9820 msgstr ""
9821
9822 # type: textblock
9823 #. type: textblock
9824 #: ../src/guestfs-actions.pod:1657 ../src/guestfs-actions.pod:1820
9825 #: ../src/guestfs-actions.pod:1837 ../src/guestfs-actions.pod:2528
9826 #: ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2691
9827 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2800
9828 #: ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:2927
9829 #: ../src/guestfs-actions.pod:3024 ../src/guestfs-actions.pod:3271
9830 #: ../src/guestfs-actions.pod:3403
9831 msgid "(Added in 1.5.3)"
9832 msgstr ""
9833
9834 # type: =head2
9835 #. type: =head2
9836 #: ../src/guestfs-actions.pod:1659
9837 msgid "guestfs_filesize"
9838 msgstr ""
9839
9840 # type: verbatim
9841 #. type: verbatim
9842 #: ../src/guestfs-actions.pod:1661
9843 #, no-wrap
9844 msgid ""
9845 " int64_t\n"
9846 " guestfs_filesize (guestfs_h *g,\n"
9847 "                   const char *file);\n"
9848 "\n"
9849 msgstr ""
9850
9851 # type: textblock
9852 #. type: textblock
9853 #: ../src/guestfs-actions.pod:1665 ../fish/guestfish-actions.pod:1130
9854 msgid "This command returns the size of C<file> in bytes."
9855 msgstr ""
9856
9857 # type: textblock
9858 #. type: textblock
9859 #: ../src/guestfs-actions.pod:1667
9860 msgid ""
9861 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9862 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9863 "devices, use C<guestfs_blockdev_getsize64>."
9864 msgstr ""
9865
9866 # type: textblock
9867 #. type: textblock
9868 #: ../src/guestfs-actions.pod:1673
9869 msgid "(Added in 1.0.82)"
9870 msgstr ""
9871
9872 # type: =head2
9873 #. type: =head2
9874 #: ../src/guestfs-actions.pod:1675
9875 msgid "guestfs_fill"
9876 msgstr ""
9877
9878 # type: verbatim
9879 #. type: verbatim
9880 #: ../src/guestfs-actions.pod:1677
9881 #, no-wrap
9882 msgid ""
9883 " int\n"
9884 " guestfs_fill (guestfs_h *g,\n"
9885 "               int c,\n"
9886 "               int len,\n"
9887 "               const char *path);\n"
9888 "\n"
9889 msgstr ""
9890
9891 # type: textblock
9892 #. type: textblock
9893 #: ../src/guestfs-actions.pod:1683 ../fish/guestfish-actions.pod:1140
9894 msgid ""
9895 "This command creates a new file called C<path>.  The initial content of the "
9896 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9897 "[0..255]>."
9898 msgstr ""
9899
9900 # type: textblock
9901 #. type: textblock
9902 #: ../src/guestfs-actions.pod:1687
9903 msgid ""
9904 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9905 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9906 "bytes use C<guestfs_fill_pattern>."
9907 msgstr ""
9908
9909 # type: textblock
9910 #. type: textblock
9911 #: ../src/guestfs-actions.pod:1699
9912 msgid "(Added in 1.0.79)"
9913 msgstr ""
9914
9915 # type: =head2
9916 #. type: =head2
9917 #: ../src/guestfs-actions.pod:1701
9918 msgid "guestfs_fill_pattern"
9919 msgstr ""
9920
9921 # type: verbatim
9922 #. type: verbatim
9923 #: ../src/guestfs-actions.pod:1703
9924 #, no-wrap
9925 msgid ""
9926 " int\n"
9927 " guestfs_fill_pattern (guestfs_h *g,\n"
9928 "                       const char *pattern,\n"
9929 "                       int len,\n"
9930 "                       const char *path);\n"
9931 "\n"
9932 msgstr ""
9933
9934 # type: textblock
9935 #. type: textblock
9936 #: ../src/guestfs-actions.pod:1709
9937 msgid ""
9938 "This function is like C<guestfs_fill> except that it creates a new file of "
9939 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9940 "pattern is truncated if necessary to ensure the length of the file is "
9941 "exactly C<len> bytes."
9942 msgstr ""
9943
9944 # type: textblock
9945 #. type: textblock
9946 #: ../src/guestfs-actions.pod:1721
9947 msgid "(Added in 1.3.12)"
9948 msgstr ""
9949
9950 # type: =head2
9951 #. type: =head2
9952 #: ../src/guestfs-actions.pod:1723
9953 msgid "guestfs_find"
9954 msgstr ""
9955
9956 # type: verbatim
9957 #. type: verbatim
9958 #: ../src/guestfs-actions.pod:1725
9959 #, no-wrap
9960 msgid ""
9961 " char **\n"
9962 " guestfs_find (guestfs_h *g,\n"
9963 "               const char *directory);\n"
9964 "\n"
9965 msgstr ""
9966
9967 # type: textblock
9968 #. type: textblock
9969 #: ../src/guestfs-actions.pod:1729 ../fish/guestfish-actions.pod:1162
9970 msgid ""
9971 "This command lists out all files and directories, recursively, starting at "
9972 "C<directory>.  It is essentially equivalent to running the shell command "
9973 "C<find directory -print> but some post-processing happens on the output, "
9974 "described below."
9975 msgstr ""
9976
9977 # type: textblock
9978 #. type: textblock
9979 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9980 msgid ""
9981 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9982 "structure was:"
9983 msgstr ""
9984
9985 # type: verbatim
9986 #. type: verbatim
9987 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
9988 #, no-wrap
9989 msgid ""
9990 " /tmp/a\n"
9991 " /tmp/b\n"
9992 " /tmp/c/d\n"
9993 "\n"
9994 msgstr ""
9995
9996 # type: textblock
9997 #. type: textblock
9998 #: ../src/guestfs-actions.pod:1741
9999 msgid ""
10000 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
10001 msgstr ""
10002
10003 # type: verbatim
10004 #. type: verbatim
10005 #: ../src/guestfs-actions.pod:1744 ../fish/guestfish-actions.pod:1177
10006 #, no-wrap
10007 msgid ""
10008 " a\n"
10009 " b\n"
10010 " c\n"
10011 " c/d\n"
10012 "\n"
10013 msgstr ""
10014
10015 # type: textblock
10016 #. type: textblock
10017 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
10018 msgid "If C<directory> is not a directory, then this command returns an error."
10019 msgstr ""
10020
10021 # type: textblock
10022 #. type: textblock
10023 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
10024 msgid "The returned list is sorted."
10025 msgstr ""
10026
10027 # type: textblock
10028 #. type: textblock
10029 #: ../src/guestfs-actions.pod:1754
10030 msgid "See also C<guestfs_find0>."
10031 msgstr ""
10032
10033 # type: textblock
10034 #. type: textblock
10035 #: ../src/guestfs-actions.pod:1763 ../src/guestfs-actions.pod:4097
10036 #: ../src/guestfs-actions.pod:5647
10037 msgid "(Added in 1.0.27)"
10038 msgstr ""
10039
10040 # type: =head2
10041 #. type: =head2
10042 #: ../src/guestfs-actions.pod:1765
10043 msgid "guestfs_find0"
10044 msgstr ""
10045
10046 # type: verbatim
10047 #. type: verbatim
10048 #: ../src/guestfs-actions.pod:1767
10049 #, no-wrap
10050 msgid ""
10051 " int\n"
10052 " guestfs_find0 (guestfs_h *g,\n"
10053 "                const char *directory,\n"
10054 "                const char *files);\n"
10055 "\n"
10056 msgstr ""
10057
10058 # type: textblock
10059 #. type: textblock
10060 #: ../src/guestfs-actions.pod:1772 ../fish/guestfish-actions.pod:1196
10061 msgid ""
10062 "This command lists out all files and directories, recursively, starting at "
10063 "C<directory>, placing the resulting list in the external file called "
10064 "C<files>."
10065 msgstr ""
10066
10067 # type: textblock
10068 #. type: textblock
10069 #: ../src/guestfs-actions.pod:1776
10070 msgid ""
10071 "This command works the same way as C<guestfs_find> with the following "
10072 "exceptions:"
10073 msgstr ""
10074
10075 # type: textblock
10076 #. type: textblock
10077 #: ../src/guestfs-actions.pod:1783 ../fish/guestfish-actions.pod:1207
10078 msgid "The resulting list is written to an external file."
10079 msgstr ""
10080
10081 # type: textblock
10082 #. type: textblock
10083 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1211
10084 msgid ""
10085 "Items (filenames) in the result are separated by C<\\0> characters.  See "
10086 "L<find(1)> option I<-print0>."
10087 msgstr ""
10088
10089 # type: textblock
10090 #. type: textblock
10091 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
10092 msgid "This command is not limited in the number of names that it can return."
10093 msgstr ""
10094
10095 # type: textblock
10096 #. type: textblock
10097 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
10098 msgid "The result list is not sorted."
10099 msgstr ""
10100
10101 # type: textblock
10102 #. type: textblock
10103 #: ../src/guestfs-actions.pod:1803
10104 msgid "(Added in 1.0.74)"
10105 msgstr ""
10106
10107 # type: =head2
10108 #. type: =head2
10109 #: ../src/guestfs-actions.pod:1805
10110 msgid "guestfs_findfs_label"
10111 msgstr ""
10112
10113 # type: verbatim
10114 #. type: verbatim
10115 #: ../src/guestfs-actions.pod:1807
10116 #, no-wrap
10117 msgid ""
10118 " char *\n"
10119 " guestfs_findfs_label (guestfs_h *g,\n"
10120 "                       const char *label);\n"
10121 "\n"
10122 msgstr ""
10123
10124 # type: textblock
10125 #. type: textblock
10126 #: ../src/guestfs-actions.pod:1811 ../fish/guestfish-actions.pod:1231
10127 msgid ""
10128 "This command searches the filesystems and returns the one which has the "
10129 "given label.  An error is returned if no such filesystem can be found."
10130 msgstr ""
10131
10132 # type: textblock
10133 #. type: textblock
10134 #: ../src/guestfs-actions.pod:1815
10135 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
10136 msgstr ""
10137
10138 # type: =head2
10139 #. type: =head2
10140 #: ../src/guestfs-actions.pod:1822
10141 msgid "guestfs_findfs_uuid"
10142 msgstr ""
10143
10144 # type: verbatim
10145 #. type: verbatim
10146 #: ../src/guestfs-actions.pod:1824
10147 #, no-wrap
10148 msgid ""
10149 " char *\n"
10150 " guestfs_findfs_uuid (guestfs_h *g,\n"
10151 "                      const char *uuid);\n"
10152 "\n"
10153 msgstr ""
10154
10155 # type: textblock
10156 #. type: textblock
10157 #: ../src/guestfs-actions.pod:1828 ../fish/guestfish-actions.pod:1241
10158 msgid ""
10159 "This command searches the filesystems and returns the one which has the "
10160 "given UUID.  An error is returned if no such filesystem can be found."
10161 msgstr ""
10162
10163 # type: textblock
10164 #. type: textblock
10165 #: ../src/guestfs-actions.pod:1832
10166 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10167 msgstr ""
10168
10169 # type: =head2
10170 #. type: =head2
10171 #: ../src/guestfs-actions.pod:1839
10172 msgid "guestfs_fsck"
10173 msgstr ""
10174
10175 # type: verbatim
10176 #. type: verbatim
10177 #: ../src/guestfs-actions.pod:1841
10178 #, no-wrap
10179 msgid ""
10180 " int\n"
10181 " guestfs_fsck (guestfs_h *g,\n"
10182 "               const char *fstype,\n"
10183 "               const char *device);\n"
10184 "\n"
10185 msgstr ""
10186
10187 # type: textblock
10188 #. type: textblock
10189 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1251
10190 msgid ""
10191 "This runs the filesystem checker (fsck) on C<device> which should have "
10192 "filesystem type C<fstype>."
10193 msgstr ""
10194
10195 # type: textblock
10196 #. type: textblock
10197 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
10198 msgid ""
10199 "The returned integer is the status.  See L<fsck(8)> for the list of status "
10200 "codes from C<fsck>."
10201 msgstr ""
10202
10203 # type: textblock
10204 #. type: textblock
10205 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1263
10206 msgid "Multiple status codes can be summed together."
10207 msgstr ""
10208
10209 # type: textblock
10210 #. type: textblock
10211 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1267
10212 msgid ""
10213 "A non-zero return code can mean \"success\", for example if errors have been "
10214 "corrected on the filesystem."
10215 msgstr ""
10216
10217 # type: textblock
10218 #. type: textblock
10219 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
10220 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10221 msgstr ""
10222
10223 # type: textblock
10224 #. type: textblock
10225 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
10226 msgid ""
10227 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10228 msgstr ""
10229
10230 # type: textblock
10231 #. type: textblock
10232 #: ../src/guestfs-actions.pod:1876 ../src/guestfs-actions.pod:7378
10233 msgid "(Added in 1.0.16)"
10234 msgstr ""
10235
10236 # type: =head2
10237 #. type: =head2
10238 #: ../src/guestfs-actions.pod:1878
10239 msgid "guestfs_get_append"
10240 msgstr ""
10241
10242 # type: verbatim
10243 #. type: verbatim
10244 #: ../src/guestfs-actions.pod:1880
10245 #, no-wrap
10246 msgid ""
10247 " const char *\n"
10248 " guestfs_get_append (guestfs_h *g);\n"
10249 "\n"
10250 msgstr ""
10251
10252 # type: textblock
10253 #. type: textblock
10254 #: ../src/guestfs-actions.pod:1883 ../fish/guestfish-actions.pod:1283
10255 msgid ""
10256 "Return the additional kernel options which are added to the guest kernel "
10257 "command line."
10258 msgstr ""
10259
10260 # type: textblock
10261 #. type: textblock
10262 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
10263 msgid "If C<NULL> then no options are added."
10264 msgstr ""
10265
10266 # type: textblock
10267 #. type: textblock
10268 #: ../src/guestfs-actions.pod:1888
10269 msgid ""
10270 "This function returns a string which may be NULL.  There is no way to return "
10271 "an error from this function.  The string is owned by the guest handle and "
10272 "must I<not> be freed."
10273 msgstr ""
10274
10275 # type: textblock
10276 #. type: textblock
10277 #: ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:5325
10278 #: ../src/guestfs-actions.pod:5805 ../src/guestfs-actions.pod:6226
10279 #: ../src/guestfs-actions.pod:6245 ../src/guestfs-actions.pod:6261
10280 #: ../src/guestfs-actions.pod:6285 ../src/guestfs-actions.pod:7042
10281 #: ../src/guestfs-actions.pod:7060 ../src/guestfs-actions.pod:7421
10282 msgid "(Added in 1.0.26)"
10283 msgstr ""
10284
10285 #. type: =head2
10286 #: ../src/guestfs-actions.pod:1894
10287 msgid "guestfs_get_attach_method"
10288 msgstr ""
10289
10290 #. type: verbatim
10291 #: ../src/guestfs-actions.pod:1896
10292 #, no-wrap
10293 msgid ""
10294 " char *\n"
10295 " guestfs_get_attach_method (guestfs_h *g);\n"
10296 "\n"
10297 msgstr ""
10298
10299 #. type: textblock
10300 #: ../src/guestfs-actions.pod:1899
10301 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
10302 msgstr ""
10303
10304 # type: =head2
10305 #. type: =head2
10306 #: ../src/guestfs-actions.pod:1904
10307 msgid "guestfs_get_autosync"
10308 msgstr ""
10309
10310 # type: verbatim
10311 #. type: verbatim
10312 #: ../src/guestfs-actions.pod:1906
10313 #, no-wrap
10314 msgid ""
10315 " int\n"
10316 " guestfs_get_autosync (guestfs_h *g);\n"
10317 "\n"
10318 msgstr ""
10319
10320 # type: textblock
10321 #. type: textblock
10322 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1298
10323 msgid "Get the autosync flag."
10324 msgstr ""
10325
10326 # type: =head2
10327 #. type: =head2
10328 #: ../src/guestfs-actions.pod:1915
10329 msgid "guestfs_get_direct"
10330 msgstr ""
10331
10332 # type: verbatim
10333 #. type: verbatim
10334 #: ../src/guestfs-actions.pod:1917
10335 #, no-wrap
10336 msgid ""
10337 " int\n"
10338 " guestfs_get_direct (guestfs_h *g);\n"
10339 "\n"
10340 msgstr ""
10341
10342 # type: textblock
10343 #. type: textblock
10344 #: ../src/guestfs-actions.pod:1920 ../fish/guestfish-actions.pod:1304
10345 msgid "Return the direct appliance mode flag."
10346 msgstr ""
10347
10348 # type: textblock
10349 #. type: textblock
10350 #: ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:5874
10351 msgid "(Added in 1.0.72)"
10352 msgstr ""
10353
10354 # type: =head2
10355 #. type: =head2
10356 #: ../src/guestfs-actions.pod:1926
10357 msgid "guestfs_get_e2label"
10358 msgstr ""
10359
10360 # type: verbatim
10361 #. type: verbatim
10362 #: ../src/guestfs-actions.pod:1928
10363 #, no-wrap
10364 msgid ""
10365 " char *\n"
10366 " guestfs_get_e2label (guestfs_h *g,\n"
10367 "                      const char *device);\n"
10368 "\n"
10369 msgstr ""
10370
10371 # type: textblock
10372 #. type: textblock
10373 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1310
10374 msgid ""
10375 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10376 msgstr ""
10377
10378 # type: textblock
10379 #. type: textblock
10380 #: ../src/guestfs-actions.pod:1938 ../fish/guestfish-actions.pod:1313
10381 msgid ""
10382 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
10383 msgstr ""
10384
10385 # type: textblock
10386 #. type: textblock
10387 #: ../src/guestfs-actions.pod:1945 ../src/guestfs-actions.pod:1966
10388 #: ../src/guestfs-actions.pod:5892 ../src/guestfs-actions.pod:5911
10389 msgid "(Added in 1.0.15)"
10390 msgstr ""
10391
10392 # type: =head2
10393 #. type: =head2
10394 #: ../src/guestfs-actions.pod:1947
10395 msgid "guestfs_get_e2uuid"
10396 msgstr ""
10397
10398 # type: verbatim
10399 #. type: verbatim
10400 #: ../src/guestfs-actions.pod:1949
10401 #, no-wrap
10402 msgid ""
10403 " char *\n"
10404 " guestfs_get_e2uuid (guestfs_h *g,\n"
10405 "                     const char *device);\n"
10406 "\n"
10407 msgstr ""
10408
10409 # type: textblock
10410 #. type: textblock
10411 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1324
10412 msgid ""
10413 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10414 msgstr ""
10415
10416 # type: textblock
10417 #. type: textblock
10418 #: ../src/guestfs-actions.pod:1959 ../fish/guestfish-actions.pod:1327
10419 msgid ""
10420 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
10421 msgstr ""
10422
10423 # type: =head2
10424 #. type: =head2
10425 #: ../src/guestfs-actions.pod:1968
10426 msgid "guestfs_get_memsize"
10427 msgstr ""
10428
10429 # type: verbatim
10430 #. type: verbatim
10431 #: ../src/guestfs-actions.pod:1970
10432 #, no-wrap
10433 msgid ""
10434 " int\n"
10435 " guestfs_get_memsize (guestfs_h *g);\n"
10436 "\n"
10437 msgstr ""
10438
10439 # type: textblock
10440 #. type: textblock
10441 #: ../src/guestfs-actions.pod:1973 ../fish/guestfish-actions.pod:1338
10442 msgid ""
10443 "This gets the memory size in megabytes allocated to the qemu subprocess."
10444 msgstr ""
10445
10446 # type: textblock
10447 #. type: textblock
10448 #: ../src/guestfs-actions.pod:1976
10449 msgid ""
10450 "If C<guestfs_set_memsize> was not called on this handle, and if "
10451 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10452 "value for memsize."
10453 msgstr ""
10454
10455 # type: textblock
10456 #. type: textblock
10457 #: ../src/guestfs-actions.pod:1980 ../src/guestfs-actions.pod:2061
10458 #: ../src/guestfs-actions.pod:5927 ../src/guestfs-actions.pod:6034
10459 #: ../fish/guestfish-actions.pod:1345 ../fish/guestfish-actions.pod:1396
10460 #: ../fish/guestfish-actions.pod:3997 ../fish/guestfish-actions.pod:4084
10461 msgid ""
10462 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10463 msgstr ""
10464
10465 # type: textblock
10466 #. type: textblock
10467 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:4388
10468 #: ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4604
10469 #: ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4635
10470 #: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4665
10471 #: ../src/guestfs-actions.pod:5550 ../src/guestfs-actions.pod:5932
10472 #: ../src/guestfs-actions.pod:6193 ../src/guestfs-actions.pod:6808
10473 msgid "(Added in 1.0.55)"
10474 msgstr ""
10475
10476 # type: =head2
10477 #. type: =head2
10478 #: ../src/guestfs-actions.pod:1987
10479 msgid "guestfs_get_network"
10480 msgstr ""
10481
10482 # type: verbatim
10483 #. type: verbatim
10484 #: ../src/guestfs-actions.pod:1989
10485 #, no-wrap
10486 msgid ""
10487 " int\n"
10488 " guestfs_get_network (guestfs_h *g);\n"
10489 "\n"
10490 msgstr ""
10491
10492 # type: textblock
10493 #. type: textblock
10494 #: ../src/guestfs-actions.pod:1992 ../fish/guestfish-actions.pod:1352
10495 msgid "This returns the enable network flag."
10496 msgstr ""
10497
10498 # type: textblock
10499 #. type: textblock
10500 #: ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:5951
10501 msgid "(Added in 1.5.4)"
10502 msgstr ""
10503
10504 # type: =head2
10505 #. type: =head2
10506 #: ../src/guestfs-actions.pod:1998
10507 msgid "guestfs_get_path"
10508 msgstr ""
10509
10510 # type: verbatim
10511 #. type: verbatim
10512 #: ../src/guestfs-actions.pod:2000
10513 #, no-wrap
10514 msgid ""
10515 " const char *\n"
10516 " guestfs_get_path (guestfs_h *g);\n"
10517 "\n"
10518 msgstr ""
10519
10520 # type: textblock
10521 #. type: textblock
10522 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1358
10523 msgid "Return the current search path."
10524 msgstr ""
10525
10526 # type: textblock
10527 #. type: textblock
10528 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1360
10529 msgid ""
10530 "This is always non-NULL.  If it wasn't set already, then this will return "
10531 "the default path."
10532 msgstr ""
10533
10534 # type: textblock
10535 #. type: textblock
10536 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2037
10537 msgid ""
10538 "This function returns a string, or NULL on error.  The string is owned by "
10539 "the guest handle and must I<not> be freed."
10540 msgstr ""
10541
10542 # type: =head2
10543 #. type: =head2
10544 #: ../src/guestfs-actions.pod:2013
10545 msgid "guestfs_get_pid"
10546 msgstr ""
10547
10548 # type: verbatim
10549 #. type: verbatim
10550 #: ../src/guestfs-actions.pod:2015
10551 #, no-wrap
10552 msgid ""
10553 " int\n"
10554 " guestfs_get_pid (guestfs_h *g);\n"
10555 "\n"
10556 msgstr ""
10557
10558 # type: textblock
10559 #. type: textblock
10560 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1369
10561 msgid ""
10562 "Return the process ID of the qemu subprocess.  If there is no qemu "
10563 "subprocess, then this will return an error."
10564 msgstr ""
10565
10566 # type: textblock
10567 #. type: textblock
10568 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
10569 msgid "This is an internal call used for debugging and testing."
10570 msgstr ""
10571
10572 # type: textblock
10573 #. type: textblock
10574 #: ../src/guestfs-actions.pod:2025
10575 msgid "(Added in 1.0.56)"
10576 msgstr ""
10577
10578 # type: =head2
10579 #. type: =head2
10580 #: ../src/guestfs-actions.pod:2027
10581 msgid "guestfs_get_qemu"
10582 msgstr ""
10583
10584 # type: verbatim
10585 #. type: verbatim
10586 #: ../src/guestfs-actions.pod:2029
10587 #, no-wrap
10588 msgid ""
10589 " const char *\n"
10590 " guestfs_get_qemu (guestfs_h *g);\n"
10591 "\n"
10592 msgstr ""
10593
10594 # type: textblock
10595 #. type: textblock
10596 #: ../src/guestfs-actions.pod:2032 ../fish/guestfish-actions.pod:1378
10597 msgid "Return the current qemu binary."
10598 msgstr ""
10599
10600 # type: textblock
10601 #. type: textblock
10602 #: ../src/guestfs-actions.pod:2034 ../fish/guestfish-actions.pod:1380
10603 msgid ""
10604 "This is always non-NULL.  If it wasn't set already, then this will return "
10605 "the default qemu binary name."
10606 msgstr ""
10607
10608 # type: textblock
10609 #. type: textblock
10610 #: ../src/guestfs-actions.pod:2040 ../src/guestfs-actions.pod:5996
10611 msgid "(Added in 1.0.6)"
10612 msgstr ""
10613
10614 # type: =head2
10615 #. type: =head2
10616 #: ../src/guestfs-actions.pod:2042
10617 msgid "guestfs_get_recovery_proc"
10618 msgstr ""
10619
10620 # type: verbatim
10621 #. type: verbatim
10622 #: ../src/guestfs-actions.pod:2044
10623 #, no-wrap
10624 msgid ""
10625 " int\n"
10626 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10627 "\n"
10628 msgstr ""
10629
10630 # type: textblock
10631 #. type: textblock
10632 #: ../src/guestfs-actions.pod:2047 ../fish/guestfish-actions.pod:1387
10633 msgid "Return the recovery process enabled flag."
10634 msgstr ""
10635
10636 # type: textblock
10637 #. type: textblock
10638 #: ../src/guestfs-actions.pod:2051 ../src/guestfs-actions.pod:3498
10639 #: ../src/guestfs-actions.pod:3795 ../src/guestfs-actions.pod:4195
10640 #: ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:5255
10641 #: ../src/guestfs-actions.pod:5598 ../src/guestfs-actions.pod:6020
10642 #: ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6731
10643 #: ../src/guestfs-actions.pod:6923
10644 msgid "(Added in 1.0.77)"
10645 msgstr ""
10646
10647 # type: =head2
10648 #. type: =head2
10649 #: ../src/guestfs-actions.pod:2053
10650 msgid "guestfs_get_selinux"
10651 msgstr ""
10652
10653 # type: verbatim
10654 #. type: verbatim
10655 #: ../src/guestfs-actions.pod:2055
10656 #, no-wrap
10657 msgid ""
10658 " int\n"
10659 " guestfs_get_selinux (guestfs_h *g);\n"
10660 "\n"
10661 msgstr ""
10662
10663 # type: textblock
10664 #. type: textblock
10665 #: ../src/guestfs-actions.pod:2058
10666 msgid ""
10667 "This returns the current setting of the selinux flag which is passed to the "
10668 "appliance at boot time.  See C<guestfs_set_selinux>."
10669 msgstr ""
10670
10671 # type: textblock
10672 #. type: textblock
10673 #: ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2129
10674 #: ../src/guestfs-actions.pod:6039 ../src/guestfs-actions.pod:6097
10675 msgid "(Added in 1.0.67)"
10676 msgstr ""
10677
10678 # type: =head2
10679 #. type: =head2
10680 #: ../src/guestfs-actions.pod:2068
10681 msgid "guestfs_get_state"
10682 msgstr ""
10683
10684 # type: verbatim
10685 #. type: verbatim
10686 #: ../src/guestfs-actions.pod:2070
10687 #, no-wrap
10688 msgid ""
10689 " int\n"
10690 " guestfs_get_state (guestfs_h *g);\n"
10691 "\n"
10692 msgstr ""
10693
10694 # type: textblock
10695 #. type: textblock
10696 #: ../src/guestfs-actions.pod:2073 ../fish/guestfish-actions.pod:1403
10697 msgid ""
10698 "This returns the current state as an opaque integer.  This is only useful "
10699 "for printing debug and internal error messages."
10700 msgstr ""
10701
10702 # type: textblock
10703 #. type: textblock
10704 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:3296
10705 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3386
10706 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:1406
10707 #: ../fish/guestfish-actions.pod:2320 ../fish/guestfish-actions.pod:2338
10708 #: ../fish/guestfish-actions.pod:2376 ../fish/guestfish-actions.pod:2392
10709 msgid "For more information on states, see L<guestfs(3)>."
10710 msgstr ""
10711
10712 # type: =head2
10713 #. type: =head2
10714 #: ../src/guestfs-actions.pod:2082
10715 msgid "guestfs_get_trace"
10716 msgstr ""
10717
10718 # type: verbatim
10719 #. type: verbatim
10720 #: ../src/guestfs-actions.pod:2084
10721 #, no-wrap
10722 msgid ""
10723 " int\n"
10724 " guestfs_get_trace (guestfs_h *g);\n"
10725 "\n"
10726 msgstr ""
10727
10728 # type: textblock
10729 #. type: textblock
10730 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
10731 msgid "Return the command trace flag."
10732 msgstr ""
10733
10734 # type: =head2
10735 #. type: =head2
10736 #: ../src/guestfs-actions.pod:2093
10737 msgid "guestfs_get_umask"
10738 msgstr ""
10739
10740 # type: verbatim
10741 #. type: verbatim
10742 #: ../src/guestfs-actions.pod:2095
10743 #, no-wrap
10744 msgid ""
10745 " int\n"
10746 " guestfs_get_umask (guestfs_h *g);\n"
10747 "\n"
10748 msgstr ""
10749
10750 # type: textblock
10751 #. type: textblock
10752 #: ../src/guestfs-actions.pod:2098
10753 msgid ""
10754 "Return the current umask.  By default the umask is C<022> unless it has been "
10755 "set by calling C<guestfs_umask>."
10756 msgstr ""
10757
10758 # type: =head2
10759 #. type: =head2
10760 #: ../src/guestfs-actions.pod:2105
10761 msgid "guestfs_get_verbose"
10762 msgstr ""
10763
10764 # type: verbatim
10765 #. type: verbatim
10766 #: ../src/guestfs-actions.pod:2107
10767 #, no-wrap
10768 msgid ""
10769 " int\n"
10770 " guestfs_get_verbose (guestfs_h *g);\n"
10771 "\n"
10772 msgstr ""
10773
10774 # type: textblock
10775 #. type: textblock
10776 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1425
10777 msgid "This returns the verbose messages flag."
10778 msgstr ""
10779
10780 # type: =head2
10781 #. type: =head2
10782 #: ../src/guestfs-actions.pod:2116
10783 msgid "guestfs_getcon"
10784 msgstr ""
10785
10786 # type: verbatim
10787 #. type: verbatim
10788 #: ../src/guestfs-actions.pod:2118
10789 #, no-wrap
10790 msgid ""
10791 " char *\n"
10792 " guestfs_getcon (guestfs_h *g);\n"
10793 "\n"
10794 msgstr ""
10795
10796 # type: textblock
10797 #. type: textblock
10798 #: ../src/guestfs-actions.pod:2121 ../fish/guestfish-actions.pod:1431
10799 msgid "This gets the SELinux security context of the daemon."
10800 msgstr ""
10801
10802 # type: textblock
10803 #. type: textblock
10804 #: ../src/guestfs-actions.pod:2123
10805 msgid ""
10806 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10807 msgstr ""
10808
10809 # type: =head2
10810 #. type: =head2
10811 #: ../src/guestfs-actions.pod:2131
10812 msgid "guestfs_getxattr"
10813 msgstr ""
10814
10815 # type: verbatim
10816 #. type: verbatim
10817 #: ../src/guestfs-actions.pod:2133
10818 #, no-wrap
10819 msgid ""
10820 " char *\n"
10821 " guestfs_getxattr (guestfs_h *g,\n"
10822 "                   const char *path,\n"
10823 "                   const char *name,\n"
10824 "                   size_t *size_r);\n"
10825 "\n"
10826 msgstr ""
10827
10828 # type: textblock
10829 #. type: textblock
10830 #: ../src/guestfs-actions.pod:2139
10831 msgid ""
10832 "Get a single extended attribute from file C<path> named C<name>.  This call "
10833 "follows symlinks.  If you want to lookup an extended attribute for the "
10834 "symlink itself, use C<guestfs_lgetxattr>."
10835 msgstr ""
10836
10837 # type: textblock
10838 #. type: textblock
10839 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:3512
10840 msgid ""
10841 "Normally it is better to get all extended attributes from a file in one go "
10842 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10843 "implementations are buggy and do not provide a way to list out attributes.  "
10844 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10845 "extended attributes you want in advance and call this function."
10846 msgstr ""
10847
10848 # type: textblock
10849 #. type: textblock
10850 #: ../src/guestfs-actions.pod:2150 ../src/guestfs-actions.pod:3519
10851 #: ../fish/guestfish-actions.pod:1451 ../fish/guestfish-actions.pod:2457
10852 msgid ""
10853 "Extended attribute values are blobs of binary data.  If there is no extended "
10854 "attribute named C<name>, this returns an error."
10855 msgstr ""
10856
10857 # type: textblock
10858 #. type: textblock
10859 #: ../src/guestfs-actions.pod:2153
10860 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10861 msgstr ""
10862
10863 # type: textblock
10864 #. type: textblock
10865 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:2346
10866 #: ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:5248
10867 #: ../src/guestfs-actions.pod:5274 ../src/guestfs-actions.pod:5455
10868 msgid ""
10869 "This function returns a buffer, or NULL on error.  The size of the returned "
10870 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10871 "after use>."
10872 msgstr ""
10873
10874 #. type: textblock
10875 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
10876 msgid "(Added in 1.7.24)"
10877 msgstr ""
10878
10879 # type: =head2
10880 #. type: =head2
10881 #: ../src/guestfs-actions.pod:2161
10882 msgid "guestfs_getxattrs"
10883 msgstr ""
10884
10885 # type: verbatim
10886 #. type: verbatim
10887 #: ../src/guestfs-actions.pod:2163
10888 #, no-wrap
10889 msgid ""
10890 " struct guestfs_xattr_list *\n"
10891 " guestfs_getxattrs (guestfs_h *g,\n"
10892 "                    const char *path);\n"
10893 "\n"
10894 msgstr ""
10895
10896 # type: textblock
10897 #. type: textblock
10898 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1460
10899 msgid ""
10900 "This call lists the extended attributes of the file or directory C<path>."
10901 msgstr ""
10902
10903 # type: textblock
10904 #. type: textblock
10905 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
10906 msgid ""
10907 "At the system call level, this is a combination of the L<listxattr(2)> and "
10908 "L<getxattr(2)> calls."
10909 msgstr ""
10910
10911 # type: textblock
10912 #. type: textblock
10913 #: ../src/guestfs-actions.pod:2173
10914 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10915 msgstr ""
10916
10917 # type: textblock
10918 #. type: textblock
10919 #: ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:3540
10920 #: ../src/guestfs-actions.pod:4191
10921 msgid ""
10922 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10923 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10924 msgstr ""
10925
10926 # type: textblock
10927 #. type: textblock
10928 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3544
10929 #: ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3745
10930 #: ../src/guestfs-actions.pod:5628 ../src/guestfs-actions.pod:6116
10931 #: ../src/guestfs-actions.pod:7486
10932 msgid "(Added in 1.0.59)"
10933 msgstr ""
10934
10935 # type: =head2
10936 #. type: =head2
10937 #: ../src/guestfs-actions.pod:2181
10938 msgid "guestfs_glob_expand"
10939 msgstr ""
10940
10941 # type: verbatim
10942 #. type: verbatim
10943 #: ../src/guestfs-actions.pod:2183
10944 #, no-wrap
10945 msgid ""
10946 " char **\n"
10947 " guestfs_glob_expand (guestfs_h *g,\n"
10948 "                      const char *pattern);\n"
10949 "\n"
10950 msgstr ""
10951
10952 # type: textblock
10953 #. type: textblock
10954 #: ../src/guestfs-actions.pod:2187 ../fish/guestfish-actions.pod:1472
10955 msgid ""
10956 "This command searches for all the pathnames matching C<pattern> according to "
10957 "the wildcard expansion rules used by the shell."
10958 msgstr ""
10959
10960 # type: textblock
10961 #. type: textblock
10962 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1476
10963 msgid ""
10964 "If no paths match, then this returns an empty list (note: not an error)."
10965 msgstr ""
10966
10967 # type: textblock
10968 #. type: textblock
10969 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
10970 msgid ""
10971 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10972 "GLOB_BRACE>.  See that manual page for more details."
10973 msgstr ""
10974
10975 # type: textblock
10976 #. type: textblock
10977 #: ../src/guestfs-actions.pod:2202 ../src/guestfs-actions.pod:6309
10978 #: ../src/guestfs-actions.pod:6326
10979 msgid "(Added in 1.0.50)"
10980 msgstr ""
10981
10982 # type: =head2
10983 #. type: =head2
10984 #: ../src/guestfs-actions.pod:2204
10985 msgid "guestfs_grep"
10986 msgstr ""
10987
10988 # type: verbatim
10989 #. type: verbatim
10990 #: ../src/guestfs-actions.pod:2206
10991 #, no-wrap
10992 msgid ""
10993 " char **\n"
10994 " guestfs_grep (guestfs_h *g,\n"
10995 "               const char *regex,\n"
10996 "               const char *path);\n"
10997 "\n"
10998 msgstr ""
10999
11000 # type: textblock
11001 #. type: textblock
11002 #: ../src/guestfs-actions.pod:2211 ../fish/guestfish-actions.pod:1487
11003 msgid "This calls the external C<grep> program and returns the matching lines."
11004 msgstr ""
11005
11006 # type: =head2
11007 #. type: =head2
11008 #: ../src/guestfs-actions.pod:2223
11009 msgid "guestfs_grepi"
11010 msgstr ""
11011
11012 # type: verbatim
11013 #. type: verbatim
11014 #: ../src/guestfs-actions.pod:2225
11015 #, no-wrap
11016 msgid ""
11017 " char **\n"
11018 " guestfs_grepi (guestfs_h *g,\n"
11019 "                const char *regex,\n"
11020 "                const char *path);\n"
11021 "\n"
11022 msgstr ""
11023
11024 # type: textblock
11025 #. type: textblock
11026 #: ../src/guestfs-actions.pod:2230 ../fish/guestfish-actions.pod:1497
11027 msgid ""
11028 "This calls the external C<grep -i> program and returns the matching lines."
11029 msgstr ""
11030
11031 # type: =head2
11032 #. type: =head2
11033 #: ../src/guestfs-actions.pod:2242
11034 msgid "guestfs_grub_install"
11035 msgstr ""
11036
11037 # type: verbatim
11038 #. type: verbatim
11039 #: ../src/guestfs-actions.pod:2244
11040 #, no-wrap
11041 msgid ""
11042 " int\n"
11043 " guestfs_grub_install (guestfs_h *g,\n"
11044 "                       const char *root,\n"
11045 "                       const char *device);\n"
11046 "\n"
11047 msgstr ""
11048
11049 # type: textblock
11050 #. type: textblock
11051 #: ../src/guestfs-actions.pod:2249 ../fish/guestfish-actions.pod:1507
11052 msgid ""
11053 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
11054 "the root directory being C<root>."
11055 msgstr ""
11056
11057 # type: textblock
11058 #. type: textblock
11059 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
11060 msgid ""
11061 "Note: If grub-install reports the error \"No suitable drive was found in the "
11062 "generated device map.\" it may be that you need to create a C</boot/grub/"
11063 "device.map> file first that contains the mapping between grub device names "
11064 "and Linux device names.  It is usually sufficient to create a file "
11065 "containing:"
11066 msgstr ""
11067
11068 # type: verbatim
11069 #. type: verbatim
11070 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1517
11071 #, no-wrap
11072 msgid ""
11073 " (hd0) /dev/vda\n"
11074 "\n"
11075 msgstr ""
11076
11077 # type: textblock
11078 #. type: textblock
11079 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1519
11080 msgid "replacing C</dev/vda> with the name of the installation device."
11081 msgstr ""
11082
11083 # type: textblock
11084 #. type: textblock
11085 #: ../src/guestfs-actions.pod:2265
11086 msgid "(Added in 1.0.17)"
11087 msgstr ""
11088
11089 # type: =head2
11090 #. type: =head2
11091 #: ../src/guestfs-actions.pod:2267
11092 msgid "guestfs_head"
11093 msgstr ""
11094
11095 # type: verbatim
11096 #. type: verbatim
11097 #: ../src/guestfs-actions.pod:2269
11098 #, no-wrap
11099 msgid ""
11100 " char **\n"
11101 " guestfs_head (guestfs_h *g,\n"
11102 "               const char *path);\n"
11103 "\n"
11104 msgstr ""
11105
11106 # type: textblock
11107 #. type: textblock
11108 #: ../src/guestfs-actions.pod:2273 ../fish/guestfish-actions.pod:1525
11109 msgid ""
11110 "This command returns up to the first 10 lines of a file as a list of strings."
11111 msgstr ""
11112
11113 # type: =head2
11114 #. type: =head2
11115 #: ../src/guestfs-actions.pod:2285
11116 msgid "guestfs_head_n"
11117 msgstr ""
11118
11119 # type: verbatim
11120 #. type: verbatim
11121 #: ../src/guestfs-actions.pod:2287
11122 #, no-wrap
11123 msgid ""
11124 " char **\n"
11125 " guestfs_head_n (guestfs_h *g,\n"
11126 "                 int nrlines,\n"
11127 "                 const char *path);\n"
11128 "\n"
11129 msgstr ""
11130
11131 # type: textblock
11132 #. type: textblock
11133 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1535
11134 msgid ""
11135 "If the parameter C<nrlines> is a positive number, this returns the first "
11136 "C<nrlines> lines of the file C<path>."
11137 msgstr ""
11138
11139 # type: textblock
11140 #. type: textblock
11141 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
11142 msgid ""
11143 "If the parameter C<nrlines> is a negative number, this returns lines from "
11144 "the file C<path>, excluding the last C<nrlines> lines."
11145 msgstr ""
11146
11147 # type: textblock
11148 #. type: textblock
11149 #: ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:6606
11150 #: ../fish/guestfish-actions.pod:1541 ../fish/guestfish-actions.pod:4462
11151 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
11152 msgstr ""
11153
11154 # type: =head2
11155 #. type: =head2
11156 #: ../src/guestfs-actions.pod:2309
11157 msgid "guestfs_hexdump"
11158 msgstr ""
11159
11160 # type: verbatim
11161 #. type: verbatim
11162 #: ../src/guestfs-actions.pod:2311
11163 #, no-wrap
11164 msgid ""
11165 " char *\n"
11166 " guestfs_hexdump (guestfs_h *g,\n"
11167 "                  const char *path);\n"
11168 "\n"
11169 msgstr ""
11170
11171 # type: textblock
11172 #. type: textblock
11173 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1550
11174 msgid ""
11175 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
11176 "readable, canonical hex dump of the file."
11177 msgstr ""
11178
11179 # type: textblock
11180 #. type: textblock
11181 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:6390
11182 #: ../src/guestfs-actions.pod:6445
11183 msgid "(Added in 1.0.22)"
11184 msgstr ""
11185
11186 # type: =head2
11187 #. type: =head2
11188 #: ../src/guestfs-actions.pod:2326
11189 msgid "guestfs_initrd_cat"
11190 msgstr ""
11191
11192 # type: verbatim
11193 #. type: verbatim
11194 #: ../src/guestfs-actions.pod:2328
11195 #, no-wrap
11196 msgid ""
11197 " char *\n"
11198 " guestfs_initrd_cat (guestfs_h *g,\n"
11199 "                     const char *initrdpath,\n"
11200 "                     const char *filename,\n"
11201 "                     size_t *size_r);\n"
11202 "\n"
11203 msgstr ""
11204
11205 # type: textblock
11206 #. type: textblock
11207 #: ../src/guestfs-actions.pod:2334 ../fish/guestfish-actions.pod:1560
11208 msgid ""
11209 "This command unpacks the file C<filename> from the initrd file called "
11210 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
11211 "character."
11212 msgstr ""
11213
11214 # type: textblock
11215 #. type: textblock
11216 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1564
11217 msgid ""
11218 "For example, in guestfish you could use the following command to examine the "
11219 "boot script (usually called C</init>)  contained in a Linux initrd or "
11220 "initramfs image:"
11221 msgstr ""
11222
11223 # type: verbatim
11224 #. type: verbatim
11225 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1568
11226 #, no-wrap
11227 msgid ""
11228 " initrd-cat /boot/initrd-<version>.img init\n"
11229 "\n"
11230 msgstr ""
11231
11232 # type: textblock
11233 #. type: textblock
11234 #: ../src/guestfs-actions.pod:2344
11235 msgid "See also C<guestfs_initrd_list>."
11236 msgstr ""
11237
11238 # type: =head2
11239 #. type: =head2
11240 #: ../src/guestfs-actions.pod:2355
11241 msgid "guestfs_initrd_list"
11242 msgstr ""
11243
11244 # type: verbatim
11245 #. type: verbatim
11246 #: ../src/guestfs-actions.pod:2357
11247 #, no-wrap
11248 msgid ""
11249 " char **\n"
11250 " guestfs_initrd_list (guestfs_h *g,\n"
11251 "                      const char *path);\n"
11252 "\n"
11253 msgstr ""
11254
11255 # type: textblock
11256 #. type: textblock
11257 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1579
11258 msgid "This command lists out files contained in an initrd."
11259 msgstr ""
11260
11261 # type: textblock
11262 #. type: textblock
11263 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1581
11264 msgid ""
11265 "The files are listed without any initial C</> character.  The files are "
11266 "listed in the order they appear (not necessarily alphabetical).  Directory "
11267 "names are listed as separate items."
11268 msgstr ""
11269
11270 # type: textblock
11271 #. type: textblock
11272 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1585
11273 msgid ""
11274 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11275 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
11276 "files)."
11277 msgstr ""
11278
11279 # type: =head2
11280 #. type: =head2
11281 #: ../src/guestfs-actions.pod:2377
11282 msgid "guestfs_inotify_add_watch"
11283 msgstr ""
11284
11285 # type: verbatim
11286 #. type: verbatim
11287 #: ../src/guestfs-actions.pod:2379
11288 #, no-wrap
11289 msgid ""
11290 " int64_t\n"
11291 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11292 "                            const char *path,\n"
11293 "                            int mask);\n"
11294 "\n"
11295 msgstr ""
11296
11297 # type: textblock
11298 #. type: textblock
11299 #: ../src/guestfs-actions.pod:2384 ../fish/guestfish-actions.pod:1593
11300 msgid "Watch C<path> for the events listed in C<mask>."
11301 msgstr ""
11302
11303 # type: textblock
11304 #. type: textblock
11305 #: ../src/guestfs-actions.pod:2386 ../fish/guestfish-actions.pod:1595
11306 msgid ""
11307 "Note that if C<path> is a directory then events within that directory are "
11308 "watched, but this does I<not> happen recursively (in subdirectories)."
11309 msgstr ""
11310
11311 # type: textblock
11312 #. type: textblock
11313 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1599
11314 msgid ""
11315 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11316 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11317 msgstr ""
11318
11319 # type: =head2
11320 #. type: =head2
11321 #: ../src/guestfs-actions.pod:2398
11322 msgid "guestfs_inotify_close"
11323 msgstr ""
11324
11325 # type: verbatim
11326 #. type: verbatim
11327 #: ../src/guestfs-actions.pod:2400
11328 #, no-wrap
11329 msgid ""
11330 " int\n"
11331 " guestfs_inotify_close (guestfs_h *g);\n"
11332 "\n"
11333 msgstr ""
11334
11335 # type: textblock
11336 #. type: textblock
11337 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1607
11338 msgid ""
11339 "This closes the inotify handle which was previously opened by inotify_init.  "
11340 "It removes all watches, throws away any pending events, and deallocates all "
11341 "resources."
11342 msgstr ""
11343
11344 # type: =head2
11345 #. type: =head2
11346 #: ../src/guestfs-actions.pod:2411
11347 msgid "guestfs_inotify_files"
11348 msgstr ""
11349
11350 # type: verbatim
11351 #. type: verbatim
11352 #: ../src/guestfs-actions.pod:2413
11353 #, no-wrap
11354 msgid ""
11355 " char **\n"
11356 " guestfs_inotify_files (guestfs_h *g);\n"
11357 "\n"
11358 msgstr ""
11359
11360 # type: textblock
11361 #. type: textblock
11362 #: ../src/guestfs-actions.pod:2416
11363 msgid ""
11364 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11365 "returns a list of pathnames of objects that were touched.  The returned "
11366 "pathnames are sorted and deduplicated."
11367 msgstr ""
11368
11369 # type: =head2
11370 #. type: =head2
11371 #: ../src/guestfs-actions.pod:2426
11372 msgid "guestfs_inotify_init"
11373 msgstr ""
11374
11375 # type: verbatim
11376 #. type: verbatim
11377 #: ../src/guestfs-actions.pod:2428
11378 #, no-wrap
11379 msgid ""
11380 " int\n"
11381 " guestfs_inotify_init (guestfs_h *g,\n"
11382 "                       int maxevents);\n"
11383 "\n"
11384 msgstr ""
11385
11386 # type: textblock
11387 #. type: textblock
11388 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1623
11389 msgid ""
11390 "This command creates a new inotify handle.  The inotify subsystem can be "
11391 "used to notify events which happen to objects in the guest filesystem."
11392 msgstr ""
11393
11394 # type: textblock
11395 #. type: textblock
11396 #: ../src/guestfs-actions.pod:2436
11397 msgid ""
11398 "C<maxevents> is the maximum number of events which will be queued up between "
11399 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
11400 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
11401 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
11402 "throws away events, but records the fact that it threw them away by setting "
11403 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11404 "C<guestfs_inotify_read>)."
11405 msgstr ""
11406
11407 # type: textblock
11408 #. type: textblock
11409 #: ../src/guestfs-actions.pod:2446
11410 msgid ""
11411 "Before any events are generated, you have to add some watches to the "
11412 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
11413 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11414 msgstr ""
11415
11416 # type: textblock
11417 #. type: textblock
11418 #: ../src/guestfs-actions.pod:2452
11419 msgid ""
11420 "Queued up events should be read periodically by calling "
11421 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11422 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
11423 "often enough then you risk the internal queue overflowing."
11424 msgstr ""
11425
11426 # type: textblock
11427 #. type: textblock
11428 #: ../src/guestfs-actions.pod:2459
11429 msgid ""
11430 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
11431 "This also removes any watches automatically."
11432 msgstr ""
11433
11434 # type: textblock
11435 #. type: textblock
11436 #: ../src/guestfs-actions.pod:2463 ../fish/guestfish-actions.pod:1654
11437 msgid ""
11438 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11439 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
11440 "that there is one global inotify handle per libguestfs instance."
11441 msgstr ""
11442
11443 # type: =head2
11444 #. type: =head2
11445 #: ../src/guestfs-actions.pod:2472
11446 msgid "guestfs_inotify_read"
11447 msgstr ""
11448
11449 # type: verbatim
11450 #. type: verbatim
11451 #: ../src/guestfs-actions.pod:2474
11452 #, no-wrap
11453 msgid ""
11454 " struct guestfs_inotify_event_list *\n"
11455 " guestfs_inotify_read (guestfs_h *g);\n"
11456 "\n"
11457 msgstr ""
11458
11459 # type: textblock
11460 #. type: textblock
11461 #: ../src/guestfs-actions.pod:2477 ../fish/guestfish-actions.pod:1663
11462 msgid ""
11463 "Return the complete queue of events that have happened since the previous "
11464 "read call."
11465 msgstr ""
11466
11467 # type: textblock
11468 #. type: textblock
11469 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
11470 msgid "If no events have happened, this returns an empty list."
11471 msgstr ""
11472
11473 # type: textblock
11474 #. type: textblock
11475 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
11476 msgid ""
11477 "I<Note>: In order to make sure that all events have been read, you must call "
11478 "this function repeatedly until it returns an empty list.  The reason is that "
11479 "the call will read events up to the maximum appliance-to-host message size "
11480 "and leave remaining events in the queue."
11481 msgstr ""
11482
11483 # type: textblock
11484 #. type: textblock
11485 #: ../src/guestfs-actions.pod:2488
11486 msgid ""
11487 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11488 "there was an error.  I<The caller must call "
11489 "C<guestfs_free_inotify_event_list> after use>."
11490 msgstr ""
11491
11492 # type: =head2
11493 #. type: =head2
11494 #: ../src/guestfs-actions.pod:2494
11495 msgid "guestfs_inotify_rm_watch"
11496 msgstr ""
11497
11498 # type: verbatim
11499 #. type: verbatim
11500 #: ../src/guestfs-actions.pod:2496
11501 #, no-wrap
11502 msgid ""
11503 " int\n"
11504 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11505 "                           int wd);\n"
11506 "\n"
11507 msgstr ""
11508
11509 # type: textblock
11510 #. type: textblock
11511 #: ../src/guestfs-actions.pod:2500
11512 msgid ""
11513 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
11514 msgstr ""
11515
11516 # type: =head2
11517 #. type: =head2
11518 #: ../src/guestfs-actions.pod:2507
11519 msgid "guestfs_inspect_get_arch"
11520 msgstr ""
11521
11522 # type: verbatim
11523 #. type: verbatim
11524 #: ../src/guestfs-actions.pod:2509
11525 #, no-wrap
11526 msgid ""
11527 " char *\n"
11528 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11529 "                           const char *root);\n"
11530 "\n"
11531 msgstr ""
11532
11533 # type: textblock
11534 #. type: textblock
11535 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2536
11536 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2673
11537 #: ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2738
11538 #: ../src/guestfs-actions.pod:2760 ../src/guestfs-actions.pod:2787
11539 #: ../src/guestfs-actions.pod:2808 ../src/guestfs-actions.pod:2851
11540 #: ../src/guestfs-actions.pod:2880 ../src/guestfs-actions.pod:2911
11541 #: ../src/guestfs-actions.pod:2935 ../src/guestfs-actions.pod:2990
11542 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3053
11543 #: ../src/guestfs-actions.pod:3076 ../src/guestfs-actions.pod:3093
11544 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3129
11545 msgid ""
11546 "This function should only be called with a root device string as returned by "
11547 "C<guestfs_inspect_os>."
11548 msgstr ""
11549
11550 # type: textblock
11551 #. type: textblock
11552 #: ../src/guestfs-actions.pod:2516
11553 msgid ""
11554 "This returns the architecture of the inspected operating system.  The "
11555 "possible return values are listed under C<guestfs_file_architecture>."
11556 msgstr ""
11557
11558 # type: textblock
11559 #. type: textblock
11560 #: ../src/guestfs-actions.pod:2520 ../fish/guestfish-actions.pod:1692
11561 msgid ""
11562 "If the architecture could not be determined, then the string C<unknown> is "
11563 "returned."
11564 msgstr ""
11565
11566 # type: textblock
11567 #. type: textblock
11568 #: ../src/guestfs-actions.pod:2523 ../src/guestfs-actions.pod:2616
11569 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2747
11570 #: ../src/guestfs-actions.pod:2775 ../src/guestfs-actions.pod:2867
11571 #: ../src/guestfs-actions.pod:2898 ../src/guestfs-actions.pod:2922
11572 #: ../src/guestfs-actions.pod:2976 ../src/guestfs-actions.pod:3019
11573 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
11574 #: ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3100
11575 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3222
11576 #: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:1695
11577 #: ../fish/guestfish-actions.pod:1781 ../fish/guestfish-actions.pod:1869
11578 #: ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1905
11579 #: ../fish/guestfish-actions.pod:1975 ../fish/guestfish-actions.pod:1999
11580 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2059
11581 #: ../fish/guestfish-actions.pod:2094 ../fish/guestfish-actions.pod:2110
11582 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2139
11583 #: ../fish/guestfish-actions.pod:2152 ../fish/guestfish-actions.pod:2167
11584 #: ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2300
11585 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11586 msgstr ""
11587
11588 # type: =head2
11589 #. type: =head2
11590 #: ../src/guestfs-actions.pod:2530
11591 msgid "guestfs_inspect_get_distro"
11592 msgstr ""
11593
11594 # type: verbatim
11595 #. type: verbatim
11596 #: ../src/guestfs-actions.pod:2532
11597 #, no-wrap
11598 msgid ""
11599 " char *\n"
11600 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11601 "                             const char *root);\n"
11602 "\n"
11603 msgstr ""
11604
11605 # type: textblock
11606 #. type: textblock
11607 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1704
11608 msgid ""
11609 "This returns the distro (distribution) of the inspected operating system."
11610 msgstr ""
11611
11612 # type: textblock
11613 #. type: textblock
11614 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
11615 msgid "Currently defined distros are:"
11616 msgstr ""
11617
11618 # type: =item
11619 #. type: =item
11620 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1711
11621 msgid "\"archlinux\""
11622 msgstr ""
11623
11624 # type: textblock
11625 #. type: textblock
11626 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1713
11627 msgid "Arch Linux."
11628 msgstr ""
11629
11630 #. type: =item
11631 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1715
11632 msgid "\"centos\""
11633 msgstr ""
11634
11635 #. type: textblock
11636 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1717
11637 msgid "CentOS."
11638 msgstr ""
11639
11640 # type: =item
11641 #. type: =item
11642 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1719
11643 msgid "\"debian\""
11644 msgstr ""
11645
11646 # type: textblock
11647 #. type: textblock
11648 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1721
11649 msgid "Debian."
11650 msgstr ""
11651
11652 # type: =item
11653 #. type: =item
11654 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1723
11655 msgid "\"fedora\""
11656 msgstr ""
11657
11658 # type: textblock
11659 #. type: textblock
11660 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1725
11661 msgid "Fedora."
11662 msgstr ""
11663
11664 # type: =item
11665 #. type: =item
11666 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1727
11667 msgid "\"gentoo\""
11668 msgstr ""
11669
11670 # type: textblock
11671 #. type: textblock
11672 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1729
11673 msgid "Gentoo."
11674 msgstr ""
11675
11676 # type: =item
11677 #. type: =item
11678 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
11679 msgid "\"linuxmint\""
11680 msgstr ""
11681
11682 # type: textblock
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1733
11685 msgid "Linux Mint."
11686 msgstr ""
11687
11688 # type: =item
11689 #. type: =item
11690 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1735
11691 msgid "\"mandriva\""
11692 msgstr ""
11693
11694 # type: textblock
11695 #. type: textblock
11696 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1737
11697 msgid "Mandriva."
11698 msgstr ""
11699
11700 # type: =item
11701 #. type: =item
11702 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1739
11703 msgid "\"meego\""
11704 msgstr ""
11705
11706 # type: textblock
11707 #. type: textblock
11708 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1741
11709 msgid "MeeGo."
11710 msgstr ""
11711
11712 # type: =item
11713 #. type: =item
11714 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1743
11715 msgid "\"pardus\""
11716 msgstr ""
11717
11718 # type: textblock
11719 #. type: textblock
11720 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1745
11721 msgid "Pardus."
11722 msgstr ""
11723
11724 # type: =item
11725 #. type: =item
11726 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1747
11727 msgid "\"redhat-based\""
11728 msgstr ""
11729
11730 # type: textblock
11731 #. type: textblock
11732 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1749
11733 msgid "Some Red Hat-derived distro."
11734 msgstr ""
11735
11736 # type: =item
11737 #. type: =item
11738 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1751
11739 msgid "\"rhel\""
11740 msgstr ""
11741
11742 #. type: textblock
11743 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1753
11744 msgid "Red Hat Enterprise Linux."
11745 msgstr ""
11746
11747 #. type: =item
11748 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1755
11749 msgid "\"scientificlinux\""
11750 msgstr ""
11751
11752 #. type: textblock
11753 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1757
11754 msgid "Scientific Linux."
11755 msgstr ""
11756
11757 #. type: =item
11758 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1759
11759 msgid "\"slackware\""
11760 msgstr ""
11761
11762 #. type: textblock
11763 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1761
11764 msgid "Slackware."
11765 msgstr ""
11766
11767 # type: =item
11768 #. type: =item
11769 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1763
11770 msgid "\"ubuntu\""
11771 msgstr ""
11772
11773 # type: textblock
11774 #. type: textblock
11775 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1765
11776 msgid "Ubuntu."
11777 msgstr ""
11778
11779 # type: =item
11780 #. type: =item
11781 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2718
11782 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:1767
11783 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:2085
11784 msgid "\"unknown\""
11785 msgstr ""
11786
11787 # type: textblock
11788 #. type: textblock
11789 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1769
11790 msgid "The distro could not be determined."
11791 msgstr ""
11792
11793 # type: =item
11794 #. type: =item
11795 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3002
11796 #: ../fish/guestfish-actions.pod:1771 ../fish/guestfish-actions.pod:2077
11797 msgid "\"windows\""
11798 msgstr ""
11799
11800 # type: textblock
11801 #. type: textblock
11802 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1773
11803 msgid ""
11804 "Windows does not have distributions.  This string is returned if the OS type "
11805 "is Windows."
11806 msgstr ""
11807
11808 # type: textblock
11809 #. type: textblock
11810 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
11811 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1778
11812 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:2091
11813 msgid ""
11814 "Future versions of libguestfs may return other strings here.  The caller "
11815 "should be prepared to handle any string."
11816 msgstr ""
11817
11818 #. type: =head2
11819 #: ../src/guestfs-actions.pod:2623
11820 msgid "guestfs_inspect_get_drive_mappings"
11821 msgstr ""
11822
11823 #. type: verbatim
11824 #: ../src/guestfs-actions.pod:2625
11825 #, no-wrap
11826 msgid ""
11827 " char **\n"
11828 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11829 "                                     const char *root);\n"
11830 "\n"
11831 msgstr ""
11832
11833 #. type: textblock
11834 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1790
11835 msgid ""
11836 "This call is useful for Windows which uses a primitive system of assigning "
11837 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
11838 "Windows Registry to find out how disks/partitions are mapped to drive "
11839 "letters, and returns a hash table as in the example below:"
11840 msgstr ""
11841
11842 #. type: verbatim
11843 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1796
11844 #, no-wrap
11845 msgid ""
11846 " C      =>     /dev/vda2\n"
11847 " E      =>     /dev/vdb1\n"
11848 " F      =>     /dev/vdc1\n"
11849 "\n"
11850 msgstr ""
11851
11852 #. type: textblock
11853 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1800
11854 msgid ""
11855 "Note that keys are drive letters.  For Windows, the key is case insensitive "
11856 "and just contains the drive letter, without the customary colon separator "
11857 "character."
11858 msgstr ""
11859
11860 #. type: textblock
11861 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
11862 msgid ""
11863 "In future we may support other operating systems that also used drive "
11864 "letters, but the keys for those might not be case insensitive and might be "
11865 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
11866 "C<h1> etc."
11867 msgstr ""
11868
11869 #. type: textblock
11870 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
11871 msgid ""
11872 "For Windows guests, currently only hard drive mappings are returned.  "
11873 "Removable disks (eg. DVD-ROMs) are ignored."
11874 msgstr ""
11875
11876 #. type: textblock
11877 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
11878 msgid ""
11879 "For guests that do not use drive mappings, or if the drive mappings could "
11880 "not be determined, this returns an empty hash table."
11881 msgstr ""
11882
11883 #. type: textblock
11884 #: ../src/guestfs-actions.pod:2657
11885 msgid ""
11886 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11887 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11888 msgstr ""
11889
11890 # type: textblock
11891 #. type: textblock
11892 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2837
11893 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4814
11894 #: ../src/guestfs-actions.pod:6747
11895 msgid ""
11896 "This function returns a NULL-terminated array of strings, or NULL if there "
11897 "was an error.  The array of strings will always have length C<2n+1>, where "
11898 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11899 "caller must free the strings and the array after use>."
11900 msgstr ""
11901
11902 # type: =head2
11903 #. type: =head2
11904 #: ../src/guestfs-actions.pod:2667
11905 msgid "guestfs_inspect_get_filesystems"
11906 msgstr ""
11907
11908 # type: verbatim
11909 #. type: verbatim
11910 #: ../src/guestfs-actions.pod:2669
11911 #, no-wrap
11912 msgid ""
11913 " char **\n"
11914 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11915 "                                  const char *root);\n"
11916 "\n"
11917 msgstr ""
11918
11919 # type: textblock
11920 #. type: textblock
11921 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
11922 msgid ""
11923 "This returns a list of all the filesystems that we think are associated with "
11924 "this operating system.  This includes the root filesystem, other ordinary "
11925 "filesystems, and non-mounted devices like swap partitions."
11926 msgstr ""
11927
11928 # type: textblock
11929 #. type: textblock
11930 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
11931 msgid ""
11932 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11933 "to be shared between operating systems."
11934 msgstr ""
11935
11936 # type: textblock
11937 #. type: textblock
11938 #: ../src/guestfs-actions.pod:2684
11939 msgid ""
11940 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11941 "C<guestfs_inspect_get_mountpoints>."
11942 msgstr ""
11943
11944 #. type: =head2
11945 #: ../src/guestfs-actions.pod:2693
11946 msgid "guestfs_inspect_get_format"
11947 msgstr ""
11948
11949 #. type: verbatim
11950 #: ../src/guestfs-actions.pod:2695
11951 #, no-wrap
11952 msgid ""
11953 " char *\n"
11954 " guestfs_inspect_get_format (guestfs_h *g,\n"
11955 "                             const char *root);\n"
11956 "\n"
11957 msgstr ""
11958
11959 #. type: textblock
11960 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1844
11961 msgid ""
11962 "This returns the format of the inspected operating system.  You can use it "
11963 "to detect install images, live CDs and similar."
11964 msgstr ""
11965
11966 #. type: textblock
11967 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
11968 msgid "Currently defined formats are:"
11969 msgstr ""
11970
11971 #. type: =item
11972 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1851
11973 msgid "\"installed\""
11974 msgstr ""
11975
11976 #. type: textblock
11977 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1853
11978 msgid "This is an installed operating system."
11979 msgstr ""
11980
11981 #. type: =item
11982 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1855
11983 msgid "\"installer\""
11984 msgstr ""
11985
11986 #. type: textblock
11987 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
11988 msgid ""
11989 "The disk image being inspected is not an installed operating system, but a "
11990 "I<bootable> install disk, live CD, or similar."
11991 msgstr ""
11992
11993 #. type: textblock
11994 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
11995 msgid "The format of this disk image is not known."
11996 msgstr ""
11997
11998 # type: =head2
11999 #. type: =head2
12000 #: ../src/guestfs-actions.pod:2732
12001 msgid "guestfs_inspect_get_hostname"
12002 msgstr ""
12003
12004 # type: verbatim
12005 #. type: verbatim
12006 #: ../src/guestfs-actions.pod:2734
12007 #, no-wrap
12008 msgid ""
12009 " char *\n"
12010 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
12011 "                               const char *root);\n"
12012 "\n"
12013 msgstr ""
12014
12015 # type: textblock
12016 #. type: textblock
12017 #: ../src/guestfs-actions.pod:2741 ../fish/guestfish-actions.pod:1878
12018 msgid ""
12019 "This function returns the hostname of the operating system as found by "
12020 "inspection of the guest's configuration files."
12021 msgstr ""
12022
12023 # type: textblock
12024 #. type: textblock
12025 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
12026 msgid ""
12027 "If the hostname could not be determined, then the string C<unknown> is "
12028 "returned."
12029 msgstr ""
12030
12031 # type: textblock
12032 #. type: textblock
12033 #: ../src/guestfs-actions.pod:2752
12034 msgid "(Added in 1.7.9)"
12035 msgstr ""
12036
12037 # type: =head2
12038 #. type: =head2
12039 #: ../src/guestfs-actions.pod:2754
12040 msgid "guestfs_inspect_get_major_version"
12041 msgstr ""
12042
12043 # type: verbatim
12044 #. type: verbatim
12045 #: ../src/guestfs-actions.pod:2756
12046 #, no-wrap
12047 msgid ""
12048 " int\n"
12049 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
12050 "                                    const char *root);\n"
12051 "\n"
12052 msgstr ""
12053
12054 # type: textblock
12055 #. type: textblock
12056 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1893
12057 msgid ""
12058 "This returns the major version number of the inspected operating system."
12059 msgstr ""
12060
12061 # type: textblock
12062 #. type: textblock
12063 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
12064 msgid ""
12065 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
12066 "popular public names used by the operating system.  Notably the operating "
12067 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
12068 "1).  You can find out the real versions corresponding to releases of Windows "
12069 "by consulting Wikipedia or MSDN."
12070 msgstr ""
12071
12072 # type: textblock
12073 #. type: textblock
12074 #: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:2793
12075 #: ../fish/guestfish-actions.pod:1903 ../fish/guestfish-actions.pod:1917
12076 msgid "If the version could not be determined, then C<0> is returned."
12077 msgstr ""
12078
12079 # type: =head2
12080 #. type: =head2
12081 #: ../src/guestfs-actions.pod:2781
12082 msgid "guestfs_inspect_get_minor_version"
12083 msgstr ""
12084
12085 # type: verbatim
12086 #. type: verbatim
12087 #: ../src/guestfs-actions.pod:2783
12088 #, no-wrap
12089 msgid ""
12090 " int\n"
12091 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
12092 "                                    const char *root);\n"
12093 "\n"
12094 msgstr ""
12095
12096 # type: textblock
12097 #. type: textblock
12098 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1914
12099 msgid ""
12100 "This returns the minor version number of the inspected operating system."
12101 msgstr ""
12102
12103 # type: textblock
12104 #. type: textblock
12105 #: ../src/guestfs-actions.pod:2795
12106 msgid ""
12107 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12108 "C<guestfs_inspect_get_major_version>."
12109 msgstr ""
12110
12111 # type: =head2
12112 #. type: =head2
12113 #: ../src/guestfs-actions.pod:2802
12114 msgid "guestfs_inspect_get_mountpoints"
12115 msgstr ""
12116
12117 # type: verbatim
12118 #. type: verbatim
12119 #: ../src/guestfs-actions.pod:2804
12120 #, no-wrap
12121 msgid ""
12122 " char **\n"
12123 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
12124 "                                  const char *root);\n"
12125 "\n"
12126 msgstr ""
12127
12128 #. type: textblock
12129 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1929
12130 msgid ""
12131 "This returns a hash of where we think the filesystems associated with this "
12132 "operating system should be mounted.  Callers should note that this is at "
12133 "best an educated guess made by reading configuration files such as C</etc/"
12134 "fstab>.  I<In particular note> that this may return filesystems which are "
12135 "non-existent or not mountable and callers should be prepared to handle or "
12136 "ignore failures if they try to mount them."
12137 msgstr ""
12138
12139 # type: textblock
12140 #. type: textblock
12141 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
12142 msgid ""
12143 "Each element in the returned hashtable has a key which is the path of the "
12144 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
12145 "mounted there (eg. C</dev/sda1>)."
12146 msgstr ""
12147
12148 # type: textblock
12149 #. type: textblock
12150 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
12151 msgid ""
12152 "Non-mounted devices such as swap devices are I<not> returned in this list."
12153 msgstr ""
12154
12155 #. type: textblock
12156 #: ../src/guestfs-actions.pod:2828
12157 msgid ""
12158 "For operating systems like Windows which still use drive letters, this call "
12159 "will only return an entry for the first drive \"mounted on\" C</>.  For "
12160 "information about the mapping of drive letters to partitions, see "
12161 "C<guestfs_inspect_get_drive_mappings>."
12162 msgstr ""
12163
12164 # type: textblock
12165 #. type: textblock
12166 #: ../src/guestfs-actions.pod:2834
12167 msgid ""
12168 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12169 "C<guestfs_inspect_get_filesystems>."
12170 msgstr ""
12171
12172 # type: =head2
12173 #. type: =head2
12174 #: ../src/guestfs-actions.pod:2845
12175 msgid "guestfs_inspect_get_package_format"
12176 msgstr ""
12177
12178 # type: verbatim
12179 #. type: verbatim
12180 #: ../src/guestfs-actions.pod:2847
12181 #, no-wrap
12182 msgid ""
12183 " char *\n"
12184 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12185 "                                     const char *root);\n"
12186 "\n"
12187 msgstr ""
12188
12189 # type: textblock
12190 #. type: textblock
12191 #: ../src/guestfs-actions.pod:2854
12192 msgid ""
12193 "This function and C<guestfs_inspect_get_package_management> return the "
12194 "package format and package management tool used by the inspected operating "
12195 "system.  For example for Fedora these functions would return C<rpm> (package "
12196 "format) and C<yum> (package management)."
12197 msgstr ""
12198
12199 # type: textblock
12200 #. type: textblock
12201 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1968
12202 msgid ""
12203 "This returns the string C<unknown> if we could not determine the package "
12204 "format I<or> if the operating system does not have a real packaging system "
12205 "(eg. Windows)."
12206 msgstr ""
12207
12208 # type: textblock
12209 #. type: textblock
12210 #: ../src/guestfs-actions.pod:2864 ../fish/guestfish-actions.pod:1972
12211 msgid ""
12212 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
12213 "Future versions of libguestfs may return other strings."
12214 msgstr ""
12215
12216 # type: textblock
12217 #. type: textblock
12218 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2903
12219 msgid "(Added in 1.7.5)"
12220 msgstr ""
12221
12222 # type: =head2
12223 #. type: =head2
12224 #: ../src/guestfs-actions.pod:2874
12225 msgid "guestfs_inspect_get_package_management"
12226 msgstr ""
12227
12228 # type: verbatim
12229 #. type: verbatim
12230 #: ../src/guestfs-actions.pod:2876
12231 #, no-wrap
12232 msgid ""
12233 " char *\n"
12234 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12235 "                                         const char *root);\n"
12236 "\n"
12237 msgstr ""
12238
12239 # type: textblock
12240 #. type: textblock
12241 #: ../src/guestfs-actions.pod:2883
12242 msgid ""
12243 "C<guestfs_inspect_get_package_format> and this function return the package "
12244 "format and package management tool used by the inspected operating system.  "
12245 "For example for Fedora these functions would return C<rpm> (package format) "
12246 "and C<yum> (package management)."
12247 msgstr ""
12248
12249 # type: textblock
12250 #. type: textblock
12251 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1990
12252 msgid ""
12253 "This returns the string C<unknown> if we could not determine the package "
12254 "management tool I<or> if the operating system does not have a real packaging "
12255 "system (eg. Windows)."
12256 msgstr ""
12257
12258 # type: textblock
12259 #. type: textblock
12260 #: ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1994
12261 msgid ""
12262 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12263 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
12264 "libguestfs may return other strings."
12265 msgstr ""
12266
12267 # type: =head2
12268 #. type: =head2
12269 #: ../src/guestfs-actions.pod:2905
12270 msgid "guestfs_inspect_get_product_name"
12271 msgstr ""
12272
12273 # type: verbatim
12274 #. type: verbatim
12275 #: ../src/guestfs-actions.pod:2907
12276 #, no-wrap
12277 msgid ""
12278 " char *\n"
12279 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12280 "                                   const char *root);\n"
12281 "\n"
12282 msgstr ""
12283
12284 # type: textblock
12285 #. type: textblock
12286 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
12287 msgid ""
12288 "This returns the product name of the inspected operating system.  The "
12289 "product name is generally some freeform string which can be displayed to the "
12290 "user, but should not be parsed by programs."
12291 msgstr ""
12292
12293 # type: textblock
12294 #. type: textblock
12295 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
12296 msgid ""
12297 "If the product name could not be determined, then the string C<unknown> is "
12298 "returned."
12299 msgstr ""
12300
12301 #. type: =head2
12302 #: ../src/guestfs-actions.pod:2929
12303 msgid "guestfs_inspect_get_product_variant"
12304 msgstr ""
12305
12306 #. type: verbatim
12307 #: ../src/guestfs-actions.pod:2931
12308 #, no-wrap
12309 msgid ""
12310 " char *\n"
12311 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12312 "                                      const char *root);\n"
12313 "\n"
12314 msgstr ""
12315
12316 #. type: textblock
12317 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2025
12318 msgid "This returns the product variant of the inspected operating system."
12319 msgstr ""
12320
12321 #. type: textblock
12322 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
12323 msgid ""
12324 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12325 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12326 "is usually a string such as C<Client> or C<Server> (other values are "
12327 "possible).  This can be used to distinguish consumer and enterprise versions "
12328 "of Windows that have the same version number (for example, Windows 7 and "
12329 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12330 "the latter is C<Server>)."
12331 msgstr ""
12332
12333 #. type: textblock
12334 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2037
12335 msgid ""
12336 "For enterprise Linux guests, in future we intend this to return the product "
12337 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
12338 "implemented at present."
12339 msgstr ""
12340
12341 #. type: textblock
12342 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2041
12343 msgid ""
12344 "If the product variant could not be determined, then the string C<unknown> "
12345 "is returned."
12346 msgstr ""
12347
12348 #. type: textblock
12349 #: ../src/guestfs-actions.pod:2957
12350 msgid ""
12351 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12352 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12353 msgstr ""
12354
12355 # type: =head2
12356 #. type: =head2
12357 #: ../src/guestfs-actions.pod:2964
12358 msgid "guestfs_inspect_get_roots"
12359 msgstr ""
12360
12361 # type: verbatim
12362 #. type: verbatim
12363 #: ../src/guestfs-actions.pod:2966
12364 #, no-wrap
12365 msgid ""
12366 " char **\n"
12367 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12368 "\n"
12369 msgstr ""
12370
12371 # type: textblock
12372 #. type: textblock
12373 #: ../src/guestfs-actions.pod:2969
12374 msgid ""
12375 "This function is a convenient way to get the list of root devices, as "
12376 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12377 "the whole inspection process."
12378 msgstr ""
12379
12380 # type: textblock
12381 #. type: textblock
12382 #: ../src/guestfs-actions.pod:2973
12383 msgid ""
12384 "This returns an empty list if either no root devices were found or the "
12385 "caller has not called C<guestfs_inspect_os>."
12386 msgstr ""
12387
12388 # type: textblock
12389 #. type: textblock
12390 #: ../src/guestfs-actions.pod:2982
12391 msgid "(Added in 1.7.3)"
12392 msgstr ""
12393
12394 # type: =head2
12395 #. type: =head2
12396 #: ../src/guestfs-actions.pod:2984
12397 msgid "guestfs_inspect_get_type"
12398 msgstr ""
12399
12400 # type: verbatim
12401 #. type: verbatim
12402 #: ../src/guestfs-actions.pod:2986
12403 #, no-wrap
12404 msgid ""
12405 " char *\n"
12406 " guestfs_inspect_get_type (guestfs_h *g,\n"
12407 "                           const char *root);\n"
12408 "\n"
12409 msgstr ""
12410
12411 # type: textblock
12412 #. type: textblock
12413 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
12414 msgid ""
12415 "This returns the type of the inspected operating system.  Currently defined "
12416 "types are:"
12417 msgstr ""
12418
12419 # type: =item
12420 #. type: =item
12421 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
12422 msgid "\"linux\""
12423 msgstr ""
12424
12425 # type: textblock
12426 #. type: textblock
12427 #: ../src/guestfs-actions.pod:3000 ../fish/guestfish-actions.pod:2075
12428 msgid "Any Linux-based operating system."
12429 msgstr ""
12430
12431 # type: textblock
12432 #. type: textblock
12433 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2079
12434 msgid "Any Microsoft Windows operating system."
12435 msgstr ""
12436
12437 # type: =item
12438 #. type: =item
12439 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2081
12440 msgid "\"freebsd\""
12441 msgstr ""
12442
12443 # type: textblock
12444 #. type: textblock
12445 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2083
12446 msgid "FreeBSD."
12447 msgstr ""
12448
12449 # type: textblock
12450 #. type: textblock
12451 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2087
12452 msgid "The operating system type could not be determined."
12453 msgstr ""
12454
12455 #. type: =head2
12456 #: ../src/guestfs-actions.pod:3026
12457 msgid "guestfs_inspect_get_windows_current_control_set"
12458 msgstr ""
12459
12460 #. type: verbatim
12461 #: ../src/guestfs-actions.pod:3028
12462 #, no-wrap
12463 msgid ""
12464 " char *\n"
12465 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12466 "                                                  const char *root);\n"
12467 "\n"
12468 msgstr ""
12469
12470 #. type: textblock
12471 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2103
12472 msgid ""
12473 "This returns the Windows CurrentControlSet of the inspected guest.  The "
12474 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12475 msgstr ""
12476
12477 #. type: textblock
12478 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
12479 msgid ""
12480 "This call assumes that the guest is Windows and that the Registry could be "
12481 "examined by inspection.  If this is not the case then an error is returned."
12482 msgstr ""
12483
12484 # type: =head2
12485 #. type: =head2
12486 #: ../src/guestfs-actions.pod:3047
12487 msgid "guestfs_inspect_get_windows_systemroot"
12488 msgstr ""
12489
12490 # type: verbatim
12491 #. type: verbatim
12492 #: ../src/guestfs-actions.pod:3049
12493 #, no-wrap
12494 msgid ""
12495 " char *\n"
12496 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12497 "                                         const char *root);\n"
12498 "\n"
12499 msgstr ""
12500
12501 # type: textblock
12502 #. type: textblock
12503 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2119
12504 msgid ""
12505 "This returns the Windows systemroot of the inspected guest.  The systemroot "
12506 "is a directory path such as C</WINDOWS>."
12507 msgstr ""
12508
12509 # type: textblock
12510 #. type: textblock
12511 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
12512 msgid ""
12513 "This call assumes that the guest is Windows and that the systemroot could be "
12514 "determined by inspection.  If this is not the case then an error is returned."
12515 msgstr ""
12516
12517 # type: textblock
12518 #. type: textblock
12519 #: ../src/guestfs-actions.pod:3068
12520 msgid "(Added in 1.5.25)"
12521 msgstr ""
12522
12523 #. type: =head2
12524 #: ../src/guestfs-actions.pod:3070
12525 msgid "guestfs_inspect_is_live"
12526 msgstr ""
12527
12528 #. type: verbatim
12529 #: ../src/guestfs-actions.pod:3072
12530 #, no-wrap
12531 msgid ""
12532 " int\n"
12533 " guestfs_inspect_is_live (guestfs_h *g,\n"
12534 "                          const char *root);\n"
12535 "\n"
12536 msgstr ""
12537
12538 #. type: textblock
12539 #: ../src/guestfs-actions.pod:3079
12540 msgid ""
12541 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12542 "disk), then this returns true if a live image was detected on the disk."
12543 msgstr ""
12544
12545 #. type: =head2
12546 #: ../src/guestfs-actions.pod:3087
12547 msgid "guestfs_inspect_is_multipart"
12548 msgstr ""
12549
12550 #. type: verbatim
12551 #: ../src/guestfs-actions.pod:3089
12552 #, no-wrap
12553 msgid ""
12554 " int\n"
12555 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12556 "                               const char *root);\n"
12557 "\n"
12558 msgstr ""
12559
12560 #. type: textblock
12561 #: ../src/guestfs-actions.pod:3096
12562 msgid ""
12563 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12564 "disk), then this returns true if the disk is part of a set."
12565 msgstr ""
12566
12567 #. type: =head2
12568 #: ../src/guestfs-actions.pod:3104
12569 msgid "guestfs_inspect_is_netinst"
12570 msgstr ""
12571
12572 #. type: verbatim
12573 #: ../src/guestfs-actions.pod:3106
12574 #, no-wrap
12575 msgid ""
12576 " int\n"
12577 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12578 "                             const char *root);\n"
12579 "\n"
12580 msgstr ""
12581
12582 #. type: textblock
12583 #: ../src/guestfs-actions.pod:3113
12584 msgid ""
12585 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12586 "disk), then this returns true if the disk is a network installer, ie. not a "
12587 "self-contained install CD but one which is likely to require network access "
12588 "to complete the install."
12589 msgstr ""
12590
12591 # type: =head2
12592 #. type: =head2
12593 #: ../src/guestfs-actions.pod:3123
12594 msgid "guestfs_inspect_list_applications"
12595 msgstr ""
12596
12597 # type: verbatim
12598 #. type: verbatim
12599 #: ../src/guestfs-actions.pod:3125
12600 #, no-wrap
12601 msgid ""
12602 " struct guestfs_application_list *\n"
12603 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12604 "                                    const char *root);\n"
12605 "\n"
12606 msgstr ""
12607
12608 # type: textblock
12609 #. type: textblock
12610 #: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2176
12611 msgid "Return the list of applications installed in the operating system."
12612 msgstr ""
12613
12614 # type: textblock
12615 #. type: textblock
12616 #: ../src/guestfs-actions.pod:3134
12617 msgid ""
12618 "I<Note:> This call works differently from other parts of the inspection "
12619 "API.  You have to call C<guestfs_inspect_os>, then "
12620 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12621 "this.  Listing applications is a significantly more difficult operation "
12622 "which requires access to the full filesystem.  Also note that unlike the "
12623 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12624 "the libguestfs handle, this call actually reads parts of the mounted "
12625 "filesystems during the call."
12626 msgstr ""
12627
12628 # type: textblock
12629 #. type: textblock
12630 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2188
12631 msgid ""
12632 "This returns an empty list if the inspection code was not able to determine "
12633 "the list of applications."
12634 msgstr ""
12635
12636 # type: textblock
12637 #. type: textblock
12638 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
12639 msgid "The application structure contains the following fields:"
12640 msgstr ""
12641
12642 # type: =item
12643 #. type: =item
12644 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
12645 msgid "C<app_name>"
12646 msgstr ""
12647
12648 # type: textblock
12649 #. type: textblock
12650 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
12651 msgid ""
12652 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
12653 "guests, this is the package name."
12654 msgstr ""
12655
12656 # type: =item
12657 #. type: =item
12658 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12659 msgid "C<app_display_name>"
12660 msgstr ""
12661
12662 # type: textblock
12663 #. type: textblock
12664 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
12665 msgid ""
12666 "The display name of the application, sometimes localized to the install "
12667 "language of the guest operating system."
12668 msgstr ""
12669
12670 # type: textblock
12671 #. type: textblock
12672 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12673 msgid ""
12674 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
12675 "to display something can use C<app_name> instead."
12676 msgstr ""
12677
12678 # type: =item
12679 #. type: =item
12680 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
12681 msgid "C<app_epoch>"
12682 msgstr ""
12683
12684 # type: textblock
12685 #. type: textblock
12686 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12687 msgid ""
12688 "For package managers which use epochs, this contains the epoch of the "
12689 "package (an integer).  If unavailable, this is returned as C<0>."
12690 msgstr ""
12691
12692 # type: =item
12693 #. type: =item
12694 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12695 msgid "C<app_version>"
12696 msgstr ""
12697
12698 # type: textblock
12699 #. type: textblock
12700 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12701 msgid ""
12702 "The version string of the application or package.  If unavailable this is "
12703 "returned as an empty string C<\"\">."
12704 msgstr ""
12705
12706 # type: =item
12707 #. type: =item
12708 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
12709 msgid "C<app_release>"
12710 msgstr ""
12711
12712 # type: textblock
12713 #. type: textblock
12714 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
12715 msgid ""
12716 "The release string of the application or package, for package managers that "
12717 "use this.  If unavailable this is returned as an empty string C<\"\">."
12718 msgstr ""
12719
12720 # type: =item
12721 #. type: =item
12722 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
12723 msgid "C<app_install_path>"
12724 msgstr ""
12725
12726 # type: textblock
12727 #. type: textblock
12728 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
12729 msgid ""
12730 "The installation path of the application (on operating systems such as "
12731 "Windows which use installation paths).  This path is in the format used by "
12732 "the guest operating system, it is not a libguestfs path."
12733 msgstr ""
12734
12735 # type: textblock
12736 #. type: textblock
12737 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
12738 msgid "If unavailable this is returned as an empty string C<\"\">."
12739 msgstr ""
12740
12741 # type: =item
12742 #. type: =item
12743 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
12744 msgid "C<app_trans_path>"
12745 msgstr ""
12746
12747 # type: textblock
12748 #. type: textblock
12749 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
12750 msgid ""
12751 "The install path translated into a libguestfs path.  If unavailable this is "
12752 "returned as an empty string C<\"\">."
12753 msgstr ""
12754
12755 # type: =item
12756 #. type: =item
12757 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
12758 msgid "C<app_publisher>"
12759 msgstr ""
12760
12761 # type: textblock
12762 #. type: textblock
12763 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
12764 msgid ""
12765 "The name of the publisher of the application, for package managers that use "
12766 "this.  If unavailable this is returned as an empty string C<\"\">."
12767 msgstr ""
12768
12769 # type: =item
12770 #. type: =item
12771 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
12772 msgid "C<app_url>"
12773 msgstr ""
12774
12775 # type: textblock
12776 #. type: textblock
12777 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
12778 msgid ""
12779 "The URL (eg. upstream URL) of the application.  If unavailable this is "
12780 "returned as an empty string C<\"\">."
12781 msgstr ""
12782
12783 # type: =item
12784 #. type: =item
12785 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12786 msgid "C<app_source_package>"
12787 msgstr ""
12788
12789 # type: textblock
12790 #. type: textblock
12791 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12792 msgid ""
12793 "For packaging systems which support this, the name of the source package.  "
12794 "If unavailable this is returned as an empty string C<\"\">."
12795 msgstr ""
12796
12797 # type: =item
12798 #. type: =item
12799 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12800 msgid "C<app_summary>"
12801 msgstr ""
12802
12803 # type: textblock
12804 #. type: textblock
12805 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12806 msgid ""
12807 "A short (usually one line) description of the application or package.  If "
12808 "unavailable this is returned as an empty string C<\"\">."
12809 msgstr ""
12810
12811 # type: =item
12812 #. type: =item
12813 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
12814 msgid "C<app_description>"
12815 msgstr ""
12816
12817 # type: textblock
12818 #. type: textblock
12819 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
12820 msgid ""
12821 "A longer description of the application or package.  If unavailable this is "
12822 "returned as an empty string C<\"\">."
12823 msgstr ""
12824
12825 # type: textblock
12826 #. type: textblock
12827 #: ../src/guestfs-actions.pod:3224
12828 msgid ""
12829 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12830 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
12831 "after use>."
12832 msgstr ""
12833
12834 # type: textblock
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:3228
12837 msgid "(Added in 1.7.8)"
12838 msgstr ""
12839
12840 # type: =head2
12841 #. type: =head2
12842 #: ../src/guestfs-actions.pod:3230
12843 msgid "guestfs_inspect_os"
12844 msgstr ""
12845
12846 # type: verbatim
12847 #. type: verbatim
12848 #: ../src/guestfs-actions.pod:3232
12849 #, no-wrap
12850 msgid ""
12851 " char **\n"
12852 " guestfs_inspect_os (guestfs_h *g);\n"
12853 "\n"
12854 msgstr ""
12855
12856 # type: textblock
12857 #. type: textblock
12858 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2272
12859 msgid ""
12860 "This function uses other libguestfs functions and certain heuristics to "
12861 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12862 "for operating systems."
12863 msgstr ""
12864
12865 # type: textblock
12866 #. type: textblock
12867 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2276
12868 msgid "The list returned is empty if no operating systems were found."
12869 msgstr ""
12870
12871 # type: textblock
12872 #. type: textblock
12873 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2278
12874 msgid ""
12875 "If one operating system was found, then this returns a list with a single "
12876 "element, which is the name of the root filesystem of this operating system.  "
12877 "It is also possible for this function to return a list containing more than "
12878 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12879 "element being the root filesystem of one of the operating systems."
12880 msgstr ""
12881
12882 # type: textblock
12883 #. type: textblock
12884 #: ../src/guestfs-actions.pod:3248
12885 msgid ""
12886 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12887 "functions in order to query further information about each operating system, "
12888 "such as the name and version."
12889 msgstr ""
12890
12891 # type: textblock
12892 #. type: textblock
12893 #: ../src/guestfs-actions.pod:3253
12894 msgid ""
12895 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12896 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12897 "the contents.  This should be called with no disks currently mounted.  The "
12898 "function may also use Augeas, so any existing Augeas handle will be closed."
12899 msgstr ""
12900
12901 # type: textblock
12902 #. type: textblock
12903 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2296
12904 msgid ""
12905 "This function cannot decrypt encrypted disks.  The caller must do that first "
12906 "(supplying the necessary keys) if the disk is encrypted."
12907 msgstr ""
12908
12909 # type: textblock
12910 #. type: textblock
12911 #: ../src/guestfs-actions.pod:3265 ../src/guestfs-actions.pod:3555
12912 #: ../src/guestfs-actions.pod:3617
12913 msgid "See also C<guestfs_list_filesystems>."
12914 msgstr ""
12915
12916 # type: =head2
12917 #. type: =head2
12918 #: ../src/guestfs-actions.pod:3273
12919 msgid "guestfs_is_blockdev"
12920 msgstr ""
12921
12922 # type: verbatim
12923 #. type: verbatim
12924 #: ../src/guestfs-actions.pod:3275
12925 #, no-wrap
12926 msgid ""
12927 " int\n"
12928 " guestfs_is_blockdev (guestfs_h *g,\n"
12929 "                      const char *path);\n"
12930 "\n"
12931 msgstr ""
12932
12933 # type: textblock
12934 #. type: textblock
12935 #: ../src/guestfs-actions.pod:3279 ../fish/guestfish-actions.pod:2308
12936 msgid ""
12937 "This returns C<true> if and only if there is a block device with the given "
12938 "C<path> name."
12939 msgstr ""
12940
12941 # type: textblock
12942 #. type: textblock
12943 #: ../src/guestfs-actions.pod:3282 ../src/guestfs-actions.pod:3311
12944 #: ../src/guestfs-actions.pod:3341 ../src/guestfs-actions.pod:3356
12945 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3428
12946 #: ../src/guestfs-actions.pod:3443
12947 msgid "See also C<guestfs_stat>."
12948 msgstr ""
12949
12950 # type: textblock
12951 #. type: textblock
12952 #: ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3315
12953 #: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:3432
12954 #: ../src/guestfs-actions.pod:3447
12955 msgid "(Added in 1.5.10)"
12956 msgstr ""
12957
12958 # type: =head2
12959 #. type: =head2
12960 #: ../src/guestfs-actions.pod:3288
12961 msgid "guestfs_is_busy"
12962 msgstr ""
12963
12964 # type: verbatim
12965 #. type: verbatim
12966 #: ../src/guestfs-actions.pod:3290
12967 #, no-wrap
12968 msgid ""
12969 " int\n"
12970 " guestfs_is_busy (guestfs_h *g);\n"
12971 "\n"
12972 msgstr ""
12973
12974 # type: textblock
12975 #. type: textblock
12976 #: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:2317
12977 msgid ""
12978 "This returns true iff this handle is busy processing a command (in the "
12979 "C<BUSY> state)."
12980 msgstr ""
12981
12982 # type: =head2
12983 #. type: =head2
12984 #: ../src/guestfs-actions.pod:3302
12985 msgid "guestfs_is_chardev"
12986 msgstr ""
12987
12988 # type: verbatim
12989 #. type: verbatim
12990 #: ../src/guestfs-actions.pod:3304
12991 #, no-wrap
12992 msgid ""
12993 " int\n"
12994 " guestfs_is_chardev (guestfs_h *g,\n"
12995 "                     const char *path);\n"
12996 "\n"
12997 msgstr ""
12998
12999 # type: textblock
13000 #. type: textblock
13001 #: ../src/guestfs-actions.pod:3308 ../fish/guestfish-actions.pod:2326
13002 msgid ""
13003 "This returns C<true> if and only if there is a character device with the "
13004 "given C<path> name."
13005 msgstr ""
13006
13007 # type: =head2
13008 #. type: =head2
13009 #: ../src/guestfs-actions.pod:3317
13010 msgid "guestfs_is_config"
13011 msgstr ""
13012
13013 # type: verbatim
13014 #. type: verbatim
13015 #: ../src/guestfs-actions.pod:3319
13016 #, no-wrap
13017 msgid ""
13018 " int\n"
13019 " guestfs_is_config (guestfs_h *g);\n"
13020 "\n"
13021 msgstr ""
13022
13023 # type: textblock
13024 #. type: textblock
13025 #: ../src/guestfs-actions.pod:3322 ../fish/guestfish-actions.pod:2335
13026 msgid ""
13027 "This returns true iff this handle is being configured (in the C<CONFIG> "
13028 "state)."
13029 msgstr ""
13030
13031 # type: =head2
13032 #. type: =head2
13033 #: ../src/guestfs-actions.pod:3331
13034 msgid "guestfs_is_dir"
13035 msgstr ""
13036
13037 # type: verbatim
13038 #. type: verbatim
13039 #: ../src/guestfs-actions.pod:3333
13040 #, no-wrap
13041 msgid ""
13042 " int\n"
13043 " guestfs_is_dir (guestfs_h *g,\n"
13044 "                 const char *path);\n"
13045 "\n"
13046 msgstr ""
13047
13048 # type: textblock
13049 #. type: textblock
13050 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2344
13051 msgid ""
13052 "This returns C<true> if and only if there is a directory with the given "
13053 "C<path> name.  Note that it returns false for other objects like files."
13054 msgstr ""
13055
13056 # type: =head2
13057 #. type: =head2
13058 #: ../src/guestfs-actions.pod:3347
13059 msgid "guestfs_is_fifo"
13060 msgstr ""
13061
13062 # type: verbatim
13063 #. type: verbatim
13064 #: ../src/guestfs-actions.pod:3349
13065 #, no-wrap
13066 msgid ""
13067 " int\n"
13068 " guestfs_is_fifo (guestfs_h *g,\n"
13069 "                  const char *path);\n"
13070 "\n"
13071 msgstr ""
13072
13073 # type: textblock
13074 #. type: textblock
13075 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2354
13076 msgid ""
13077 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
13078 "given C<path> name."
13079 msgstr ""
13080
13081 # type: =head2
13082 #. type: =head2
13083 #: ../src/guestfs-actions.pod:3362
13084 msgid "guestfs_is_file"
13085 msgstr ""
13086
13087 # type: verbatim
13088 #. type: verbatim
13089 #: ../src/guestfs-actions.pod:3364
13090 #, no-wrap
13091 msgid ""
13092 " int\n"
13093 " guestfs_is_file (guestfs_h *g,\n"
13094 "                  const char *path);\n"
13095 "\n"
13096 msgstr ""
13097
13098 # type: textblock
13099 #. type: textblock
13100 #: ../src/guestfs-actions.pod:3368 ../fish/guestfish-actions.pod:2363
13101 msgid ""
13102 "This returns C<true> if and only if there is a regular file with the given "
13103 "C<path> name.  Note that it returns false for other objects like directories."
13104 msgstr ""
13105
13106 # type: =head2
13107 #. type: =head2
13108 #: ../src/guestfs-actions.pod:3378
13109 msgid "guestfs_is_launching"
13110 msgstr ""
13111
13112 # type: verbatim
13113 #. type: verbatim
13114 #: ../src/guestfs-actions.pod:3380
13115 #, no-wrap
13116 msgid ""
13117 " int\n"
13118 " guestfs_is_launching (guestfs_h *g);\n"
13119 "\n"
13120 msgstr ""
13121
13122 # type: textblock
13123 #. type: textblock
13124 #: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2373
13125 msgid ""
13126 "This returns true iff this handle is launching the subprocess (in the "
13127 "C<LAUNCHING> state)."
13128 msgstr ""
13129
13130 # type: =head2
13131 #. type: =head2
13132 #: ../src/guestfs-actions.pod:3392
13133 msgid "guestfs_is_lv"
13134 msgstr ""
13135
13136 # type: verbatim
13137 #. type: verbatim
13138 #: ../src/guestfs-actions.pod:3394
13139 #, no-wrap
13140 msgid ""
13141 " int\n"
13142 " guestfs_is_lv (guestfs_h *g,\n"
13143 "                const char *device);\n"
13144 "\n"
13145 msgstr ""
13146
13147 # type: textblock
13148 #. type: textblock
13149 #: ../src/guestfs-actions.pod:3398 ../fish/guestfish-actions.pod:2382
13150 msgid ""
13151 "This command tests whether C<device> is a logical volume, and returns true "
13152 "iff this is the case."
13153 msgstr ""
13154
13155 # type: =head2
13156 #. type: =head2
13157 #: ../src/guestfs-actions.pod:3405
13158 msgid "guestfs_is_ready"
13159 msgstr ""
13160
13161 # type: verbatim
13162 #. type: verbatim
13163 #: ../src/guestfs-actions.pod:3407
13164 #, no-wrap
13165 msgid ""
13166 " int\n"
13167 " guestfs_is_ready (guestfs_h *g);\n"
13168 "\n"
13169 msgstr ""
13170
13171 # type: textblock
13172 #. type: textblock
13173 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2389
13174 msgid ""
13175 "This returns true iff this handle is ready to accept commands (in the "
13176 "C<READY> state)."
13177 msgstr ""
13178
13179 # type: =head2
13180 #. type: =head2
13181 #: ../src/guestfs-actions.pod:3419
13182 msgid "guestfs_is_socket"
13183 msgstr ""
13184
13185 # type: verbatim
13186 #. type: verbatim
13187 #: ../src/guestfs-actions.pod:3421
13188 #, no-wrap
13189 msgid ""
13190 " int\n"
13191 " guestfs_is_socket (guestfs_h *g,\n"
13192 "                    const char *path);\n"
13193 "\n"
13194 msgstr ""
13195
13196 # type: textblock
13197 #. type: textblock
13198 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2398
13199 msgid ""
13200 "This returns C<true> if and only if there is a Unix domain socket with the "
13201 "given C<path> name."
13202 msgstr ""
13203
13204 # type: =head2
13205 #. type: =head2
13206 #: ../src/guestfs-actions.pod:3434
13207 msgid "guestfs_is_symlink"
13208 msgstr ""
13209
13210 # type: verbatim
13211 #. type: verbatim
13212 #: ../src/guestfs-actions.pod:3436
13213 #, no-wrap
13214 msgid ""
13215 " int\n"
13216 " guestfs_is_symlink (guestfs_h *g,\n"
13217 "                     const char *path);\n"
13218 "\n"
13219 msgstr ""
13220
13221 # type: textblock
13222 #. type: textblock
13223 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:2407
13224 msgid ""
13225 "This returns C<true> if and only if there is a symbolic link with the given "
13226 "C<path> name."
13227 msgstr ""
13228
13229 # type: =head2
13230 #. type: =head2
13231 #: ../src/guestfs-actions.pod:3449
13232 msgid "guestfs_kill_subprocess"
13233 msgstr ""
13234
13235 # type: verbatim
13236 #. type: verbatim
13237 #: ../src/guestfs-actions.pod:3451
13238 #, no-wrap
13239 msgid ""
13240 " int\n"
13241 " guestfs_kill_subprocess (guestfs_h *g);\n"
13242 "\n"
13243 msgstr ""
13244
13245 # type: textblock
13246 #. type: textblock
13247 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2416
13248 msgid "This kills the qemu subprocess.  You should never need to call this."
13249 msgstr ""
13250
13251 # type: =head2
13252 #. type: =head2
13253 #: ../src/guestfs-actions.pod:3460
13254 msgid "guestfs_launch"
13255 msgstr ""
13256
13257 # type: verbatim
13258 #. type: verbatim
13259 #: ../src/guestfs-actions.pod:3462
13260 #, no-wrap
13261 msgid ""
13262 " int\n"
13263 " guestfs_launch (guestfs_h *g);\n"
13264 "\n"
13265 msgstr ""
13266
13267 # type: textblock
13268 #. type: textblock
13269 #: ../src/guestfs-actions.pod:3465 ../fish/guestfish-actions.pod:2424
13270 msgid ""
13271 "Internally libguestfs is implemented by running a virtual machine using "
13272 "L<qemu(1)>."
13273 msgstr ""
13274
13275 # type: textblock
13276 #. type: textblock
13277 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
13278 msgid ""
13279 "You should call this after configuring the handle (eg. adding drives) but "
13280 "before performing any actions."
13281 msgstr ""
13282
13283 # type: =head2
13284 #. type: =head2
13285 #: ../src/guestfs-actions.pod:3480
13286 msgid "guestfs_lchown"
13287 msgstr ""
13288
13289 # type: verbatim
13290 #. type: verbatim
13291 #: ../src/guestfs-actions.pod:3482
13292 #, no-wrap
13293 msgid ""
13294 " int\n"
13295 " guestfs_lchown (guestfs_h *g,\n"
13296 "                 int owner,\n"
13297 "                 int group,\n"
13298 "                 const char *path);\n"
13299 "\n"
13300 msgstr ""
13301
13302 # type: textblock
13303 #. type: textblock
13304 #: ../src/guestfs-actions.pod:3488
13305 msgid ""
13306 "Change the file owner to C<owner> and group to C<group>.  This is like "
13307 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13308 "changed, not the target."
13309 msgstr ""
13310
13311 # type: =head2
13312 #. type: =head2
13313 #: ../src/guestfs-actions.pod:3500
13314 msgid "guestfs_lgetxattr"
13315 msgstr ""
13316
13317 # type: verbatim
13318 #. type: verbatim
13319 #: ../src/guestfs-actions.pod:3502
13320 #, no-wrap
13321 msgid ""
13322 " char *\n"
13323 " guestfs_lgetxattr (guestfs_h *g,\n"
13324 "                    const char *path,\n"
13325 "                    const char *name,\n"
13326 "                    size_t *size_r);\n"
13327 "\n"
13328 msgstr ""
13329
13330 # type: textblock
13331 #. type: textblock
13332 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2446
13333 msgid ""
13334 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
13335 "is a symlink, then this call returns an extended attribute from the symlink."
13336 msgstr ""
13337
13338 # type: textblock
13339 #. type: textblock
13340 #: ../src/guestfs-actions.pod:3522
13341 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13342 msgstr ""
13343
13344 # type: =head2
13345 #. type: =head2
13346 #: ../src/guestfs-actions.pod:3530
13347 msgid "guestfs_lgetxattrs"
13348 msgstr ""
13349
13350 # type: verbatim
13351 #. type: verbatim
13352 #: ../src/guestfs-actions.pod:3532
13353 #, no-wrap
13354 msgid ""
13355 " struct guestfs_xattr_list *\n"
13356 " guestfs_lgetxattrs (guestfs_h *g,\n"
13357 "                     const char *path);\n"
13358 "\n"
13359 msgstr ""
13360
13361 # type: textblock
13362 #. type: textblock
13363 #: ../src/guestfs-actions.pod:3536
13364 msgid ""
13365 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13366 "then it returns the extended attributes of the link itself."
13367 msgstr ""
13368
13369 # type: =head2
13370 #. type: =head2
13371 #: ../src/guestfs-actions.pod:3546
13372 msgid "guestfs_list_devices"
13373 msgstr ""
13374
13375 # type: verbatim
13376 #. type: verbatim
13377 #: ../src/guestfs-actions.pod:3548
13378 #, no-wrap
13379 msgid ""
13380 " char **\n"
13381 " guestfs_list_devices (guestfs_h *g);\n"
13382 "\n"
13383 msgstr ""
13384
13385 # type: textblock
13386 #. type: textblock
13387 #: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2474
13388 msgid "List all the block devices."
13389 msgstr ""
13390
13391 # type: textblock
13392 #. type: textblock
13393 #: ../src/guestfs-actions.pod:3553 ../fish/guestfish-actions.pod:2476
13394 msgid "The full block device names are returned, eg. C</dev/sda>."
13395 msgstr ""
13396
13397 # type: =head2
13398 #. type: =head2
13399 #: ../src/guestfs-actions.pod:3563
13400 msgid "guestfs_list_filesystems"
13401 msgstr ""
13402
13403 # type: verbatim
13404 #. type: verbatim
13405 #: ../src/guestfs-actions.pod:3565
13406 #, no-wrap
13407 msgid ""
13408 " char **\n"
13409 " guestfs_list_filesystems (guestfs_h *g);\n"
13410 "\n"
13411 msgstr ""
13412
13413 # type: textblock
13414 #. type: textblock
13415 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2484
13416 msgid ""
13417 "This inspection command looks for filesystems on partitions, block devices "
13418 "and logical volumes, returning a list of devices containing filesystems and "
13419 "their type."
13420 msgstr ""
13421
13422 # type: textblock
13423 #. type: textblock
13424 #: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2488
13425 msgid ""
13426 "The return value is a hash, where the keys are the devices containing "
13427 "filesystems, and the values are the filesystem types.  For example:"
13428 msgstr ""
13429
13430 # type: verbatim
13431 #. type: verbatim
13432 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
13433 #, no-wrap
13434 msgid ""
13435 " \"/dev/sda1\" => \"ntfs\"\n"
13436 " \"/dev/sda2\" => \"ext2\"\n"
13437 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13438 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13439 "\n"
13440 msgstr ""
13441
13442 # type: textblock
13443 #. type: textblock
13444 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
13445 msgid ""
13446 "The value can have the special value \"unknown\", meaning the content of the "
13447 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
13448 msgstr ""
13449
13450 # type: textblock
13451 #. type: textblock
13452 #: ../src/guestfs-actions.pod:3585
13453 msgid ""
13454 "This command runs other libguestfs commands, which might include "
13455 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13456 "soon after launch and only when nothing is mounted."
13457 msgstr ""
13458
13459 # type: textblock
13460 #. type: textblock
13461 #: ../src/guestfs-actions.pod:3589
13462 msgid ""
13463 "Not all of the filesystems returned will be mountable.  In particular, swap "
13464 "partitions are returned in the list.  Also this command does not check that "
13465 "each filesystem found is valid and mountable, and some filesystems might be "
13466 "mountable but require special options.  Filesystems may not all belong to a "
13467 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13468 msgstr ""
13469
13470 # type: textblock
13471 #. type: textblock
13472 #: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:5215
13473 msgid "(Added in 1.5.15)"
13474 msgstr ""
13475
13476 # type: =head2
13477 #. type: =head2
13478 #: ../src/guestfs-actions.pod:3605
13479 msgid "guestfs_list_partitions"
13480 msgstr ""
13481
13482 # type: verbatim
13483 #. type: verbatim
13484 #: ../src/guestfs-actions.pod:3607
13485 #, no-wrap
13486 msgid ""
13487 " char **\n"
13488 " guestfs_list_partitions (guestfs_h *g);\n"
13489 "\n"
13490 msgstr ""
13491
13492 # type: textblock
13493 #. type: textblock
13494 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
13495 msgid "List all the partitions detected on all block devices."
13496 msgstr ""
13497
13498 # type: textblock
13499 #. type: textblock
13500 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2519
13501 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13502 msgstr ""
13503
13504 # type: textblock
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:3614
13507 msgid ""
13508 "This does not return logical volumes.  For that you will need to call "
13509 "C<guestfs_lvs>."
13510 msgstr ""
13511
13512 # type: =head2
13513 #. type: =head2
13514 #: ../src/guestfs-actions.pod:3625
13515 msgid "guestfs_ll"
13516 msgstr ""
13517
13518 # type: verbatim
13519 #. type: verbatim
13520 #: ../src/guestfs-actions.pod:3627
13521 #, no-wrap
13522 msgid ""
13523 " char *\n"
13524 " guestfs_ll (guestfs_h *g,\n"
13525 "             const char *directory);\n"
13526 "\n"
13527 msgstr ""
13528
13529 # type: textblock
13530 #. type: textblock
13531 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2530
13532 msgid ""
13533 "List the files in C<directory> (relative to the root directory, there is no "
13534 "cwd) in the format of 'ls -la'."
13535 msgstr ""
13536
13537 # type: textblock
13538 #. type: textblock
13539 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
13540 msgid ""
13541 "This command is mostly useful for interactive sessions.  It is I<not> "
13542 "intended that you try to parse the output string."
13543 msgstr ""
13544
13545 # type: =head2
13546 #. type: =head2
13547 #: ../src/guestfs-actions.pod:3642
13548 msgid "guestfs_ln"
13549 msgstr ""
13550
13551 # type: verbatim
13552 #. type: verbatim
13553 #: ../src/guestfs-actions.pod:3644
13554 #, no-wrap
13555 msgid ""
13556 " int\n"
13557 " guestfs_ln (guestfs_h *g,\n"
13558 "             const char *target,\n"
13559 "             const char *linkname);\n"
13560 "\n"
13561 msgstr ""
13562
13563 # type: textblock
13564 #. type: textblock
13565 #: ../src/guestfs-actions.pod:3649 ../fish/guestfish-actions.pod:2540
13566 msgid "This command creates a hard link using the C<ln> command."
13567 msgstr ""
13568
13569 # type: =head2
13570 #. type: =head2
13571 #: ../src/guestfs-actions.pod:3655
13572 msgid "guestfs_ln_f"
13573 msgstr ""
13574
13575 # type: verbatim
13576 #. type: verbatim
13577 #: ../src/guestfs-actions.pod:3657
13578 #, no-wrap
13579 msgid ""
13580 " int\n"
13581 " guestfs_ln_f (guestfs_h *g,\n"
13582 "               const char *target,\n"
13583 "               const char *linkname);\n"
13584 "\n"
13585 msgstr ""
13586
13587 #. type: textblock
13588 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2546
13589 msgid ""
13590 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
13591 "option removes the link (C<linkname>) if it exists already."
13592 msgstr ""
13593
13594 # type: =head2
13595 #. type: =head2
13596 #: ../src/guestfs-actions.pod:3669
13597 msgid "guestfs_ln_s"
13598 msgstr ""
13599
13600 # type: verbatim
13601 #. type: verbatim
13602 #: ../src/guestfs-actions.pod:3671
13603 #, no-wrap
13604 msgid ""
13605 " int\n"
13606 " guestfs_ln_s (guestfs_h *g,\n"
13607 "               const char *target,\n"
13608 "               const char *linkname);\n"
13609 "\n"
13610 msgstr ""
13611
13612 # type: textblock
13613 #. type: textblock
13614 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2553
13615 msgid "This command creates a symbolic link using the C<ln -s> command."
13616 msgstr ""
13617
13618 # type: =head2
13619 #. type: =head2
13620 #: ../src/guestfs-actions.pod:3682
13621 msgid "guestfs_ln_sf"
13622 msgstr ""
13623
13624 # type: verbatim
13625 #. type: verbatim
13626 #: ../src/guestfs-actions.pod:3684
13627 #, no-wrap
13628 msgid ""
13629 " int\n"
13630 " guestfs_ln_sf (guestfs_h *g,\n"
13631 "                const char *target,\n"
13632 "                const char *linkname);\n"
13633 "\n"
13634 msgstr ""
13635
13636 #. type: textblock
13637 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2559
13638 msgid ""
13639 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
13640 "option removes the link (C<linkname>) if it exists already."
13641 msgstr ""
13642
13643 # type: =head2
13644 #. type: =head2
13645 #: ../src/guestfs-actions.pod:3696
13646 msgid "guestfs_lremovexattr"
13647 msgstr ""
13648
13649 # type: verbatim
13650 #. type: verbatim
13651 #: ../src/guestfs-actions.pod:3698
13652 #, no-wrap
13653 msgid ""
13654 " int\n"
13655 " guestfs_lremovexattr (guestfs_h *g,\n"
13656 "                       const char *xattr,\n"
13657 "                       const char *path);\n"
13658 "\n"
13659 msgstr ""
13660
13661 # type: textblock
13662 #. type: textblock
13663 #: ../src/guestfs-actions.pod:3703
13664 msgid ""
13665 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13666 "link, then it removes an extended attribute of the link itself."
13667 msgstr ""
13668
13669 # type: =head2
13670 #. type: =head2
13671 #: ../src/guestfs-actions.pod:3711
13672 msgid "guestfs_ls"
13673 msgstr ""
13674
13675 # type: verbatim
13676 #. type: verbatim
13677 #: ../src/guestfs-actions.pod:3713
13678 #, no-wrap
13679 msgid ""
13680 " char **\n"
13681 " guestfs_ls (guestfs_h *g,\n"
13682 "             const char *directory);\n"
13683 "\n"
13684 msgstr ""
13685
13686 # type: textblock
13687 #. type: textblock
13688 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2574
13689 msgid ""
13690 "List the files in C<directory> (relative to the root directory, there is no "
13691 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
13692 msgstr ""
13693
13694 # type: textblock
13695 #. type: textblock
13696 #: ../src/guestfs-actions.pod:3721
13697 msgid ""
13698 "This command is mostly useful for interactive sessions.  Programs should "
13699 "probably use C<guestfs_readdir> instead."
13700 msgstr ""
13701
13702 # type: =head2
13703 #. type: =head2
13704 #: ../src/guestfs-actions.pod:3730
13705 msgid "guestfs_lsetxattr"
13706 msgstr ""
13707
13708 # type: verbatim
13709 #. type: verbatim
13710 #: ../src/guestfs-actions.pod:3732
13711 #, no-wrap
13712 msgid ""
13713 " int\n"
13714 " guestfs_lsetxattr (guestfs_h *g,\n"
13715 "                    const char *xattr,\n"
13716 "                    const char *val,\n"
13717 "                    int vallen,\n"
13718 "                    const char *path);\n"
13719 "\n"
13720 msgstr ""
13721
13722 # type: textblock
13723 #. type: textblock
13724 #: ../src/guestfs-actions.pod:3739
13725 msgid ""
13726 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13727 "then it sets an extended attribute of the link itself."
13728 msgstr ""
13729
13730 # type: =head2
13731 #. type: =head2
13732 #: ../src/guestfs-actions.pod:3747
13733 msgid "guestfs_lstat"
13734 msgstr ""
13735
13736 # type: verbatim
13737 #. type: verbatim
13738 #: ../src/guestfs-actions.pod:3749
13739 #, no-wrap
13740 msgid ""
13741 " struct guestfs_stat *\n"
13742 " guestfs_lstat (guestfs_h *g,\n"
13743 "                const char *path);\n"
13744 "\n"
13745 msgstr ""
13746
13747 # type: textblock
13748 #. type: textblock
13749 #: ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:6346
13750 #: ../fish/guestfish-actions.pod:2593 ../fish/guestfish-actions.pod:4297
13751 msgid "Returns file information for the given C<path>."
13752 msgstr ""
13753
13754 # type: textblock
13755 #. type: textblock
13756 #: ../src/guestfs-actions.pod:3755
13757 msgid ""
13758 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13759 "link, then the link is stat-ed, not the file it refers to."
13760 msgstr ""
13761
13762 # type: textblock
13763 #. type: textblock
13764 #: ../src/guestfs-actions.pod:3759 ../fish/guestfish-actions.pod:2599
13765 msgid "This is the same as the C<lstat(2)> system call."
13766 msgstr ""
13767
13768 # type: textblock
13769 #. type: textblock
13770 #: ../src/guestfs-actions.pod:3761 ../src/guestfs-actions.pod:6350
13771 msgid ""
13772 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13773 "error.  I<The caller must call C<guestfs_free_stat> after use>."
13774 msgstr ""
13775
13776 # type: textblock
13777 #. type: textblock
13778 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:6354
13779 #: ../src/guestfs-actions.pod:6372 ../src/guestfs-actions.pod:6753
13780 msgid "(Added in 0.9.2)"
13781 msgstr ""
13782
13783 # type: =head2
13784 #. type: =head2
13785 #: ../src/guestfs-actions.pod:3767
13786 msgid "guestfs_lstatlist"
13787 msgstr ""
13788
13789 # type: verbatim
13790 #. type: verbatim
13791 #: ../src/guestfs-actions.pod:3769
13792 #, no-wrap
13793 msgid ""
13794 " struct guestfs_stat_list *\n"
13795 " guestfs_lstatlist (guestfs_h *g,\n"
13796 "                    const char *path,\n"
13797 "                    char *const *names);\n"
13798 "\n"
13799 msgstr ""
13800
13801 # type: textblock
13802 #. type: textblock
13803 #: ../src/guestfs-actions.pod:3774
13804 msgid ""
13805 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13806 "files, where all files are in the directory C<path>.  C<names> is the list "
13807 "of files from this directory."
13808 msgstr ""
13809
13810 # type: textblock
13811 #. type: textblock
13812 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2609
13813 msgid ""
13814 "On return you get a list of stat structs, with a one-to-one correspondence "
13815 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13816 "then the C<ino> field of that structure is set to C<-1>."
13817 msgstr ""
13818
13819 # type: textblock
13820 #. type: textblock
13821 #: ../src/guestfs-actions.pod:3783
13822 msgid ""
13823 "This call is intended for programs that want to efficiently list a directory "
13824 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13825 "for a similarly efficient call for getting extended attributes.  Very long "
13826 "directory listings might cause the protocol message size to be exceeded, "
13827 "causing this call to fail.  The caller must split up such requests into "
13828 "smaller groups of names."
13829 msgstr ""
13830
13831 # type: textblock
13832 #. type: textblock
13833 #: ../src/guestfs-actions.pod:3791
13834 msgid ""
13835 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13836 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13837 msgstr ""
13838
13839 # type: =head2
13840 #. type: =head2
13841 #: ../src/guestfs-actions.pod:3797
13842 msgid "guestfs_luks_add_key"
13843 msgstr ""
13844
13845 # type: verbatim
13846 #. type: verbatim
13847 #: ../src/guestfs-actions.pod:3799
13848 #, no-wrap
13849 msgid ""
13850 " int\n"
13851 " guestfs_luks_add_key (guestfs_h *g,\n"
13852 "                       const char *device,\n"
13853 "                       const char *key,\n"
13854 "                       const char *newkey,\n"
13855 "                       int keyslot);\n"
13856 "\n"
13857 msgstr ""
13858
13859 # type: textblock
13860 #. type: textblock
13861 #: ../src/guestfs-actions.pod:3806 ../fish/guestfish-actions.pod:2626
13862 msgid ""
13863 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13864 "existing key, and is used to access the device.  C<newkey> is the new key to "
13865 "add.  C<keyslot> is the key slot that will be replaced."
13866 msgstr ""
13867
13868 # type: textblock
13869 #. type: textblock
13870 #: ../src/guestfs-actions.pod:3811
13871 msgid ""
13872 "Note that if C<keyslot> already contains a key, then this command will "
13873 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13874 msgstr ""
13875
13876 # type: textblock
13877 #. type: textblock
13878 #: ../src/guestfs-actions.pod:3817 ../src/guestfs-actions.pod:3857
13879 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3900
13880 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:3951
13881 msgid ""
13882 "This function takes a key or passphrase parameter which could contain "
13883 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13884 "information."
13885 msgstr ""
13886
13887 # type: textblock
13888 #. type: textblock
13889 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3861
13890 #: ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3904
13891 msgid "(Added in 1.5.2)"
13892 msgstr ""
13893
13894 # type: =head2
13895 #. type: =head2
13896 #: ../src/guestfs-actions.pod:3823
13897 msgid "guestfs_luks_close"
13898 msgstr ""
13899
13900 # type: verbatim
13901 #. type: verbatim
13902 #: ../src/guestfs-actions.pod:3825
13903 #, no-wrap
13904 msgid ""
13905 " int\n"
13906 " guestfs_luks_close (guestfs_h *g,\n"
13907 "                     const char *device);\n"
13908 "\n"
13909 msgstr ""
13910
13911 # type: textblock
13912 #. type: textblock
13913 #: ../src/guestfs-actions.pod:3829
13914 msgid ""
13915 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13916 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13917 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13918 "underlying block device."
13919 msgstr ""
13920
13921 # type: textblock
13922 #. type: textblock
13923 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3936
13924 #: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:4005
13925 #: ../src/guestfs-actions.pod:4053
13926 msgid "(Added in 1.5.1)"
13927 msgstr ""
13928
13929 # type: =head2
13930 #. type: =head2
13931 #: ../src/guestfs-actions.pod:3839
13932 msgid "guestfs_luks_format"
13933 msgstr ""
13934
13935 # type: verbatim
13936 #. type: verbatim
13937 #: ../src/guestfs-actions.pod:3841
13938 #, no-wrap
13939 msgid ""
13940 " int\n"
13941 " guestfs_luks_format (guestfs_h *g,\n"
13942 "                      const char *device,\n"
13943 "                      const char *key,\n"
13944 "                      int keyslot);\n"
13945 "\n"
13946 msgstr ""
13947
13948 # type: textblock
13949 #. type: textblock
13950 #: ../src/guestfs-actions.pod:3847 ../fish/guestfish-actions.pod:2652
13951 msgid ""
13952 "This command erases existing data on C<device> and formats the device as a "
13953 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13954 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13955 msgstr ""
13956
13957 # type: textblock
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:3877
13960 #: ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4966
13961 #: ../src/guestfs-actions.pod:5746 ../src/guestfs-actions.pod:6153
13962 #: ../src/guestfs-actions.pod:6183 ../src/guestfs-actions.pod:6216
13963 #: ../src/guestfs-actions.pod:7397 ../fish/guestfish-actions.pod:2660
13964 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2757
13965 #: ../fish/guestfish-actions.pod:3338 ../fish/guestfish-actions.pod:3858
13966 #: ../fish/guestfish-actions.pod:4168 ../fish/guestfish-actions.pod:4191
13967 #: ../fish/guestfish-actions.pod:4213 ../fish/guestfish-actions.pod:4942
13968 msgid ""
13969 "B<This command is dangerous.  Without careful use you can easily destroy all "
13970 "your data>."
13971 msgstr ""
13972
13973 # type: =head2
13974 #. type: =head2
13975 #: ../src/guestfs-actions.pod:3863
13976 msgid "guestfs_luks_format_cipher"
13977 msgstr ""
13978
13979 # type: verbatim
13980 #. type: verbatim
13981 #: ../src/guestfs-actions.pod:3865
13982 #, no-wrap
13983 msgid ""
13984 " int\n"
13985 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13986 "                             const char *device,\n"
13987 "                             const char *key,\n"
13988 "                             int keyslot,\n"
13989 "                             const char *cipher);\n"
13990 "\n"
13991 msgstr ""
13992
13993 # type: textblock
13994 #. type: textblock
13995 #: ../src/guestfs-actions.pod:3872
13996 msgid ""
13997 "This command is the same as C<guestfs_luks_format> but it also allows you to "
13998 "set the C<cipher> used."
13999 msgstr ""
14000
14001 # type: =head2
14002 #. type: =head2
14003 #: ../src/guestfs-actions.pod:3886
14004 msgid "guestfs_luks_kill_slot"
14005 msgstr ""
14006
14007 # type: verbatim
14008 #. type: verbatim
14009 #: ../src/guestfs-actions.pod:3888
14010 #, no-wrap
14011 msgid ""
14012 " int\n"
14013 " guestfs_luks_kill_slot (guestfs_h *g,\n"
14014 "                         const char *device,\n"
14015 "                         const char *key,\n"
14016 "                         int keyslot);\n"
14017 "\n"
14018 msgstr ""
14019
14020 # type: textblock
14021 #. type: textblock
14022 #: ../src/guestfs-actions.pod:3894 ../fish/guestfish-actions.pod:2680
14023 msgid ""
14024 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
14025 "device C<device>.  C<key> must be one of the I<other> keys."
14026 msgstr ""
14027
14028 # type: =head2
14029 #. type: =head2
14030 #: ../src/guestfs-actions.pod:3906
14031 msgid "guestfs_luks_open"
14032 msgstr ""
14033
14034 # type: verbatim
14035 #. type: verbatim
14036 #: ../src/guestfs-actions.pod:3908
14037 #, no-wrap
14038 msgid ""
14039 " int\n"
14040 " guestfs_luks_open (guestfs_h *g,\n"
14041 "                    const char *device,\n"
14042 "                    const char *key,\n"
14043 "                    const char *mapname);\n"
14044 "\n"
14045 msgstr ""
14046
14047 # type: textblock
14048 #. type: textblock
14049 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
14050 msgid ""
14051 "This command opens a block device which has been encrypted according to the "
14052 "Linux Unified Key Setup (LUKS) standard."
14053 msgstr ""
14054
14055 # type: textblock
14056 #. type: textblock
14057 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
14058 msgid "C<device> is the encrypted block device or partition."
14059 msgstr ""
14060
14061 # type: textblock
14062 #. type: textblock
14063 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
14064 msgid ""
14065 "The caller must supply one of the keys associated with the LUKS block "
14066 "device, in the C<key> parameter."
14067 msgstr ""
14068
14069 # type: textblock
14070 #. type: textblock
14071 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
14072 msgid ""
14073 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
14074 "writes to this block device are decrypted from and encrypted to the "
14075 "underlying C<device> respectively."
14076 msgstr ""
14077
14078 # type: textblock
14079 #. type: textblock
14080 #: ../src/guestfs-actions.pod:3926
14081 msgid ""
14082 "If this block device contains LVM volume groups, then calling "
14083 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
14084 "visible."
14085 msgstr ""
14086
14087 # type: =head2
14088 #. type: =head2
14089 #: ../src/guestfs-actions.pod:3938
14090 msgid "guestfs_luks_open_ro"
14091 msgstr ""
14092
14093 # type: verbatim
14094 #. type: verbatim
14095 #: ../src/guestfs-actions.pod:3940
14096 #, no-wrap
14097 msgid ""
14098 " int\n"
14099 " guestfs_luks_open_ro (guestfs_h *g,\n"
14100 "                       const char *device,\n"
14101 "                       const char *key,\n"
14102 "                       const char *mapname);\n"
14103 "\n"
14104 msgstr ""
14105
14106 # type: textblock
14107 #. type: textblock
14108 #: ../src/guestfs-actions.pod:3946
14109 msgid ""
14110 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
14111 "created."
14112 msgstr ""
14113
14114 # type: =head2
14115 #. type: =head2
14116 #: ../src/guestfs-actions.pod:3957
14117 msgid "guestfs_lvcreate"
14118 msgstr ""
14119
14120 # type: verbatim
14121 #. type: verbatim
14122 #: ../src/guestfs-actions.pod:3959
14123 #, no-wrap
14124 msgid ""
14125 " int\n"
14126 " guestfs_lvcreate (guestfs_h *g,\n"
14127 "                   const char *logvol,\n"
14128 "                   const char *volgroup,\n"
14129 "                   int mbytes);\n"
14130 "\n"
14131 msgstr ""
14132
14133 # type: textblock
14134 #. type: textblock
14135 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2724
14136 msgid ""
14137 "This creates an LVM logical volume called C<logvol> on the volume group "
14138 "C<volgroup>, with C<size> megabytes."
14139 msgstr ""
14140
14141 # type: =head2
14142 #. type: =head2
14143 #: ../src/guestfs-actions.pod:3972
14144 msgid "guestfs_lvm_canonical_lv_name"
14145 msgstr ""
14146
14147 # type: verbatim
14148 #. type: verbatim
14149 #: ../src/guestfs-actions.pod:3974
14150 #, no-wrap
14151 msgid ""
14152 " char *\n"
14153 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
14154 "                                const char *lvname);\n"
14155 "\n"
14156 msgstr ""
14157
14158 # type: textblock
14159 #. type: textblock
14160 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2731
14161 msgid ""
14162 "This converts alternative naming schemes for LVs that you might find to the "
14163 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
14164 "LV>."
14165 msgstr ""
14166
14167 # type: textblock
14168 #. type: textblock
14169 #: ../src/guestfs-actions.pod:3982 ../fish/guestfish-actions.pod:2735
14170 msgid ""
14171 "This command returns an error if the C<lvname> parameter does not refer to a "
14172 "logical volume."
14173 msgstr ""
14174
14175 # type: textblock
14176 #. type: textblock
14177 #: ../src/guestfs-actions.pod:3985
14178 msgid "See also C<guestfs_is_lv>."
14179 msgstr ""
14180
14181 # type: textblock
14182 #. type: textblock
14183 #: ../src/guestfs-actions.pod:3990
14184 msgid "(Added in 1.5.24)"
14185 msgstr ""
14186
14187 # type: =head2
14188 #. type: =head2
14189 #: ../src/guestfs-actions.pod:3992
14190 msgid "guestfs_lvm_clear_filter"
14191 msgstr ""
14192
14193 # type: verbatim
14194 #. type: verbatim
14195 #: ../src/guestfs-actions.pod:3994
14196 #, no-wrap
14197 msgid ""
14198 " int\n"
14199 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14200 "\n"
14201 msgstr ""
14202
14203 # type: textblock
14204 #. type: textblock
14205 #: ../src/guestfs-actions.pod:3997
14206 msgid ""
14207 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
14208 "see every block device."
14209 msgstr ""
14210
14211 # type: textblock
14212 #. type: textblock
14213 #: ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4042
14214 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2778
14215 msgid ""
14216 "This command also clears the LVM cache and performs a volume group scan."
14217 msgstr ""
14218
14219 # type: =head2
14220 #. type: =head2
14221 #: ../src/guestfs-actions.pod:4007
14222 msgid "guestfs_lvm_remove_all"
14223 msgstr ""
14224
14225 # type: verbatim
14226 #. type: verbatim
14227 #: ../src/guestfs-actions.pod:4009
14228 #, no-wrap
14229 msgid ""
14230 " int\n"
14231 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14232 "\n"
14233 msgstr ""
14234
14235 # type: textblock
14236 #. type: textblock
14237 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2754
14238 msgid ""
14239 "This command removes all LVM logical volumes, volume groups and physical "
14240 "volumes."
14241 msgstr ""
14242
14243 # type: =head2
14244 #. type: =head2
14245 #: ../src/guestfs-actions.pod:4022
14246 msgid "guestfs_lvm_set_filter"
14247 msgstr ""
14248
14249 # type: verbatim
14250 #. type: verbatim
14251 #: ../src/guestfs-actions.pod:4024
14252 #, no-wrap
14253 msgid ""
14254 " int\n"
14255 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14256 "                         char *const *devices);\n"
14257 "\n"
14258 msgstr ""
14259
14260 # type: textblock
14261 #. type: textblock
14262 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2764
14263 msgid ""
14264 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14265 "block devices in the list C<devices>, and will ignore all other attached "
14266 "block devices."
14267 msgstr ""
14268
14269 # type: textblock
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:4032 ../fish/guestfish-actions.pod:2768
14272 msgid ""
14273 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14274 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
14275 "there are two types of duplication possible: either cloned PVs/VGs which "
14276 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14277 "same name.  In normal operation you cannot create this situation, but you "
14278 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
14279 "inside the LVM metadata."
14280 msgstr ""
14281
14282 # type: textblock
14283 #. type: textblock
14284 #: ../src/guestfs-actions.pod:4045 ../fish/guestfish-actions.pod:2781
14285 msgid "You can filter whole block devices or individual partitions."
14286 msgstr ""
14287
14288 # type: textblock
14289 #. type: textblock
14290 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2783
14291 msgid ""
14292 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
14293 "filesystem), even if you are not filtering out that VG."
14294 msgstr ""
14295
14296 # type: =head2
14297 #. type: =head2
14298 #: ../src/guestfs-actions.pod:4055
14299 msgid "guestfs_lvremove"
14300 msgstr ""
14301
14302 # type: verbatim
14303 #. type: verbatim
14304 #: ../src/guestfs-actions.pod:4057
14305 #, no-wrap
14306 msgid ""
14307 " int\n"
14308 " guestfs_lvremove (guestfs_h *g,\n"
14309 "                   const char *device);\n"
14310 "\n"
14311 msgstr ""
14312
14313 # type: textblock
14314 #. type: textblock
14315 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2791
14316 msgid ""
14317 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14318 "LV, such as C</dev/VG/LV>."
14319 msgstr ""
14320
14321 # type: textblock
14322 #. type: textblock
14323 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
14324 msgid ""
14325 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14326 "dev/VG>."
14327 msgstr ""
14328
14329 # type: textblock
14330 #. type: textblock
14331 #: ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:5312
14332 #: ../src/guestfs-actions.pod:7129
14333 msgid "(Added in 1.0.13)"
14334 msgstr ""
14335
14336 # type: =head2
14337 #. type: =head2
14338 #: ../src/guestfs-actions.pod:4071
14339 msgid "guestfs_lvrename"
14340 msgstr ""
14341
14342 # type: verbatim
14343 #. type: verbatim
14344 #: ../src/guestfs-actions.pod:4073
14345 #, no-wrap
14346 msgid ""
14347 " int\n"
14348 " guestfs_lvrename (guestfs_h *g,\n"
14349 "                   const char *logvol,\n"
14350 "                   const char *newlogvol);\n"
14351 "\n"
14352 msgstr ""
14353
14354 # type: textblock
14355 #. type: textblock
14356 #: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2801
14357 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14358 msgstr ""
14359
14360 # type: textblock
14361 #. type: textblock
14362 #: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:7142
14363 msgid "(Added in 1.0.83)"
14364 msgstr ""
14365
14366 # type: =head2
14367 #. type: =head2
14368 #: ../src/guestfs-actions.pod:4084
14369 msgid "guestfs_lvresize"
14370 msgstr ""
14371
14372 # type: verbatim
14373 #. type: verbatim
14374 #: ../src/guestfs-actions.pod:4086
14375 #, no-wrap
14376 msgid ""
14377 " int\n"
14378 " guestfs_lvresize (guestfs_h *g,\n"
14379 "                   const char *device,\n"
14380 "                   int mbytes);\n"
14381 "\n"
14382 msgstr ""
14383
14384 # type: textblock
14385 #. type: textblock
14386 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2807
14387 msgid ""
14388 "This resizes (expands or shrinks) an existing LVM logical volume to "
14389 "C<mbytes>.  When reducing, data in the reduced part is lost."
14390 msgstr ""
14391
14392 # type: =head2
14393 #. type: =head2
14394 #: ../src/guestfs-actions.pod:4099
14395 msgid "guestfs_lvresize_free"
14396 msgstr ""
14397
14398 # type: verbatim
14399 #. type: verbatim
14400 #: ../src/guestfs-actions.pod:4101
14401 #, no-wrap
14402 msgid ""
14403 " int\n"
14404 " guestfs_lvresize_free (guestfs_h *g,\n"
14405 "                        const char *lv,\n"
14406 "                        int percent);\n"
14407 "\n"
14408 msgstr ""
14409
14410 # type: textblock
14411 #. type: textblock
14412 #: ../src/guestfs-actions.pod:4106 ../fish/guestfish-actions.pod:2815
14413 msgid ""
14414 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14415 "remaining free space in the volume group.  Commonly you would call this with "
14416 "pc = 100 which expands the logical volume as much as possible, using all "
14417 "remaining free space in the volume group."
14418 msgstr ""
14419
14420 # type: textblock
14421 #. type: textblock
14422 #: ../src/guestfs-actions.pod:4114
14423 msgid "(Added in 1.3.3)"
14424 msgstr ""
14425
14426 # type: =head2
14427 #. type: =head2
14428 #: ../src/guestfs-actions.pod:4116
14429 msgid "guestfs_lvs"
14430 msgstr ""
14431
14432 # type: verbatim
14433 #. type: verbatim
14434 #: ../src/guestfs-actions.pod:4118
14435 #, no-wrap
14436 msgid ""
14437 " char **\n"
14438 " guestfs_lvs (guestfs_h *g);\n"
14439 "\n"
14440 msgstr ""
14441
14442 # type: textblock
14443 #. type: textblock
14444 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2825
14445 msgid ""
14446 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14447 "(8)> command."
14448 msgstr ""
14449
14450 # type: textblock
14451 #. type: textblock
14452 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
14453 msgid ""
14454 "This returns a list of the logical volume device names (eg. C</dev/"
14455 "VolGroup00/LogVol00>)."
14456 msgstr ""
14457
14458 # type: textblock
14459 #. type: textblock
14460 #: ../src/guestfs-actions.pod:4127
14461 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14462 msgstr ""
14463
14464 # type: =head2
14465 #. type: =head2
14466 #: ../src/guestfs-actions.pod:4135
14467 msgid "guestfs_lvs_full"
14468 msgstr ""
14469
14470 # type: verbatim
14471 #. type: verbatim
14472 #: ../src/guestfs-actions.pod:4137
14473 #, no-wrap
14474 msgid ""
14475 " struct guestfs_lvm_lv_list *\n"
14476 " guestfs_lvs_full (guestfs_h *g);\n"
14477 "\n"
14478 msgstr ""
14479
14480 # type: textblock
14481 #. type: textblock
14482 #: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2837
14483 msgid ""
14484 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14485 "(8)> command.  The \"full\" version includes all fields."
14486 msgstr ""
14487
14488 # type: textblock
14489 #. type: textblock
14490 #: ../src/guestfs-actions.pod:4143
14491 msgid ""
14492 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14493 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14494 msgstr ""
14495
14496 # type: =head2
14497 #. type: =head2
14498 #: ../src/guestfs-actions.pod:4149
14499 msgid "guestfs_lvuuid"
14500 msgstr ""
14501
14502 # type: verbatim
14503 #. type: verbatim
14504 #: ../src/guestfs-actions.pod:4151
14505 #, no-wrap
14506 msgid ""
14507 " char *\n"
14508 " guestfs_lvuuid (guestfs_h *g,\n"
14509 "                 const char *device);\n"
14510 "\n"
14511 msgstr ""
14512
14513 # type: textblock
14514 #. type: textblock
14515 #: ../src/guestfs-actions.pod:4155 ../fish/guestfish-actions.pod:2844
14516 msgid "This command returns the UUID of the LVM LV C<device>."
14517 msgstr ""
14518
14519 # type: =head2
14520 #. type: =head2
14521 #: ../src/guestfs-actions.pod:4162
14522 msgid "guestfs_lxattrlist"
14523 msgstr ""
14524
14525 # type: verbatim
14526 #. type: verbatim
14527 #: ../src/guestfs-actions.pod:4164
14528 #, no-wrap
14529 msgid ""
14530 " struct guestfs_xattr_list *\n"
14531 " guestfs_lxattrlist (guestfs_h *g,\n"
14532 "                     const char *path,\n"
14533 "                     char *const *names);\n"
14534 "\n"
14535 msgstr ""
14536
14537 # type: textblock
14538 #. type: textblock
14539 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2850
14540 msgid ""
14541 "This call allows you to get the extended attributes of multiple files, where "
14542 "all files are in the directory C<path>.  C<names> is the list of files from "
14543 "this directory."
14544 msgstr ""
14545
14546 # type: textblock
14547 #. type: textblock
14548 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2854
14549 msgid ""
14550 "On return you get a flat list of xattr structs which must be interpreted "
14551 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
14552 "C<attrval> in this struct is zero-length to indicate there was an error "
14553 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14554 "number (the number of following attributes for this file, which could be C<"
14555 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
14556 "for the first named file.  This repeats for the second and subsequent files."
14557 msgstr ""
14558
14559 # type: textblock
14560 #. type: textblock
14561 #: ../src/guestfs-actions.pod:4183
14562 msgid ""
14563 "This call is intended for programs that want to efficiently list a directory "
14564 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
14565 "a similarly efficient call for getting standard stats.  Very long directory "
14566 "listings might cause the protocol message size to be exceeded, causing this "
14567 "call to fail.  The caller must split up such requests into smaller groups of "
14568 "names."
14569 msgstr ""
14570
14571 # type: =head2
14572 #. type: =head2
14573 #: ../src/guestfs-actions.pod:4197
14574 msgid "guestfs_mkdir"
14575 msgstr ""
14576
14577 # type: verbatim
14578 #. type: verbatim
14579 #: ../src/guestfs-actions.pod:4199
14580 #, no-wrap
14581 msgid ""
14582 " int\n"
14583 " guestfs_mkdir (guestfs_h *g,\n"
14584 "                const char *path);\n"
14585 "\n"
14586 msgstr ""
14587
14588 # type: textblock
14589 #. type: textblock
14590 #: ../src/guestfs-actions.pod:4203 ../fish/guestfish-actions.pod:2876
14591 msgid "Create a directory named C<path>."
14592 msgstr ""
14593
14594 # type: =head2
14595 #. type: =head2
14596 #: ../src/guestfs-actions.pod:4209
14597 msgid "guestfs_mkdir_mode"
14598 msgstr ""
14599
14600 # type: verbatim
14601 #. type: verbatim
14602 #: ../src/guestfs-actions.pod:4211
14603 #, no-wrap
14604 msgid ""
14605 " int\n"
14606 " guestfs_mkdir_mode (guestfs_h *g,\n"
14607 "                     const char *path,\n"
14608 "                     int mode);\n"
14609 "\n"
14610 msgstr ""
14611
14612 # type: textblock
14613 #. type: textblock
14614 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2882
14615 msgid ""
14616 "This command creates a directory, setting the initial permissions of the "
14617 "directory to C<mode>."
14618 msgstr ""
14619
14620 # type: textblock
14621 #. type: textblock
14622 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
14623 msgid ""
14624 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14625 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
14626 "other ways."
14627 msgstr ""
14628
14629 # type: textblock
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:4223
14632 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14633 msgstr ""
14634
14635 # type: =head2
14636 #. type: =head2
14637 #: ../src/guestfs-actions.pod:4229
14638 msgid "guestfs_mkdir_p"
14639 msgstr ""
14640
14641 # type: verbatim
14642 #. type: verbatim
14643 #: ../src/guestfs-actions.pod:4231
14644 #, no-wrap
14645 msgid ""
14646 " int\n"
14647 " guestfs_mkdir_p (guestfs_h *g,\n"
14648 "                  const char *path);\n"
14649 "\n"
14650 msgstr ""
14651
14652 # type: textblock
14653 #. type: textblock
14654 #: ../src/guestfs-actions.pod:4235 ../fish/guestfish-actions.pod:2895
14655 msgid ""
14656 "Create a directory named C<path>, creating any parent directories as "
14657 "necessary.  This is like the C<mkdir -p> shell command."
14658 msgstr ""
14659
14660 # type: =head2
14661 #. type: =head2
14662 #: ../src/guestfs-actions.pod:4242
14663 msgid "guestfs_mkdtemp"
14664 msgstr ""
14665
14666 # type: verbatim
14667 #. type: verbatim
14668 #: ../src/guestfs-actions.pod:4244
14669 #, no-wrap
14670 msgid ""
14671 " char *\n"
14672 " guestfs_mkdtemp (guestfs_h *g,\n"
14673 "                  const char *template);\n"
14674 "\n"
14675 msgstr ""
14676
14677 # type: textblock
14678 #. type: textblock
14679 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
14680 msgid ""
14681 "This command creates a temporary directory.  The C<template> parameter "
14682 "should be a full pathname for the temporary directory name with the final "
14683 "six characters being \"XXXXXX\"."
14684 msgstr ""
14685
14686 # type: textblock
14687 #. type: textblock
14688 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
14689 msgid ""
14690 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14691 "being suitable for Windows filesystems."
14692 msgstr ""
14693
14694 # type: textblock
14695 #. type: textblock
14696 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
14697 msgid "The name of the temporary directory that was created is returned."
14698 msgstr ""
14699
14700 # type: textblock
14701 #. type: textblock
14702 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
14703 msgid "The temporary directory is created with mode 0700 and is owned by root."
14704 msgstr ""
14705
14706 # type: textblock
14707 #. type: textblock
14708 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
14709 msgid ""
14710 "The caller is responsible for deleting the temporary directory and its "
14711 "contents after use."
14712 msgstr ""
14713
14714 # type: textblock
14715 #. type: textblock
14716 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
14717 msgid "See also: L<mkdtemp(3)>"
14718 msgstr ""
14719
14720 # type: =head2
14721 #. type: =head2
14722 #: ../src/guestfs-actions.pod:4272
14723 msgid "guestfs_mke2fs_J"
14724 msgstr ""
14725
14726 # type: verbatim
14727 #. type: verbatim
14728 #: ../src/guestfs-actions.pod:4274
14729 #, no-wrap
14730 msgid ""
14731 " int\n"
14732 " guestfs_mke2fs_J (guestfs_h *g,\n"
14733 "                   const char *fstype,\n"
14734 "                   int blocksize,\n"
14735 "                   const char *device,\n"
14736 "                   const char *journal);\n"
14737 "\n"
14738 msgstr ""
14739
14740 # type: textblock
14741 #. type: textblock
14742 #: ../src/guestfs-actions.pod:4281 ../fish/guestfish-actions.pod:2925
14743 msgid ""
14744 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14745 "C<journal>.  It is equivalent to the command:"
14746 msgstr ""
14747
14748 # type: verbatim
14749 #. type: verbatim
14750 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2929
14751 #, no-wrap
14752 msgid ""
14753 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14754 "\n"
14755 msgstr ""
14756
14757 # type: textblock
14758 #. type: textblock
14759 #: ../src/guestfs-actions.pod:4287
14760 msgid "See also C<guestfs_mke2journal>."
14761 msgstr ""
14762
14763 # type: textblock
14764 #. type: textblock
14765 #: ../src/guestfs-actions.pod:4291 ../src/guestfs-actions.pod:4309
14766 #: ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4343
14767 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4371
14768 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4695
14769 msgid "(Added in 1.0.68)"
14770 msgstr ""
14771
14772 # type: =head2
14773 #. type: =head2
14774 #: ../src/guestfs-actions.pod:4293
14775 msgid "guestfs_mke2fs_JL"
14776 msgstr ""
14777
14778 # type: verbatim
14779 #. type: verbatim
14780 #: ../src/guestfs-actions.pod:4295
14781 #, no-wrap
14782 msgid ""
14783 " int\n"
14784 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14785 "                    const char *fstype,\n"
14786 "                    int blocksize,\n"
14787 "                    const char *device,\n"
14788 "                    const char *label);\n"
14789 "\n"
14790 msgstr ""
14791
14792 # type: textblock
14793 #. type: textblock
14794 #: ../src/guestfs-actions.pod:4302 ../fish/guestfish-actions.pod:2937
14795 msgid ""
14796 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14797 "the journal labeled C<label>."
14798 msgstr ""
14799
14800 # type: textblock
14801 #. type: textblock
14802 #: ../src/guestfs-actions.pod:4305
14803 msgid "See also C<guestfs_mke2journal_L>."
14804 msgstr ""
14805
14806 # type: =head2
14807 #. type: =head2
14808 #: ../src/guestfs-actions.pod:4311
14809 msgid "guestfs_mke2fs_JU"
14810 msgstr ""
14811
14812 # type: verbatim
14813 #. type: verbatim
14814 #: ../src/guestfs-actions.pod:4313
14815 #, no-wrap
14816 msgid ""
14817 " int\n"
14818 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14819 "                    const char *fstype,\n"
14820 "                    int blocksize,\n"
14821 "                    const char *device,\n"
14822 "                    const char *uuid);\n"
14823 "\n"
14824 msgstr ""
14825
14826 # type: textblock
14827 #. type: textblock
14828 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2946
14829 msgid ""
14830 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14831 "the journal with UUID C<uuid>."
14832 msgstr ""
14833
14834 # type: textblock
14835 #. type: textblock
14836 #: ../src/guestfs-actions.pod:4323
14837 msgid "See also C<guestfs_mke2journal_U>."
14838 msgstr ""
14839
14840 # type: =head2
14841 #. type: =head2
14842 #: ../src/guestfs-actions.pod:4329
14843 msgid "guestfs_mke2journal"
14844 msgstr ""
14845
14846 # type: verbatim
14847 #. type: verbatim
14848 #: ../src/guestfs-actions.pod:4331
14849 #, no-wrap
14850 msgid ""
14851 " int\n"
14852 " guestfs_mke2journal (guestfs_h *g,\n"
14853 "                      int blocksize,\n"
14854 "                      const char *device);\n"
14855 "\n"
14856 msgstr ""
14857
14858 # type: textblock
14859 #. type: textblock
14860 #: ../src/guestfs-actions.pod:4336 ../fish/guestfish-actions.pod:2955
14861 msgid ""
14862 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
14863 "command:"
14864 msgstr ""
14865
14866 # type: verbatim
14867 #. type: verbatim
14868 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
14869 #, no-wrap
14870 msgid ""
14871 " mke2fs -O journal_dev -b blocksize device\n"
14872 "\n"
14873 msgstr ""
14874
14875 # type: =head2
14876 #. type: =head2
14877 #: ../src/guestfs-actions.pod:4345
14878 msgid "guestfs_mke2journal_L"
14879 msgstr ""
14880
14881 # type: verbatim
14882 #. type: verbatim
14883 #: ../src/guestfs-actions.pod:4347
14884 #, no-wrap
14885 msgid ""
14886 " int\n"
14887 " guestfs_mke2journal_L (guestfs_h *g,\n"
14888 "                        int blocksize,\n"
14889 "                        const char *label,\n"
14890 "                        const char *device);\n"
14891 "\n"
14892 msgstr ""
14893
14894 # type: textblock
14895 #. type: textblock
14896 #: ../src/guestfs-actions.pod:4353 ../fish/guestfish-actions.pod:2964
14897 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14898 msgstr ""
14899
14900 # type: =head2
14901 #. type: =head2
14902 #: ../src/guestfs-actions.pod:4359
14903 msgid "guestfs_mke2journal_U"
14904 msgstr ""
14905
14906 # type: verbatim
14907 #. type: verbatim
14908 #: ../src/guestfs-actions.pod:4361
14909 #, no-wrap
14910 msgid ""
14911 " int\n"
14912 " guestfs_mke2journal_U (guestfs_h *g,\n"
14913 "                        int blocksize,\n"
14914 "                        const char *uuid,\n"
14915 "                        const char *device);\n"
14916 "\n"
14917 msgstr ""
14918
14919 # type: textblock
14920 #. type: textblock
14921 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2970
14922 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14923 msgstr ""
14924
14925 # type: =head2
14926 #. type: =head2
14927 #: ../src/guestfs-actions.pod:4373
14928 msgid "guestfs_mkfifo"
14929 msgstr ""
14930
14931 # type: verbatim
14932 #. type: verbatim
14933 #: ../src/guestfs-actions.pod:4375
14934 #, no-wrap
14935 msgid ""
14936 " int\n"
14937 " guestfs_mkfifo (guestfs_h *g,\n"
14938 "                 int mode,\n"
14939 "                 const char *path);\n"
14940 "\n"
14941 msgstr ""
14942
14943 # type: textblock
14944 #. type: textblock
14945 #: ../src/guestfs-actions.pod:4380
14946 msgid ""
14947 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14948 "is just a convenient wrapper around C<guestfs_mknod>."
14949 msgstr ""
14950
14951 # type: =head2
14952 #. type: =head2
14953 #: ../src/guestfs-actions.pod:4390
14954 msgid "guestfs_mkfs"
14955 msgstr ""
14956
14957 # type: verbatim
14958 #. type: verbatim
14959 #: ../src/guestfs-actions.pod:4392
14960 #, no-wrap
14961 msgid ""
14962 " int\n"
14963 " guestfs_mkfs (guestfs_h *g,\n"
14964 "               const char *fstype,\n"
14965 "               const char *device);\n"
14966 "\n"
14967 msgstr ""
14968
14969 # type: textblock
14970 #. type: textblock
14971 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2986
14972 msgid ""
14973 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14974 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14975 msgstr ""
14976
14977 # type: =head2
14978 #. type: =head2
14979 #: ../src/guestfs-actions.pod:4405
14980 msgid "guestfs_mkfs_b"
14981 msgstr ""
14982
14983 # type: verbatim
14984 #. type: verbatim
14985 #: ../src/guestfs-actions.pod:4407
14986 #, no-wrap
14987 msgid ""
14988 " int\n"
14989 " guestfs_mkfs_b (guestfs_h *g,\n"
14990 "                 const char *fstype,\n"
14991 "                 int blocksize,\n"
14992 "                 const char *device);\n"
14993 "\n"
14994 msgstr ""
14995
14996 # type: textblock
14997 #. type: textblock
14998 #: ../src/guestfs-actions.pod:4413
14999 msgid ""
15000 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
15001 "block size of the resulting filesystem.  Supported block sizes depend on the "
15002 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
15003 msgstr ""
15004
15005 # type: textblock
15006 #. type: textblock
15007 #: ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4461
15008 #: ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3026
15009 msgid ""
15010 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
15011 "cluster size."
15012 msgstr ""
15013
15014 # type: textblock
15015 #. type: textblock
15016 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:3002
15017 msgid ""
15018 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
15019 msgstr ""
15020
15021 # type: =head2
15022 #. type: =head2
15023 #: ../src/guestfs-actions.pod:4432
15024 msgid "guestfs_mkfs_opts"
15025 msgstr ""
15026
15027 # type: verbatim
15028 #. type: verbatim
15029 #: ../src/guestfs-actions.pod:4434
15030 #, no-wrap
15031 msgid ""
15032 " int\n"
15033 " guestfs_mkfs_opts (guestfs_h *g,\n"
15034 "                    const char *fstype,\n"
15035 "                    const char *device,\n"
15036 "                    ...);\n"
15037 "\n"
15038 msgstr ""
15039
15040 #. type: verbatim
15041 #: ../src/guestfs-actions.pod:4445
15042 #, no-wrap
15043 msgid ""
15044 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
15045 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
15046 "\n"
15047 msgstr ""
15048
15049 # type: textblock
15050 #. type: textblock
15051 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:3013
15052 msgid ""
15053 "This function creates a filesystem on C<device>.  The filesystem type is "
15054 "C<fstype>, for example C<ext3>."
15055 msgstr ""
15056
15057 # type: =item
15058 #. type: =item
15059 #: ../src/guestfs-actions.pod:4455 ../fish/guestfish-actions.pod:3020
15060 msgid "C<blocksize>"
15061 msgstr ""
15062
15063 # type: textblock
15064 #. type: textblock
15065 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3022
15066 msgid ""
15067 "The filesystem block size.  Supported block sizes depend on the filesystem "
15068 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
15069 "filesystems."
15070 msgstr ""
15071
15072 #. type: textblock
15073 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3029
15074 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
15075 msgstr ""
15076
15077 #. type: =item
15078 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3031
15079 msgid "C<features>"
15080 msgstr ""
15081
15082 #. type: textblock
15083 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3033
15084 msgid "This passes the I<-O> parameter to the external mkfs program."
15085 msgstr ""
15086
15087 #. type: textblock
15088 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3035
15089 msgid ""
15090 "For certain filesystem types, this allows extra filesystem features to be "
15091 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
15092 msgstr ""
15093
15094 #. type: textblock
15095 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3039
15096 msgid ""
15097 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
15098 "type."
15099 msgstr ""
15100
15101 #. type: textblock
15102 #: ../src/guestfs-actions.pod:4481
15103 msgid "(Added in 1.7.19)"
15104 msgstr ""
15105
15106 # type: =head2
15107 #. type: =head2
15108 #: ../src/guestfs-actions.pod:4483
15109 msgid "guestfs_mkfs_opts_va"
15110 msgstr ""
15111
15112 # type: verbatim
15113 #. type: verbatim
15114 #: ../src/guestfs-actions.pod:4485
15115 #, no-wrap
15116 msgid ""
15117 " int\n"
15118 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
15119 "                       const char *fstype,\n"
15120 "                       const char *device,\n"
15121 "                       va_list args);\n"
15122 "\n"
15123 msgstr ""
15124
15125 # type: textblock
15126 #. type: textblock
15127 #: ../src/guestfs-actions.pod:4491
15128 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
15129 msgstr ""
15130
15131 # type: =head2
15132 #. type: =head2
15133 #: ../src/guestfs-actions.pod:4495
15134 msgid "guestfs_mkfs_opts_argv"
15135 msgstr ""
15136
15137 # type: verbatim
15138 #. type: verbatim
15139 #: ../src/guestfs-actions.pod:4497
15140 #, no-wrap
15141 msgid ""
15142 " int\n"
15143 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
15144 "                         const char *fstype,\n"
15145 "                         const char *device,\n"
15146 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
15147 "\n"
15148 msgstr ""
15149
15150 # type: textblock
15151 #. type: textblock
15152 #: ../src/guestfs-actions.pod:4503
15153 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
15154 msgstr ""
15155
15156 # type: =head2
15157 #. type: =head2
15158 #: ../src/guestfs-actions.pod:4507
15159 msgid "guestfs_mkmountpoint"
15160 msgstr ""
15161
15162 # type: verbatim
15163 #. type: verbatim
15164 #: ../src/guestfs-actions.pod:4509
15165 #, no-wrap
15166 msgid ""
15167 " int\n"
15168 " guestfs_mkmountpoint (guestfs_h *g,\n"
15169 "                       const char *exemptpath);\n"
15170 "\n"
15171 msgstr ""
15172
15173 # type: textblock
15174 #. type: textblock
15175 #: ../src/guestfs-actions.pod:4513
15176 msgid ""
15177 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
15178 "that can be used to create extra mountpoints before mounting the first "
15179 "filesystem."
15180 msgstr ""
15181
15182 # type: textblock
15183 #. type: textblock
15184 #: ../src/guestfs-actions.pod:4517 ../fish/guestfish-actions.pod:3054
15185 msgid ""
15186 "These calls are I<only> necessary in some very limited circumstances, mainly "
15187 "the case where you want to mount a mix of unrelated and/or read-only "
15188 "filesystems together."
15189 msgstr ""
15190
15191 # type: textblock
15192 #. type: textblock
15193 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
15194 msgid ""
15195 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15196 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15197 "inside that.  You can unpack this as follows in guestfish:"
15198 msgstr ""
15199
15200 # type: verbatim
15201 #. type: verbatim
15202 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
15203 #, no-wrap
15204 msgid ""
15205 " add-ro Fedora-11-i686-Live.iso\n"
15206 " run\n"
15207 " mkmountpoint /cd\n"
15208 " mkmountpoint /sqsh\n"
15209 " mkmountpoint /ext3fs\n"
15210 " mount /dev/sda /cd\n"
15211 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15212 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15213 "\n"
15214 msgstr ""
15215
15216 # type: textblock
15217 #. type: textblock
15218 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3072
15219 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15220 msgstr ""
15221
15222 # type: textblock
15223 #. type: textblock
15224 #: ../src/guestfs-actions.pod:4537
15225 msgid ""
15226 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
15227 "may get unexpected errors if you try to mix these calls.  It is safest to "
15228 "manually unmount filesystems and remove mountpoints after use."
15229 msgstr ""
15230
15231 # type: textblock
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:4541
15234 msgid ""
15235 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15236 "first, so for this to work for manual mountpoints, you must ensure that the "
15237 "innermost mountpoints have the longest pathnames, as in the example code "
15238 "above."
15239 msgstr ""
15240
15241 # type: textblock
15242 #. type: textblock
15243 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3083
15244 msgid ""
15245 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15246 msgstr ""
15247
15248 #. type: textblock
15249 #: ../src/guestfs-actions.pod:4548
15250 msgid ""
15251 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15252 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15253 "can also trigger these issues."
15254 msgstr ""
15255
15256 # type: textblock
15257 #. type: textblock
15258 #: ../src/guestfs-actions.pod:4554 ../src/guestfs-actions.pod:4820
15259 #: ../src/guestfs-actions.pod:5730
15260 msgid "(Added in 1.0.62)"
15261 msgstr ""
15262
15263 # type: =head2
15264 #. type: =head2
15265 #: ../src/guestfs-actions.pod:4556
15266 msgid "guestfs_mknod"
15267 msgstr ""
15268
15269 # type: verbatim
15270 #. type: verbatim
15271 #: ../src/guestfs-actions.pod:4558
15272 #, no-wrap
15273 msgid ""
15274 " int\n"
15275 " guestfs_mknod (guestfs_h *g,\n"
15276 "                int mode,\n"
15277 "                int devmajor,\n"
15278 "                int devminor,\n"
15279 "                const char *path);\n"
15280 "\n"
15281 msgstr ""
15282
15283 # type: textblock
15284 #. type: textblock
15285 #: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3093
15286 msgid ""
15287 "This call creates block or character special devices, or named pipes (FIFOs)."
15288 msgstr ""
15289
15290 # type: textblock
15291 #. type: textblock
15292 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
15293 msgid ""
15294 "The C<mode> parameter should be the mode, using the standard constants.  "
15295 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15296 "used when creating block and character special devices."
15297 msgstr ""
15298
15299 # type: textblock
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:4573
15302 msgid ""
15303 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15304 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15305 "regular file).  These constants are available in the standard Linux header "
15306 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15307 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15308 "the appropriate constant for you."
15309 msgstr ""
15310
15311 # type: =head2
15312 #. type: =head2
15313 #: ../src/guestfs-actions.pod:4587
15314 msgid "guestfs_mknod_b"
15315 msgstr ""
15316
15317 # type: verbatim
15318 #. type: verbatim
15319 #: ../src/guestfs-actions.pod:4589
15320 #, no-wrap
15321 msgid ""
15322 " int\n"
15323 " guestfs_mknod_b (guestfs_h *g,\n"
15324 "                  int mode,\n"
15325 "                  int devmajor,\n"
15326 "                  int devminor,\n"
15327 "                  const char *path);\n"
15328 "\n"
15329 msgstr ""
15330
15331 # type: textblock
15332 #. type: textblock
15333 #: ../src/guestfs-actions.pod:4596
15334 msgid ""
15335 "This call creates a block device node called C<path> with mode C<mode> and "
15336 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15337 "wrapper around C<guestfs_mknod>."
15338 msgstr ""
15339
15340 # type: =head2
15341 #. type: =head2
15342 #: ../src/guestfs-actions.pod:4606
15343 msgid "guestfs_mknod_c"
15344 msgstr ""
15345
15346 # type: verbatim
15347 #. type: verbatim
15348 #: ../src/guestfs-actions.pod:4608
15349 #, no-wrap
15350 msgid ""
15351 " int\n"
15352 " guestfs_mknod_c (guestfs_h *g,\n"
15353 "                  int mode,\n"
15354 "                  int devmajor,\n"
15355 "                  int devminor,\n"
15356 "                  const char *path);\n"
15357 "\n"
15358 msgstr ""
15359
15360 # type: textblock
15361 #. type: textblock
15362 #: ../src/guestfs-actions.pod:4615
15363 msgid ""
15364 "This call creates a char device node called C<path> with mode C<mode> and "
15365 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15366 "wrapper around C<guestfs_mknod>."
15367 msgstr ""
15368
15369 # type: =head2
15370 #. type: =head2
15371 #: ../src/guestfs-actions.pod:4625
15372 msgid "guestfs_mkswap"
15373 msgstr ""
15374
15375 # type: verbatim
15376 #. type: verbatim
15377 #: ../src/guestfs-actions.pod:4627
15378 #, no-wrap
15379 msgid ""
15380 " int\n"
15381 " guestfs_mkswap (guestfs_h *g,\n"
15382 "                 const char *device);\n"
15383 "\n"
15384 msgstr ""
15385
15386 # type: textblock
15387 #. type: textblock
15388 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3135
15389 msgid "Create a swap partition on C<device>."
15390 msgstr ""
15391
15392 # type: =head2
15393 #. type: =head2
15394 #: ../src/guestfs-actions.pod:4637
15395 msgid "guestfs_mkswap_L"
15396 msgstr ""
15397
15398 # type: verbatim
15399 #. type: verbatim
15400 #: ../src/guestfs-actions.pod:4639
15401 #, no-wrap
15402 msgid ""
15403 " int\n"
15404 " guestfs_mkswap_L (guestfs_h *g,\n"
15405 "                   const char *label,\n"
15406 "                   const char *device);\n"
15407 "\n"
15408 msgstr ""
15409
15410 # type: textblock
15411 #. type: textblock
15412 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3141
15413 msgid "Create a swap partition on C<device> with label C<label>."
15414 msgstr ""
15415
15416 # type: textblock
15417 #. type: textblock
15418 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3143
15419 msgid ""
15420 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15421 "sda>), just to a partition.  This appears to be a limitation of the kernel "
15422 "or swap tools."
15423 msgstr ""
15424
15425 # type: =head2
15426 #. type: =head2
15427 #: ../src/guestfs-actions.pod:4654
15428 msgid "guestfs_mkswap_U"
15429 msgstr ""
15430
15431 # type: verbatim
15432 #. type: verbatim
15433 #: ../src/guestfs-actions.pod:4656
15434 #, no-wrap
15435 msgid ""
15436 " int\n"
15437 " guestfs_mkswap_U (guestfs_h *g,\n"
15438 "                   const char *uuid,\n"
15439 "                   const char *device);\n"
15440 "\n"
15441 msgstr ""
15442
15443 # type: textblock
15444 #. type: textblock
15445 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3151
15446 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15447 msgstr ""
15448
15449 # type: =head2
15450 #. type: =head2
15451 #: ../src/guestfs-actions.pod:4667
15452 msgid "guestfs_mkswap_file"
15453 msgstr ""
15454
15455 # type: verbatim
15456 #. type: verbatim
15457 #: ../src/guestfs-actions.pod:4669
15458 #, no-wrap
15459 msgid ""
15460 " int\n"
15461 " guestfs_mkswap_file (guestfs_h *g,\n"
15462 "                      const char *path);\n"
15463 "\n"
15464 msgstr ""
15465
15466 # type: textblock
15467 #. type: textblock
15468 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3157
15469 msgid "Create a swap file."
15470 msgstr ""
15471
15472 # type: textblock
15473 #. type: textblock
15474 #: ../src/guestfs-actions.pod:4675
15475 msgid ""
15476 "This command just writes a swap file signature to an existing file.  To "
15477 "create the file itself, use something like C<guestfs_fallocate>."
15478 msgstr ""
15479
15480 # type: =head2
15481 #. type: =head2
15482 #: ../src/guestfs-actions.pod:4682
15483 msgid "guestfs_modprobe"
15484 msgstr ""
15485
15486 # type: verbatim
15487 #. type: verbatim
15488 #: ../src/guestfs-actions.pod:4684
15489 #, no-wrap
15490 msgid ""
15491 " int\n"
15492 " guestfs_modprobe (guestfs_h *g,\n"
15493 "                   const char *modulename);\n"
15494 "\n"
15495 msgstr ""
15496
15497 # type: textblock
15498 #. type: textblock
15499 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3166
15500 msgid "This loads a kernel module in the appliance."
15501 msgstr ""
15502
15503 # type: textblock
15504 #. type: textblock
15505 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3168
15506 msgid ""
15507 "The kernel module must have been whitelisted when libguestfs was built (see "
15508 "C<appliance/kmod.whitelist.in> in the source)."
15509 msgstr ""
15510
15511 # type: =head2
15512 #. type: =head2
15513 #: ../src/guestfs-actions.pod:4697
15514 msgid "guestfs_mount"
15515 msgstr ""
15516
15517 # type: verbatim
15518 #. type: verbatim
15519 #: ../src/guestfs-actions.pod:4699
15520 #, no-wrap
15521 msgid ""
15522 " int\n"
15523 " guestfs_mount (guestfs_h *g,\n"
15524 "                const char *device,\n"
15525 "                const char *mountpoint);\n"
15526 "\n"
15527 msgstr ""
15528
15529 # type: textblock
15530 #. type: textblock
15531 #: ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:3175
15532 msgid ""
15533 "Mount a guest disk at a position in the filesystem.  Block devices are named "
15534 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
15535 "those block devices contain partitions, they will have the usual names (eg. "
15536 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
15537 msgstr ""
15538
15539 # type: textblock
15540 #. type: textblock
15541 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
15542 msgid ""
15543 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15544 "mounted on C</> before others can be mounted.  Other filesystems can only be "
15545 "mounted on directories which already exist."
15546 msgstr ""
15547
15548 # type: textblock
15549 #. type: textblock
15550 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
15551 msgid ""
15552 "The mounted filesystem is writable, if we have sufficient permissions on the "
15553 "underlying device."
15554 msgstr ""
15555
15556 # type: textblock
15557 #. type: textblock
15558 #: ../src/guestfs-actions.pod:4718
15559 msgid ""
15560 "B<Important note:> When you use this call, the filesystem options C<sync> "
15561 "and C<noatime> are set implicitly.  This was originally done because we "
15562 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15563 "very large negative performance impact and negligible effect on "
15564 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
15565 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15566 "(use an empty string for the first parameter if you don't want any options)."
15567 msgstr ""
15568
15569 #. type: textblock
15570 #: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3199
15571 msgid ""
15572 "This function is deprecated.  In new code, use the C<mount_options> call "
15573 "instead."
15574 msgstr ""
15575
15576 # type: =head2
15577 #. type: =head2
15578 #: ../src/guestfs-actions.pod:4739
15579 msgid "guestfs_mount_loop"
15580 msgstr ""
15581
15582 # type: verbatim
15583 #. type: verbatim
15584 #: ../src/guestfs-actions.pod:4741
15585 #, no-wrap
15586 msgid ""
15587 " int\n"
15588 " guestfs_mount_loop (guestfs_h *g,\n"
15589 "                     const char *file,\n"
15590 "                     const char *mountpoint);\n"
15591 "\n"
15592 msgstr ""
15593
15594 # type: textblock
15595 #. type: textblock
15596 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3210
15597 msgid ""
15598 "This command lets you mount C<file> (a filesystem image in a file) on a "
15599 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
15600 "mountpoint>."
15601 msgstr ""
15602
15603 # type: =head2
15604 #. type: =head2
15605 #: ../src/guestfs-actions.pod:4754
15606 msgid "guestfs_mount_options"
15607 msgstr ""
15608
15609 # type: verbatim
15610 #. type: verbatim
15611 #: ../src/guestfs-actions.pod:4756
15612 #, no-wrap
15613 msgid ""
15614 " int\n"
15615 " guestfs_mount_options (guestfs_h *g,\n"
15616 "                        const char *options,\n"
15617 "                        const char *device,\n"
15618 "                        const char *mountpoint);\n"
15619 "\n"
15620 msgstr ""
15621
15622 # type: textblock
15623 #. type: textblock
15624 #: ../src/guestfs-actions.pod:4762
15625 msgid ""
15626 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15627 "the mount options as for the L<mount(8)> I<-o> flag."
15628 msgstr ""
15629
15630 # type: textblock
15631 #. type: textblock
15632 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3222
15633 msgid ""
15634 "If the C<options> parameter is an empty string, then no options are passed "
15635 "(all options default to whatever the filesystem uses)."
15636 msgstr ""
15637
15638 # type: textblock
15639 #. type: textblock
15640 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786
15641 #: ../src/guestfs-actions.pod:4803
15642 msgid "(Added in 1.0.10)"
15643 msgstr ""
15644
15645 # type: =head2
15646 #. type: =head2
15647 #: ../src/guestfs-actions.pod:4774
15648 msgid "guestfs_mount_ro"
15649 msgstr ""
15650
15651 # type: verbatim
15652 #. type: verbatim
15653 #: ../src/guestfs-actions.pod:4776
15654 #, no-wrap
15655 msgid ""
15656 " int\n"
15657 " guestfs_mount_ro (guestfs_h *g,\n"
15658 "                   const char *device,\n"
15659 "                   const char *mountpoint);\n"
15660 "\n"
15661 msgstr ""
15662
15663 # type: textblock
15664 #. type: textblock
15665 #: ../src/guestfs-actions.pod:4781
15666 msgid ""
15667 "This is the same as the C<guestfs_mount> command, but it mounts the "
15668 "filesystem with the read-only (I<-o ro>) flag."
15669 msgstr ""
15670
15671 # type: =head2
15672 #. type: =head2
15673 #: ../src/guestfs-actions.pod:4788
15674 msgid "guestfs_mount_vfs"
15675 msgstr ""
15676
15677 # type: verbatim
15678 #. type: verbatim
15679 #: ../src/guestfs-actions.pod:4790
15680 #, no-wrap
15681 msgid ""
15682 " int\n"
15683 " guestfs_mount_vfs (guestfs_h *g,\n"
15684 "                    const char *options,\n"
15685 "                    const char *vfstype,\n"
15686 "                    const char *device,\n"
15687 "                    const char *mountpoint);\n"
15688 "\n"
15689 msgstr ""
15690
15691 # type: textblock
15692 #. type: textblock
15693 #: ../src/guestfs-actions.pod:4797
15694 msgid ""
15695 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15696 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15697 "t> flags."
15698 msgstr ""
15699
15700 # type: =head2
15701 #. type: =head2
15702 #: ../src/guestfs-actions.pod:4805
15703 msgid "guestfs_mountpoints"
15704 msgstr ""
15705
15706 # type: verbatim
15707 #. type: verbatim
15708 #: ../src/guestfs-actions.pod:4807
15709 #, no-wrap
15710 msgid ""
15711 " char **\n"
15712 " guestfs_mountpoints (guestfs_h *g);\n"
15713 "\n"
15714 msgstr ""
15715
15716 # type: textblock
15717 #. type: textblock
15718 #: ../src/guestfs-actions.pod:4810
15719 msgid ""
15720 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
15721 "devices.  This one returns a hash table (map) of device name to directory "
15722 "where the device is mounted."
15723 msgstr ""
15724
15725 # type: =head2
15726 #. type: =head2
15727 #: ../src/guestfs-actions.pod:4822
15728 msgid "guestfs_mounts"
15729 msgstr ""
15730
15731 # type: verbatim
15732 #. type: verbatim
15733 #: ../src/guestfs-actions.pod:4824
15734 #, no-wrap
15735 msgid ""
15736 " char **\n"
15737 " guestfs_mounts (guestfs_h *g);\n"
15738 "\n"
15739 msgstr ""
15740
15741 # type: textblock
15742 #. type: textblock
15743 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3253
15744 msgid ""
15745 "This returns the list of currently mounted filesystems.  It returns the list "
15746 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15747 msgstr ""
15748
15749 # type: textblock
15750 #. type: textblock
15751 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3256
15752 msgid "Some internal mounts are not shown."
15753 msgstr ""
15754
15755 # type: textblock
15756 #. type: textblock
15757 #: ../src/guestfs-actions.pod:4832
15758 msgid "See also: C<guestfs_mountpoints>"
15759 msgstr ""
15760
15761 # type: =head2
15762 #. type: =head2
15763 #: ../src/guestfs-actions.pod:4840
15764 msgid "guestfs_mv"
15765 msgstr ""
15766
15767 # type: verbatim
15768 #. type: verbatim
15769 #: ../src/guestfs-actions.pod:4842
15770 #, no-wrap
15771 msgid ""
15772 " int\n"
15773 " guestfs_mv (guestfs_h *g,\n"
15774 "             const char *src,\n"
15775 "             const char *dest);\n"
15776 "\n"
15777 msgstr ""
15778
15779 # type: textblock
15780 #. type: textblock
15781 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3264
15782 msgid ""
15783 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15784 "destination filename or destination directory."
15785 msgstr ""
15786
15787 # type: =head2
15788 #. type: =head2
15789 #: ../src/guestfs-actions.pod:4854
15790 msgid "guestfs_ntfs_3g_probe"
15791 msgstr ""
15792
15793 # type: verbatim
15794 #. type: verbatim
15795 #: ../src/guestfs-actions.pod:4856
15796 #, no-wrap
15797 msgid ""
15798 " int\n"
15799 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15800 "                        int rw,\n"
15801 "                        const char *device);\n"
15802 "\n"
15803 msgstr ""
15804
15805 # type: textblock
15806 #. type: textblock
15807 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
15808 msgid ""
15809 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15810 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
15811 "write, and some cannot be mounted at all)."
15812 msgstr ""
15813
15814 # type: textblock
15815 #. type: textblock
15816 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
15817 msgid ""
15818 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
15819 "can be mounted read-write.  Set it to false if you want to test if the "
15820 "volume can be mounted read-only."
15821 msgstr ""
15822
15823 # type: textblock
15824 #. type: textblock
15825 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3279
15826 msgid ""
15827 "The return value is an integer which C<0> if the operation would succeed, or "
15828 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15829 msgstr ""
15830
15831 # type: textblock
15832 #. type: textblock
15833 #: ../src/guestfs-actions.pod:4875
15834 msgid "(Added in 1.0.43)"
15835 msgstr ""
15836
15837 # type: =head2
15838 #. type: =head2
15839 #: ../src/guestfs-actions.pod:4877
15840 msgid "guestfs_ntfsresize"
15841 msgstr ""
15842
15843 # type: verbatim
15844 #. type: verbatim
15845 #: ../src/guestfs-actions.pod:4879
15846 #, no-wrap
15847 msgid ""
15848 " int\n"
15849 " guestfs_ntfsresize (guestfs_h *g,\n"
15850 "                     const char *device);\n"
15851 "\n"
15852 msgstr ""
15853
15854 # type: textblock
15855 #. type: textblock
15856 #: ../src/guestfs-actions.pod:4883 ../fish/guestfish-actions.pod:3287
15857 msgid ""
15858 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15859 "size of the underlying device.  See also L<ntfsresize(8)>."
15860 msgstr ""
15861
15862 # type: =head2
15863 #. type: =head2
15864 #: ../src/guestfs-actions.pod:4891
15865 msgid "guestfs_ntfsresize_size"
15866 msgstr ""
15867
15868 # type: verbatim
15869 #. type: verbatim
15870 #: ../src/guestfs-actions.pod:4893
15871 #, no-wrap
15872 msgid ""
15873 " int\n"
15874 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15875 "                          const char *device,\n"
15876 "                          int64_t size);\n"
15877 "\n"
15878 msgstr ""
15879
15880 # type: textblock
15881 #. type: textblock
15882 #: ../src/guestfs-actions.pod:4898
15883 msgid ""
15884 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15885 "to specify the new size (in bytes) explicitly."
15886 msgstr ""
15887
15888 # type: textblock
15889 #. type: textblock
15890 #: ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:5339
15891 #: ../src/guestfs-actions.pod:5412 ../src/guestfs-actions.pod:5678
15892 #: ../src/guestfs-actions.pod:7284
15893 msgid "(Added in 1.3.14)"
15894 msgstr ""
15895
15896 # type: =head2
15897 #. type: =head2
15898 #: ../src/guestfs-actions.pod:4905
15899 msgid "guestfs_part_add"
15900 msgstr ""
15901
15902 # type: verbatim
15903 #. type: verbatim
15904 #: ../src/guestfs-actions.pod:4907
15905 #, no-wrap
15906 msgid ""
15907 " int\n"
15908 " guestfs_part_add (guestfs_h *g,\n"
15909 "                   const char *device,\n"
15910 "                   const char *prlogex,\n"
15911 "                   int64_t startsect,\n"
15912 "                   int64_t endsect);\n"
15913 "\n"
15914 msgstr ""
15915
15916 # type: textblock
15917 #. type: textblock
15918 #: ../src/guestfs-actions.pod:4914
15919 msgid ""
15920 "This command adds a partition to C<device>.  If there is no partition table "
15921 "on the device, call C<guestfs_part_init> first."
15922 msgstr ""
15923
15924 # type: textblock
15925 #. type: textblock
15926 #: ../src/guestfs-actions.pod:4917 ../fish/guestfish-actions.pod:3305
15927 msgid ""
15928 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15929 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15930 "C<logical>) and C<e> (or C<extended>) partition types."
15931 msgstr ""
15932
15933 # type: textblock
15934 #. type: textblock
15935 #: ../src/guestfs-actions.pod:4922 ../fish/guestfish-actions.pod:3310
15936 msgid ""
15937 "C<startsect> and C<endsect> are the start and end of the partition in "
15938 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15939 "from the end of the disk (C<-1> is the last sector)."
15940 msgstr ""
15941
15942 # type: textblock
15943 #. type: textblock
15944 #: ../src/guestfs-actions.pod:4926
15945 msgid ""
15946 "Creating a partition which covers the whole disk is not so easy.  Use "
15947 "C<guestfs_part_disk> to do that."
15948 msgstr ""
15949
15950 # type: textblock
15951 #. type: textblock
15952 #: ../src/guestfs-actions.pod:4931 ../src/guestfs-actions.pod:4969
15953 #: ../src/guestfs-actions.pod:5022 ../src/guestfs-actions.pod:5100
15954 #: ../src/guestfs-actions.pod:5138 ../src/guestfs-actions.pod:5157
15955 #: ../src/guestfs-actions.pod:5197
15956 msgid "(Added in 1.0.78)"
15957 msgstr ""
15958
15959 # type: =head2
15960 #. type: =head2
15961 #: ../src/guestfs-actions.pod:4933
15962 msgid "guestfs_part_del"
15963 msgstr ""
15964
15965 # type: verbatim
15966 #. type: verbatim
15967 #: ../src/guestfs-actions.pod:4935
15968 #, no-wrap
15969 msgid ""
15970 " int\n"
15971 " guestfs_part_del (guestfs_h *g,\n"
15972 "                   const char *device,\n"
15973 "                   int partnum);\n"
15974 "\n"
15975 msgstr ""
15976
15977 # type: textblock
15978 #. type: textblock
15979 #: ../src/guestfs-actions.pod:4940 ../fish/guestfish-actions.pod:3321
15980 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15981 msgstr ""
15982
15983 # type: textblock
15984 #. type: textblock
15985 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3323
15986 msgid ""
15987 "Note that in the case of MBR partitioning, deleting an extended partition "
15988 "also deletes any logical partitions it contains."
15989 msgstr ""
15990
15991 # type: =head2
15992 #. type: =head2
15993 #: ../src/guestfs-actions.pod:4950
15994 msgid "guestfs_part_disk"
15995 msgstr ""
15996
15997 # type: verbatim
15998 #. type: verbatim
15999 #: ../src/guestfs-actions.pod:4952
16000 #, no-wrap
16001 msgid ""
16002 " int\n"
16003 " guestfs_part_disk (guestfs_h *g,\n"
16004 "                    const char *device,\n"
16005 "                    const char *parttype);\n"
16006 "\n"
16007 msgstr ""
16008
16009 # type: textblock
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:4957
16012 msgid ""
16013 "This command is simply a combination of C<guestfs_part_init> followed by "
16014 "C<guestfs_part_add> to create a single primary partition covering the whole "
16015 "disk."
16016 msgstr ""
16017
16018 # type: textblock
16019 #. type: textblock
16020 #: ../src/guestfs-actions.pod:4961
16021 msgid ""
16022 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
16023 "possible values are described in C<guestfs_part_init>."
16024 msgstr ""
16025
16026 # type: =head2
16027 #. type: =head2
16028 #: ../src/guestfs-actions.pod:4971
16029 msgid "guestfs_part_get_bootable"
16030 msgstr ""
16031
16032 # type: verbatim
16033 #. type: verbatim
16034 #: ../src/guestfs-actions.pod:4973
16035 #, no-wrap
16036 msgid ""
16037 " int\n"
16038 " guestfs_part_get_bootable (guestfs_h *g,\n"
16039 "                            const char *device,\n"
16040 "                            int partnum);\n"
16041 "\n"
16042 msgstr ""
16043
16044 # type: textblock
16045 #. type: textblock
16046 #: ../src/guestfs-actions.pod:4978 ../fish/guestfish-actions.pod:3345
16047 msgid ""
16048 "This command returns true if the partition C<partnum> on C<device> has the "
16049 "bootable flag set."
16050 msgstr ""
16051
16052 # type: textblock
16053 #. type: textblock
16054 #: ../src/guestfs-actions.pod:4981
16055 msgid "See also C<guestfs_part_set_bootable>."
16056 msgstr ""
16057
16058 # type: =head2
16059 #. type: =head2
16060 #: ../src/guestfs-actions.pod:4987
16061 msgid "guestfs_part_get_mbr_id"
16062 msgstr ""
16063
16064 # type: verbatim
16065 #. type: verbatim
16066 #: ../src/guestfs-actions.pod:4989
16067 #, no-wrap
16068 msgid ""
16069 " int\n"
16070 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
16071 "                          const char *device,\n"
16072 "                          int partnum);\n"
16073 "\n"
16074 msgstr ""
16075
16076 # type: textblock
16077 #. type: textblock
16078 #: ../src/guestfs-actions.pod:4994 ../fish/guestfish-actions.pod:3354
16079 msgid ""
16080 "Returns the MBR type byte (also known as the ID byte) from the numbered "
16081 "partition C<partnum>."
16082 msgstr ""
16083
16084 # type: textblock
16085 #. type: textblock
16086 #: ../src/guestfs-actions.pod:4997 ../src/guestfs-actions.pod:5173
16087 msgid ""
16088 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
16089 "undefined results for other partition table types (see "
16090 "C<guestfs_part_get_parttype>)."
16091 msgstr ""
16092
16093 # type: =head2
16094 #. type: =head2
16095 #: ../src/guestfs-actions.pod:5005
16096 msgid "guestfs_part_get_parttype"
16097 msgstr ""
16098
16099 # type: verbatim
16100 #. type: verbatim
16101 #: ../src/guestfs-actions.pod:5007
16102 #, no-wrap
16103 msgid ""
16104 " char *\n"
16105 " guestfs_part_get_parttype (guestfs_h *g,\n"
16106 "                            const char *device);\n"
16107 "\n"
16108 msgstr ""
16109
16110 # type: textblock
16111 #. type: textblock
16112 #: ../src/guestfs-actions.pod:5011 ../fish/guestfish-actions.pod:3365
16113 msgid ""
16114 "This command examines the partition table on C<device> and returns the "
16115 "partition table type (format) being used."
16116 msgstr ""
16117
16118 # type: textblock
16119 #. type: textblock
16120 #: ../src/guestfs-actions.pod:5014
16121 msgid ""
16122 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
16123 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
16124 "possible, although unusual.  See C<guestfs_part_init> for a full list."
16125 msgstr ""
16126
16127 # type: =head2
16128 #. type: =head2
16129 #: ../src/guestfs-actions.pod:5024
16130 msgid "guestfs_part_init"
16131 msgstr ""
16132
16133 # type: verbatim
16134 #. type: verbatim
16135 #: ../src/guestfs-actions.pod:5026
16136 #, no-wrap
16137 msgid ""
16138 " int\n"
16139 " guestfs_part_init (guestfs_h *g,\n"
16140 "                    const char *device,\n"
16141 "                    const char *parttype);\n"
16142 "\n"
16143 msgstr ""
16144
16145 # type: textblock
16146 #. type: textblock
16147 #: ../src/guestfs-actions.pod:5031 ../fish/guestfish-actions.pod:3377
16148 msgid ""
16149 "This creates an empty partition table on C<device> of one of the partition "
16150 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
16151 "(for large disks)."
16152 msgstr ""
16153
16154 # type: textblock
16155 #. type: textblock
16156 #: ../src/guestfs-actions.pod:5035
16157 msgid ""
16158 "Initially there are no partitions.  Following this, you should call "
16159 "C<guestfs_part_add> for each partition required."
16160 msgstr ""
16161
16162 # type: textblock
16163 #. type: textblock
16164 #: ../src/guestfs-actions.pod:5038 ../fish/guestfish-actions.pod:3384
16165 msgid "Possible values for C<parttype> are:"
16166 msgstr ""
16167
16168 # type: =item
16169 #. type: =item
16170 #: ../src/guestfs-actions.pod:5042 ../fish/guestfish-actions.pod:3388
16171 msgid "B<efi> | B<gpt>"
16172 msgstr ""
16173
16174 # type: textblock
16175 #. type: textblock
16176 #: ../src/guestfs-actions.pod:5044 ../fish/guestfish-actions.pod:3390
16177 msgid "Intel EFI / GPT partition table."
16178 msgstr ""
16179
16180 # type: textblock
16181 #. type: textblock
16182 #: ../src/guestfs-actions.pod:5046 ../fish/guestfish-actions.pod:3392
16183 msgid ""
16184 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
16185 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
16186 "the C<mbr> format."
16187 msgstr ""
16188
16189 # type: =item
16190 #. type: =item
16191 #: ../src/guestfs-actions.pod:5050 ../fish/guestfish-actions.pod:3396
16192 msgid "B<mbr> | B<msdos>"
16193 msgstr ""
16194
16195 # type: textblock
16196 #. type: textblock
16197 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3398
16198 msgid ""
16199 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16200 "Windows.  This partition type will B<only> work for device sizes up to 2 "
16201 "TB.  For large disks we recommend using C<gpt>."
16202 msgstr ""
16203
16204 # type: textblock
16205 #. type: textblock
16206 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3405
16207 msgid ""
16208 "Other partition table types that may work but are not supported include:"
16209 msgstr ""
16210
16211 # type: =item
16212 #. type: =item
16213 #: ../src/guestfs-actions.pod:5064 ../fish/guestfish-actions.pod:3410
16214 msgid "B<aix>"
16215 msgstr ""
16216
16217 # type: textblock
16218 #. type: textblock
16219 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3412
16220 msgid "AIX disk labels."
16221 msgstr ""
16222
16223 # type: =item
16224 #. type: =item
16225 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
16226 msgid "B<amiga> | B<rdb>"
16227 msgstr ""
16228
16229 # type: textblock
16230 #. type: textblock
16231 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3416
16232 msgid "Amiga \"Rigid Disk Block\" format."
16233 msgstr ""
16234
16235 # type: =item
16236 #. type: =item
16237 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3418
16238 msgid "B<bsd>"
16239 msgstr ""
16240
16241 # type: textblock
16242 #. type: textblock
16243 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3420
16244 msgid "BSD disk labels."
16245 msgstr ""
16246
16247 # type: =item
16248 #. type: =item
16249 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3422
16250 msgid "B<dasd>"
16251 msgstr ""
16252
16253 # type: textblock
16254 #. type: textblock
16255 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
16256 msgid "DASD, used on IBM mainframes."
16257 msgstr ""
16258
16259 # type: =item
16260 #. type: =item
16261 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
16262 msgid "B<dvh>"
16263 msgstr ""
16264
16265 # type: textblock
16266 #. type: textblock
16267 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
16268 msgid "MIPS/SGI volumes."
16269 msgstr ""
16270
16271 # type: =item
16272 #. type: =item
16273 #: ../src/guestfs-actions.pod:5084 ../fish/guestfish-actions.pod:3430
16274 msgid "B<mac>"
16275 msgstr ""
16276
16277 # type: textblock
16278 #. type: textblock
16279 #: ../src/guestfs-actions.pod:5086 ../fish/guestfish-actions.pod:3432
16280 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
16281 msgstr ""
16282
16283 # type: =item
16284 #. type: =item
16285 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3434
16286 msgid "B<pc98>"
16287 msgstr ""
16288
16289 # type: textblock
16290 #. type: textblock
16291 #: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3436
16292 msgid "NEC PC-98 format, common in Japan apparently."
16293 msgstr ""
16294
16295 # type: =item
16296 #. type: =item
16297 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3438
16298 msgid "B<sun>"
16299 msgstr ""
16300
16301 # type: textblock
16302 #. type: textblock
16303 #: ../src/guestfs-actions.pod:5094 ../fish/guestfish-actions.pod:3440
16304 msgid "Sun disk labels."
16305 msgstr ""
16306
16307 # type: =head2
16308 #. type: =head2
16309 #: ../src/guestfs-actions.pod:5102
16310 msgid "guestfs_part_list"
16311 msgstr ""
16312
16313 # type: verbatim
16314 #. type: verbatim
16315 #: ../src/guestfs-actions.pod:5104
16316 #, no-wrap
16317 msgid ""
16318 " struct guestfs_partition_list *\n"
16319 " guestfs_part_list (guestfs_h *g,\n"
16320 "                    const char *device);\n"
16321 "\n"
16322 msgstr ""
16323
16324 # type: textblock
16325 #. type: textblock
16326 #: ../src/guestfs-actions.pod:5108 ../fish/guestfish-actions.pod:3448
16327 msgid ""
16328 "This command parses the partition table on C<device> and returns the list of "
16329 "partitions found."
16330 msgstr ""
16331
16332 # type: textblock
16333 #. type: textblock
16334 #: ../src/guestfs-actions.pod:5111 ../fish/guestfish-actions.pod:3451
16335 msgid "The fields in the returned structure are:"
16336 msgstr ""
16337
16338 # type: =item
16339 #. type: =item
16340 #: ../src/guestfs-actions.pod:5115 ../fish/guestfish-actions.pod:3455
16341 msgid "B<part_num>"
16342 msgstr ""
16343
16344 # type: textblock
16345 #. type: textblock
16346 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3457
16347 msgid "Partition number, counting from 1."
16348 msgstr ""
16349
16350 # type: =item
16351 #. type: =item
16352 #: ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3459
16353 msgid "B<part_start>"
16354 msgstr ""
16355
16356 # type: textblock
16357 #. type: textblock
16358 #: ../src/guestfs-actions.pod:5121
16359 msgid ""
16360 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
16361 "the device's sector size, see C<guestfs_blockdev_getss>."
16362 msgstr ""
16363
16364 # type: =item
16365 #. type: =item
16366 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
16367 msgid "B<part_end>"
16368 msgstr ""
16369
16370 # type: textblock
16371 #. type: textblock
16372 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
16373 msgid "End of the partition in bytes."
16374 msgstr ""
16375
16376 # type: =item
16377 #. type: =item
16378 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3468
16379 msgid "B<part_size>"
16380 msgstr ""
16381
16382 # type: textblock
16383 #. type: textblock
16384 #: ../src/guestfs-actions.pod:5130 ../fish/guestfish-actions.pod:3470
16385 msgid "Size of the partition in bytes."
16386 msgstr ""
16387
16388 # type: textblock
16389 #. type: textblock
16390 #: ../src/guestfs-actions.pod:5134
16391 msgid ""
16392 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16393 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
16394 "use>."
16395 msgstr ""
16396
16397 # type: =head2
16398 #. type: =head2
16399 #: ../src/guestfs-actions.pod:5140
16400 msgid "guestfs_part_set_bootable"
16401 msgstr ""
16402
16403 # type: verbatim
16404 #. type: verbatim
16405 #: ../src/guestfs-actions.pod:5142
16406 #, no-wrap
16407 msgid ""
16408 " int\n"
16409 " guestfs_part_set_bootable (guestfs_h *g,\n"
16410 "                            const char *device,\n"
16411 "                            int partnum,\n"
16412 "                            int bootable);\n"
16413 "\n"
16414 msgstr ""
16415
16416 # type: textblock
16417 #. type: textblock
16418 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3478
16419 msgid ""
16420 "This sets the bootable flag on partition numbered C<partnum> on device "
16421 "C<device>.  Note that partitions are numbered from 1."
16422 msgstr ""
16423
16424 # type: textblock
16425 #. type: textblock
16426 #: ../src/guestfs-actions.pod:5151 ../fish/guestfish-actions.pod:3481
16427 msgid ""
16428 "The bootable flag is used by some operating systems (notably Windows) to "
16429 "determine which partition to boot from.  It is by no means universally "
16430 "recognized."
16431 msgstr ""
16432
16433 # type: =head2
16434 #. type: =head2
16435 #: ../src/guestfs-actions.pod:5159
16436 msgid "guestfs_part_set_mbr_id"
16437 msgstr ""
16438
16439 # type: verbatim
16440 #. type: verbatim
16441 #: ../src/guestfs-actions.pod:5161
16442 #, no-wrap
16443 msgid ""
16444 " int\n"
16445 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16446 "                          const char *device,\n"
16447 "                          int partnum,\n"
16448 "                          int idbyte);\n"
16449 "\n"
16450 msgstr ""
16451
16452 # type: textblock
16453 #. type: textblock
16454 #: ../src/guestfs-actions.pod:5167 ../fish/guestfish-actions.pod:3489
16455 msgid ""
16456 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16457 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
16458 "documentation are in fact hexadecimal numbers, but usually documented "
16459 "without any leading \"0x\" which might be confusing."
16460 msgstr ""
16461
16462 # type: =head2
16463 #. type: =head2
16464 #: ../src/guestfs-actions.pod:5181
16465 msgid "guestfs_part_set_name"
16466 msgstr ""
16467
16468 # type: verbatim
16469 #. type: verbatim
16470 #: ../src/guestfs-actions.pod:5183
16471 #, no-wrap
16472 msgid ""
16473 " int\n"
16474 " guestfs_part_set_name (guestfs_h *g,\n"
16475 "                        const char *device,\n"
16476 "                        int partnum,\n"
16477 "                        const char *name);\n"
16478 "\n"
16479 msgstr ""
16480
16481 # type: textblock
16482 #. type: textblock
16483 #: ../src/guestfs-actions.pod:5189 ../fish/guestfish-actions.pod:3503
16484 msgid ""
16485 "This sets the partition name on partition numbered C<partnum> on device "
16486 "C<device>.  Note that partitions are numbered from 1."
16487 msgstr ""
16488
16489 # type: textblock
16490 #. type: textblock
16491 #: ../src/guestfs-actions.pod:5192 ../fish/guestfish-actions.pod:3506
16492 msgid ""
16493 "The partition name can only be set on certain types of partition table.  "
16494 "This works on C<gpt> but not on C<mbr> partitions."
16495 msgstr ""
16496
16497 # type: =head2
16498 #. type: =head2
16499 #: ../src/guestfs-actions.pod:5199
16500 msgid "guestfs_part_to_dev"
16501 msgstr ""
16502
16503 # type: verbatim
16504 #. type: verbatim
16505 #: ../src/guestfs-actions.pod:5201
16506 #, no-wrap
16507 msgid ""
16508 " char *\n"
16509 " guestfs_part_to_dev (guestfs_h *g,\n"
16510 "                      const char *partition);\n"
16511 "\n"
16512 msgstr ""
16513
16514 # type: textblock
16515 #. type: textblock
16516 #: ../src/guestfs-actions.pod:5205 ../fish/guestfish-actions.pod:3513
16517 msgid ""
16518 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16519 "partition number, returning the device name (eg. \"/dev/sdb\")."
16520 msgstr ""
16521
16522 # type: textblock
16523 #. type: textblock
16524 #: ../src/guestfs-actions.pod:5209
16525 msgid ""
16526 "The named partition must exist, for example as a string returned from "
16527 "C<guestfs_list_partitions>."
16528 msgstr ""
16529
16530 # type: =head2
16531 #. type: =head2
16532 #: ../src/guestfs-actions.pod:5217
16533 msgid "guestfs_ping_daemon"
16534 msgstr ""
16535
16536 # type: verbatim
16537 #. type: verbatim
16538 #: ../src/guestfs-actions.pod:5219
16539 #, no-wrap
16540 msgid ""
16541 " int\n"
16542 " guestfs_ping_daemon (guestfs_h *g);\n"
16543 "\n"
16544 msgstr ""
16545
16546 # type: textblock
16547 #. type: textblock
16548 #: ../src/guestfs-actions.pod:5222 ../fish/guestfish-actions.pod:3524
16549 msgid ""
16550 "This is a test probe into the guestfs daemon running inside the qemu "
16551 "subprocess.  Calling this function checks that the daemon responds to the "
16552 "ping message, without affecting the daemon or attached block device(s) in "
16553 "any other way."
16554 msgstr ""
16555
16556 # type: =head2
16557 #. type: =head2
16558 #: ../src/guestfs-actions.pod:5231
16559 msgid "guestfs_pread"
16560 msgstr ""
16561
16562 # type: verbatim
16563 #. type: verbatim
16564 #: ../src/guestfs-actions.pod:5233
16565 #, no-wrap
16566 msgid ""
16567 " char *\n"
16568 " guestfs_pread (guestfs_h *g,\n"
16569 "                const char *path,\n"
16570 "                int count,\n"
16571 "                int64_t offset,\n"
16572 "                size_t *size_r);\n"
16573 "\n"
16574 msgstr ""
16575
16576 # type: textblock
16577 #. type: textblock
16578 #: ../src/guestfs-actions.pod:5240 ../fish/guestfish-actions.pod:3533
16579 msgid ""
16580 "This command lets you read part of a file.  It reads C<count> bytes of the "
16581 "file, starting at C<offset>, from file C<path>."
16582 msgstr ""
16583
16584 # type: textblock
16585 #. type: textblock
16586 #: ../src/guestfs-actions.pod:5243 ../src/guestfs-actions.pod:5269
16587 #: ../fish/guestfish-actions.pod:3536 ../fish/guestfish-actions.pod:3551
16588 msgid ""
16589 "This may read fewer bytes than requested.  For further details see the "
16590 "L<pread(2)> system call."
16591 msgstr ""
16592
16593 # type: textblock
16594 #. type: textblock
16595 #: ../src/guestfs-actions.pod:5246
16596 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16597 msgstr ""
16598
16599 # type: =head2
16600 #. type: =head2
16601 #: ../src/guestfs-actions.pod:5257
16602 msgid "guestfs_pread_device"
16603 msgstr ""
16604
16605 # type: verbatim
16606 #. type: verbatim
16607 #: ../src/guestfs-actions.pod:5259
16608 #, no-wrap
16609 msgid ""
16610 " char *\n"
16611 " guestfs_pread_device (guestfs_h *g,\n"
16612 "                       const char *device,\n"
16613 "                       int count,\n"
16614 "                       int64_t offset,\n"
16615 "                       size_t *size_r);\n"
16616 "\n"
16617 msgstr ""
16618
16619 # type: textblock
16620 #. type: textblock
16621 #: ../src/guestfs-actions.pod:5266 ../fish/guestfish-actions.pod:3548
16622 msgid ""
16623 "This command lets you read part of a file.  It reads C<count> bytes of "
16624 "C<device>, starting at C<offset>."
16625 msgstr ""
16626
16627 # type: textblock
16628 #. type: textblock
16629 #: ../src/guestfs-actions.pod:5272
16630 msgid "See also C<guestfs_pread>."
16631 msgstr ""
16632
16633 # type: textblock
16634 #. type: textblock
16635 #: ../src/guestfs-actions.pod:5281
16636 msgid "(Added in 1.5.21)"
16637 msgstr ""
16638
16639 # type: =head2
16640 #. type: =head2
16641 #: ../src/guestfs-actions.pod:5283
16642 msgid "guestfs_pvcreate"
16643 msgstr ""
16644
16645 # type: verbatim
16646 #. type: verbatim
16647 #: ../src/guestfs-actions.pod:5285
16648 #, no-wrap
16649 msgid ""
16650 " int\n"
16651 " guestfs_pvcreate (guestfs_h *g,\n"
16652 "                   const char *device);\n"
16653 "\n"
16654 msgstr ""
16655
16656 # type: textblock
16657 #. type: textblock
16658 #: ../src/guestfs-actions.pod:5289 ../fish/guestfish-actions.pod:3563
16659 msgid ""
16660 "This creates an LVM physical volume on the named C<device>, where C<device> "
16661 "should usually be a partition name such as C</dev/sda1>."
16662 msgstr ""
16663
16664 # type: =head2
16665 #. type: =head2
16666 #: ../src/guestfs-actions.pod:5297
16667 msgid "guestfs_pvremove"
16668 msgstr ""
16669
16670 # type: verbatim
16671 #. type: verbatim
16672 #: ../src/guestfs-actions.pod:5299
16673 #, no-wrap
16674 msgid ""
16675 " int\n"
16676 " guestfs_pvremove (guestfs_h *g,\n"
16677 "                   const char *device);\n"
16678 "\n"
16679 msgstr ""
16680
16681 # type: textblock
16682 #. type: textblock
16683 #: ../src/guestfs-actions.pod:5303 ../fish/guestfish-actions.pod:3571
16684 msgid ""
16685 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16686 "it."
16687 msgstr ""
16688
16689 # type: textblock
16690 #. type: textblock
16691 #: ../src/guestfs-actions.pod:5306 ../fish/guestfish-actions.pod:3574
16692 msgid ""
16693 "The implementation uses the C<pvremove> command which refuses to wipe "
16694 "physical volumes that contain any volume groups, so you have to remove those "
16695 "first."
16696 msgstr ""
16697
16698 # type: =head2
16699 #. type: =head2
16700 #: ../src/guestfs-actions.pod:5314
16701 msgid "guestfs_pvresize"
16702 msgstr ""
16703
16704 # type: verbatim
16705 #. type: verbatim
16706 #: ../src/guestfs-actions.pod:5316
16707 #, no-wrap
16708 msgid ""
16709 " int\n"
16710 " guestfs_pvresize (guestfs_h *g,\n"
16711 "                   const char *device);\n"
16712 "\n"
16713 msgstr ""
16714
16715 # type: textblock
16716 #. type: textblock
16717 #: ../src/guestfs-actions.pod:5320 ../fish/guestfish-actions.pod:3582
16718 msgid ""
16719 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16720 "the new size of the underlying device."
16721 msgstr ""
16722
16723 # type: =head2
16724 #. type: =head2
16725 #: ../src/guestfs-actions.pod:5327
16726 msgid "guestfs_pvresize_size"
16727 msgstr ""
16728
16729 # type: verbatim
16730 #. type: verbatim
16731 #: ../src/guestfs-actions.pod:5329
16732 #, no-wrap
16733 msgid ""
16734 " int\n"
16735 " guestfs_pvresize_size (guestfs_h *g,\n"
16736 "                        const char *device,\n"
16737 "                        int64_t size);\n"
16738 "\n"
16739 msgstr ""
16740
16741 # type: textblock
16742 #. type: textblock
16743 #: ../src/guestfs-actions.pod:5334
16744 msgid ""
16745 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16746 "specify the new size (in bytes) explicitly."
16747 msgstr ""
16748
16749 # type: =head2
16750 #. type: =head2
16751 #: ../src/guestfs-actions.pod:5341
16752 msgid "guestfs_pvs"
16753 msgstr ""
16754
16755 # type: verbatim
16756 #. type: verbatim
16757 #: ../src/guestfs-actions.pod:5343
16758 #, no-wrap
16759 msgid ""
16760 " char **\n"
16761 " guestfs_pvs (guestfs_h *g);\n"
16762 "\n"
16763 msgstr ""
16764
16765 # type: textblock
16766 #. type: textblock
16767 #: ../src/guestfs-actions.pod:5346 ../fish/guestfish-actions.pod:3596
16768 msgid ""
16769 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16770 "(8)> command."
16771 msgstr ""
16772
16773 # type: textblock
16774 #. type: textblock
16775 #: ../src/guestfs-actions.pod:5349 ../fish/guestfish-actions.pod:3599
16776 msgid ""
16777 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16778 "sda2>)."
16779 msgstr ""
16780
16781 # type: textblock
16782 #. type: textblock
16783 #: ../src/guestfs-actions.pod:5352
16784 msgid "See also C<guestfs_pvs_full>."
16785 msgstr ""
16786
16787 # type: =head2
16788 #. type: =head2
16789 #: ../src/guestfs-actions.pod:5360
16790 msgid "guestfs_pvs_full"
16791 msgstr ""
16792
16793 # type: verbatim
16794 #. type: verbatim
16795 #: ../src/guestfs-actions.pod:5362
16796 #, no-wrap
16797 msgid ""
16798 " struct guestfs_lvm_pv_list *\n"
16799 " guestfs_pvs_full (guestfs_h *g);\n"
16800 "\n"
16801 msgstr ""
16802
16803 # type: textblock
16804 #. type: textblock
16805 #: ../src/guestfs-actions.pod:5365 ../fish/guestfish-actions.pod:3608
16806 msgid ""
16807 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16808 "(8)> command.  The \"full\" version includes all fields."
16809 msgstr ""
16810
16811 # type: textblock
16812 #. type: textblock
16813 #: ../src/guestfs-actions.pod:5368
16814 msgid ""
16815 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16816 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16817 msgstr ""
16818
16819 # type: =head2
16820 #. type: =head2
16821 #: ../src/guestfs-actions.pod:5374
16822 msgid "guestfs_pvuuid"
16823 msgstr ""
16824
16825 # type: verbatim
16826 #. type: verbatim
16827 #: ../src/guestfs-actions.pod:5376
16828 #, no-wrap
16829 msgid ""
16830 " char *\n"
16831 " guestfs_pvuuid (guestfs_h *g,\n"
16832 "                 const char *device);\n"
16833 "\n"
16834 msgstr ""
16835
16836 # type: textblock
16837 #. type: textblock
16838 #: ../src/guestfs-actions.pod:5380 ../fish/guestfish-actions.pod:3615
16839 msgid "This command returns the UUID of the LVM PV C<device>."
16840 msgstr ""
16841
16842 # type: =head2
16843 #. type: =head2
16844 #: ../src/guestfs-actions.pod:5387
16845 msgid "guestfs_pwrite"
16846 msgstr ""
16847
16848 # type: verbatim
16849 #. type: verbatim
16850 #: ../src/guestfs-actions.pod:5389
16851 #, no-wrap
16852 msgid ""
16853 " int\n"
16854 " guestfs_pwrite (guestfs_h *g,\n"
16855 "                 const char *path,\n"
16856 "                 const char *content,\n"
16857 "                 size_t content_size,\n"
16858 "                 int64_t offset);\n"
16859 "\n"
16860 msgstr ""
16861
16862 # type: textblock
16863 #. type: textblock
16864 #: ../src/guestfs-actions.pod:5396 ../fish/guestfish-actions.pod:3621
16865 msgid ""
16866 "This command writes to part of a file.  It writes the data buffer C<content> "
16867 "to the file C<path> starting at offset C<offset>."
16868 msgstr ""
16869
16870 # type: textblock
16871 #. type: textblock
16872 #: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3624
16873 msgid ""
16874 "This command implements the L<pwrite(2)> system call, and like that system "
16875 "call it may not write the full data requested.  The return value is the "
16876 "number of bytes that were actually written to the file.  This could even be "
16877 "0, although short writes are unlikely for regular files in ordinary "
16878 "circumstances."
16879 msgstr ""
16880
16881 # type: textblock
16882 #. type: textblock
16883 #: ../src/guestfs-actions.pod:5405
16884 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16885 msgstr ""
16886
16887 # type: =head2
16888 #. type: =head2
16889 #: ../src/guestfs-actions.pod:5414
16890 msgid "guestfs_pwrite_device"
16891 msgstr ""
16892
16893 # type: verbatim
16894 #. type: verbatim
16895 #: ../src/guestfs-actions.pod:5416
16896 #, no-wrap
16897 msgid ""
16898 " int\n"
16899 " guestfs_pwrite_device (guestfs_h *g,\n"
16900 "                        const char *device,\n"
16901 "                        const char *content,\n"
16902 "                        size_t content_size,\n"
16903 "                        int64_t offset);\n"
16904 "\n"
16905 msgstr ""
16906
16907 # type: textblock
16908 #. type: textblock
16909 #: ../src/guestfs-actions.pod:5423 ../fish/guestfish-actions.pod:3639
16910 msgid ""
16911 "This command writes to part of a device.  It writes the data buffer "
16912 "C<content> to C<device> starting at offset C<offset>."
16913 msgstr ""
16914
16915 # type: textblock
16916 #. type: textblock
16917 #: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3642
16918 msgid ""
16919 "This command implements the L<pwrite(2)> system call, and like that system "
16920 "call it may not write the full data requested (although short writes to disk "
16921 "devices and partitions are probably impossible with standard Linux kernels)."
16922 msgstr ""
16923
16924 # type: textblock
16925 #. type: textblock
16926 #: ../src/guestfs-actions.pod:5431
16927 msgid "See also C<guestfs_pwrite>."
16928 msgstr ""
16929
16930 # type: textblock
16931 #. type: textblock
16932 #: ../src/guestfs-actions.pod:5438
16933 msgid "(Added in 1.5.20)"
16934 msgstr ""
16935
16936 # type: =head2
16937 #. type: =head2
16938 #: ../src/guestfs-actions.pod:5440
16939 msgid "guestfs_read_file"
16940 msgstr ""
16941
16942 # type: verbatim
16943 #. type: verbatim
16944 #: ../src/guestfs-actions.pod:5442
16945 #, no-wrap
16946 msgid ""
16947 " char *\n"
16948 " guestfs_read_file (guestfs_h *g,\n"
16949 "                    const char *path,\n"
16950 "                    size_t *size_r);\n"
16951 "\n"
16952 msgstr ""
16953
16954 # type: textblock
16955 #. type: textblock
16956 #: ../src/guestfs-actions.pod:5447 ../fish/guestfish-actions.pod:3656
16957 msgid "This calls returns the contents of the file C<path> as a buffer."
16958 msgstr ""
16959
16960 # type: textblock
16961 #. type: textblock
16962 #: ../src/guestfs-actions.pod:5450
16963 msgid ""
16964 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16965 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16966 "function is limited in the total size of file that can be handled."
16967 msgstr ""
16968
16969 # type: textblock
16970 #. type: textblock
16971 #: ../src/guestfs-actions.pod:5462
16972 msgid "(Added in 1.0.63)"
16973 msgstr ""
16974
16975 # type: =head2
16976 #. type: =head2
16977 #: ../src/guestfs-actions.pod:5464
16978 msgid "guestfs_read_lines"
16979 msgstr ""
16980
16981 # type: verbatim
16982 #. type: verbatim
16983 #: ../src/guestfs-actions.pod:5466
16984 #, no-wrap
16985 msgid ""
16986 " char **\n"
16987 " guestfs_read_lines (guestfs_h *g,\n"
16988 "                     const char *path);\n"
16989 "\n"
16990 msgstr ""
16991
16992 # type: textblock
16993 #. type: textblock
16994 #: ../src/guestfs-actions.pod:5472 ../fish/guestfish-actions.pod:3673
16995 msgid ""
16996 "The file contents are returned as a list of lines.  Trailing C<LF> and "
16997 "C<CRLF> character sequences are I<not> returned."
16998 msgstr ""
16999
17000 # type: textblock
17001 #. type: textblock
17002 #: ../src/guestfs-actions.pod:5475
17003 msgid ""
17004 "Note that this function cannot correctly handle binary files (specifically, "
17005 "files containing C<\\0> character which is treated as end of line).  For "
17006 "those you need to use the C<guestfs_read_file> function which has a more "
17007 "complex interface."
17008 msgstr ""
17009
17010 # type: =head2
17011 #. type: =head2
17012 #: ../src/guestfs-actions.pod:5486
17013 msgid "guestfs_readdir"
17014 msgstr ""
17015
17016 # type: verbatim
17017 #. type: verbatim
17018 #: ../src/guestfs-actions.pod:5488
17019 #, no-wrap
17020 msgid ""
17021 " struct guestfs_dirent_list *\n"
17022 " guestfs_readdir (guestfs_h *g,\n"
17023 "                  const char *dir);\n"
17024 "\n"
17025 msgstr ""
17026
17027 # type: textblock
17028 #. type: textblock
17029 #: ../src/guestfs-actions.pod:5492 ../fish/guestfish-actions.pod:3685
17030 msgid "This returns the list of directory entries in directory C<dir>."
17031 msgstr ""
17032
17033 # type: textblock
17034 #. type: textblock
17035 #: ../src/guestfs-actions.pod:5494 ../fish/guestfish-actions.pod:3687
17036 msgid ""
17037 "All entries in the directory are returned, including C<.> and C<..>.  The "
17038 "entries are I<not> sorted, but returned in the same order as the underlying "
17039 "filesystem."
17040 msgstr ""
17041
17042 # type: textblock
17043 #. type: textblock
17044 #: ../src/guestfs-actions.pod:5498 ../fish/guestfish-actions.pod:3691
17045 msgid ""
17046 "Also this call returns basic file type information about each file.  The "
17047 "C<ftyp> field will contain one of the following characters:"
17048 msgstr ""
17049
17050 # type: =item
17051 #. type: =item
17052 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
17053 msgid "'b'"
17054 msgstr ""
17055
17056 # type: textblock
17057 #. type: textblock
17058 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3698
17059 msgid "Block special"
17060 msgstr ""
17061
17062 # type: =item
17063 #. type: =item
17064 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
17065 msgid "'c'"
17066 msgstr ""
17067
17068 # type: textblock
17069 #. type: textblock
17070 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3702
17071 msgid "Char special"
17072 msgstr ""
17073
17074 # type: =item
17075 #. type: =item
17076 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3704
17077 msgid "'d'"
17078 msgstr ""
17079
17080 # type: textblock
17081 #. type: textblock
17082 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3706
17083 msgid "Directory"
17084 msgstr ""
17085
17086 # type: =item
17087 #. type: =item
17088 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3708
17089 msgid "'f'"
17090 msgstr ""
17091
17092 # type: textblock
17093 #. type: textblock
17094 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3710
17095 msgid "FIFO (named pipe)"
17096 msgstr ""
17097
17098 # type: =item
17099 #. type: =item
17100 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3712
17101 msgid "'l'"
17102 msgstr ""
17103
17104 # type: textblock
17105 #. type: textblock
17106 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3714
17107 msgid "Symbolic link"
17108 msgstr ""
17109
17110 # type: =item
17111 #. type: =item
17112 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3716
17113 msgid "'r'"
17114 msgstr ""
17115
17116 # type: textblock
17117 #. type: textblock
17118 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3718
17119 msgid "Regular file"
17120 msgstr ""
17121
17122 # type: =item
17123 #. type: =item
17124 #: ../src/guestfs-actions.pod:5527 ../fish/guestfish-actions.pod:3720
17125 msgid "'s'"
17126 msgstr ""
17127
17128 # type: textblock
17129 #. type: textblock
17130 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3722
17131 msgid "Socket"
17132 msgstr ""
17133
17134 # type: =item
17135 #. type: =item
17136 #: ../src/guestfs-actions.pod:5531 ../fish/guestfish-actions.pod:3724
17137 msgid "'u'"
17138 msgstr ""
17139
17140 # type: textblock
17141 #. type: textblock
17142 #: ../src/guestfs-actions.pod:5533 ../fish/guestfish-actions.pod:3726
17143 msgid "Unknown file type"
17144 msgstr ""
17145
17146 # type: =item
17147 #. type: =item
17148 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3728
17149 msgid "'?'"
17150 msgstr ""
17151
17152 # type: textblock
17153 #. type: textblock
17154 #: ../src/guestfs-actions.pod:5537 ../fish/guestfish-actions.pod:3730
17155 msgid ""
17156 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
17157 msgstr ""
17158
17159 # type: textblock
17160 #. type: textblock
17161 #: ../src/guestfs-actions.pod:5542
17162 msgid ""
17163 "This function is primarily intended for use by programs.  To get a simple "
17164 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
17165 "consumption, use C<guestfs_ll>."
17166 msgstr ""
17167
17168 # type: textblock
17169 #. type: textblock
17170 #: ../src/guestfs-actions.pod:5546
17171 msgid ""
17172 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
17173 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
17174 msgstr ""
17175
17176 # type: =head2
17177 #. type: =head2
17178 #: ../src/guestfs-actions.pod:5552
17179 msgid "guestfs_readlink"
17180 msgstr ""
17181
17182 # type: verbatim
17183 #. type: verbatim
17184 #: ../src/guestfs-actions.pod:5554
17185 #, no-wrap
17186 msgid ""
17187 " char *\n"
17188 " guestfs_readlink (guestfs_h *g,\n"
17189 "                   const char *path);\n"
17190 "\n"
17191 msgstr ""
17192
17193 # type: textblock
17194 #. type: textblock
17195 #: ../src/guestfs-actions.pod:5558 ../fish/guestfish-actions.pod:3743
17196 msgid "This command reads the target of a symbolic link."
17197 msgstr ""
17198
17199 # type: =head2
17200 #. type: =head2
17201 #: ../src/guestfs-actions.pod:5565
17202 msgid "guestfs_readlinklist"
17203 msgstr ""
17204
17205 # type: verbatim
17206 #. type: verbatim
17207 #: ../src/guestfs-actions.pod:5567
17208 #, no-wrap
17209 msgid ""
17210 " char **\n"
17211 " guestfs_readlinklist (guestfs_h *g,\n"
17212 "                       const char *path,\n"
17213 "                       char *const *names);\n"
17214 "\n"
17215 msgstr ""
17216
17217 # type: textblock
17218 #. type: textblock
17219 #: ../src/guestfs-actions.pod:5572 ../fish/guestfish-actions.pod:3749
17220 msgid ""
17221 "This call allows you to do a C<readlink> operation on multiple files, where "
17222 "all files are in the directory C<path>.  C<names> is the list of files from "
17223 "this directory."
17224 msgstr ""
17225
17226 # type: textblock
17227 #. type: textblock
17228 #: ../src/guestfs-actions.pod:5576 ../fish/guestfish-actions.pod:3753
17229 msgid ""
17230 "On return you get a list of strings, with a one-to-one correspondence to the "
17231 "C<names> list.  Each string is the value of the symbolic link."
17232 msgstr ""
17233
17234 # type: textblock
17235 #. type: textblock
17236 #: ../src/guestfs-actions.pod:5580 ../fish/guestfish-actions.pod:3757
17237 msgid ""
17238 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17239 "result string is the empty string C<\"\">.  However the whole operation is "
17240 "completed even if there were C<readlink(2)> errors, and so you can call this "
17241 "function with names where you don't know if they are symbolic links already "
17242 "(albeit slightly less efficient)."
17243 msgstr ""
17244
17245 # type: textblock
17246 #. type: textblock
17247 #: ../src/guestfs-actions.pod:5587 ../fish/guestfish-actions.pod:3764
17248 msgid ""
17249 "This call is intended for programs that want to efficiently list a directory "
17250 "contents without making many round-trips.  Very long directory listings "
17251 "might cause the protocol message size to be exceeded, causing this call to "
17252 "fail.  The caller must split up such requests into smaller groups of names."
17253 msgstr ""
17254
17255 # type: =head2
17256 #. type: =head2
17257 #: ../src/guestfs-actions.pod:5600
17258 msgid "guestfs_realpath"
17259 msgstr ""
17260
17261 # type: verbatim
17262 #. type: verbatim
17263 #: ../src/guestfs-actions.pod:5602
17264 #, no-wrap
17265 msgid ""
17266 " char *\n"
17267 " guestfs_realpath (guestfs_h *g,\n"
17268 "                   const char *path);\n"
17269 "\n"
17270 msgstr ""
17271
17272 # type: textblock
17273 #. type: textblock
17274 #: ../src/guestfs-actions.pod:5606 ../fish/guestfish-actions.pod:3775
17275 msgid ""
17276 "Return the canonicalized absolute pathname of C<path>.  The returned path "
17277 "has no C<.>, C<..> or symbolic link path elements."
17278 msgstr ""
17279
17280 # type: =head2
17281 #. type: =head2
17282 #: ../src/guestfs-actions.pod:5614
17283 msgid "guestfs_removexattr"
17284 msgstr ""
17285
17286 # type: verbatim
17287 #. type: verbatim
17288 #: ../src/guestfs-actions.pod:5616
17289 #, no-wrap
17290 msgid ""
17291 " int\n"
17292 " guestfs_removexattr (guestfs_h *g,\n"
17293 "                      const char *xattr,\n"
17294 "                      const char *path);\n"
17295 "\n"
17296 msgstr ""
17297
17298 # type: textblock
17299 #. type: textblock
17300 #: ../src/guestfs-actions.pod:5621 ../fish/guestfish-actions.pod:3782
17301 msgid ""
17302 "This call removes the extended attribute named C<xattr> of the file C<path>."
17303 msgstr ""
17304
17305 # type: textblock
17306 #. type: textblock
17307 #: ../src/guestfs-actions.pod:5624
17308 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17309 msgstr ""
17310
17311 # type: =head2
17312 #. type: =head2
17313 #: ../src/guestfs-actions.pod:5630
17314 msgid "guestfs_resize2fs"
17315 msgstr ""
17316
17317 # type: verbatim
17318 #. type: verbatim
17319 #: ../src/guestfs-actions.pod:5632
17320 #, no-wrap
17321 msgid ""
17322 " int\n"
17323 " guestfs_resize2fs (guestfs_h *g,\n"
17324 "                    const char *device);\n"
17325 "\n"
17326 msgstr ""
17327
17328 # type: textblock
17329 #. type: textblock
17330 #: ../src/guestfs-actions.pod:5636 ../fish/guestfish-actions.pod:3791
17331 msgid ""
17332 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17333 "underlying device."
17334 msgstr ""
17335
17336 # type: textblock
17337 #. type: textblock
17338 #: ../src/guestfs-actions.pod:5639
17339 msgid ""
17340 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17341 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
17342 "sometimes gives an error about this and sometimes not.  In any case, it is "
17343 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17344 msgstr ""
17345
17346 #. type: =head2
17347 #: ../src/guestfs-actions.pod:5649
17348 msgid "guestfs_resize2fs_M"
17349 msgstr ""
17350
17351 #. type: verbatim
17352 #: ../src/guestfs-actions.pod:5651
17353 #, no-wrap
17354 msgid ""
17355 " int\n"
17356 " guestfs_resize2fs_M (guestfs_h *g,\n"
17357 "                      const char *device);\n"
17358 "\n"
17359 msgstr ""
17360
17361 #. type: textblock
17362 #: ../src/guestfs-actions.pod:5655
17363 msgid ""
17364 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17365 "resized to its minimum size.  This works like the I<-M> option to the "
17366 "C<resize2fs> command."
17367 msgstr ""
17368
17369 #. type: textblock
17370 #: ../src/guestfs-actions.pod:5659
17371 msgid ""
17372 "To get the resulting size of the filesystem you should call "
17373 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
17374 "These two numbers, multiplied together, give the resulting size of the "
17375 "minimal filesystem in bytes."
17376 msgstr ""
17377
17378 # type: =head2
17379 #. type: =head2
17380 #: ../src/guestfs-actions.pod:5666
17381 msgid "guestfs_resize2fs_size"
17382 msgstr ""
17383
17384 # type: verbatim
17385 #. type: verbatim
17386 #: ../src/guestfs-actions.pod:5668
17387 #, no-wrap
17388 msgid ""
17389 " int\n"
17390 " guestfs_resize2fs_size (guestfs_h *g,\n"
17391 "                         const char *device,\n"
17392 "                         int64_t size);\n"
17393 "\n"
17394 msgstr ""
17395
17396 # type: textblock
17397 #. type: textblock
17398 #: ../src/guestfs-actions.pod:5673
17399 msgid ""
17400 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17401 "to specify the new size (in bytes) explicitly."
17402 msgstr ""
17403
17404 # type: =head2
17405 #. type: =head2
17406 #: ../src/guestfs-actions.pod:5680
17407 msgid "guestfs_rm"
17408 msgstr ""
17409
17410 # type: verbatim
17411 #. type: verbatim
17412 #: ../src/guestfs-actions.pod:5682
17413 #, no-wrap
17414 msgid ""
17415 " int\n"
17416 " guestfs_rm (guestfs_h *g,\n"
17417 "             const char *path);\n"
17418 "\n"
17419 msgstr ""
17420
17421 # type: textblock
17422 #. type: textblock
17423 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3824
17424 msgid "Remove the single file C<path>."
17425 msgstr ""
17426
17427 # type: =head2
17428 #. type: =head2
17429 #: ../src/guestfs-actions.pod:5692
17430 msgid "guestfs_rm_rf"
17431 msgstr ""
17432
17433 # type: verbatim
17434 #. type: verbatim
17435 #: ../src/guestfs-actions.pod:5694
17436 #, no-wrap
17437 msgid ""
17438 " int\n"
17439 " guestfs_rm_rf (guestfs_h *g,\n"
17440 "                const char *path);\n"
17441 "\n"
17442 msgstr ""
17443
17444 # type: textblock
17445 #. type: textblock
17446 #: ../src/guestfs-actions.pod:5698 ../fish/guestfish-actions.pod:3830
17447 msgid ""
17448 "Remove the file or directory C<path>, recursively removing the contents if "
17449 "its a directory.  This is like the C<rm -rf> shell command."
17450 msgstr ""
17451
17452 # type: =head2
17453 #. type: =head2
17454 #: ../src/guestfs-actions.pod:5706
17455 msgid "guestfs_rmdir"
17456 msgstr ""
17457
17458 # type: verbatim
17459 #. type: verbatim
17460 #: ../src/guestfs-actions.pod:5708
17461 #, no-wrap
17462 msgid ""
17463 " int\n"
17464 " guestfs_rmdir (guestfs_h *g,\n"
17465 "                const char *path);\n"
17466 "\n"
17467 msgstr ""
17468
17469 # type: textblock
17470 #. type: textblock
17471 #: ../src/guestfs-actions.pod:5712 ../fish/guestfish-actions.pod:3838
17472 msgid "Remove the single directory C<path>."
17473 msgstr ""
17474
17475 # type: =head2
17476 #. type: =head2
17477 #: ../src/guestfs-actions.pod:5718
17478 msgid "guestfs_rmmountpoint"
17479 msgstr ""
17480
17481 # type: verbatim
17482 #. type: verbatim
17483 #: ../src/guestfs-actions.pod:5720
17484 #, no-wrap
17485 msgid ""
17486 " int\n"
17487 " guestfs_rmmountpoint (guestfs_h *g,\n"
17488 "                       const char *exemptpath);\n"
17489 "\n"
17490 msgstr ""
17491
17492 # type: textblock
17493 #. type: textblock
17494 #: ../src/guestfs-actions.pod:5724
17495 msgid ""
17496 "This calls removes a mountpoint that was previously created with "
17497 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
17498 msgstr ""
17499
17500 # type: =head2
17501 #. type: =head2
17502 #: ../src/guestfs-actions.pod:5732
17503 msgid "guestfs_scrub_device"
17504 msgstr ""
17505
17506 # type: verbatim
17507 #. type: verbatim
17508 #: ../src/guestfs-actions.pod:5734
17509 #, no-wrap
17510 msgid ""
17511 " int\n"
17512 " guestfs_scrub_device (guestfs_h *g,\n"
17513 "                       const char *device);\n"
17514 "\n"
17515 msgstr ""
17516
17517 # type: textblock
17518 #. type: textblock
17519 #: ../src/guestfs-actions.pod:5738 ../fish/guestfish-actions.pod:3852
17520 msgid ""
17521 "This command writes patterns over C<device> to make data retrieval more "
17522 "difficult."
17523 msgstr ""
17524
17525 # type: textblock
17526 #. type: textblock
17527 #: ../src/guestfs-actions.pod:5741 ../src/guestfs-actions.pod:5762
17528 #: ../src/guestfs-actions.pod:5781 ../fish/guestfish-actions.pod:3855
17529 #: ../fish/guestfish-actions.pod:3870 ../fish/guestfish-actions.pod:3883
17530 msgid ""
17531 "It is an interface to the L<scrub(1)> program.  See that manual page for "
17532 "more details."
17533 msgstr ""
17534
17535 # type: textblock
17536 #. type: textblock
17537 #: ../src/guestfs-actions.pod:5749 ../src/guestfs-actions.pod:5767
17538 #: ../src/guestfs-actions.pod:5786
17539 msgid "(Added in 1.0.52)"
17540 msgstr ""
17541
17542 # type: =head2
17543 #. type: =head2
17544 #: ../src/guestfs-actions.pod:5751
17545 msgid "guestfs_scrub_file"
17546 msgstr ""
17547
17548 # type: verbatim
17549 #. type: verbatim
17550 #: ../src/guestfs-actions.pod:5753
17551 #, no-wrap
17552 msgid ""
17553 " int\n"
17554 " guestfs_scrub_file (guestfs_h *g,\n"
17555 "                     const char *file);\n"
17556 "\n"
17557 msgstr ""
17558
17559 # type: textblock
17560 #. type: textblock
17561 #: ../src/guestfs-actions.pod:5757 ../fish/guestfish-actions.pod:3865
17562 msgid ""
17563 "This command writes patterns over a file to make data retrieval more "
17564 "difficult."
17565 msgstr ""
17566
17567 # type: textblock
17568 #. type: textblock
17569 #: ../src/guestfs-actions.pod:5760 ../fish/guestfish-actions.pod:3868
17570 msgid "The file is I<removed> after scrubbing."
17571 msgstr ""
17572
17573 # type: =head2
17574 #. type: =head2
17575 #: ../src/guestfs-actions.pod:5769
17576 msgid "guestfs_scrub_freespace"
17577 msgstr ""
17578
17579 # type: verbatim
17580 #. type: verbatim
17581 #: ../src/guestfs-actions.pod:5771
17582 #, no-wrap
17583 msgid ""
17584 " int\n"
17585 " guestfs_scrub_freespace (guestfs_h *g,\n"
17586 "                          const char *dir);\n"
17587 "\n"
17588 msgstr ""
17589
17590 # type: textblock
17591 #. type: textblock
17592 #: ../src/guestfs-actions.pod:5775
17593 msgid ""
17594 "This command creates the directory C<dir> and then fills it with files until "
17595 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17596 "and deletes them.  The intention is to scrub any free space on the partition "
17597 "containing C<dir>."
17598 msgstr ""
17599
17600 # type: =head2
17601 #. type: =head2
17602 #: ../src/guestfs-actions.pod:5788
17603 msgid "guestfs_set_append"
17604 msgstr ""
17605
17606 # type: verbatim
17607 #. type: verbatim
17608 #: ../src/guestfs-actions.pod:5790
17609 #, no-wrap
17610 msgid ""
17611 " int\n"
17612 " guestfs_set_append (guestfs_h *g,\n"
17613 "                     const char *append);\n"
17614 "\n"
17615 msgstr ""
17616
17617 # type: textblock
17618 #. type: textblock
17619 #: ../src/guestfs-actions.pod:5794 ../fish/guestfish-actions.pod:3892
17620 msgid ""
17621 "This function is used to add additional options to the guest kernel command "
17622 "line."
17623 msgstr ""
17624
17625 # type: textblock
17626 #. type: textblock
17627 #: ../src/guestfs-actions.pod:5797 ../fish/guestfish-actions.pod:3895
17628 msgid ""
17629 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17630 "environment variable."
17631 msgstr ""
17632
17633 # type: textblock
17634 #. type: textblock
17635 #: ../src/guestfs-actions.pod:5800 ../fish/guestfish-actions.pod:3898
17636 msgid ""
17637 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17638 "(libguestfs always adds a few of its own)."
17639 msgstr ""
17640
17641 #. type: =head2
17642 #: ../src/guestfs-actions.pod:5807
17643 msgid "guestfs_set_attach_method"
17644 msgstr ""
17645
17646 #. type: verbatim
17647 #: ../src/guestfs-actions.pod:5809
17648 #, no-wrap
17649 msgid ""
17650 " int\n"
17651 " guestfs_set_attach_method (guestfs_h *g,\n"
17652 "                            const char *attachmethod);\n"
17653 "\n"
17654 msgstr ""
17655
17656 #. type: textblock
17657 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3907
17658 msgid ""
17659 "Set the method that libguestfs uses to connect to the back end guestfsd "
17660 "daemon.  Possible methods are:"
17661 msgstr ""
17662
17663 #. type: textblock
17664 #: ../src/guestfs-actions.pod:5820 ../fish/guestfish-actions.pod:3914
17665 msgid ""
17666 "Launch an appliance and connect to it.  This is the ordinary method and the "
17667 "default."
17668 msgstr ""
17669
17670 #. type: =item
17671 #: ../src/guestfs-actions.pod:5823 ../fish/guestfish-actions.pod:3917
17672 msgid "C<unix:I<path>>"
17673 msgstr ""
17674
17675 #. type: textblock
17676 #: ../src/guestfs-actions.pod:5825 ../fish/guestfish-actions.pod:3919
17677 msgid "Connect to the Unix domain socket I<path>."
17678 msgstr ""
17679
17680 #. type: textblock
17681 #: ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3921
17682 msgid ""
17683 "This method lets you connect to an existing daemon or (using virtio-serial) "
17684 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
17685 "RUNNING DAEMONS>."
17686 msgstr ""
17687
17688 # type: =head2
17689 #. type: =head2
17690 #: ../src/guestfs-actions.pod:5835
17691 msgid "guestfs_set_autosync"
17692 msgstr ""
17693
17694 # type: verbatim
17695 #. type: verbatim
17696 #: ../src/guestfs-actions.pod:5837
17697 #, no-wrap
17698 msgid ""
17699 " int\n"
17700 " guestfs_set_autosync (guestfs_h *g,\n"
17701 "                       int autosync);\n"
17702 "\n"
17703 msgstr ""
17704
17705 #. type: textblock
17706 #: ../src/guestfs-actions.pod:5841 ../fish/guestfish-actions.pod:3933
17707 msgid ""
17708 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
17709 "effort attempt to make filesystems consistent and synchronized when the "
17710 "handle is closed (also if the program exits without closing handles)."
17711 msgstr ""
17712
17713 # type: textblock
17714 #. type: textblock
17715 #: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3938
17716 msgid ""
17717 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17718 "disabled by default)."
17719 msgstr ""
17720
17721 # type: =head2
17722 #. type: =head2
17723 #: ../src/guestfs-actions.pod:5853
17724 msgid "guestfs_set_direct"
17725 msgstr ""
17726
17727 # type: verbatim
17728 #. type: verbatim
17729 #: ../src/guestfs-actions.pod:5855
17730 #, no-wrap
17731 msgid ""
17732 " int\n"
17733 " guestfs_set_direct (guestfs_h *g,\n"
17734 "                     int direct);\n"
17735 "\n"
17736 msgstr ""
17737
17738 # type: textblock
17739 #. type: textblock
17740 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3947
17741 msgid ""
17742 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17743 "passed directly through to the appliance once it is launched."
17744 msgstr ""
17745
17746 # type: textblock
17747 #. type: textblock
17748 #: ../src/guestfs-actions.pod:5863
17749 msgid ""
17750 "One consequence of this is that log messages aren't caught by the library "
17751 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17752 "stdout."
17753 msgstr ""
17754
17755 # type: textblock
17756 #. type: textblock
17757 #: ../src/guestfs-actions.pod:5867 ../fish/guestfish-actions.pod:3955
17758 msgid "You probably don't want to use this unless you know what you are doing."
17759 msgstr ""
17760
17761 # type: textblock
17762 #. type: textblock
17763 #: ../src/guestfs-actions.pod:5870 ../fish/guestfish-actions.pod:3958
17764 msgid "The default is disabled."
17765 msgstr ""
17766
17767 # type: =head2
17768 #. type: =head2
17769 #: ../src/guestfs-actions.pod:5876
17770 msgid "guestfs_set_e2label"
17771 msgstr ""
17772
17773 # type: verbatim
17774 #. type: verbatim
17775 #: ../src/guestfs-actions.pod:5878
17776 #, no-wrap
17777 msgid ""
17778 " int\n"
17779 " guestfs_set_e2label (guestfs_h *g,\n"
17780 "                      const char *device,\n"
17781 "                      const char *label);\n"
17782 "\n"
17783 msgstr ""
17784
17785 # type: textblock
17786 #. type: textblock
17787 #: ../src/guestfs-actions.pod:5883 ../fish/guestfish-actions.pod:3964
17788 msgid ""
17789 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17790 "C<label>.  Filesystem labels are limited to 16 characters."
17791 msgstr ""
17792
17793 # type: textblock
17794 #. type: textblock
17795 #: ../src/guestfs-actions.pod:5887
17796 msgid ""
17797 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17798 "the existing label on a filesystem."
17799 msgstr ""
17800
17801 # type: =head2
17802 #. type: =head2
17803 #: ../src/guestfs-actions.pod:5894
17804 msgid "guestfs_set_e2uuid"
17805 msgstr ""
17806
17807 # type: verbatim
17808 #. type: verbatim
17809 #: ../src/guestfs-actions.pod:5896
17810 #, no-wrap
17811 msgid ""
17812 " int\n"
17813 " guestfs_set_e2uuid (guestfs_h *g,\n"
17814 "                     const char *device,\n"
17815 "                     const char *uuid);\n"
17816 "\n"
17817 msgstr ""
17818
17819 # type: textblock
17820 #. type: textblock
17821 #: ../src/guestfs-actions.pod:5901 ../fish/guestfish-actions.pod:3975
17822 msgid ""
17823 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17824 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
17825 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17826 msgstr ""
17827
17828 # type: textblock
17829 #. type: textblock
17830 #: ../src/guestfs-actions.pod:5906
17831 msgid ""
17832 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17833 "the existing UUID of a filesystem."
17834 msgstr ""
17835
17836 # type: =head2
17837 #. type: =head2
17838 #: ../src/guestfs-actions.pod:5913
17839 msgid "guestfs_set_memsize"
17840 msgstr ""
17841
17842 # type: verbatim
17843 #. type: verbatim
17844 #: ../src/guestfs-actions.pod:5915
17845 #, no-wrap
17846 msgid ""
17847 " int\n"
17848 " guestfs_set_memsize (guestfs_h *g,\n"
17849 "                      int memsize);\n"
17850 "\n"
17851 msgstr ""
17852
17853 # type: textblock
17854 #. type: textblock
17855 #: ../src/guestfs-actions.pod:5919
17856 msgid ""
17857 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
17858 "This only has any effect if called before C<guestfs_launch>."
17859 msgstr ""
17860
17861 # type: textblock
17862 #. type: textblock
17863 #: ../src/guestfs-actions.pod:5923 ../fish/guestfish-actions.pod:3993
17864 msgid ""
17865 "You can also change this by setting the environment variable "
17866 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17867 msgstr ""
17868
17869 # type: =head2
17870 #. type: =head2
17871 #: ../src/guestfs-actions.pod:5934
17872 msgid "guestfs_set_network"
17873 msgstr ""
17874
17875 # type: verbatim
17876 #. type: verbatim
17877 #: ../src/guestfs-actions.pod:5936
17878 #, no-wrap
17879 msgid ""
17880 " int\n"
17881 " guestfs_set_network (guestfs_h *g,\n"
17882 "                      int network);\n"
17883 "\n"
17884 msgstr ""
17885
17886 # type: textblock
17887 #. type: textblock
17888 #: ../src/guestfs-actions.pod:5940 ../fish/guestfish-actions.pod:4006
17889 msgid ""
17890 "If C<network> is true, then the network is enabled in the libguestfs "
17891 "appliance.  The default is false."
17892 msgstr ""
17893
17894 # type: textblock
17895 #. type: textblock
17896 #: ../src/guestfs-actions.pod:5943 ../fish/guestfish-actions.pod:4009
17897 msgid ""
17898 "This affects whether commands are able to access the network (see L<guestfs"
17899 "(3)/RUNNING COMMANDS>)."
17900 msgstr ""
17901
17902 # type: textblock
17903 #. type: textblock
17904 #: ../src/guestfs-actions.pod:5946
17905 msgid ""
17906 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17907 "effect."
17908 msgstr ""
17909
17910 # type: =head2
17911 #. type: =head2
17912 #: ../src/guestfs-actions.pod:5953
17913 msgid "guestfs_set_path"
17914 msgstr ""
17915
17916 # type: verbatim
17917 #. type: verbatim
17918 #: ../src/guestfs-actions.pod:5955
17919 #, no-wrap
17920 msgid ""
17921 " int\n"
17922 " guestfs_set_path (guestfs_h *g,\n"
17923 "                   const char *searchpath);\n"
17924 "\n"
17925 msgstr ""
17926
17927 # type: textblock
17928 #. type: textblock
17929 #: ../src/guestfs-actions.pod:5959 ../fish/guestfish-actions.pod:4021
17930 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17931 msgstr ""
17932
17933 # type: textblock
17934 #. type: textblock
17935 #: ../src/guestfs-actions.pod:5961 ../fish/guestfish-actions.pod:4023
17936 msgid ""
17937 "The default is C<$libdir/guestfs> unless overridden by setting "
17938 "C<LIBGUESTFS_PATH> environment variable."
17939 msgstr ""
17940
17941 # type: textblock
17942 #. type: textblock
17943 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:4026
17944 msgid "Setting C<path> to C<NULL> restores the default path."
17945 msgstr ""
17946
17947 # type: =head2
17948 #. type: =head2
17949 #: ../src/guestfs-actions.pod:5970
17950 msgid "guestfs_set_qemu"
17951 msgstr ""
17952
17953 # type: verbatim
17954 #. type: verbatim
17955 #: ../src/guestfs-actions.pod:5972
17956 #, no-wrap
17957 msgid ""
17958 " int\n"
17959 " guestfs_set_qemu (guestfs_h *g,\n"
17960 "                   const char *qemu);\n"
17961 "\n"
17962 msgstr ""
17963
17964 # type: textblock
17965 #. type: textblock
17966 #: ../src/guestfs-actions.pod:5976 ../fish/guestfish-actions.pod:4034
17967 msgid "Set the qemu binary that we will use."
17968 msgstr ""
17969
17970 # type: textblock
17971 #. type: textblock
17972 #: ../src/guestfs-actions.pod:5978 ../fish/guestfish-actions.pod:4036
17973 msgid ""
17974 "The default is chosen when the library was compiled by the configure script."
17975 msgstr ""
17976
17977 # type: textblock
17978 #. type: textblock
17979 #: ../src/guestfs-actions.pod:5981 ../fish/guestfish-actions.pod:4039
17980 msgid ""
17981 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
17982 "variable."
17983 msgstr ""
17984
17985 # type: textblock
17986 #. type: textblock
17987 #: ../src/guestfs-actions.pod:5984 ../fish/guestfish-actions.pod:4042
17988 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
17989 msgstr ""
17990
17991 # type: textblock
17992 #. type: textblock
17993 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:4044
17994 msgid ""
17995 "Note that you should call this function as early as possible after creating "
17996 "the handle.  This is because some pre-launch operations depend on testing "
17997 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
17998 "don't retest features, and so you might see inconsistent results.  Using the "
17999 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
18000 "the qemu binary at the same time as the handle is created."
18001 msgstr ""
18002
18003 # type: =head2
18004 #. type: =head2
18005 #: ../src/guestfs-actions.pod:5998
18006 msgid "guestfs_set_recovery_proc"
18007 msgstr ""
18008
18009 # type: verbatim
18010 #. type: verbatim
18011 #: ../src/guestfs-actions.pod:6000
18012 #, no-wrap
18013 msgid ""
18014 " int\n"
18015 " guestfs_set_recovery_proc (guestfs_h *g,\n"
18016 "                            int recoveryproc);\n"
18017 "\n"
18018 msgstr ""
18019
18020 # type: textblock
18021 #. type: textblock
18022 #: ../src/guestfs-actions.pod:6004
18023 msgid ""
18024 "If this is called with the parameter C<false> then C<guestfs_launch> does "
18025 "not create a recovery process.  The purpose of the recovery process is to "
18026 "stop runaway qemu processes in the case where the main program aborts "
18027 "abruptly."
18028 msgstr ""
18029
18030 # type: textblock
18031 #. type: textblock
18032 #: ../src/guestfs-actions.pod:6009
18033 msgid ""
18034 "This only has any effect if called before C<guestfs_launch>, and the default "
18035 "is true."
18036 msgstr ""
18037
18038 # type: textblock
18039 #. type: textblock
18040 #: ../src/guestfs-actions.pod:6012 ../fish/guestfish-actions.pod:4066
18041 msgid ""
18042 "About the only time when you would want to disable this is if the main "
18043 "process will fork itself into the background (\"daemonize\" itself).  In "
18044 "this case the recovery process thinks that the main program has disappeared "
18045 "and so kills qemu, which is not very helpful."
18046 msgstr ""
18047
18048 # type: =head2
18049 #. type: =head2
18050 #: ../src/guestfs-actions.pod:6022
18051 msgid "guestfs_set_selinux"
18052 msgstr ""
18053
18054 # type: verbatim
18055 #. type: verbatim
18056 #: ../src/guestfs-actions.pod:6024
18057 #, no-wrap
18058 msgid ""
18059 " int\n"
18060 " guestfs_set_selinux (guestfs_h *g,\n"
18061 "                      int selinux);\n"
18062 "\n"
18063 msgstr ""
18064
18065 # type: textblock
18066 #. type: textblock
18067 #: ../src/guestfs-actions.pod:6028 ../fish/guestfish-actions.pod:4078
18068 msgid ""
18069 "This sets the selinux flag that is passed to the appliance at boot time.  "
18070 "The default is C<selinux=0> (disabled)."
18071 msgstr ""
18072
18073 # type: textblock
18074 #. type: textblock
18075 #: ../src/guestfs-actions.pod:6031 ../fish/guestfish-actions.pod:4081
18076 msgid ""
18077 "Note that if SELinux is enabled, it is always in Permissive mode "
18078 "(C<enforcing=0>)."
18079 msgstr ""
18080
18081 # type: =head2
18082 #. type: =head2
18083 #: ../src/guestfs-actions.pod:6041
18084 msgid "guestfs_set_trace"
18085 msgstr ""
18086
18087 # type: verbatim
18088 #. type: verbatim
18089 #: ../src/guestfs-actions.pod:6043
18090 #, no-wrap
18091 msgid ""
18092 " int\n"
18093 " guestfs_set_trace (guestfs_h *g,\n"
18094 "                    int trace);\n"
18095 "\n"
18096 msgstr ""
18097
18098 #. type: textblock
18099 #: ../src/guestfs-actions.pod:6047 ../fish/guestfish-actions.pod:4093
18100 msgid ""
18101 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
18102 "return values are traced."
18103 msgstr ""
18104
18105 # type: textblock
18106 #. type: textblock
18107 #: ../src/guestfs-actions.pod:6050 ../fish/guestfish-actions.pod:4096
18108 msgid ""
18109 "If you want to trace C API calls into libguestfs (and other libraries) then "
18110 "possibly a better way is to use the external ltrace(1) command."
18111 msgstr ""
18112
18113 # type: textblock
18114 #. type: textblock
18115 #: ../src/guestfs-actions.pod:6054 ../fish/guestfish-actions.pod:4100
18116 msgid ""
18117 "Command traces are disabled unless the environment variable "
18118 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
18119 msgstr ""
18120
18121 #. type: textblock
18122 #: ../src/guestfs-actions.pod:6057
18123 msgid ""
18124 "Trace messages are normally sent to C<stderr>, unless you register a "
18125 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18126 msgstr ""
18127
18128 # type: =head2
18129 #. type: =head2
18130 #: ../src/guestfs-actions.pod:6065
18131 msgid "guestfs_set_verbose"
18132 msgstr ""
18133
18134 # type: verbatim
18135 #. type: verbatim
18136 #: ../src/guestfs-actions.pod:6067
18137 #, no-wrap
18138 msgid ""
18139 " int\n"
18140 " guestfs_set_verbose (guestfs_h *g,\n"
18141 "                      int verbose);\n"
18142 "\n"
18143 msgstr ""
18144
18145 #. type: textblock
18146 #: ../src/guestfs-actions.pod:6071 ../fish/guestfish-actions.pod:4113
18147 msgid "If C<verbose> is true, this turns on verbose messages."
18148 msgstr ""
18149
18150 # type: textblock
18151 #. type: textblock
18152 #: ../src/guestfs-actions.pod:6073 ../fish/guestfish-actions.pod:4115
18153 msgid ""
18154 "Verbose messages are disabled unless the environment variable "
18155 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
18156 msgstr ""
18157
18158 #. type: textblock
18159 #: ../src/guestfs-actions.pod:6076
18160 msgid ""
18161 "Verbose messages are normally sent to C<stderr>, unless you register a "
18162 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
18163 msgstr ""
18164
18165 # type: =head2
18166 #. type: =head2
18167 #: ../src/guestfs-actions.pod:6084
18168 msgid "guestfs_setcon"
18169 msgstr ""
18170
18171 # type: verbatim
18172 #. type: verbatim
18173 #: ../src/guestfs-actions.pod:6086
18174 #, no-wrap
18175 msgid ""
18176 " int\n"
18177 " guestfs_setcon (guestfs_h *g,\n"
18178 "                 const char *context);\n"
18179 "\n"
18180 msgstr ""
18181
18182 # type: textblock
18183 #. type: textblock
18184 #: ../src/guestfs-actions.pod:6090 ../fish/guestfish-actions.pod:4126
18185 msgid ""
18186 "This sets the SELinux security context of the daemon to the string "
18187 "C<context>."
18188 msgstr ""
18189
18190 # type: textblock
18191 #. type: textblock
18192 #: ../src/guestfs-actions.pod:6093 ../fish/guestfish-actions.pod:4129
18193 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18194 msgstr ""
18195
18196 # type: =head2
18197 #. type: =head2
18198 #: ../src/guestfs-actions.pod:6099
18199 msgid "guestfs_setxattr"
18200 msgstr ""
18201
18202 # type: verbatim
18203 #. type: verbatim
18204 #: ../src/guestfs-actions.pod:6101
18205 #, no-wrap
18206 msgid ""
18207 " int\n"
18208 " guestfs_setxattr (guestfs_h *g,\n"
18209 "                   const char *xattr,\n"
18210 "                   const char *val,\n"
18211 "                   int vallen,\n"
18212 "                   const char *path);\n"
18213 "\n"
18214 msgstr ""
18215
18216 # type: textblock
18217 #. type: textblock
18218 #: ../src/guestfs-actions.pod:6108 ../fish/guestfish-actions.pod:4135
18219 msgid ""
18220 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18221 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
18222 msgstr ""
18223
18224 # type: textblock
18225 #. type: textblock
18226 #: ../src/guestfs-actions.pod:6112
18227 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18228 msgstr ""
18229
18230 # type: =head2
18231 #. type: =head2
18232 #: ../src/guestfs-actions.pod:6118
18233 msgid "guestfs_sfdisk"
18234 msgstr ""
18235
18236 # type: verbatim
18237 #. type: verbatim
18238 #: ../src/guestfs-actions.pod:6120
18239 #, no-wrap
18240 msgid ""
18241 " int\n"
18242 " guestfs_sfdisk (guestfs_h *g,\n"
18243 "                 const char *device,\n"
18244 "                 int cyls,\n"
18245 "                 int heads,\n"
18246 "                 int sectors,\n"
18247 "                 char *const *lines);\n"
18248 "\n"
18249 msgstr ""
18250
18251 # type: textblock
18252 #. type: textblock
18253 #: ../src/guestfs-actions.pod:6128 ../fish/guestfish-actions.pod:4145
18254 msgid ""
18255 "This is a direct interface to the L<sfdisk(8)> program for creating "
18256 "partitions on block devices."
18257 msgstr ""
18258
18259 # type: textblock
18260 #. type: textblock
18261 #: ../src/guestfs-actions.pod:6131 ../fish/guestfish-actions.pod:4148
18262 msgid "C<device> should be a block device, for example C</dev/sda>."
18263 msgstr ""
18264
18265 # type: textblock
18266 #. type: textblock
18267 #: ../src/guestfs-actions.pod:6133 ../fish/guestfish-actions.pod:4150
18268 msgid ""
18269 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18270 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18271 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
18272 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
18273 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18274 "the kernel) cannot work out the right geometry and you will need to tell it."
18275 msgstr ""
18276
18277 # type: textblock
18278 #. type: textblock
18279 #: ../src/guestfs-actions.pod:6141 ../fish/guestfish-actions.pod:4158
18280 msgid ""
18281 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
18282 "refer to the L<sfdisk(8)> manpage."
18283 msgstr ""
18284
18285 # type: textblock
18286 #. type: textblock
18287 #: ../src/guestfs-actions.pod:6144 ../fish/guestfish-actions.pod:4161
18288 msgid ""
18289 "To create a single partition occupying the whole disk, you would pass "
18290 "C<lines> as a single element list, when the single element being the string "
18291 "C<,> (comma)."
18292 msgstr ""
18293
18294 # type: textblock
18295 #. type: textblock
18296 #: ../src/guestfs-actions.pod:6148
18297 msgid ""
18298 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18299 msgstr ""
18300
18301 #. type: textblock
18302 #: ../src/guestfs-actions.pod:6156 ../src/guestfs-actions.pod:6186
18303 #: ../src/guestfs-actions.pod:6219 ../fish/guestfish-actions.pod:4171
18304 #: ../fish/guestfish-actions.pod:4194 ../fish/guestfish-actions.pod:4216
18305 msgid ""
18306 "This function is deprecated.  In new code, use the C<part_add> call instead."
18307 msgstr ""
18308
18309 # type: =head2
18310 #. type: =head2
18311 #: ../src/guestfs-actions.pod:6165
18312 msgid "guestfs_sfdiskM"
18313 msgstr ""
18314
18315 # type: verbatim
18316 #. type: verbatim
18317 #: ../src/guestfs-actions.pod:6167
18318 #, no-wrap
18319 msgid ""
18320 " int\n"
18321 " guestfs_sfdiskM (guestfs_h *g,\n"
18322 "                  const char *device,\n"
18323 "                  char *const *lines);\n"
18324 "\n"
18325 msgstr ""
18326
18327 # type: textblock
18328 #. type: textblock
18329 #: ../src/guestfs-actions.pod:6172
18330 msgid ""
18331 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18332 "partition sizes are specified in megabytes only (rounded to the nearest "
18333 "cylinder) and you don't need to specify the cyls, heads and sectors "
18334 "parameters which were rarely if ever used anyway."
18335 msgstr ""
18336
18337 # type: textblock
18338 #. type: textblock
18339 #: ../src/guestfs-actions.pod:6178
18340 msgid ""
18341 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18342 "C<guestfs_part_disk>"
18343 msgstr ""
18344
18345 # type: =head2
18346 #. type: =head2
18347 #: ../src/guestfs-actions.pod:6195
18348 msgid "guestfs_sfdisk_N"
18349 msgstr ""
18350
18351 # type: verbatim
18352 #. type: verbatim
18353 #: ../src/guestfs-actions.pod:6197
18354 #, no-wrap
18355 msgid ""
18356 " int\n"
18357 " guestfs_sfdisk_N (guestfs_h *g,\n"
18358 "                   const char *device,\n"
18359 "                   int partnum,\n"
18360 "                   int cyls,\n"
18361 "                   int heads,\n"
18362 "                   int sectors,\n"
18363 "                   const char *line);\n"
18364 "\n"
18365 msgstr ""
18366
18367 # type: textblock
18368 #. type: textblock
18369 #: ../src/guestfs-actions.pod:6206 ../fish/guestfish-actions.pod:4205
18370 msgid ""
18371 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18372 "(note: C<n> counts from 1)."
18373 msgstr ""
18374
18375 # type: textblock
18376 #. type: textblock
18377 #: ../src/guestfs-actions.pod:6209
18378 msgid ""
18379 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
18380 "for the cyls/heads/sectors parameters."
18381 msgstr ""
18382
18383 # type: textblock
18384 #. type: textblock
18385 #: ../src/guestfs-actions.pod:6212
18386 msgid "See also: C<guestfs_part_add>"
18387 msgstr ""
18388
18389 # type: =head2
18390 #. type: =head2
18391 #: ../src/guestfs-actions.pod:6228
18392 msgid "guestfs_sfdisk_disk_geometry"
18393 msgstr ""
18394
18395 # type: verbatim
18396 #. type: verbatim
18397 #: ../src/guestfs-actions.pod:6230
18398 #, no-wrap
18399 msgid ""
18400 " char *\n"
18401 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18402 "                               const char *device);\n"
18403 "\n"
18404 msgstr ""
18405
18406 # type: textblock
18407 #. type: textblock
18408 #: ../src/guestfs-actions.pod:6234
18409 msgid ""
18410 "This displays the disk geometry of C<device> read from the partition table.  "
18411 "Especially in the case where the underlying block device has been resized, "
18412 "this can be different from the kernel's idea of the geometry (see "
18413 "C<guestfs_sfdisk_kernel_geometry>)."
18414 msgstr ""
18415
18416 # type: textblock
18417 #. type: textblock
18418 #: ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6255
18419 #: ../fish/guestfish-actions.pod:4232 ../fish/guestfish-actions.pod:4241
18420 msgid "The result is in human-readable format, and not designed to be parsed."
18421 msgstr ""
18422
18423 # type: =head2
18424 #. type: =head2
18425 #: ../src/guestfs-actions.pod:6247
18426 msgid "guestfs_sfdisk_kernel_geometry"
18427 msgstr ""
18428
18429 # type: verbatim
18430 #. type: verbatim
18431 #: ../src/guestfs-actions.pod:6249
18432 #, no-wrap
18433 msgid ""
18434 " char *\n"
18435 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18436 "                                 const char *device);\n"
18437 "\n"
18438 msgstr ""
18439
18440 # type: textblock
18441 #. type: textblock
18442 #: ../src/guestfs-actions.pod:6253 ../fish/guestfish-actions.pod:4239
18443 msgid "This displays the kernel's idea of the geometry of C<device>."
18444 msgstr ""
18445
18446 # type: =head2
18447 #. type: =head2
18448 #: ../src/guestfs-actions.pod:6263
18449 msgid "guestfs_sfdisk_l"
18450 msgstr ""
18451
18452 # type: verbatim
18453 #. type: verbatim
18454 #: ../src/guestfs-actions.pod:6265
18455 #, no-wrap
18456 msgid ""
18457 " char *\n"
18458 " guestfs_sfdisk_l (guestfs_h *g,\n"
18459 "                   const char *device);\n"
18460 "\n"
18461 msgstr ""
18462
18463 # type: textblock
18464 #. type: textblock
18465 #: ../src/guestfs-actions.pod:6269 ../fish/guestfish-actions.pod:4248
18466 msgid ""
18467 "This displays the partition table on C<device>, in the human-readable output "
18468 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
18469 msgstr ""
18470
18471 # type: textblock
18472 #. type: textblock
18473 #: ../src/guestfs-actions.pod:6273
18474 msgid "See also: C<guestfs_part_list>"
18475 msgstr ""
18476
18477 #. type: textblock
18478 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4254
18479 msgid ""
18480 "This function is deprecated.  In new code, use the C<part_list> call instead."
18481 msgstr ""
18482
18483 # type: =head2
18484 #. type: =head2
18485 #: ../src/guestfs-actions.pod:6287
18486 msgid "guestfs_sh"
18487 msgstr ""
18488
18489 # type: verbatim
18490 #. type: verbatim
18491 #: ../src/guestfs-actions.pod:6289
18492 #, no-wrap
18493 msgid ""
18494 " char *\n"
18495 " guestfs_sh (guestfs_h *g,\n"
18496 "             const char *command);\n"
18497 "\n"
18498 msgstr ""
18499
18500 # type: textblock
18501 #. type: textblock
18502 #: ../src/guestfs-actions.pod:6293 ../fish/guestfish-actions.pod:4265
18503 msgid ""
18504 "This call runs a command from the guest filesystem via the guest's C</bin/"
18505 "sh>."
18506 msgstr ""
18507
18508 # type: textblock
18509 #. type: textblock
18510 #: ../src/guestfs-actions.pod:6296
18511 msgid "This is like C<guestfs_command>, but passes the command to:"
18512 msgstr ""
18513
18514 # type: verbatim
18515 #. type: verbatim
18516 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4270
18517 #, no-wrap
18518 msgid ""
18519 " /bin/sh -c \"command\"\n"
18520 "\n"
18521 msgstr ""
18522
18523 # type: textblock
18524 #. type: textblock
18525 #: ../src/guestfs-actions.pod:6300 ../fish/guestfish-actions.pod:4272
18526 msgid ""
18527 "Depending on the guest's shell, this usually results in wildcards being "
18528 "expanded, shell expressions being interpolated and so on."
18529 msgstr ""
18530
18531 # type: textblock
18532 #. type: textblock
18533 #: ../src/guestfs-actions.pod:6304
18534 msgid "All the provisos about C<guestfs_command> apply to this call."
18535 msgstr ""
18536
18537 # type: =head2
18538 #. type: =head2
18539 #: ../src/guestfs-actions.pod:6311
18540 msgid "guestfs_sh_lines"
18541 msgstr ""
18542
18543 # type: verbatim
18544 #. type: verbatim
18545 #: ../src/guestfs-actions.pod:6313
18546 #, no-wrap
18547 msgid ""
18548 " char **\n"
18549 " guestfs_sh_lines (guestfs_h *g,\n"
18550 "                   const char *command);\n"
18551 "\n"
18552 msgstr ""
18553
18554 # type: textblock
18555 #. type: textblock
18556 #: ../src/guestfs-actions.pod:6317
18557 msgid ""
18558 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18559 "lines."
18560 msgstr ""
18561
18562 # type: textblock
18563 #. type: textblock
18564 #: ../src/guestfs-actions.pod:6320
18565 msgid "See also: C<guestfs_command_lines>"
18566 msgstr ""
18567
18568 # type: =head2
18569 #. type: =head2
18570 #: ../src/guestfs-actions.pod:6328
18571 msgid "guestfs_sleep"
18572 msgstr ""
18573
18574 # type: verbatim
18575 #. type: verbatim
18576 #: ../src/guestfs-actions.pod:6330
18577 #, no-wrap
18578 msgid ""
18579 " int\n"
18580 " guestfs_sleep (guestfs_h *g,\n"
18581 "                int secs);\n"
18582 "\n"
18583 msgstr ""
18584
18585 # type: textblock
18586 #. type: textblock
18587 #: ../src/guestfs-actions.pod:6334 ../fish/guestfish-actions.pod:4291
18588 msgid "Sleep for C<secs> seconds."
18589 msgstr ""
18590
18591 # type: textblock
18592 #. type: textblock
18593 #: ../src/guestfs-actions.pod:6338
18594 msgid "(Added in 1.0.41)"
18595 msgstr ""
18596
18597 # type: =head2
18598 #. type: =head2
18599 #: ../src/guestfs-actions.pod:6340 ../src/guestfs-structs.pod:109
18600 msgid "guestfs_stat"
18601 msgstr ""
18602
18603 # type: verbatim
18604 #. type: verbatim
18605 #: ../src/guestfs-actions.pod:6342
18606 #, no-wrap
18607 msgid ""
18608 " struct guestfs_stat *\n"
18609 " guestfs_stat (guestfs_h *g,\n"
18610 "               const char *path);\n"
18611 "\n"
18612 msgstr ""
18613
18614 # type: textblock
18615 #. type: textblock
18616 #: ../src/guestfs-actions.pod:6348 ../fish/guestfish-actions.pod:4299
18617 msgid "This is the same as the C<stat(2)> system call."
18618 msgstr ""
18619
18620 # type: =head2
18621 #. type: =head2
18622 #: ../src/guestfs-actions.pod:6356 ../src/guestfs-structs.pod:135
18623 msgid "guestfs_statvfs"
18624 msgstr ""
18625
18626 # type: verbatim
18627 #. type: verbatim
18628 #: ../src/guestfs-actions.pod:6358
18629 #, no-wrap
18630 msgid ""
18631 " struct guestfs_statvfs *\n"
18632 " guestfs_statvfs (guestfs_h *g,\n"
18633 "                  const char *path);\n"
18634 "\n"
18635 msgstr ""
18636
18637 # type: textblock
18638 #. type: textblock
18639 #: ../src/guestfs-actions.pod:6362 ../fish/guestfish-actions.pod:4305
18640 msgid ""
18641 "Returns file system statistics for any mounted file system.  C<path> should "
18642 "be a file or directory in the mounted file system (typically it is the mount "
18643 "point itself, but it doesn't need to be)."
18644 msgstr ""
18645
18646 # type: textblock
18647 #. type: textblock
18648 #: ../src/guestfs-actions.pod:6366 ../fish/guestfish-actions.pod:4309
18649 msgid "This is the same as the C<statvfs(2)> system call."
18650 msgstr ""
18651
18652 # type: textblock
18653 #. type: textblock
18654 #: ../src/guestfs-actions.pod:6368
18655 msgid ""
18656 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18657 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
18658 msgstr ""
18659
18660 # type: =head2
18661 #. type: =head2
18662 #: ../src/guestfs-actions.pod:6374
18663 msgid "guestfs_strings"
18664 msgstr ""
18665
18666 # type: verbatim
18667 #. type: verbatim
18668 #: ../src/guestfs-actions.pod:6376
18669 #, no-wrap
18670 msgid ""
18671 " char **\n"
18672 " guestfs_strings (guestfs_h *g,\n"
18673 "                  const char *path);\n"
18674 "\n"
18675 msgstr ""
18676
18677 # type: textblock
18678 #. type: textblock
18679 #: ../src/guestfs-actions.pod:6380 ../fish/guestfish-actions.pod:4315
18680 msgid ""
18681 "This runs the L<strings(1)> command on a file and returns the list of "
18682 "printable strings found."
18683 msgstr ""
18684
18685 # type: =head2
18686 #. type: =head2
18687 #: ../src/guestfs-actions.pod:6392
18688 msgid "guestfs_strings_e"
18689 msgstr ""
18690
18691 # type: verbatim
18692 #. type: verbatim
18693 #: ../src/guestfs-actions.pod:6394
18694 #, no-wrap
18695 msgid ""
18696 " char **\n"
18697 " guestfs_strings_e (guestfs_h *g,\n"
18698 "                    const char *encoding,\n"
18699 "                    const char *path);\n"
18700 "\n"
18701 msgstr ""
18702
18703 # type: textblock
18704 #. type: textblock
18705 #: ../src/guestfs-actions.pod:6399
18706 msgid ""
18707 "This is like the C<guestfs_strings> command, but allows you to specify the "
18708 "encoding of strings that are looked for in the source file C<path>."
18709 msgstr ""
18710
18711 # type: textblock
18712 #. type: textblock
18713 #: ../src/guestfs-actions.pod:6403 ../fish/guestfish-actions.pod:4329
18714 msgid "Allowed encodings are:"
18715 msgstr ""
18716
18717 # type: =item
18718 #. type: =item
18719 #: ../src/guestfs-actions.pod:6407 ../fish/guestfish-actions.pod:4333
18720 msgid "s"
18721 msgstr ""
18722
18723 # type: textblock
18724 #. type: textblock
18725 #: ../src/guestfs-actions.pod:6409
18726 msgid ""
18727 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18728 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18729 msgstr ""
18730
18731 # type: =item
18732 #. type: =item
18733 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4338
18734 msgid "S"
18735 msgstr ""
18736
18737 # type: textblock
18738 #. type: textblock
18739 #: ../src/guestfs-actions.pod:6414 ../fish/guestfish-actions.pod:4340
18740 msgid "Single 8-bit-byte characters."
18741 msgstr ""
18742
18743 # type: =item
18744 #. type: =item
18745 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4342
18746 msgid "b"
18747 msgstr ""
18748
18749 # type: textblock
18750 #. type: textblock
18751 #: ../src/guestfs-actions.pod:6418 ../fish/guestfish-actions.pod:4344
18752 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18753 msgstr ""
18754
18755 # type: =item
18756 #. type: =item
18757 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
18758 msgid "l (lower case letter L)"
18759 msgstr ""
18760
18761 # type: textblock
18762 #. type: textblock
18763 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4349
18764 msgid ""
18765 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
18766 "examining binaries in Windows guests."
18767 msgstr ""
18768
18769 # type: =item
18770 #. type: =item
18771 #: ../src/guestfs-actions.pod:6426 ../fish/guestfish-actions.pod:4352
18772 msgid "B"
18773 msgstr ""
18774
18775 # type: textblock
18776 #. type: textblock
18777 #: ../src/guestfs-actions.pod:6428 ../fish/guestfish-actions.pod:4354
18778 msgid "32-bit big endian such as UCS-4BE."
18779 msgstr ""
18780
18781 # type: =item
18782 #. type: =item
18783 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
18784 msgid "L"
18785 msgstr ""
18786
18787 # type: textblock
18788 #. type: textblock
18789 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
18790 msgid "32-bit little endian such as UCS-4LE."
18791 msgstr ""
18792
18793 # type: textblock
18794 #. type: textblock
18795 #: ../src/guestfs-actions.pod:6436 ../fish/guestfish-actions.pod:4362
18796 msgid "The returned strings are transcoded to UTF-8."
18797 msgstr ""
18798
18799 # type: =head2
18800 #. type: =head2
18801 #: ../src/guestfs-actions.pod:6447
18802 msgid "guestfs_swapoff_device"
18803 msgstr ""
18804
18805 # type: verbatim
18806 #. type: verbatim
18807 #: ../src/guestfs-actions.pod:6449
18808 #, no-wrap
18809 msgid ""
18810 " int\n"
18811 " guestfs_swapoff_device (guestfs_h *g,\n"
18812 "                         const char *device);\n"
18813 "\n"
18814 msgstr ""
18815
18816 # type: textblock
18817 #. type: textblock
18818 #: ../src/guestfs-actions.pod:6453
18819 msgid ""
18820 "This command disables the libguestfs appliance swap device or partition "
18821 "named C<device>.  See C<guestfs_swapon_device>."
18822 msgstr ""
18823
18824 # type: =head2
18825 #. type: =head2
18826 #: ../src/guestfs-actions.pod:6461
18827 msgid "guestfs_swapoff_file"
18828 msgstr ""
18829
18830 # type: verbatim
18831 #. type: verbatim
18832 #: ../src/guestfs-actions.pod:6463
18833 #, no-wrap
18834 msgid ""
18835 " int\n"
18836 " guestfs_swapoff_file (guestfs_h *g,\n"
18837 "                       const char *file);\n"
18838 "\n"
18839 msgstr ""
18840
18841 # type: textblock
18842 #. type: textblock
18843 #: ../src/guestfs-actions.pod:6467 ../fish/guestfish-actions.pod:4379
18844 msgid "This command disables the libguestfs appliance swap on file."
18845 msgstr ""
18846
18847 # type: =head2
18848 #. type: =head2
18849 #: ../src/guestfs-actions.pod:6473
18850 msgid "guestfs_swapoff_label"
18851 msgstr ""
18852
18853 # type: verbatim
18854 #. type: verbatim
18855 #: ../src/guestfs-actions.pod:6475
18856 #, no-wrap
18857 msgid ""
18858 " int\n"
18859 " guestfs_swapoff_label (guestfs_h *g,\n"
18860 "                        const char *label);\n"
18861 "\n"
18862 msgstr ""
18863
18864 # type: textblock
18865 #. type: textblock
18866 #: ../src/guestfs-actions.pod:6479 ../fish/guestfish-actions.pod:4385
18867 msgid ""
18868 "This command disables the libguestfs appliance swap on labeled swap "
18869 "partition."
18870 msgstr ""
18871
18872 # type: =head2
18873 #. type: =head2
18874 #: ../src/guestfs-actions.pod:6486
18875 msgid "guestfs_swapoff_uuid"
18876 msgstr ""
18877
18878 # type: verbatim
18879 #. type: verbatim
18880 #: ../src/guestfs-actions.pod:6488
18881 #, no-wrap
18882 msgid ""
18883 " int\n"
18884 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18885 "                       const char *uuid);\n"
18886 "\n"
18887 msgstr ""
18888
18889 # type: textblock
18890 #. type: textblock
18891 #: ../src/guestfs-actions.pod:6492 ../fish/guestfish-actions.pod:4392
18892 msgid ""
18893 "This command disables the libguestfs appliance swap partition with the given "
18894 "UUID."
18895 msgstr ""
18896
18897 # type: =head2
18898 #. type: =head2
18899 #: ../src/guestfs-actions.pod:6499
18900 msgid "guestfs_swapon_device"
18901 msgstr ""
18902
18903 # type: verbatim
18904 #. type: verbatim
18905 #: ../src/guestfs-actions.pod:6501
18906 #, no-wrap
18907 msgid ""
18908 " int\n"
18909 " guestfs_swapon_device (guestfs_h *g,\n"
18910 "                        const char *device);\n"
18911 "\n"
18912 msgstr ""
18913
18914 # type: textblock
18915 #. type: textblock
18916 #: ../src/guestfs-actions.pod:6505
18917 msgid ""
18918 "This command enables the libguestfs appliance to use the swap device or "
18919 "partition named C<device>.  The increased memory is made available for all "
18920 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18921 msgstr ""
18922
18923 # type: textblock
18924 #. type: textblock
18925 #: ../src/guestfs-actions.pod:6510 ../fish/guestfish-actions.pod:4404
18926 msgid ""
18927 "Note that you should not swap to existing guest swap partitions unless you "
18928 "know what you are doing.  They may contain hibernation information, or other "
18929 "information that the guest doesn't want you to trash.  You also risk leaking "
18930 "information about the host to the guest this way.  Instead, attach a new "
18931 "host device to the guest and swap on that."
18932 msgstr ""
18933
18934 # type: =head2
18935 #. type: =head2
18936 #: ../src/guestfs-actions.pod:6521
18937 msgid "guestfs_swapon_file"
18938 msgstr ""
18939
18940 # type: verbatim
18941 #. type: verbatim
18942 #: ../src/guestfs-actions.pod:6523
18943 #, no-wrap
18944 msgid ""
18945 " int\n"
18946 " guestfs_swapon_file (guestfs_h *g,\n"
18947 "                      const char *file);\n"
18948 "\n"
18949 msgstr ""
18950
18951 # type: textblock
18952 #. type: textblock
18953 #: ../src/guestfs-actions.pod:6527
18954 msgid ""
18955 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
18956 "notes."
18957 msgstr ""
18958
18959 # type: =head2
18960 #. type: =head2
18961 #: ../src/guestfs-actions.pod:6534
18962 msgid "guestfs_swapon_label"
18963 msgstr ""
18964
18965 # type: verbatim
18966 #. type: verbatim
18967 #: ../src/guestfs-actions.pod:6536
18968 #, no-wrap
18969 msgid ""
18970 " int\n"
18971 " guestfs_swapon_label (guestfs_h *g,\n"
18972 "                       const char *label);\n"
18973 "\n"
18974 msgstr ""
18975
18976 # type: textblock
18977 #. type: textblock
18978 #: ../src/guestfs-actions.pod:6540
18979 msgid ""
18980 "This command enables swap to a labeled swap partition.  See "
18981 "C<guestfs_swapon_device> for other notes."
18982 msgstr ""
18983
18984 # type: =head2
18985 #. type: =head2
18986 #: ../src/guestfs-actions.pod:6547
18987 msgid "guestfs_swapon_uuid"
18988 msgstr ""
18989
18990 # type: verbatim
18991 #. type: verbatim
18992 #: ../src/guestfs-actions.pod:6549
18993 #, no-wrap
18994 msgid ""
18995 " int\n"
18996 " guestfs_swapon_uuid (guestfs_h *g,\n"
18997 "                      const char *uuid);\n"
18998 "\n"
18999 msgstr ""
19000
19001 # type: textblock
19002 #. type: textblock
19003 #: ../src/guestfs-actions.pod:6553
19004 msgid ""
19005 "This command enables swap to a swap partition with the given UUID.  See "
19006 "C<guestfs_swapon_device> for other notes."
19007 msgstr ""
19008
19009 # type: =head2
19010 #. type: =head2
19011 #: ../src/guestfs-actions.pod:6560
19012 msgid "guestfs_sync"
19013 msgstr ""
19014
19015 # type: verbatim
19016 #. type: verbatim
19017 #: ../src/guestfs-actions.pod:6562
19018 #, no-wrap
19019 msgid ""
19020 " int\n"
19021 " guestfs_sync (guestfs_h *g);\n"
19022 "\n"
19023 msgstr ""
19024
19025 # type: textblock
19026 #. type: textblock
19027 #: ../src/guestfs-actions.pod:6565 ../fish/guestfish-actions.pod:4436
19028 msgid ""
19029 "This syncs the disk, so that any writes are flushed through to the "
19030 "underlying disk image."
19031 msgstr ""
19032
19033 # type: textblock
19034 #. type: textblock
19035 #: ../src/guestfs-actions.pod:6568 ../fish/guestfish-actions.pod:4439
19036 msgid ""
19037 "You should always call this if you have modified a disk image, before "
19038 "closing the handle."
19039 msgstr ""
19040
19041 # type: =head2
19042 #. type: =head2
19043 #: ../src/guestfs-actions.pod:6575
19044 msgid "guestfs_tail"
19045 msgstr ""
19046
19047 # type: verbatim
19048 #. type: verbatim
19049 #: ../src/guestfs-actions.pod:6577
19050 #, no-wrap
19051 msgid ""
19052 " char **\n"
19053 " guestfs_tail (guestfs_h *g,\n"
19054 "               const char *path);\n"
19055 "\n"
19056 msgstr ""
19057
19058 # type: textblock
19059 #. type: textblock
19060 #: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4446
19061 msgid ""
19062 "This command returns up to the last 10 lines of a file as a list of strings."
19063 msgstr ""
19064
19065 # type: =head2
19066 #. type: =head2
19067 #: ../src/guestfs-actions.pod:6593
19068 msgid "guestfs_tail_n"
19069 msgstr ""
19070
19071 # type: verbatim
19072 #. type: verbatim
19073 #: ../src/guestfs-actions.pod:6595
19074 #, no-wrap
19075 msgid ""
19076 " char **\n"
19077 " guestfs_tail_n (guestfs_h *g,\n"
19078 "                 int nrlines,\n"
19079 "                 const char *path);\n"
19080 "\n"
19081 msgstr ""
19082
19083 # type: textblock
19084 #. type: textblock
19085 #: ../src/guestfs-actions.pod:6600 ../fish/guestfish-actions.pod:4456
19086 msgid ""
19087 "If the parameter C<nrlines> is a positive number, this returns the last "
19088 "C<nrlines> lines of the file C<path>."
19089 msgstr ""
19090
19091 # type: textblock
19092 #. type: textblock
19093 #: ../src/guestfs-actions.pod:6603 ../fish/guestfish-actions.pod:4459
19094 msgid ""
19095 "If the parameter C<nrlines> is a negative number, this returns lines from "
19096 "the file C<path>, starting with the C<-nrlines>th line."
19097 msgstr ""
19098
19099 # type: =head2
19100 #. type: =head2
19101 #: ../src/guestfs-actions.pod:6617
19102 msgid "guestfs_tar_in"
19103 msgstr ""
19104
19105 # type: verbatim
19106 #. type: verbatim
19107 #: ../src/guestfs-actions.pod:6619
19108 #, no-wrap
19109 msgid ""
19110 " int\n"
19111 " guestfs_tar_in (guestfs_h *g,\n"
19112 "                 const char *tarfile,\n"
19113 "                 const char *directory);\n"
19114 "\n"
19115 msgstr ""
19116
19117 # type: textblock
19118 #. type: textblock
19119 #: ../src/guestfs-actions.pod:6624 ../fish/guestfish-actions.pod:4471
19120 msgid ""
19121 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
19122 "tar file) into C<directory>."
19123 msgstr ""
19124
19125 # type: textblock
19126 #. type: textblock
19127 #: ../src/guestfs-actions.pod:6627
19128 msgid ""
19129 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
19130 msgstr ""
19131
19132 # type: textblock
19133 #. type: textblock
19134 #: ../src/guestfs-actions.pod:6632 ../src/guestfs-actions.pod:6649
19135 #: ../src/guestfs-actions.pod:6665 ../src/guestfs-actions.pod:6681
19136 msgid "(Added in 1.0.3)"
19137 msgstr ""
19138
19139 # type: =head2
19140 #. type: =head2
19141 #: ../src/guestfs-actions.pod:6634
19142 msgid "guestfs_tar_out"
19143 msgstr ""
19144
19145 # type: verbatim
19146 #. type: verbatim
19147 #: ../src/guestfs-actions.pod:6636
19148 #, no-wrap
19149 msgid ""
19150 " int\n"
19151 " guestfs_tar_out (guestfs_h *g,\n"
19152 "                  const char *directory,\n"
19153 "                  const char *tarfile);\n"
19154 "\n"
19155 msgstr ""
19156
19157 # type: textblock
19158 #. type: textblock
19159 #: ../src/guestfs-actions.pod:6641 ../fish/guestfish-actions.pod:4483
19160 msgid ""
19161 "This command packs the contents of C<directory> and downloads it to local "
19162 "file C<tarfile>."
19163 msgstr ""
19164
19165 # type: textblock
19166 #. type: textblock
19167 #: ../src/guestfs-actions.pod:6644
19168 msgid ""
19169 "To download a compressed tarball, use C<guestfs_tgz_out> or "
19170 "C<guestfs_txz_out>."
19171 msgstr ""
19172
19173 # type: =head2
19174 #. type: =head2
19175 #: ../src/guestfs-actions.pod:6651
19176 msgid "guestfs_tgz_in"
19177 msgstr ""
19178
19179 # type: verbatim
19180 #. type: verbatim
19181 #: ../src/guestfs-actions.pod:6653
19182 #, no-wrap
19183 msgid ""
19184 " int\n"
19185 " guestfs_tgz_in (guestfs_h *g,\n"
19186 "                 const char *tarball,\n"
19187 "                 const char *directory);\n"
19188 "\n"
19189 msgstr ""
19190
19191 # type: textblock
19192 #. type: textblock
19193 #: ../src/guestfs-actions.pod:6658 ../fish/guestfish-actions.pod:4495
19194 msgid ""
19195 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
19196 "tar file) into C<directory>."
19197 msgstr ""
19198
19199 # type: textblock
19200 #. type: textblock
19201 #: ../src/guestfs-actions.pod:6661
19202 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19203 msgstr ""
19204
19205 # type: =head2
19206 #. type: =head2
19207 #: ../src/guestfs-actions.pod:6667
19208 msgid "guestfs_tgz_out"
19209 msgstr ""
19210
19211 # type: verbatim
19212 #. type: verbatim
19213 #: ../src/guestfs-actions.pod:6669
19214 #, no-wrap
19215 msgid ""
19216 " int\n"
19217 " guestfs_tgz_out (guestfs_h *g,\n"
19218 "                  const char *directory,\n"
19219 "                  const char *tarball);\n"
19220 "\n"
19221 msgstr ""
19222
19223 # type: textblock
19224 #. type: textblock
19225 #: ../src/guestfs-actions.pod:6674 ../fish/guestfish-actions.pod:4506
19226 msgid ""
19227 "This command packs the contents of C<directory> and downloads it to local "
19228 "file C<tarball>."
19229 msgstr ""
19230
19231 # type: textblock
19232 #. type: textblock
19233 #: ../src/guestfs-actions.pod:6677
19234 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19235 msgstr ""
19236
19237 # type: =head2
19238 #. type: =head2
19239 #: ../src/guestfs-actions.pod:6683
19240 msgid "guestfs_touch"
19241 msgstr ""
19242
19243 # type: verbatim
19244 #. type: verbatim
19245 #: ../src/guestfs-actions.pod:6685
19246 #, no-wrap
19247 msgid ""
19248 " int\n"
19249 " guestfs_touch (guestfs_h *g,\n"
19250 "                const char *path);\n"
19251 "\n"
19252 msgstr ""
19253
19254 # type: textblock
19255 #. type: textblock
19256 #: ../src/guestfs-actions.pod:6689 ../fish/guestfish-actions.pod:4517
19257 msgid ""
19258 "Touch acts like the L<touch(1)> command.  It can be used to update the "
19259 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19260 "length file."
19261 msgstr ""
19262
19263 # type: textblock
19264 #. type: textblock
19265 #: ../src/guestfs-actions.pod:6693 ../fish/guestfish-actions.pod:4521
19266 msgid ""
19267 "This command only works on regular files, and will fail on other file types "
19268 "such as directories, symbolic links, block special etc."
19269 msgstr ""
19270
19271 # type: =head2
19272 #. type: =head2
19273 #: ../src/guestfs-actions.pod:6700
19274 msgid "guestfs_truncate"
19275 msgstr ""
19276
19277 # type: verbatim
19278 #. type: verbatim
19279 #: ../src/guestfs-actions.pod:6702
19280 #, no-wrap
19281 msgid ""
19282 " int\n"
19283 " guestfs_truncate (guestfs_h *g,\n"
19284 "                   const char *path);\n"
19285 "\n"
19286 msgstr ""
19287
19288 # type: textblock
19289 #. type: textblock
19290 #: ../src/guestfs-actions.pod:6706 ../fish/guestfish-actions.pod:4528
19291 msgid ""
19292 "This command truncates C<path> to a zero-length file.  The file must exist "
19293 "already."
19294 msgstr ""
19295
19296 # type: =head2
19297 #. type: =head2
19298 #: ../src/guestfs-actions.pod:6713
19299 msgid "guestfs_truncate_size"
19300 msgstr ""
19301
19302 # type: verbatim
19303 #. type: verbatim
19304 #: ../src/guestfs-actions.pod:6715
19305 #, no-wrap
19306 msgid ""
19307 " int\n"
19308 " guestfs_truncate_size (guestfs_h *g,\n"
19309 "                        const char *path,\n"
19310 "                        int64_t size);\n"
19311 "\n"
19312 msgstr ""
19313
19314 # type: textblock
19315 #. type: textblock
19316 #: ../src/guestfs-actions.pod:6720 ../fish/guestfish-actions.pod:4535
19317 msgid ""
19318 "This command truncates C<path> to size C<size> bytes.  The file must exist "
19319 "already."
19320 msgstr ""
19321
19322 # type: textblock
19323 #. type: textblock
19324 #: ../src/guestfs-actions.pod:6723
19325 msgid ""
19326 "If the current file size is less than C<size> then the file is extended to "
19327 "the required size with zero bytes.  This creates a sparse file (ie. disk "
19328 "blocks are not allocated for the file until you write to it).  To create a "
19329 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19330 msgstr ""
19331
19332 # type: =head2
19333 #. type: =head2
19334 #: ../src/guestfs-actions.pod:6733
19335 msgid "guestfs_tune2fs_l"
19336 msgstr ""
19337
19338 # type: verbatim
19339 #. type: verbatim
19340 #: ../src/guestfs-actions.pod:6735
19341 #, no-wrap
19342 msgid ""
19343 " char **\n"
19344 " guestfs_tune2fs_l (guestfs_h *g,\n"
19345 "                    const char *device);\n"
19346 "\n"
19347 msgstr ""
19348
19349 # type: textblock
19350 #. type: textblock
19351 #: ../src/guestfs-actions.pod:6739 ../fish/guestfish-actions.pod:4548
19352 msgid ""
19353 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19354 "C<device>."
19355 msgstr ""
19356
19357 # type: textblock
19358 #. type: textblock
19359 #: ../src/guestfs-actions.pod:6742 ../fish/guestfish-actions.pod:4551
19360 msgid ""
19361 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
19362 "for more details.  The list of fields returned isn't clearly defined, and "
19363 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19364 "and the filesystem itself."
19365 msgstr ""
19366
19367 # type: =head2
19368 #. type: =head2
19369 #: ../src/guestfs-actions.pod:6755
19370 msgid "guestfs_txz_in"
19371 msgstr ""
19372
19373 # type: verbatim
19374 #. type: verbatim
19375 #: ../src/guestfs-actions.pod:6757
19376 #, no-wrap
19377 msgid ""
19378 " int\n"
19379 " guestfs_txz_in (guestfs_h *g,\n"
19380 "                 const char *tarball,\n"
19381 "                 const char *directory);\n"
19382 "\n"
19383 msgstr ""
19384
19385 # type: textblock
19386 #. type: textblock
19387 #: ../src/guestfs-actions.pod:6762 ../fish/guestfish-actions.pod:4560
19388 msgid ""
19389 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19390 "tar file) into C<directory>."
19391 msgstr ""
19392
19393 # type: =head2
19394 #. type: =head2
19395 #: ../src/guestfs-actions.pod:6769
19396 msgid "guestfs_txz_out"
19397 msgstr ""
19398
19399 # type: verbatim
19400 #. type: verbatim
19401 #: ../src/guestfs-actions.pod:6771
19402 #, no-wrap
19403 msgid ""
19404 " int\n"
19405 " guestfs_txz_out (guestfs_h *g,\n"
19406 "                  const char *directory,\n"
19407 "                  const char *tarball);\n"
19408 "\n"
19409 msgstr ""
19410
19411 # type: textblock
19412 #. type: textblock
19413 #: ../src/guestfs-actions.pod:6776 ../fish/guestfish-actions.pod:4569
19414 msgid ""
19415 "This command packs the contents of C<directory> and downloads it to local "
19416 "file C<tarball> (as an xz compressed tar archive)."
19417 msgstr ""
19418
19419 # type: =head2
19420 #. type: =head2
19421 #: ../src/guestfs-actions.pod:6783
19422 msgid "guestfs_umask"
19423 msgstr ""
19424
19425 # type: verbatim
19426 #. type: verbatim
19427 #: ../src/guestfs-actions.pod:6785
19428 #, no-wrap
19429 msgid ""
19430 " int\n"
19431 " guestfs_umask (guestfs_h *g,\n"
19432 "                int mask);\n"
19433 "\n"
19434 msgstr ""
19435
19436 # type: textblock
19437 #. type: textblock
19438 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4578
19439 msgid ""
19440 "This function sets the mask used for creating new files and device nodes to "
19441 "C<mask & 0777>."
19442 msgstr ""
19443
19444 # type: textblock
19445 #. type: textblock
19446 #: ../src/guestfs-actions.pod:6792 ../fish/guestfish-actions.pod:4581
19447 msgid ""
19448 "Typical umask values would be C<022> which creates new files with "
19449 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19450 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19451 msgstr ""
19452
19453 # type: textblock
19454 #. type: textblock
19455 #: ../src/guestfs-actions.pod:6797 ../fish/guestfish-actions.pod:4586
19456 msgid ""
19457 "The default umask is C<022>.  This is important because it means that "
19458 "directories and device nodes will be created with C<0644> or C<0755> mode "
19459 "even if you specify C<0777>."
19460 msgstr ""
19461
19462 # type: textblock
19463 #. type: textblock
19464 #: ../src/guestfs-actions.pod:6801
19465 msgid ""
19466 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19467 "C<guestfs_mkdir>."
19468 msgstr ""
19469
19470 # type: textblock
19471 #. type: textblock
19472 #: ../src/guestfs-actions.pod:6804 ../fish/guestfish-actions.pod:4593
19473 msgid "This call returns the previous umask."
19474 msgstr ""
19475
19476 # type: =head2
19477 #. type: =head2
19478 #: ../src/guestfs-actions.pod:6810
19479 msgid "guestfs_umount"
19480 msgstr ""
19481
19482 # type: verbatim
19483 #. type: verbatim
19484 #: ../src/guestfs-actions.pod:6812
19485 #, no-wrap
19486 msgid ""
19487 " int\n"
19488 " guestfs_umount (guestfs_h *g,\n"
19489 "                 const char *pathordevice);\n"
19490 "\n"
19491 msgstr ""
19492
19493 # type: textblock
19494 #. type: textblock
19495 #: ../src/guestfs-actions.pod:6816 ../fish/guestfish-actions.pod:4601
19496 msgid ""
19497 "This unmounts the given filesystem.  The filesystem may be specified either "
19498 "by its mountpoint (path) or the device which contains the filesystem."
19499 msgstr ""
19500
19501 # type: =head2
19502 #. type: =head2
19503 #: ../src/guestfs-actions.pod:6824
19504 msgid "guestfs_umount_all"
19505 msgstr ""
19506
19507 # type: verbatim
19508 #. type: verbatim
19509 #: ../src/guestfs-actions.pod:6826
19510 #, no-wrap
19511 msgid ""
19512 " int\n"
19513 " guestfs_umount_all (guestfs_h *g);\n"
19514 "\n"
19515 msgstr ""
19516
19517 # type: textblock
19518 #. type: textblock
19519 #: ../src/guestfs-actions.pod:6829 ../fish/guestfish-actions.pod:4611
19520 msgid "This unmounts all mounted filesystems."
19521 msgstr ""
19522
19523 # type: textblock
19524 #. type: textblock
19525 #: ../src/guestfs-actions.pod:6831 ../fish/guestfish-actions.pod:4613
19526 msgid "Some internal mounts are not unmounted by this call."
19527 msgstr ""
19528
19529 # type: =head2
19530 #. type: =head2
19531 #: ../src/guestfs-actions.pod:6837
19532 msgid "guestfs_upload"
19533 msgstr ""
19534
19535 # type: verbatim
19536 #. type: verbatim
19537 #: ../src/guestfs-actions.pod:6839
19538 #, no-wrap
19539 msgid ""
19540 " int\n"
19541 " guestfs_upload (guestfs_h *g,\n"
19542 "                 const char *filename,\n"
19543 "                 const char *remotefilename);\n"
19544 "\n"
19545 msgstr ""
19546
19547 # type: textblock
19548 #. type: textblock
19549 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6868
19550 #: ../fish/guestfish-actions.pod:4619 ../fish/guestfish-actions.pod:4632
19551 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19552 msgstr ""
19553
19554 # type: textblock
19555 #. type: textblock
19556 #: ../src/guestfs-actions.pod:6849
19557 msgid "See also C<guestfs_download>."
19558 msgstr ""
19559
19560 # type: =head2
19561 #. type: =head2
19562 #: ../src/guestfs-actions.pod:6860
19563 msgid "guestfs_upload_offset"
19564 msgstr ""
19565
19566 # type: verbatim
19567 #. type: verbatim
19568 #: ../src/guestfs-actions.pod:6862
19569 #, no-wrap
19570 msgid ""
19571 " int\n"
19572 " guestfs_upload_offset (guestfs_h *g,\n"
19573 "                        const char *filename,\n"
19574 "                        const char *remotefilename,\n"
19575 "                        int64_t offset);\n"
19576 "\n"
19577 msgstr ""
19578
19579 # type: textblock
19580 #. type: textblock
19581 #: ../src/guestfs-actions.pod:6871 ../fish/guestfish-actions.pod:4635
19582 msgid ""
19583 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
19584 "The intention is to overwrite parts of existing files or devices, although "
19585 "if a non-existant file is specified then it is created with a \"hole\" "
19586 "before C<offset>.  The size of the data written is implicit in the size of "
19587 "the source C<filename>."
19588 msgstr ""
19589
19590 # type: textblock
19591 #. type: textblock
19592 #: ../src/guestfs-actions.pod:6878
19593 msgid ""
19594 "Note that there is no limit on the amount of data that can be uploaded with "
19595 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19596 "full amount unless an error occurs."
19597 msgstr ""
19598
19599 # type: textblock
19600 #. type: textblock
19601 #: ../src/guestfs-actions.pod:6883
19602 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19603 msgstr ""
19604
19605 # type: =head2
19606 #. type: =head2
19607 #: ../src/guestfs-actions.pod:6894
19608 msgid "guestfs_utimens"
19609 msgstr ""
19610
19611 # type: verbatim
19612 #. type: verbatim
19613 #: ../src/guestfs-actions.pod:6896
19614 #, no-wrap
19615 msgid ""
19616 " int\n"
19617 " guestfs_utimens (guestfs_h *g,\n"
19618 "                  const char *path,\n"
19619 "                  int64_t atsecs,\n"
19620 "                  int64_t atnsecs,\n"
19621 "                  int64_t mtsecs,\n"
19622 "                  int64_t mtnsecs);\n"
19623 "\n"
19624 msgstr ""
19625
19626 # type: textblock
19627 #. type: textblock
19628 #: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4655
19629 msgid "This command sets the timestamps of a file with nanosecond precision."
19630 msgstr ""
19631
19632 # type: textblock
19633 #. type: textblock
19634 #: ../src/guestfs-actions.pod:6907 ../fish/guestfish-actions.pod:4658
19635 msgid ""
19636 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19637 "from the epoch."
19638 msgstr ""
19639
19640 # type: textblock
19641 #. type: textblock
19642 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4661
19643 msgid ""
19644 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19645 "nanoseconds from the epoch."
19646 msgstr ""
19647
19648 # type: textblock
19649 #. type: textblock
19650 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4664
19651 msgid ""
19652 "If the C<*nsecs> field contains the special value C<-1> then the "
19653 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
19654 "ignored in this case)."
19655 msgstr ""
19656
19657 # type: textblock
19658 #. type: textblock
19659 #: ../src/guestfs-actions.pod:6917 ../fish/guestfish-actions.pod:4668
19660 msgid ""
19661 "If the C<*nsecs> field contains the special value C<-2> then the "
19662 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
19663 "in this case)."
19664 msgstr ""
19665
19666 # type: =head2
19667 #. type: =head2
19668 #: ../src/guestfs-actions.pod:6925 ../src/guestfs-structs.pod:175
19669 msgid "guestfs_version"
19670 msgstr ""
19671
19672 # type: verbatim
19673 #. type: verbatim
19674 #: ../src/guestfs-actions.pod:6927
19675 #, no-wrap
19676 msgid ""
19677 " struct guestfs_version *\n"
19678 " guestfs_version (guestfs_h *g);\n"
19679 "\n"
19680 msgstr ""
19681
19682 # type: textblock
19683 #. type: textblock
19684 #: ../src/guestfs-actions.pod:6930 ../fish/guestfish-actions.pod:4676
19685 msgid ""
19686 "Return the libguestfs version number that the program is linked against."
19687 msgstr ""
19688
19689 # type: textblock
19690 #. type: textblock
19691 #: ../src/guestfs-actions.pod:6933 ../fish/guestfish-actions.pod:4679
19692 msgid ""
19693 "Note that because of dynamic linking this is not necessarily the version of "
19694 "libguestfs that you compiled against.  You can compile the program, and then "
19695 "at runtime dynamically link against a completely different C<libguestfs.so> "
19696 "library."
19697 msgstr ""
19698
19699 # type: textblock
19700 #. type: textblock
19701 #: ../src/guestfs-actions.pod:6938 ../fish/guestfish-actions.pod:4684
19702 msgid ""
19703 "This call was added in version C<1.0.58>.  In previous versions of "
19704 "libguestfs there was no way to get the version number.  From C code you can "
19705 "use dynamic linker functions to find out if this symbol exists (if it "
19706 "doesn't, then it's an earlier version)."
19707 msgstr ""
19708
19709 # type: textblock
19710 #. type: textblock
19711 #: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4690
19712 msgid ""
19713 "The call returns a structure with four elements.  The first three (C<major>, "
19714 "C<minor> and C<release>) are numbers and correspond to the usual version "
19715 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
19716 "but may be used for distro-specific information."
19717 msgstr ""
19718
19719 # type: textblock
19720 #. type: textblock
19721 #: ../src/guestfs-actions.pod:6950 ../fish/guestfish-actions.pod:4696
19722 msgid ""
19723 "To construct the original version string: C<$major.$minor.$release$extra>"
19724 msgstr ""
19725
19726 # type: textblock
19727 #. type: textblock
19728 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4699
19729 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19730 msgstr ""
19731
19732 # type: textblock
19733 #. type: textblock
19734 #: ../src/guestfs-actions.pod:6955
19735 msgid ""
19736 "I<Note:> Don't use this call to test for availability of features.  In "
19737 "enterprise distributions we backport features from later versions into "
19738 "earlier versions, making this an unreliable way to test for features.  Use "
19739 "C<guestfs_available> instead."
19740 msgstr ""
19741
19742 # type: textblock
19743 #. type: textblock
19744 #: ../src/guestfs-actions.pod:6961
19745 msgid ""
19746 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19747 "error.  I<The caller must call C<guestfs_free_version> after use>."
19748 msgstr ""
19749
19750 # type: textblock
19751 #. type: textblock
19752 #: ../src/guestfs-actions.pod:6965
19753 msgid "(Added in 1.0.58)"
19754 msgstr ""
19755
19756 # type: =head2
19757 #. type: =head2
19758 #: ../src/guestfs-actions.pod:6967
19759 msgid "guestfs_vfs_label"
19760 msgstr ""
19761
19762 # type: verbatim
19763 #. type: verbatim
19764 #: ../src/guestfs-actions.pod:6969
19765 #, no-wrap
19766 msgid ""
19767 " char *\n"
19768 " guestfs_vfs_label (guestfs_h *g,\n"
19769 "                    const char *device);\n"
19770 "\n"
19771 msgstr ""
19772
19773 # type: textblock
19774 #. type: textblock
19775 #: ../src/guestfs-actions.pod:6973 ../fish/guestfish-actions.pod:4711
19776 msgid "This returns the filesystem label of the filesystem on C<device>."
19777 msgstr ""
19778
19779 # type: textblock
19780 #. type: textblock
19781 #: ../src/guestfs-actions.pod:6976 ../fish/guestfish-actions.pod:4714
19782 msgid "If the filesystem is unlabeled, this returns the empty string."
19783 msgstr ""
19784
19785 # type: textblock
19786 #. type: textblock
19787 #: ../src/guestfs-actions.pod:6978
19788 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19789 msgstr ""
19790
19791 # type: textblock
19792 #. type: textblock
19793 #: ../src/guestfs-actions.pod:6983 ../src/guestfs-actions.pod:7020
19794 msgid "(Added in 1.3.18)"
19795 msgstr ""
19796
19797 # type: =head2
19798 #. type: =head2
19799 #: ../src/guestfs-actions.pod:6985
19800 msgid "guestfs_vfs_type"
19801 msgstr ""
19802
19803 # type: verbatim
19804 #. type: verbatim
19805 #: ../src/guestfs-actions.pod:6987
19806 #, no-wrap
19807 msgid ""
19808 " char *\n"
19809 " guestfs_vfs_type (guestfs_h *g,\n"
19810 "                   const char *device);\n"
19811 "\n"
19812 msgstr ""
19813
19814 # type: textblock
19815 #. type: textblock
19816 #: ../src/guestfs-actions.pod:6991 ../fish/guestfish-actions.pod:4722
19817 msgid ""
19818 "This command gets the filesystem type corresponding to the filesystem on "
19819 "C<device>."
19820 msgstr ""
19821
19822 # type: textblock
19823 #. type: textblock
19824 #: ../src/guestfs-actions.pod:6994 ../fish/guestfish-actions.pod:4725
19825 msgid ""
19826 "For most filesystems, the result is the name of the Linux VFS module which "
19827 "would be used to mount this filesystem if you mounted it without specifying "
19828 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
19829 msgstr ""
19830
19831 # type: =head2
19832 #. type: =head2
19833 #: ../src/guestfs-actions.pod:7004
19834 msgid "guestfs_vfs_uuid"
19835 msgstr ""
19836
19837 # type: verbatim
19838 #. type: verbatim
19839 #: ../src/guestfs-actions.pod:7006
19840 #, no-wrap
19841 msgid ""
19842 " char *\n"
19843 " guestfs_vfs_uuid (guestfs_h *g,\n"
19844 "                   const char *device);\n"
19845 "\n"
19846 msgstr ""
19847
19848 # type: textblock
19849 #. type: textblock
19850 #: ../src/guestfs-actions.pod:7010 ../fish/guestfish-actions.pod:4734
19851 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19852 msgstr ""
19853
19854 # type: textblock
19855 #. type: textblock
19856 #: ../src/guestfs-actions.pod:7013 ../fish/guestfish-actions.pod:4737
19857 msgid "If the filesystem does not have a UUID, this returns the empty string."
19858 msgstr ""
19859
19860 # type: textblock
19861 #. type: textblock
19862 #: ../src/guestfs-actions.pod:7015
19863 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19864 msgstr ""
19865
19866 # type: =head2
19867 #. type: =head2
19868 #: ../src/guestfs-actions.pod:7022
19869 msgid "guestfs_vg_activate"
19870 msgstr ""
19871
19872 # type: verbatim
19873 #. type: verbatim
19874 #: ../src/guestfs-actions.pod:7024
19875 #, no-wrap
19876 msgid ""
19877 " int\n"
19878 " guestfs_vg_activate (guestfs_h *g,\n"
19879 "                      int activate,\n"
19880 "                      char *const *volgroups);\n"
19881 "\n"
19882 msgstr ""
19883
19884 # type: textblock
19885 #. type: textblock
19886 #: ../src/guestfs-actions.pod:7029 ../fish/guestfish-actions.pod:4745
19887 msgid ""
19888 "This command activates or (if C<activate> is false) deactivates all logical "
19889 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
19890 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
19891 "deactivated, then those devices disappear."
19892 msgstr ""
19893
19894 # type: textblock
19895 #. type: textblock
19896 #: ../src/guestfs-actions.pod:7035 ../fish/guestfish-actions.pod:4751
19897 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19898 msgstr ""
19899
19900 # type: textblock
19901 #. type: textblock
19902 #: ../src/guestfs-actions.pod:7037 ../fish/guestfish-actions.pod:4753
19903 msgid ""
19904 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19905 "activated or deactivated."
19906 msgstr ""
19907
19908 # type: =head2
19909 #. type: =head2
19910 #: ../src/guestfs-actions.pod:7044
19911 msgid "guestfs_vg_activate_all"
19912 msgstr ""
19913
19914 # type: verbatim
19915 #. type: verbatim
19916 #: ../src/guestfs-actions.pod:7046
19917 #, no-wrap
19918 msgid ""
19919 " int\n"
19920 " guestfs_vg_activate_all (guestfs_h *g,\n"
19921 "                          int activate);\n"
19922 "\n"
19923 msgstr ""
19924
19925 # type: textblock
19926 #. type: textblock
19927 #: ../src/guestfs-actions.pod:7050 ../fish/guestfish-actions.pod:4760
19928 msgid ""
19929 "This command activates or (if C<activate> is false) deactivates all logical "
19930 "volumes in all volume groups.  If activated, then they are made known to the "
19931 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
19932 "those devices disappear."
19933 msgstr ""
19934
19935 # type: textblock
19936 #. type: textblock
19937 #: ../src/guestfs-actions.pod:7056 ../fish/guestfish-actions.pod:4766
19938 msgid "This command is the same as running C<vgchange -a y|n>"
19939 msgstr ""
19940
19941 # type: =head2
19942 #. type: =head2
19943 #: ../src/guestfs-actions.pod:7062
19944 msgid "guestfs_vgcreate"
19945 msgstr ""
19946
19947 # type: verbatim
19948 #. type: verbatim
19949 #: ../src/guestfs-actions.pod:7064
19950 #, no-wrap
19951 msgid ""
19952 " int\n"
19953 " guestfs_vgcreate (guestfs_h *g,\n"
19954 "                   const char *volgroup,\n"
19955 "                   char *const *physvols);\n"
19956 "\n"
19957 msgstr ""
19958
19959 # type: textblock
19960 #. type: textblock
19961 #: ../src/guestfs-actions.pod:7069 ../fish/guestfish-actions.pod:4772
19962 msgid ""
19963 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19964 "of physical volumes C<physvols>."
19965 msgstr ""
19966
19967 # type: =head2
19968 #. type: =head2
19969 #: ../src/guestfs-actions.pod:7076
19970 msgid "guestfs_vglvuuids"
19971 msgstr ""
19972
19973 # type: verbatim
19974 #. type: verbatim
19975 #: ../src/guestfs-actions.pod:7078
19976 #, no-wrap
19977 msgid ""
19978 " char **\n"
19979 " guestfs_vglvuuids (guestfs_h *g,\n"
19980 "                    const char *vgname);\n"
19981 "\n"
19982 msgstr ""
19983
19984 # type: textblock
19985 #. type: textblock
19986 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4779
19987 msgid ""
19988 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
19989 "volumes created in this volume group."
19990 msgstr ""
19991
19992 # type: textblock
19993 #. type: textblock
19994 #: ../src/guestfs-actions.pod:7085
19995 msgid ""
19996 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
19997 "associate logical volumes and volume groups."
19998 msgstr ""
19999
20000 # type: textblock
20001 #. type: textblock
20002 #: ../src/guestfs-actions.pod:7088
20003 msgid "See also C<guestfs_vgpvuuids>."
20004 msgstr ""
20005
20006 # type: =head2
20007 #. type: =head2
20008 #: ../src/guestfs-actions.pod:7096
20009 msgid "guestfs_vgpvuuids"
20010 msgstr ""
20011
20012 # type: verbatim
20013 #. type: verbatim
20014 #: ../src/guestfs-actions.pod:7098
20015 #, no-wrap
20016 msgid ""
20017 " char **\n"
20018 " guestfs_vgpvuuids (guestfs_h *g,\n"
20019 "                    const char *vgname);\n"
20020 "\n"
20021 msgstr ""
20022
20023 # type: textblock
20024 #. type: textblock
20025 #: ../src/guestfs-actions.pod:7102 ../fish/guestfish-actions.pod:4791
20026 msgid ""
20027 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
20028 "volumes that this volume group resides on."
20029 msgstr ""
20030
20031 # type: textblock
20032 #. type: textblock
20033 #: ../src/guestfs-actions.pod:7105
20034 msgid ""
20035 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
20036 "associate physical volumes and volume groups."
20037 msgstr ""
20038
20039 # type: textblock
20040 #. type: textblock
20041 #: ../src/guestfs-actions.pod:7108
20042 msgid "See also C<guestfs_vglvuuids>."
20043 msgstr ""
20044
20045 # type: =head2
20046 #. type: =head2
20047 #: ../src/guestfs-actions.pod:7116
20048 msgid "guestfs_vgremove"
20049 msgstr ""
20050
20051 # type: verbatim
20052 #. type: verbatim
20053 #: ../src/guestfs-actions.pod:7118
20054 #, no-wrap
20055 msgid ""
20056 " int\n"
20057 " guestfs_vgremove (guestfs_h *g,\n"
20058 "                   const char *vgname);\n"
20059 "\n"
20060 msgstr ""
20061
20062 # type: textblock
20063 #. type: textblock
20064 #: ../src/guestfs-actions.pod:7122 ../fish/guestfish-actions.pod:4803
20065 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
20066 msgstr ""
20067
20068 # type: textblock
20069 #. type: textblock
20070 #: ../src/guestfs-actions.pod:7124 ../fish/guestfish-actions.pod:4805
20071 msgid ""
20072 "This also forcibly removes all logical volumes in the volume group (if any)."
20073 msgstr ""
20074
20075 # type: =head2
20076 #. type: =head2
20077 #: ../src/guestfs-actions.pod:7131
20078 msgid "guestfs_vgrename"
20079 msgstr ""
20080
20081 # type: verbatim
20082 #. type: verbatim
20083 #: ../src/guestfs-actions.pod:7133
20084 #, no-wrap
20085 msgid ""
20086 " int\n"
20087 " guestfs_vgrename (guestfs_h *g,\n"
20088 "                   const char *volgroup,\n"
20089 "                   const char *newvolgroup);\n"
20090 "\n"
20091 msgstr ""
20092
20093 # type: textblock
20094 #. type: textblock
20095 #: ../src/guestfs-actions.pod:7138 ../fish/guestfish-actions.pod:4812
20096 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
20097 msgstr ""
20098
20099 # type: =head2
20100 #. type: =head2
20101 #: ../src/guestfs-actions.pod:7144
20102 msgid "guestfs_vgs"
20103 msgstr ""
20104
20105 # type: verbatim
20106 #. type: verbatim
20107 #: ../src/guestfs-actions.pod:7146
20108 #, no-wrap
20109 msgid ""
20110 " char **\n"
20111 " guestfs_vgs (guestfs_h *g);\n"
20112 "\n"
20113 msgstr ""
20114
20115 # type: textblock
20116 #. type: textblock
20117 #: ../src/guestfs-actions.pod:7149 ../fish/guestfish-actions.pod:4818
20118 msgid ""
20119 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20120 "> command."
20121 msgstr ""
20122
20123 # type: textblock
20124 #. type: textblock
20125 #: ../src/guestfs-actions.pod:7152 ../fish/guestfish-actions.pod:4821
20126 msgid ""
20127 "This returns a list of just the volume group names that were detected (eg. "
20128 "C<VolGroup00>)."
20129 msgstr ""
20130
20131 # type: textblock
20132 #. type: textblock
20133 #: ../src/guestfs-actions.pod:7155
20134 msgid "See also C<guestfs_vgs_full>."
20135 msgstr ""
20136
20137 # type: =head2
20138 #. type: =head2
20139 #: ../src/guestfs-actions.pod:7163
20140 msgid "guestfs_vgs_full"
20141 msgstr ""
20142
20143 # type: verbatim
20144 #. type: verbatim
20145 #: ../src/guestfs-actions.pod:7165
20146 #, no-wrap
20147 msgid ""
20148 " struct guestfs_lvm_vg_list *\n"
20149 " guestfs_vgs_full (guestfs_h *g);\n"
20150 "\n"
20151 msgstr ""
20152
20153 # type: textblock
20154 #. type: textblock
20155 #: ../src/guestfs-actions.pod:7168 ../fish/guestfish-actions.pod:4830
20156 msgid ""
20157 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
20158 "> command.  The \"full\" version includes all fields."
20159 msgstr ""
20160
20161 # type: textblock
20162 #. type: textblock
20163 #: ../src/guestfs-actions.pod:7171
20164 msgid ""
20165 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
20166 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
20167 msgstr ""
20168
20169 # type: =head2
20170 #. type: =head2
20171 #: ../src/guestfs-actions.pod:7177
20172 msgid "guestfs_vgscan"
20173 msgstr ""
20174
20175 # type: verbatim
20176 #. type: verbatim
20177 #: ../src/guestfs-actions.pod:7179
20178 #, no-wrap
20179 msgid ""
20180 " int\n"
20181 " guestfs_vgscan (guestfs_h *g);\n"
20182 "\n"
20183 msgstr ""
20184
20185 # type: textblock
20186 #. type: textblock
20187 #: ../src/guestfs-actions.pod:7182 ../fish/guestfish-actions.pod:4837
20188 msgid ""
20189 "This rescans all block devices and rebuilds the list of LVM physical "
20190 "volumes, volume groups and logical volumes."
20191 msgstr ""
20192
20193 # type: =head2
20194 #. type: =head2
20195 #: ../src/guestfs-actions.pod:7189
20196 msgid "guestfs_vguuid"
20197 msgstr ""
20198
20199 # type: verbatim
20200 #. type: verbatim
20201 #: ../src/guestfs-actions.pod:7191
20202 #, no-wrap
20203 msgid ""
20204 " char *\n"
20205 " guestfs_vguuid (guestfs_h *g,\n"
20206 "                 const char *vgname);\n"
20207 "\n"
20208 msgstr ""
20209
20210 # type: textblock
20211 #. type: textblock
20212 #: ../src/guestfs-actions.pod:7195 ../fish/guestfish-actions.pod:4844
20213 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20214 msgstr ""
20215
20216 # type: =head2
20217 #. type: =head2
20218 #: ../src/guestfs-actions.pod:7202
20219 msgid "guestfs_wait_ready"
20220 msgstr ""
20221
20222 # type: verbatim
20223 #. type: verbatim
20224 #: ../src/guestfs-actions.pod:7204
20225 #, no-wrap
20226 msgid ""
20227 " int\n"
20228 " guestfs_wait_ready (guestfs_h *g);\n"
20229 "\n"
20230 msgstr ""
20231
20232 # type: textblock
20233 #. type: textblock
20234 #: ../src/guestfs-actions.pod:7207
20235 msgid "This function is a no op."
20236 msgstr ""
20237
20238 # type: textblock
20239 #. type: textblock
20240 #: ../src/guestfs-actions.pod:7209
20241 msgid ""
20242 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20243 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
20244 "is no longer necessary because C<guestfs_launch> now does the waiting."
20245 msgstr ""
20246
20247 # type: textblock
20248 #. type: textblock
20249 #: ../src/guestfs-actions.pod:7214
20250 msgid ""
20251 "If you see any calls to this function in code then you can just remove them, "
20252 "unless you want to retain compatibility with older versions of the API."
20253 msgstr ""
20254
20255 #. type: textblock
20256 #: ../src/guestfs-actions.pod:7220
20257 msgid ""
20258 "This function is deprecated.  In new code, use the C<launch> call instead."
20259 msgstr ""
20260
20261 # type: =head2
20262 #. type: =head2
20263 #: ../src/guestfs-actions.pod:7229
20264 msgid "guestfs_wc_c"
20265 msgstr ""
20266
20267 # type: verbatim
20268 #. type: verbatim
20269 #: ../src/guestfs-actions.pod:7231
20270 #, no-wrap
20271 msgid ""
20272 " int\n"
20273 " guestfs_wc_c (guestfs_h *g,\n"
20274 "               const char *path);\n"
20275 "\n"
20276 msgstr ""
20277
20278 # type: textblock
20279 #. type: textblock
20280 #: ../src/guestfs-actions.pod:7235 ../fish/guestfish-actions.pod:4850
20281 msgid ""
20282 "This command counts the characters in a file, using the C<wc -c> external "
20283 "command."
20284 msgstr ""
20285
20286 # type: =head2
20287 #. type: =head2
20288 #: ../src/guestfs-actions.pod:7242
20289 msgid "guestfs_wc_l"
20290 msgstr ""
20291
20292 # type: verbatim
20293 #. type: verbatim
20294 #: ../src/guestfs-actions.pod:7244
20295 #, no-wrap
20296 msgid ""
20297 " int\n"
20298 " guestfs_wc_l (guestfs_h *g,\n"
20299 "               const char *path);\n"
20300 "\n"
20301 msgstr ""
20302
20303 # type: textblock
20304 #. type: textblock
20305 #: ../src/guestfs-actions.pod:7248 ../fish/guestfish-actions.pod:4857
20306 msgid ""
20307 "This command counts the lines in a file, using the C<wc -l> external command."
20308 msgstr ""
20309
20310 # type: =head2
20311 #. type: =head2
20312 #: ../src/guestfs-actions.pod:7255
20313 msgid "guestfs_wc_w"
20314 msgstr ""
20315
20316 # type: verbatim
20317 #. type: verbatim
20318 #: ../src/guestfs-actions.pod:7257
20319 #, no-wrap
20320 msgid ""
20321 " int\n"
20322 " guestfs_wc_w (guestfs_h *g,\n"
20323 "               const char *path);\n"
20324 "\n"
20325 msgstr ""
20326
20327 # type: textblock
20328 #. type: textblock
20329 #: ../src/guestfs-actions.pod:7261 ../fish/guestfish-actions.pod:4864
20330 msgid ""
20331 "This command counts the words in a file, using the C<wc -w> external command."
20332 msgstr ""
20333
20334 # type: =head2
20335 #. type: =head2
20336 #: ../src/guestfs-actions.pod:7268
20337 msgid "guestfs_write"
20338 msgstr ""
20339
20340 # type: verbatim
20341 #. type: verbatim
20342 #: ../src/guestfs-actions.pod:7270
20343 #, no-wrap
20344 msgid ""
20345 " int\n"
20346 " guestfs_write (guestfs_h *g,\n"
20347 "                const char *path,\n"
20348 "                const char *content,\n"
20349 "                size_t content_size);\n"
20350 "\n"
20351 msgstr ""
20352
20353 # type: textblock
20354 #. type: textblock
20355 #: ../src/guestfs-actions.pod:7276 ../fish/guestfish-actions.pod:4871
20356 msgid ""
20357 "This call creates a file called C<path>.  The content of the file is the "
20358 "string C<content> (which can contain any 8 bit data)."
20359 msgstr ""
20360
20361 # type: =head2
20362 #. type: =head2
20363 #: ../src/guestfs-actions.pod:7286
20364 msgid "guestfs_write_file"
20365 msgstr ""
20366
20367 # type: verbatim
20368 #. type: verbatim
20369 #: ../src/guestfs-actions.pod:7288
20370 #, no-wrap
20371 msgid ""
20372 " int\n"
20373 " guestfs_write_file (guestfs_h *g,\n"
20374 "                     const char *path,\n"
20375 "                     const char *content,\n"
20376 "                     int size);\n"
20377 "\n"
20378 msgstr ""
20379
20380 # type: textblock
20381 #. type: textblock
20382 #: ../src/guestfs-actions.pod:7294 ../fish/guestfish-actions.pod:4881
20383 msgid ""
20384 "This call creates a file called C<path>.  The contents of the file is the "
20385 "string C<content> (which can contain any 8 bit data), with length C<size>."
20386 msgstr ""
20387
20388 # type: textblock
20389 #. type: textblock
20390 #: ../src/guestfs-actions.pod:7298 ../fish/guestfish-actions.pod:4885
20391 msgid ""
20392 "As a special case, if C<size> is C<0> then the length is calculated using "
20393 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20394 msgstr ""
20395
20396 # type: textblock
20397 #. type: textblock
20398 #: ../src/guestfs-actions.pod:7302 ../fish/guestfish-actions.pod:4889
20399 msgid ""
20400 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20401 "I<not> work, even if the length is specified."
20402 msgstr ""
20403
20404 # type: textblock
20405 #. type: textblock
20406 #: ../src/guestfs-actions.pod:7310 ../fish/guestfish-actions.pod:4895
20407 msgid ""
20408 "This function is deprecated.  In new code, use the C<write> call instead."
20409 msgstr ""
20410
20411 # type: =head2
20412 #. type: =head2
20413 #: ../src/guestfs-actions.pod:7319
20414 msgid "guestfs_zegrep"
20415 msgstr ""
20416
20417 # type: verbatim
20418 #. type: verbatim
20419 #: ../src/guestfs-actions.pod:7321
20420 #, no-wrap
20421 msgid ""
20422 " char **\n"
20423 " guestfs_zegrep (guestfs_h *g,\n"
20424 "                 const char *regex,\n"
20425 "                 const char *path);\n"
20426 "\n"
20427 msgstr ""
20428
20429 # type: textblock
20430 #. type: textblock
20431 #: ../src/guestfs-actions.pod:7326 ../fish/guestfish-actions.pod:4906
20432 msgid ""
20433 "This calls the external C<zegrep> program and returns the matching lines."
20434 msgstr ""
20435
20436 # type: =head2
20437 #. type: =head2
20438 #: ../src/guestfs-actions.pod:7338
20439 msgid "guestfs_zegrepi"
20440 msgstr ""
20441
20442 # type: verbatim
20443 #. type: verbatim
20444 #: ../src/guestfs-actions.pod:7340
20445 #, no-wrap
20446 msgid ""
20447 " char **\n"
20448 " guestfs_zegrepi (guestfs_h *g,\n"
20449 "                  const char *regex,\n"
20450 "                  const char *path);\n"
20451 "\n"
20452 msgstr ""
20453
20454 # type: textblock
20455 #. type: textblock
20456 #: ../src/guestfs-actions.pod:7345 ../fish/guestfish-actions.pod:4916
20457 msgid ""
20458 "This calls the external C<zegrep -i> program and returns the matching lines."
20459 msgstr ""
20460
20461 # type: =head2
20462 #. type: =head2
20463 #: ../src/guestfs-actions.pod:7357
20464 msgid "guestfs_zero"
20465 msgstr ""
20466
20467 # type: verbatim
20468 #. type: verbatim
20469 #: ../src/guestfs-actions.pod:7359
20470 #, no-wrap
20471 msgid ""
20472 " int\n"
20473 " guestfs_zero (guestfs_h *g,\n"
20474 "               const char *device);\n"
20475 "\n"
20476 msgstr ""
20477
20478 # type: textblock
20479 #. type: textblock
20480 #: ../src/guestfs-actions.pod:7363 ../fish/guestfish-actions.pod:4926
20481 msgid "This command writes zeroes over the first few blocks of C<device>."
20482 msgstr ""
20483
20484 # type: textblock
20485 #. type: textblock
20486 #: ../src/guestfs-actions.pod:7365 ../fish/guestfish-actions.pod:4928
20487 msgid ""
20488 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20489 "securely wipe the device).  It should be sufficient to remove any partition "
20490 "tables, filesystem superblocks and so on."
20491 msgstr ""
20492
20493 # type: textblock
20494 #. type: textblock
20495 #: ../src/guestfs-actions.pod:7369
20496 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20497 msgstr ""
20498
20499 # type: =head2
20500 #. type: =head2
20501 #: ../src/guestfs-actions.pod:7380
20502 msgid "guestfs_zero_device"
20503 msgstr ""
20504
20505 # type: verbatim
20506 #. type: verbatim
20507 #: ../src/guestfs-actions.pod:7382
20508 #, no-wrap
20509 msgid ""
20510 " int\n"
20511 " guestfs_zero_device (guestfs_h *g,\n"
20512 "                      const char *device);\n"
20513 "\n"
20514 msgstr ""
20515
20516 # type: textblock
20517 #. type: textblock
20518 #: ../src/guestfs-actions.pod:7386
20519 msgid ""
20520 "This command writes zeroes over the entire C<device>.  Compare with "
20521 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20522 msgstr ""
20523
20524 # type: textblock
20525 #. type: textblock
20526 #: ../src/guestfs-actions.pod:7400
20527 msgid "(Added in 1.3.1)"
20528 msgstr ""
20529
20530 # type: =head2
20531 #. type: =head2
20532 #: ../src/guestfs-actions.pod:7402
20533 msgid "guestfs_zerofree"
20534 msgstr ""
20535
20536 # type: verbatim
20537 #. type: verbatim
20538 #: ../src/guestfs-actions.pod:7404
20539 #, no-wrap
20540 msgid ""
20541 " int\n"
20542 " guestfs_zerofree (guestfs_h *g,\n"
20543 "                   const char *device);\n"
20544 "\n"
20545 msgstr ""
20546
20547 # type: textblock
20548 #. type: textblock
20549 #: ../src/guestfs-actions.pod:7408 ../fish/guestfish-actions.pod:4949
20550 msgid ""
20551 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
20552 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20553 "possible to compress the filesystem more effectively."
20554 msgstr ""
20555
20556 # type: textblock
20557 #. type: textblock
20558 #: ../src/guestfs-actions.pod:7413 ../fish/guestfish-actions.pod:4954
20559 msgid "You should B<not> run this program if the filesystem is mounted."
20560 msgstr ""
20561
20562 # type: textblock
20563 #. type: textblock
20564 #: ../src/guestfs-actions.pod:7416 ../fish/guestfish-actions.pod:4957
20565 msgid ""
20566 "It is possible that using this program can damage the filesystem or data on "
20567 "the filesystem."
20568 msgstr ""
20569
20570 # type: =head2
20571 #. type: =head2
20572 #: ../src/guestfs-actions.pod:7423
20573 msgid "guestfs_zfgrep"
20574 msgstr ""
20575
20576 # type: verbatim
20577 #. type: verbatim
20578 #: ../src/guestfs-actions.pod:7425
20579 #, no-wrap
20580 msgid ""
20581 " char **\n"
20582 " guestfs_zfgrep (guestfs_h *g,\n"
20583 "                 const char *pattern,\n"
20584 "                 const char *path);\n"
20585 "\n"
20586 msgstr ""
20587
20588 # type: textblock
20589 #. type: textblock
20590 #: ../src/guestfs-actions.pod:7430 ../fish/guestfish-actions.pod:4964
20591 msgid ""
20592 "This calls the external C<zfgrep> program and returns the matching lines."
20593 msgstr ""
20594
20595 # type: =head2
20596 #. type: =head2
20597 #: ../src/guestfs-actions.pod:7442
20598 msgid "guestfs_zfgrepi"
20599 msgstr ""
20600
20601 # type: verbatim
20602 #. type: verbatim
20603 #: ../src/guestfs-actions.pod:7444
20604 #, no-wrap
20605 msgid ""
20606 " char **\n"
20607 " guestfs_zfgrepi (guestfs_h *g,\n"
20608 "                  const char *pattern,\n"
20609 "                  const char *path);\n"
20610 "\n"
20611 msgstr ""
20612
20613 # type: textblock
20614 #. type: textblock
20615 #: ../src/guestfs-actions.pod:7449 ../fish/guestfish-actions.pod:4974
20616 msgid ""
20617 "This calls the external C<zfgrep -i> program and returns the matching lines."
20618 msgstr ""
20619
20620 # type: =head2
20621 #. type: =head2
20622 #: ../src/guestfs-actions.pod:7461
20623 msgid "guestfs_zfile"
20624 msgstr ""
20625
20626 # type: verbatim
20627 #. type: verbatim
20628 #: ../src/guestfs-actions.pod:7463
20629 #, no-wrap
20630 msgid ""
20631 " char *\n"
20632 " guestfs_zfile (guestfs_h *g,\n"
20633 "                const char *meth,\n"
20634 "                const char *path);\n"
20635 "\n"
20636 msgstr ""
20637
20638 # type: textblock
20639 #. type: textblock
20640 #: ../src/guestfs-actions.pod:7468 ../fish/guestfish-actions.pod:4984
20641 msgid ""
20642 "This command runs C<file> after first decompressing C<path> using C<method>."
20643 msgstr ""
20644
20645 # type: textblock
20646 #. type: textblock
20647 #: ../src/guestfs-actions.pod:7471 ../fish/guestfish-actions.pod:4987
20648 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20649 msgstr ""
20650
20651 # type: textblock
20652 #. type: textblock
20653 #: ../src/guestfs-actions.pod:7473
20654 msgid ""
20655 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20656 "files."
20657 msgstr ""
20658
20659 # type: textblock
20660 #. type: textblock
20661 #: ../src/guestfs-actions.pod:7479 ../fish/guestfish-actions.pod:4992
20662 msgid ""
20663 "This function is deprecated.  In new code, use the C<file> call instead."
20664 msgstr ""
20665
20666 # type: =head2
20667 #. type: =head2
20668 #: ../src/guestfs-actions.pod:7488
20669 msgid "guestfs_zgrep"
20670 msgstr ""
20671
20672 # type: verbatim
20673 #. type: verbatim
20674 #: ../src/guestfs-actions.pod:7490
20675 #, no-wrap
20676 msgid ""
20677 " char **\n"
20678 " guestfs_zgrep (guestfs_h *g,\n"
20679 "                const char *regex,\n"
20680 "                const char *path);\n"
20681 "\n"
20682 msgstr ""
20683
20684 # type: textblock
20685 #. type: textblock
20686 #: ../src/guestfs-actions.pod:7495 ../fish/guestfish-actions.pod:5003
20687 msgid ""
20688 "This calls the external C<zgrep> program and returns the matching lines."
20689 msgstr ""
20690
20691 # type: =head2
20692 #. type: =head2
20693 #: ../src/guestfs-actions.pod:7507
20694 msgid "guestfs_zgrepi"
20695 msgstr ""
20696
20697 # type: verbatim
20698 #. type: verbatim
20699 #: ../src/guestfs-actions.pod:7509
20700 #, no-wrap
20701 msgid ""
20702 " char **\n"
20703 " guestfs_zgrepi (guestfs_h *g,\n"
20704 "                 const char *regex,\n"
20705 "                 const char *path);\n"
20706 "\n"
20707 msgstr ""
20708
20709 # type: textblock
20710 #. type: textblock
20711 #: ../src/guestfs-actions.pod:7514 ../fish/guestfish-actions.pod:5013
20712 msgid ""
20713 "This calls the external C<zgrep -i> program and returns the matching lines."
20714 msgstr ""
20715
20716 # type: =item
20717 #. type: =item
20718 #: ../src/guestfs-availability.pod:3
20719 msgid "B<augeas>"
20720 msgstr ""
20721
20722 # type: textblock
20723 #. type: textblock
20724 #: ../src/guestfs-availability.pod:5
20725 msgid ""
20726 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20727 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20728 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20729 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20730 "L</guestfs_aug_save> L</guestfs_aug_set>"
20731 msgstr ""
20732
20733 # type: =item
20734 #. type: =item
20735 #: ../src/guestfs-availability.pod:21
20736 msgid "B<inotify>"
20737 msgstr ""
20738
20739 # type: textblock
20740 #. type: textblock
20741 #: ../src/guestfs-availability.pod:23
20742 msgid ""
20743 "The following functions: L</guestfs_inotify_add_watch> L</"
20744 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20745 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20746 msgstr ""
20747
20748 # type: =item
20749 #. type: =item
20750 #: ../src/guestfs-availability.pod:31
20751 msgid "B<linuxfsuuid>"
20752 msgstr ""
20753
20754 # type: textblock
20755 #. type: textblock
20756 #: ../src/guestfs-availability.pod:33
20757 msgid ""
20758 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20759 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20760 msgstr ""
20761
20762 # type: =item
20763 #. type: =item
20764 #: ../src/guestfs-availability.pod:40
20765 msgid "B<linuxmodules>"
20766 msgstr ""
20767
20768 # type: textblock
20769 #. type: textblock
20770 #: ../src/guestfs-availability.pod:42
20771 msgid "The following functions: L</guestfs_modprobe>"
20772 msgstr ""
20773
20774 # type: =item
20775 #. type: =item
20776 #: ../src/guestfs-availability.pod:45
20777 msgid "B<linuxxattrs>"
20778 msgstr ""
20779
20780 # type: textblock
20781 #. type: textblock
20782 #: ../src/guestfs-availability.pod:47
20783 msgid ""
20784 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20785 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20786 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20787 "guestfs_setxattr>"
20788 msgstr ""
20789
20790 # type: =item
20791 #. type: =item
20792 #: ../src/guestfs-availability.pod:58
20793 msgid "B<luks>"
20794 msgstr ""
20795
20796 # type: textblock
20797 #. type: textblock
20798 #: ../src/guestfs-availability.pod:60
20799 msgid ""
20800 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20801 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20802 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20803 msgstr ""
20804
20805 # type: =item
20806 #. type: =item
20807 #: ../src/guestfs-availability.pod:69
20808 msgid "B<lvm2>"
20809 msgstr ""
20810
20811 # type: textblock
20812 #. type: textblock
20813 #: ../src/guestfs-availability.pod:71
20814 msgid ""
20815 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20816 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20817 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20818 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20819 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20820 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20821 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20822 msgstr ""
20823
20824 # type: =item
20825 #. type: =item
20826 #: ../src/guestfs-availability.pod:94
20827 msgid "B<mknod>"
20828 msgstr ""
20829
20830 # type: textblock
20831 #. type: textblock
20832 #: ../src/guestfs-availability.pod:96
20833 msgid ""
20834 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20835 "guestfs_mknod_b> L</guestfs_mknod_c>"
20836 msgstr ""
20837
20838 # type: =item
20839 #. type: =item
20840 #: ../src/guestfs-availability.pod:102
20841 msgid "B<ntfs3g>"
20842 msgstr ""
20843
20844 # type: textblock
20845 #. type: textblock
20846 #: ../src/guestfs-availability.pod:104
20847 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20848 msgstr ""
20849
20850 # type: =item
20851 #. type: =item
20852 #: ../src/guestfs-availability.pod:107
20853 msgid "B<ntfsprogs>"
20854 msgstr ""
20855
20856 # type: textblock
20857 #. type: textblock
20858 #: ../src/guestfs-availability.pod:109
20859 msgid ""
20860 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20861 msgstr ""
20862
20863 # type: =item
20864 #. type: =item
20865 #: ../src/guestfs-availability.pod:113
20866 msgid "B<realpath>"
20867 msgstr ""
20868
20869 # type: textblock
20870 #. type: textblock
20871 #: ../src/guestfs-availability.pod:115
20872 msgid "The following functions: L</guestfs_realpath>"
20873 msgstr ""
20874
20875 # type: =item
20876 #. type: =item
20877 #: ../src/guestfs-availability.pod:118
20878 msgid "B<scrub>"
20879 msgstr ""
20880
20881 # type: textblock
20882 #. type: textblock
20883 #: ../src/guestfs-availability.pod:120
20884 msgid ""
20885 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20886 "guestfs_scrub_freespace>"
20887 msgstr ""
20888
20889 # type: =item
20890 #. type: =item
20891 #: ../src/guestfs-availability.pod:125
20892 msgid "B<selinux>"
20893 msgstr ""
20894
20895 # type: textblock
20896 #. type: textblock
20897 #: ../src/guestfs-availability.pod:127
20898 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20899 msgstr ""
20900
20901 # type: =item
20902 #. type: =item
20903 #: ../src/guestfs-availability.pod:131
20904 msgid "B<xz>"
20905 msgstr ""
20906
20907 # type: textblock
20908 #. type: textblock
20909 #: ../src/guestfs-availability.pod:133
20910 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20911 msgstr ""
20912
20913 # type: =item
20914 #. type: =item
20915 #: ../src/guestfs-availability.pod:137
20916 msgid "B<zerofree>"
20917 msgstr ""
20918
20919 # type: textblock
20920 #. type: textblock
20921 #: ../src/guestfs-availability.pod:139
20922 msgid "The following functions: L</guestfs_zerofree>"
20923 msgstr ""
20924
20925 # type: =head2
20926 #. type: =head2
20927 #: ../src/guestfs-structs.pod:1
20928 msgid "guestfs_int_bool"
20929 msgstr ""
20930
20931 # type: verbatim
20932 #. type: verbatim
20933 #: ../src/guestfs-structs.pod:3
20934 #, no-wrap
20935 msgid ""
20936 " struct guestfs_int_bool {\n"
20937 "   int32_t i;\n"
20938 "   int32_t b;\n"
20939 " };\n"
20940 " \n"
20941 msgstr ""
20942
20943 # type: verbatim
20944 #. type: verbatim
20945 #: ../src/guestfs-structs.pod:8
20946 #, no-wrap
20947 msgid ""
20948 " struct guestfs_int_bool_list {\n"
20949 "   uint32_t len; /* Number of elements in list. */\n"
20950 "   struct guestfs_int_bool *val; /* Elements. */\n"
20951 " };\n"
20952 " \n"
20953 msgstr ""
20954
20955 # type: verbatim
20956 #. type: verbatim
20957 #: ../src/guestfs-structs.pod:13
20958 #, no-wrap
20959 msgid ""
20960 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20961 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20962 "\n"
20963 msgstr ""
20964
20965 # type: =head2
20966 #. type: =head2
20967 #: ../src/guestfs-structs.pod:16
20968 msgid "guestfs_lvm_pv"
20969 msgstr ""
20970
20971 # type: verbatim
20972 #. type: verbatim
20973 #: ../src/guestfs-structs.pod:18
20974 #, no-wrap
20975 msgid ""
20976 " struct guestfs_lvm_pv {\n"
20977 "   char *pv_name;\n"
20978 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20979 "   char pv_uuid[32];\n"
20980 "   char *pv_fmt;\n"
20981 "   uint64_t pv_size;\n"
20982 "   uint64_t dev_size;\n"
20983 "   uint64_t pv_free;\n"
20984 "   uint64_t pv_used;\n"
20985 "   char *pv_attr;\n"
20986 "   int64_t pv_pe_count;\n"
20987 "   int64_t pv_pe_alloc_count;\n"
20988 "   char *pv_tags;\n"
20989 "   uint64_t pe_start;\n"
20990 "   int64_t pv_mda_count;\n"
20991 "   uint64_t pv_mda_free;\n"
20992 " };\n"
20993 " \n"
20994 msgstr ""
20995
20996 # type: verbatim
20997 #. type: verbatim
20998 #: ../src/guestfs-structs.pod:36
20999 #, no-wrap
21000 msgid ""
21001 " struct guestfs_lvm_pv_list {\n"
21002 "   uint32_t len; /* Number of elements in list. */\n"
21003 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
21004 " };\n"
21005 " \n"
21006 msgstr ""
21007
21008 # type: verbatim
21009 #. type: verbatim
21010 #: ../src/guestfs-structs.pod:41
21011 #, no-wrap
21012 msgid ""
21013 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
21014 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
21015 "\n"
21016 msgstr ""
21017
21018 # type: =head2
21019 #. type: =head2
21020 #: ../src/guestfs-structs.pod:44
21021 msgid "guestfs_lvm_vg"
21022 msgstr ""
21023
21024 # type: verbatim
21025 #. type: verbatim
21026 #: ../src/guestfs-structs.pod:46
21027 #, no-wrap
21028 msgid ""
21029 " struct guestfs_lvm_vg {\n"
21030 "   char *vg_name;\n"
21031 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21032 "   char vg_uuid[32];\n"
21033 "   char *vg_fmt;\n"
21034 "   char *vg_attr;\n"
21035 "   uint64_t vg_size;\n"
21036 "   uint64_t vg_free;\n"
21037 "   char *vg_sysid;\n"
21038 "   uint64_t vg_extent_size;\n"
21039 "   int64_t vg_extent_count;\n"
21040 "   int64_t vg_free_count;\n"
21041 "   int64_t max_lv;\n"
21042 "   int64_t max_pv;\n"
21043 "   int64_t pv_count;\n"
21044 "   int64_t lv_count;\n"
21045 "   int64_t snap_count;\n"
21046 "   int64_t vg_seqno;\n"
21047 "   char *vg_tags;\n"
21048 "   int64_t vg_mda_count;\n"
21049 "   uint64_t vg_mda_free;\n"
21050 " };\n"
21051 " \n"
21052 msgstr ""
21053
21054 # type: verbatim
21055 #. type: verbatim
21056 #: ../src/guestfs-structs.pod:69
21057 #, no-wrap
21058 msgid ""
21059 " struct guestfs_lvm_vg_list {\n"
21060 "   uint32_t len; /* Number of elements in list. */\n"
21061 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
21062 " };\n"
21063 " \n"
21064 msgstr ""
21065
21066 # type: verbatim
21067 #. type: verbatim
21068 #: ../src/guestfs-structs.pod:74
21069 #, no-wrap
21070 msgid ""
21071 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
21072 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
21073 "\n"
21074 msgstr ""
21075
21076 # type: =head2
21077 #. type: =head2
21078 #: ../src/guestfs-structs.pod:77
21079 msgid "guestfs_lvm_lv"
21080 msgstr ""
21081
21082 # type: verbatim
21083 #. type: verbatim
21084 #: ../src/guestfs-structs.pod:79
21085 #, no-wrap
21086 msgid ""
21087 " struct guestfs_lvm_lv {\n"
21088 "   char *lv_name;\n"
21089 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
21090 "   char lv_uuid[32];\n"
21091 "   char *lv_attr;\n"
21092 "   int64_t lv_major;\n"
21093 "   int64_t lv_minor;\n"
21094 "   int64_t lv_kernel_major;\n"
21095 "   int64_t lv_kernel_minor;\n"
21096 "   uint64_t lv_size;\n"
21097 "   int64_t seg_count;\n"
21098 "   char *origin;\n"
21099 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21100 "   float snap_percent;\n"
21101 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
21102 "   float copy_percent;\n"
21103 "   char *move_pv;\n"
21104 "   char *lv_tags;\n"
21105 "   char *mirror_log;\n"
21106 "   char *modules;\n"
21107 " };\n"
21108 " \n"
21109 msgstr ""
21110
21111 # type: verbatim
21112 #. type: verbatim
21113 #: ../src/guestfs-structs.pod:101
21114 #, no-wrap
21115 msgid ""
21116 " struct guestfs_lvm_lv_list {\n"
21117 "   uint32_t len; /* Number of elements in list. */\n"
21118 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
21119 " };\n"
21120 " \n"
21121 msgstr ""
21122
21123 # type: verbatim
21124 #. type: verbatim
21125 #: ../src/guestfs-structs.pod:106
21126 #, no-wrap
21127 msgid ""
21128 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
21129 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
21130 "\n"
21131 msgstr ""
21132
21133 # type: verbatim
21134 #. type: verbatim
21135 #: ../src/guestfs-structs.pod:111
21136 #, no-wrap
21137 msgid ""
21138 " struct guestfs_stat {\n"
21139 "   int64_t dev;\n"
21140 "   int64_t ino;\n"
21141 "   int64_t mode;\n"
21142 "   int64_t nlink;\n"
21143 "   int64_t uid;\n"
21144 "   int64_t gid;\n"
21145 "   int64_t rdev;\n"
21146 "   int64_t size;\n"
21147 "   int64_t blksize;\n"
21148 "   int64_t blocks;\n"
21149 "   int64_t atime;\n"
21150 "   int64_t mtime;\n"
21151 "   int64_t ctime;\n"
21152 " };\n"
21153 " \n"
21154 msgstr ""
21155
21156 # type: verbatim
21157 #. type: verbatim
21158 #: ../src/guestfs-structs.pod:127
21159 #, no-wrap
21160 msgid ""
21161 " struct guestfs_stat_list {\n"
21162 "   uint32_t len; /* Number of elements in list. */\n"
21163 "   struct guestfs_stat *val; /* Elements. */\n"
21164 " };\n"
21165 " \n"
21166 msgstr ""
21167
21168 # type: verbatim
21169 #. type: verbatim
21170 #: ../src/guestfs-structs.pod:132
21171 #, no-wrap
21172 msgid ""
21173 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
21174 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
21175 "\n"
21176 msgstr ""
21177
21178 # type: verbatim
21179 #. type: verbatim
21180 #: ../src/guestfs-structs.pod:137
21181 #, no-wrap
21182 msgid ""
21183 " struct guestfs_statvfs {\n"
21184 "   int64_t bsize;\n"
21185 "   int64_t frsize;\n"
21186 "   int64_t blocks;\n"
21187 "   int64_t bfree;\n"
21188 "   int64_t bavail;\n"
21189 "   int64_t files;\n"
21190 "   int64_t ffree;\n"
21191 "   int64_t favail;\n"
21192 "   int64_t fsid;\n"
21193 "   int64_t flag;\n"
21194 "   int64_t namemax;\n"
21195 " };\n"
21196 " \n"
21197 msgstr ""
21198
21199 # type: verbatim
21200 #. type: verbatim
21201 #: ../src/guestfs-structs.pod:151
21202 #, no-wrap
21203 msgid ""
21204 " struct guestfs_statvfs_list {\n"
21205 "   uint32_t len; /* Number of elements in list. */\n"
21206 "   struct guestfs_statvfs *val; /* Elements. */\n"
21207 " };\n"
21208 " \n"
21209 msgstr ""
21210
21211 # type: verbatim
21212 #. type: verbatim
21213 #: ../src/guestfs-structs.pod:156
21214 #, no-wrap
21215 msgid ""
21216 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21217 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21218 "\n"
21219 msgstr ""
21220
21221 # type: =head2
21222 #. type: =head2
21223 #: ../src/guestfs-structs.pod:159
21224 msgid "guestfs_dirent"
21225 msgstr ""
21226
21227 # type: verbatim
21228 #. type: verbatim
21229 #: ../src/guestfs-structs.pod:161
21230 #, no-wrap
21231 msgid ""
21232 " struct guestfs_dirent {\n"
21233 "   int64_t ino;\n"
21234 "   char ftyp;\n"
21235 "   char *name;\n"
21236 " };\n"
21237 " \n"
21238 msgstr ""
21239
21240 # type: verbatim
21241 #. type: verbatim
21242 #: ../src/guestfs-structs.pod:167
21243 #, no-wrap
21244 msgid ""
21245 " struct guestfs_dirent_list {\n"
21246 "   uint32_t len; /* Number of elements in list. */\n"
21247 "   struct guestfs_dirent *val; /* Elements. */\n"
21248 " };\n"
21249 " \n"
21250 msgstr ""
21251
21252 # type: verbatim
21253 #. type: verbatim
21254 #: ../src/guestfs-structs.pod:172
21255 #, no-wrap
21256 msgid ""
21257 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21258 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21259 "\n"
21260 msgstr ""
21261
21262 # type: verbatim
21263 #. type: verbatim
21264 #: ../src/guestfs-structs.pod:177
21265 #, no-wrap
21266 msgid ""
21267 " struct guestfs_version {\n"
21268 "   int64_t major;\n"
21269 "   int64_t minor;\n"
21270 "   int64_t release;\n"
21271 "   char *extra;\n"
21272 " };\n"
21273 " \n"
21274 msgstr ""
21275
21276 # type: verbatim
21277 #. type: verbatim
21278 #: ../src/guestfs-structs.pod:184
21279 #, no-wrap
21280 msgid ""
21281 " struct guestfs_version_list {\n"
21282 "   uint32_t len; /* Number of elements in list. */\n"
21283 "   struct guestfs_version *val; /* Elements. */\n"
21284 " };\n"
21285 " \n"
21286 msgstr ""
21287
21288 # type: verbatim
21289 #. type: verbatim
21290 #: ../src/guestfs-structs.pod:189
21291 #, no-wrap
21292 msgid ""
21293 " void guestfs_free_version (struct guestfs_free_version *);\n"
21294 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21295 "\n"
21296 msgstr ""
21297
21298 # type: =head2
21299 #. type: =head2
21300 #: ../src/guestfs-structs.pod:192
21301 msgid "guestfs_xattr"
21302 msgstr ""
21303
21304 # type: verbatim
21305 #. type: verbatim
21306 #: ../src/guestfs-structs.pod:194
21307 #, no-wrap
21308 msgid ""
21309 " struct guestfs_xattr {\n"
21310 "   char *attrname;\n"
21311 "   /* The next two fields describe a byte array. */\n"
21312 "   uint32_t attrval_len;\n"
21313 "   char *attrval;\n"
21314 " };\n"
21315 " \n"
21316 msgstr ""
21317
21318 # type: verbatim
21319 #. type: verbatim
21320 #: ../src/guestfs-structs.pod:201
21321 #, no-wrap
21322 msgid ""
21323 " struct guestfs_xattr_list {\n"
21324 "   uint32_t len; /* Number of elements in list. */\n"
21325 "   struct guestfs_xattr *val; /* Elements. */\n"
21326 " };\n"
21327 " \n"
21328 msgstr ""
21329
21330 # type: verbatim
21331 #. type: verbatim
21332 #: ../src/guestfs-structs.pod:206
21333 #, no-wrap
21334 msgid ""
21335 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21336 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21337 "\n"
21338 msgstr ""
21339
21340 # type: =head2
21341 #. type: =head2
21342 #: ../src/guestfs-structs.pod:209
21343 msgid "guestfs_inotify_event"
21344 msgstr ""
21345
21346 # type: verbatim
21347 #. type: verbatim
21348 #: ../src/guestfs-structs.pod:211
21349 #, no-wrap
21350 msgid ""
21351 " struct guestfs_inotify_event {\n"
21352 "   int64_t in_wd;\n"
21353 "   uint32_t in_mask;\n"
21354 "   uint32_t in_cookie;\n"
21355 "   char *in_name;\n"
21356 " };\n"
21357 " \n"
21358 msgstr ""
21359
21360 # type: verbatim
21361 #. type: verbatim
21362 #: ../src/guestfs-structs.pod:218
21363 #, no-wrap
21364 msgid ""
21365 " struct guestfs_inotify_event_list {\n"
21366 "   uint32_t len; /* Number of elements in list. */\n"
21367 "   struct guestfs_inotify_event *val; /* Elements. */\n"
21368 " };\n"
21369 " \n"
21370 msgstr ""
21371
21372 # type: verbatim
21373 #. type: verbatim
21374 #: ../src/guestfs-structs.pod:223
21375 #, no-wrap
21376 msgid ""
21377 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21378 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21379 "\n"
21380 msgstr ""
21381
21382 # type: =head2
21383 #. type: =head2
21384 #: ../src/guestfs-structs.pod:226
21385 msgid "guestfs_partition"
21386 msgstr ""
21387
21388 # type: verbatim
21389 #. type: verbatim
21390 #: ../src/guestfs-structs.pod:228
21391 #, no-wrap
21392 msgid ""
21393 " struct guestfs_partition {\n"
21394 "   int32_t part_num;\n"
21395 "   uint64_t part_start;\n"
21396 "   uint64_t part_end;\n"
21397 "   uint64_t part_size;\n"
21398 " };\n"
21399 " \n"
21400 msgstr ""
21401
21402 # type: verbatim
21403 #. type: verbatim
21404 #: ../src/guestfs-structs.pod:235
21405 #, no-wrap
21406 msgid ""
21407 " struct guestfs_partition_list {\n"
21408 "   uint32_t len; /* Number of elements in list. */\n"
21409 "   struct guestfs_partition *val; /* Elements. */\n"
21410 " };\n"
21411 " \n"
21412 msgstr ""
21413
21414 # type: verbatim
21415 #. type: verbatim
21416 #: ../src/guestfs-structs.pod:240
21417 #, no-wrap
21418 msgid ""
21419 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21420 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21421 "\n"
21422 msgstr ""
21423
21424 # type: =head2
21425 #. type: =head2
21426 #: ../src/guestfs-structs.pod:243
21427 msgid "guestfs_application"
21428 msgstr ""
21429
21430 # type: verbatim
21431 #. type: verbatim
21432 #: ../src/guestfs-structs.pod:245
21433 #, no-wrap
21434 msgid ""
21435 " struct guestfs_application {\n"
21436 "   char *app_name;\n"
21437 "   char *app_display_name;\n"
21438 "   int32_t app_epoch;\n"
21439 "   char *app_version;\n"
21440 "   char *app_release;\n"
21441 "   char *app_install_path;\n"
21442 "   char *app_trans_path;\n"
21443 "   char *app_publisher;\n"
21444 "   char *app_url;\n"
21445 "   char *app_source_package;\n"
21446 "   char *app_summary;\n"
21447 "   char *app_description;\n"
21448 " };\n"
21449 " \n"
21450 msgstr ""
21451
21452 # type: verbatim
21453 #. type: verbatim
21454 #: ../src/guestfs-structs.pod:260
21455 #, no-wrap
21456 msgid ""
21457 " struct guestfs_application_list {\n"
21458 "   uint32_t len; /* Number of elements in list. */\n"
21459 "   struct guestfs_application *val; /* Elements. */\n"
21460 " };\n"
21461 " \n"
21462 msgstr ""
21463
21464 # type: verbatim
21465 #. type: verbatim
21466 #: ../src/guestfs-structs.pod:265
21467 #, no-wrap
21468 msgid ""
21469 " void guestfs_free_application (struct guestfs_free_application *);\n"
21470 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21471 "\n"
21472 msgstr ""
21473
21474 # type: textblock
21475 #. type: textblock
21476 #: ../fish/guestfish.pod:5
21477 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21478 msgstr ""
21479
21480 # type: verbatim
21481 #. type: verbatim
21482 #: ../fish/guestfish.pod:9
21483 #, no-wrap
21484 msgid ""
21485 " guestfish [--options] [commands]\n"
21486 "\n"
21487 msgstr ""
21488
21489 # type: verbatim
21490 #. type: verbatim
21491 #: ../fish/guestfish.pod:11
21492 #, no-wrap
21493 msgid ""
21494 " guestfish\n"
21495 "\n"
21496 msgstr ""
21497
21498 # type: verbatim
21499 #. type: verbatim
21500 #: ../fish/guestfish.pod:13
21501 #, no-wrap
21502 msgid ""
21503 " guestfish [--ro|--rw] -a disk.img\n"
21504 "\n"
21505 msgstr ""
21506
21507 # type: verbatim
21508 #. type: verbatim
21509 #: ../fish/guestfish.pod:15
21510 #, no-wrap
21511 msgid ""
21512 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21513 "\n"
21514 msgstr ""
21515
21516 # type: verbatim
21517 #. type: verbatim
21518 #: ../fish/guestfish.pod:17
21519 #, no-wrap
21520 msgid ""
21521 " guestfish -d libvirt-domain\n"
21522 "\n"
21523 msgstr ""
21524
21525 # type: verbatim
21526 #. type: verbatim
21527 #: ../fish/guestfish.pod:19
21528 #, no-wrap
21529 msgid ""
21530 " guestfish [--ro|--rw] -a disk.img -i\n"
21531 "\n"
21532 msgstr ""
21533
21534 # type: verbatim
21535 #. type: verbatim
21536 #: ../fish/guestfish.pod:21
21537 #, no-wrap
21538 msgid ""
21539 " guestfish -d libvirt-domain -i\n"
21540 "\n"
21541 msgstr ""
21542
21543 # type: =head1
21544 #. type: =head1
21545 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21546 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21547 msgid "WARNING"
21548 msgstr ""
21549
21550 # type: textblock
21551 #. type: textblock
21552 #: ../fish/guestfish.pod:25
21553 msgid ""
21554 "Using guestfish in read/write mode on live virtual machines can be "
21555 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
21556 "option to use guestfish safely if the disk image or virtual machine might be "
21557 "live."
21558 msgstr ""
21559
21560 # type: textblock
21561 #. type: textblock
21562 #: ../fish/guestfish.pod:32
21563 msgid ""
21564 "Guestfish is a shell and command-line tool for examining and modifying "
21565 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
21566 "functionality of the guestfs API, see L<guestfs(3)>."
21567 msgstr ""
21568
21569 # type: textblock
21570 #. type: textblock
21571 #: ../fish/guestfish.pod:36
21572 msgid ""
21573 "Guestfish gives you structured access to the libguestfs API, from shell "
21574 "scripts or the command line or interactively.  If you want to rescue a "
21575 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21576 "command."
21577 msgstr ""
21578
21579 # type: =head1
21580 #. type: =head1
21581 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
21582 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21583 msgid "EXAMPLES"
21584 msgstr ""
21585
21586 # type: =head2
21587 #. type: =head2
21588 #: ../fish/guestfish.pod:43
21589 msgid "As an interactive shell"
21590 msgstr ""
21591
21592 # type: verbatim
21593 #. type: verbatim
21594 #: ../fish/guestfish.pod:45
21595 #, no-wrap
21596 msgid ""
21597 " $ guestfish\n"
21598 " \n"
21599 msgstr ""
21600
21601 # type: verbatim
21602 #. type: verbatim
21603 #: ../fish/guestfish.pod:47
21604 #, no-wrap
21605 msgid ""
21606 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21607 " editing virtual machine filesystems.\n"
21608 " \n"
21609 msgstr ""
21610
21611 # type: verbatim
21612 #. type: verbatim
21613 #: ../fish/guestfish.pod:50
21614 #, no-wrap
21615 msgid ""
21616 " Type: 'help' for a list of commands\n"
21617 "       'man' to read the manual\n"
21618 "       'quit' to quit the shell\n"
21619 " \n"
21620 msgstr ""
21621
21622 # type: verbatim
21623 #. type: verbatim
21624 #: ../fish/guestfish.pod:54
21625 #, no-wrap
21626 msgid ""
21627 " ><fs> add-ro disk.img\n"
21628 " ><fs> run\n"
21629 " ><fs> list-filesystems\n"
21630 " /dev/sda1: ext4\n"
21631 " /dev/vg_guest/lv_root: ext4\n"
21632 " /dev/vg_guest/lv_swap: swap\n"
21633 " ><fs> mount /dev/vg_guest/lv_root /\n"
21634 " ><fs> cat /etc/fstab\n"
21635 " # /etc/fstab\n"
21636 " # Created by anaconda\n"
21637 " [...]\n"
21638 " ><fs> exit\n"
21639 "\n"
21640 msgstr ""
21641
21642 # type: =head2
21643 #. type: =head2
21644 #: ../fish/guestfish.pod:67
21645 msgid "From shell scripts"
21646 msgstr ""
21647
21648 # type: textblock
21649 #. type: textblock
21650 #: ../fish/guestfish.pod:69
21651 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21652 msgstr ""
21653
21654 # type: verbatim
21655 #. type: verbatim
21656 #: ../fish/guestfish.pod:71
21657 #, no-wrap
21658 msgid ""
21659 " guestfish <<_EOF_\n"
21660 " add disk.img\n"
21661 " run\n"
21662 " mount /dev/vg_guest/lv_root /\n"
21663 " write /etc/motd \"Welcome, new users\"\n"
21664 " _EOF_\n"
21665 "\n"
21666 msgstr ""
21667
21668 # type: textblock
21669 #. type: textblock
21670 #: ../fish/guestfish.pod:78
21671 msgid "List the LVM logical volumes in a disk image:"
21672 msgstr ""
21673
21674 # type: verbatim
21675 #. type: verbatim
21676 #: ../fish/guestfish.pod:80
21677 #, no-wrap
21678 msgid ""
21679 " guestfish -a disk.img --ro <<_EOF_\n"
21680 " run\n"
21681 " lvs\n"
21682 " _EOF_\n"
21683 "\n"
21684 msgstr ""
21685
21686 # type: textblock
21687 #. type: textblock
21688 #: ../fish/guestfish.pod:85
21689 msgid "List all the filesystems in a disk image:"
21690 msgstr ""
21691
21692 # type: verbatim
21693 #. type: verbatim
21694 #: ../fish/guestfish.pod:87
21695 #, no-wrap
21696 msgid ""
21697 " guestfish -a disk.img --ro <<_EOF_\n"
21698 " run\n"
21699 " list-filesystems\n"
21700 " _EOF_\n"
21701 "\n"
21702 msgstr ""
21703
21704 # type: =head2
21705 #. type: =head2
21706 #: ../fish/guestfish.pod:92
21707 msgid "On one command line"
21708 msgstr ""
21709
21710 # type: textblock
21711 #. type: textblock
21712 #: ../fish/guestfish.pod:94
21713 msgid "Update C</etc/resolv.conf> in a guest:"
21714 msgstr ""
21715
21716 # type: verbatim
21717 #. type: verbatim
21718 #: ../fish/guestfish.pod:96
21719 #, no-wrap
21720 msgid ""
21721 " guestfish \\\n"
21722 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21723 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21724 "\n"
21725 msgstr ""
21726
21727 # type: textblock
21728 #. type: textblock
21729 #: ../fish/guestfish.pod:100
21730 msgid "Edit C</boot/grub/grub.conf> interactively:"
21731 msgstr ""
21732
21733 # type: verbatim
21734 #. type: verbatim
21735 #: ../fish/guestfish.pod:102
21736 #, no-wrap
21737 msgid ""
21738 " guestfish --rw --add disk.img \\\n"
21739 "   --mount /dev/vg_guest/lv_root \\\n"
21740 "   --mount /dev/sda1:/boot \\\n"
21741 "   edit /boot/grub/grub.conf\n"
21742 "\n"
21743 msgstr ""
21744
21745 # type: =head2
21746 #. type: =head2
21747 #: ../fish/guestfish.pod:107
21748 msgid "Mount disks automatically"
21749 msgstr ""
21750
21751 # type: textblock
21752 #. type: textblock
21753 #: ../fish/guestfish.pod:109
21754 msgid ""
21755 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21756 msgstr ""
21757
21758 # type: verbatim
21759 #. type: verbatim
21760 #: ../fish/guestfish.pod:112
21761 #, no-wrap
21762 msgid ""
21763 " guestfish --ro -a disk.img -i cat /etc/group\n"
21764 "\n"
21765 msgstr ""
21766
21767 # type: verbatim
21768 #. type: verbatim
21769 #: ../fish/guestfish.pod:114
21770 #, no-wrap
21771 msgid ""
21772 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21773 "\n"
21774 msgstr ""
21775
21776 # type: textblock
21777 #. type: textblock
21778 #: ../fish/guestfish.pod:116
21779 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21780 msgstr ""
21781
21782 # type: verbatim
21783 #. type: verbatim
21784 #: ../fish/guestfish.pod:118
21785 #, no-wrap
21786 msgid ""
21787 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21788 "\n"
21789 msgstr ""
21790
21791 # type: =head2
21792 #. type: =head2
21793 #: ../fish/guestfish.pod:120
21794 msgid "As a script interpreter"
21795 msgstr ""
21796
21797 # type: textblock
21798 #. type: textblock
21799 #: ../fish/guestfish.pod:122
21800 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21801 msgstr ""
21802
21803 # type: verbatim
21804 #. type: verbatim
21805 #: ../fish/guestfish.pod:124
21806 #, no-wrap
21807 msgid ""
21808 " #!/usr/bin/guestfish -f\n"
21809 " sparse test1.img 100M\n"
21810 " run\n"
21811 " part-disk /dev/sda mbr\n"
21812 " mkfs ext2 /dev/sda1\n"
21813 "\n"
21814 msgstr ""
21815
21816 # type: =head2
21817 #. type: =head2
21818 #: ../fish/guestfish.pod:130
21819 msgid "Start with a prepared disk"
21820 msgstr ""
21821
21822 # type: textblock
21823 #. type: textblock
21824 #: ../fish/guestfish.pod:132
21825 msgid ""
21826 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21827 "single ext2-formatted partition:"
21828 msgstr ""
21829
21830 # type: verbatim
21831 #. type: verbatim
21832 #: ../fish/guestfish.pod:135
21833 #, no-wrap
21834 msgid ""
21835 " guestfish -N fs\n"
21836 "\n"
21837 msgstr ""
21838
21839 # type: textblock
21840 #. type: textblock
21841 #: ../fish/guestfish.pod:137
21842 msgid "To list what is available do:"
21843 msgstr ""
21844
21845 # type: verbatim
21846 #. type: verbatim
21847 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
21848 #, no-wrap
21849 msgid ""
21850 " guestfish -N help | less\n"
21851 "\n"
21852 msgstr ""
21853
21854 # type: =head2
21855 #. type: =head2
21856 #: ../fish/guestfish.pod:141
21857 msgid "Remote control"
21858 msgstr ""
21859
21860 # type: verbatim
21861 #. type: verbatim
21862 #: ../fish/guestfish.pod:143
21863 #, no-wrap
21864 msgid ""
21865 " eval \"`guestfish --listen`\"\n"
21866 " guestfish --remote add-ro disk.img\n"
21867 " guestfish --remote run\n"
21868 " guestfish --remote lvs\n"
21869 "\n"
21870 msgstr ""
21871
21872 # type: =head1
21873 #. type: =head1
21874 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21875 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
21876 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21877 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21878 #: ../tools/virt-list-partitions.pl:54
21879 msgid "OPTIONS"
21880 msgstr ""
21881
21882 # type: =item
21883 #. type: =item
21884 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
21885 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21886 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21887 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21888 msgid "B<--help>"
21889 msgstr ""
21890
21891 # type: textblock
21892 #. type: textblock
21893 #: ../fish/guestfish.pod:154
21894 msgid "Displays general help on options."
21895 msgstr ""
21896
21897 # type: =item
21898 #. type: =item
21899 #: ../fish/guestfish.pod:156
21900 msgid "B<-h>"
21901 msgstr ""
21902
21903 # type: =item
21904 #. type: =item
21905 #: ../fish/guestfish.pod:158
21906 msgid "B<--cmd-help>"
21907 msgstr ""
21908
21909 # type: textblock
21910 #. type: textblock
21911 #: ../fish/guestfish.pod:160
21912 msgid "Lists all available guestfish commands."
21913 msgstr ""
21914
21915 # type: =item
21916 #. type: =item
21917 #: ../fish/guestfish.pod:162
21918 msgid "B<-h cmd>"
21919 msgstr ""
21920
21921 # type: =item
21922 #. type: =item
21923 #: ../fish/guestfish.pod:164
21924 msgid "B<--cmd-help cmd>"
21925 msgstr ""
21926
21927 # type: textblock
21928 #. type: textblock
21929 #: ../fish/guestfish.pod:166
21930 msgid "Displays detailed help on a single command C<cmd>."
21931 msgstr ""
21932
21933 # type: =item
21934 #. type: =item
21935 #: ../fish/guestfish.pod:168
21936 msgid "B<-a image>"
21937 msgstr ""
21938
21939 # type: =item
21940 #. type: =item
21941 #: ../fish/guestfish.pod:170
21942 msgid "B<--add image>"
21943 msgstr ""
21944
21945 # type: textblock
21946 #. type: textblock
21947 #: ../fish/guestfish.pod:172
21948 msgid "Add a block device or virtual machine image to the shell."
21949 msgstr ""
21950
21951 # type: textblock
21952 #. type: textblock
21953 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
21954 msgid ""
21955 "The format of the disk image is auto-detected.  To override this and force a "
21956 "particular format use the I<--format=..> option."
21957 msgstr ""
21958
21959 #. type: textblock
21960 #: ../fish/guestfish.pod:177
21961 msgid ""
21962 "Using this flag is mostly equivalent to using the C<add> command, with "
21963 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21964 "the I<--format=...> flag was given."
21965 msgstr ""
21966
21967 # type: =item
21968 #. type: =item
21969 #: ../fish/guestfish.pod:181
21970 msgid "B<-c URI>"
21971 msgstr ""
21972
21973 # type: =item
21974 #. type: =item
21975 #: ../fish/guestfish.pod:183
21976 msgid "B<--connect URI>"
21977 msgstr ""
21978
21979 # type: textblock
21980 #. type: textblock
21981 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
21982 msgid ""
21983 "When used in conjunction with the I<-d> option, this specifies the libvirt "
21984 "URI to use.  The default is to use the default libvirt connection."
21985 msgstr ""
21986
21987 # type: =item
21988 #. type: =item
21989 #: ../fish/guestfish.pod:189
21990 msgid "B<--csh>"
21991 msgstr ""
21992
21993 # type: textblock
21994 #. type: textblock
21995 #: ../fish/guestfish.pod:191
21996 msgid ""
21997 "If using the I<--listen> option and a csh-like shell, use this option.  See "
21998 "section L</REMOTE CONTROL AND CSH> below."
21999 msgstr ""
22000
22001 # type: =item
22002 #. type: =item
22003 #: ../fish/guestfish.pod:194
22004 msgid "B<-d libvirt-domain>"
22005 msgstr ""
22006
22007 # type: =item
22008 #. type: =item
22009 #: ../fish/guestfish.pod:196
22010 msgid "B<--domain libvirt-domain>"
22011 msgstr ""
22012
22013 # type: textblock
22014 #. type: textblock
22015 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
22016 msgid ""
22017 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
22018 "used, then any libvirt domain can be used.  However in write mode, only "
22019 "libvirt domains which are shut down can be named here."
22020 msgstr ""
22021
22022 # type: textblock
22023 #. type: textblock
22024 #: ../fish/guestfish.pod:202
22025 msgid ""
22026 "Using this flag is mostly equivalent to using the C<add-domain> command, "
22027 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
22028 "if the I<--format:...> flag was given."
22029 msgstr ""
22030
22031 # type: =item
22032 #. type: =item
22033 #: ../fish/guestfish.pod:206
22034 msgid "B<-D>"
22035 msgstr ""
22036
22037 # type: =item
22038 #. type: =item
22039 #: ../fish/guestfish.pod:208
22040 msgid "B<--no-dest-paths>"
22041 msgstr ""
22042
22043 # type: textblock
22044 #. type: textblock
22045 #: ../fish/guestfish.pod:210
22046 msgid ""
22047 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
22048 "to hit the tab key to complete paths on the guest filesystem, but this "
22049 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
22050 "allow this feature to be disabled."
22051 msgstr ""
22052
22053 # type: =item
22054 #. type: =item
22055 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
22056 msgid "B<--echo-keys>"
22057 msgstr ""
22058
22059 # type: textblock
22060 #. type: textblock
22061 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
22062 msgid ""
22063 "When prompting for keys and passphrases, guestfish normally turns echoing "
22064 "off so you cannot see what you are typing.  If you are not worried about "
22065 "Tempest attacks and there is no one else in the room you can specify this "
22066 "flag to see what you are typing."
22067 msgstr ""
22068
22069 # type: =item
22070 #. type: =item
22071 #: ../fish/guestfish.pod:222
22072 msgid "B<-f file>"
22073 msgstr ""
22074
22075 # type: =item
22076 #. type: =item
22077 #: ../fish/guestfish.pod:224
22078 msgid "B<--file file>"
22079 msgstr ""
22080
22081 # type: textblock
22082 #. type: textblock
22083 #: ../fish/guestfish.pod:226
22084 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
22085 msgstr ""
22086
22087 # type: verbatim
22088 #. type: verbatim
22089 #: ../fish/guestfish.pod:229
22090 #, no-wrap
22091 msgid ""
22092 " #!/usr/bin/guestfish -f\n"
22093 "\n"
22094 msgstr ""
22095
22096 # type: =item
22097 #. type: =item
22098 #: ../fish/guestfish.pod:231
22099 msgid "B<--format=raw|qcow2|..>"
22100 msgstr ""
22101
22102 # type: =item
22103 #. type: =item
22104 #: ../fish/guestfish.pod:233
22105 msgid "B<--format>"
22106 msgstr ""
22107
22108 # type: textblock
22109 #. type: textblock
22110 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
22111 msgid ""
22112 "The default for the I<-a> option is to auto-detect the format of the disk "
22113 "image.  Using this forces the disk format for I<-a> options which follow on "
22114 "the command line.  Using I<--format> with no argument switches back to auto-"
22115 "detection for subsequent I<-a> options."
22116 msgstr ""
22117
22118 # type: verbatim
22119 #. type: verbatim
22120 #: ../fish/guestfish.pod:242
22121 #, no-wrap
22122 msgid ""
22123 " guestfish --format=raw -a disk.img\n"
22124 "\n"
22125 msgstr ""
22126
22127 # type: textblock
22128 #. type: textblock
22129 #: ../fish/guestfish.pod:244
22130 msgid "forces raw format (no auto-detection) for C<disk.img>."
22131 msgstr ""
22132
22133 # type: verbatim
22134 #. type: verbatim
22135 #: ../fish/guestfish.pod:246
22136 #, no-wrap
22137 msgid ""
22138 " guestfish --format=raw -a disk.img --format -a another.img\n"
22139 "\n"
22140 msgstr ""
22141
22142 # type: textblock
22143 #. type: textblock
22144 #: ../fish/guestfish.pod:248
22145 msgid ""
22146 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
22147 "detection for C<another.img>."
22148 msgstr ""
22149
22150 # type: textblock
22151 #. type: textblock
22152 #: ../fish/guestfish.pod:251
22153 msgid ""
22154 "If you have untrusted raw-format guest disk images, you should use this "
22155 "option to specify the disk format.  This avoids a possible security problem "
22156 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
22157 msgstr ""
22158
22159 # type: =item
22160 #. type: =item
22161 #: ../fish/guestfish.pod:256
22162 msgid "B<-i>"
22163 msgstr ""
22164
22165 # type: =item
22166 #. type: =item
22167 #: ../fish/guestfish.pod:258
22168 msgid "B<--inspector>"
22169 msgstr ""
22170
22171 # type: textblock
22172 #. type: textblock
22173 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
22174 msgid ""
22175 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
22176 "system and mount filesystems as they would be mounted on the real virtual "
22177 "machine."
22178 msgstr ""
22179
22180 # type: textblock
22181 #. type: textblock
22182 #: ../fish/guestfish.pod:264
22183 msgid "Typical usage is either:"
22184 msgstr ""
22185
22186 # type: verbatim
22187 #. type: verbatim
22188 #: ../fish/guestfish.pod:266
22189 #, no-wrap
22190 msgid ""
22191 " guestfish -d myguest -i\n"
22192 "\n"
22193 msgstr ""
22194
22195 # type: textblock
22196 #. type: textblock
22197 #: ../fish/guestfish.pod:268
22198 msgid "(for an inactive libvirt domain called I<myguest>), or:"
22199 msgstr ""
22200
22201 # type: verbatim
22202 #. type: verbatim
22203 #: ../fish/guestfish.pod:270
22204 #, no-wrap
22205 msgid ""
22206 " guestfish --ro -d myguest -i\n"
22207 "\n"
22208 msgstr ""
22209
22210 # type: textblock
22211 #. type: textblock
22212 #: ../fish/guestfish.pod:272
22213 msgid "(for active domains, readonly), or specify the block device directly:"
22214 msgstr ""
22215
22216 # type: verbatim
22217 #. type: verbatim
22218 #: ../fish/guestfish.pod:274
22219 #, no-wrap
22220 msgid ""
22221 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22222 "\n"
22223 msgstr ""
22224
22225 # type: textblock
22226 #. type: textblock
22227 #: ../fish/guestfish.pod:276
22228 msgid ""
22229 "Note that the command line syntax changed slightly over older versions of "
22230 "guestfish.  You can still use the old syntax:"
22231 msgstr ""
22232
22233 # type: verbatim
22234 #. type: verbatim
22235 #: ../fish/guestfish.pod:279
22236 #, no-wrap
22237 msgid ""
22238 " guestfish [--ro] -i disk.img\n"
22239 "\n"
22240 msgstr ""
22241
22242 # type: verbatim
22243 #. type: verbatim
22244 #: ../fish/guestfish.pod:281
22245 #, no-wrap
22246 msgid ""
22247 " guestfish [--ro] -i libvirt-domain\n"
22248 "\n"
22249 msgstr ""
22250
22251 # type: textblock
22252 #. type: textblock
22253 #: ../fish/guestfish.pod:283
22254 msgid ""
22255 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22256 "then using other commands to mount the filesystems that were found."
22257 msgstr ""
22258
22259 # type: =item
22260 #. type: =item
22261 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
22262 msgid "B<--keys-from-stdin>"
22263 msgstr ""
22264
22265 # type: textblock
22266 #. type: textblock
22267 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
22268 msgid ""
22269 "Read key or passphrase parameters from stdin.  The default is to try to read "
22270 "passphrases from the user by opening C</dev/tty>."
22271 msgstr ""
22272
22273 # type: =item
22274 #. type: =item
22275 #: ../fish/guestfish.pod:292
22276 msgid "B<--listen>"
22277 msgstr ""
22278
22279 # type: textblock
22280 #. type: textblock
22281 #: ../fish/guestfish.pod:294
22282 msgid ""
22283 "Fork into the background and listen for remote commands.  See section L</"
22284 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22285 msgstr ""
22286
22287 #. type: =item
22288 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
22289 msgid "B<--live>"
22290 msgstr ""
22291
22292 #. type: textblock
22293 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
22294 msgid ""
22295 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
22296 "ATTACHING TO RUNNING DAEMONS>)."
22297 msgstr ""
22298
22299 #. type: =item
22300 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
22301 msgid "B<-m dev[:mountpoint[:options]]>"
22302 msgstr ""
22303
22304 #. type: =item
22305 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
22306 msgid "B<--mount dev[:mountpoint[:options]]>"
22307 msgstr ""
22308
22309 # type: textblock
22310 #. type: textblock
22311 #: ../fish/guestfish.pod:306
22312 msgid "Mount the named partition or logical volume on the given mountpoint."
22313 msgstr ""
22314
22315 # type: textblock
22316 #. type: textblock
22317 #: ../fish/guestfish.pod:308
22318 msgid "If the mountpoint is omitted, it defaults to C</>."
22319 msgstr ""
22320
22321 # type: textblock
22322 #. type: textblock
22323 #: ../fish/guestfish.pod:310
22324 msgid "You have to mount something on C</> before most commands will work."
22325 msgstr ""
22326
22327 # type: textblock
22328 #. type: textblock
22329 #: ../fish/guestfish.pod:312
22330 msgid ""
22331 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22332 "launched."
22333 msgstr ""
22334
22335 # type: textblock
22336 #. type: textblock
22337 #: ../fish/guestfish.pod:315
22338 msgid ""
22339 "If you don't know what filesystems a disk image contains, you can either run "
22340 "guestfish without this option, then list the partitions, filesystems and LVs "
22341 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22342 "commands), or you can use the L<virt-filesystems(1)> program."
22343 msgstr ""
22344
22345 #. type: textblock
22346 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
22347 msgid ""
22348 "The third (and rarely used) part of the mount parameter is the list of mount "
22349 "options used to mount the underlying filesystem.  If this is not given, then "
22350 "the mount options are either the empty string or C<ro> (the latter if the "
22351 "I<--ro> flag is used).  By specifying the mount options, you override this "
22352 "default choice.  Probably the only time you would use this is to enable ACLs "
22353 "and/or extended attributes if the filesystem can support them:"
22354 msgstr ""
22355
22356 #. type: verbatim
22357 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
22358 #, no-wrap
22359 msgid ""
22360 " -m /dev/sda1:/:acl,user_xattr\n"
22361 "\n"
22362 msgstr ""
22363
22364 #. type: textblock
22365 #: ../fish/guestfish.pod:331
22366 msgid "Using this flag is equivalent to using the C<mount-options> command."
22367 msgstr ""
22368
22369 # type: =item
22370 #. type: =item
22371 #: ../fish/guestfish.pod:333
22372 msgid "B<-n>"
22373 msgstr ""
22374
22375 # type: =item
22376 #. type: =item
22377 #: ../fish/guestfish.pod:335
22378 msgid "B<--no-sync>"
22379 msgstr ""
22380
22381 # type: textblock
22382 #. type: textblock
22383 #: ../fish/guestfish.pod:337
22384 msgid ""
22385 "Disable autosync.  This is enabled by default.  See the discussion of "
22386 "autosync in the L<guestfs(3)> manpage."
22387 msgstr ""
22388
22389 # type: =item
22390 #. type: =item
22391 #: ../fish/guestfish.pod:340
22392 msgid "B<-N type>"
22393 msgstr ""
22394
22395 # type: =item
22396 #. type: =item
22397 #: ../fish/guestfish.pod:342
22398 msgid "B<--new type>"
22399 msgstr ""
22400
22401 # type: =item
22402 #. type: =item
22403 #: ../fish/guestfish.pod:344
22404 msgid "B<-N help>"
22405 msgstr ""
22406
22407 # type: textblock
22408 #. type: textblock
22409 #: ../fish/guestfish.pod:346
22410 msgid ""
22411 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
22412 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22413 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
22414 "IMAGES> below."
22415 msgstr ""
22416
22417 # type: =item
22418 #. type: =item
22419 #: ../fish/guestfish.pod:351
22420 msgid "B<--progress-bars>"
22421 msgstr ""
22422
22423 # type: textblock
22424 #. type: textblock
22425 #: ../fish/guestfish.pod:353
22426 msgid "Enable progress bars, even when guestfish is used non-interactively."
22427 msgstr ""
22428
22429 # type: textblock
22430 #. type: textblock
22431 #: ../fish/guestfish.pod:355
22432 msgid ""
22433 "Progress bars are enabled by default when guestfish is used as an "
22434 "interactive shell."
22435 msgstr ""
22436
22437 # type: =item
22438 #. type: =item
22439 #: ../fish/guestfish.pod:358
22440 msgid "B<--no-progress-bars>"
22441 msgstr ""
22442
22443 # type: textblock
22444 #. type: textblock
22445 #: ../fish/guestfish.pod:360
22446 msgid "Disable progress bars."
22447 msgstr ""
22448
22449 # type: =item
22450 #. type: =item
22451 #: ../fish/guestfish.pod:362
22452 msgid "B<--remote[=pid]>"
22453 msgstr ""
22454
22455 # type: textblock
22456 #. type: textblock
22457 #: ../fish/guestfish.pod:364
22458 msgid ""
22459 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
22460 "CONTROL GUESTFISH OVER A SOCKET> below."
22461 msgstr ""
22462
22463 # type: =item
22464 #. type: =item
22465 #: ../fish/guestfish.pod:367
22466 msgid "B<-r>"
22467 msgstr ""
22468
22469 # type: =item
22470 #. type: =item
22471 #: ../fish/guestfish.pod:369
22472 msgid "B<--ro>"
22473 msgstr ""
22474
22475 # type: textblock
22476 #. type: textblock
22477 #: ../fish/guestfish.pod:371
22478 msgid ""
22479 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22480 "mounts are done read-only."
22481 msgstr ""
22482
22483 # type: textblock
22484 #. type: textblock
22485 #: ../fish/guestfish.pod:374
22486 msgid ""
22487 "The option must always be used if the disk image or virtual machine might be "
22488 "running, and is generally recommended in cases where you don't need write "
22489 "access to the disk."
22490 msgstr ""
22491
22492 # type: textblock
22493 #. type: textblock
22494 #: ../fish/guestfish.pod:378
22495 msgid ""
22496 "Note that prepared disk images created with I<-N> are not affected by this "
22497 "option.  Also commands like C<add> are not affected - you have to specify "
22498 "the C<readonly:true> option explicitly if you need it."
22499 msgstr ""
22500
22501 # type: textblock
22502 #. type: textblock
22503 #: ../fish/guestfish.pod:382
22504 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22505 msgstr ""
22506
22507 # type: =item
22508 #. type: =item
22509 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
22510 msgid "B<--selinux>"
22511 msgstr ""
22512
22513 # type: textblock
22514 #. type: textblock
22515 #: ../fish/guestfish.pod:386
22516 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
22517 msgstr ""
22518
22519 # type: =item
22520 #. type: =item
22521 #: ../fish/guestfish.pod:388
22522 msgid "B<-v>"
22523 msgstr ""
22524
22525 # type: =item
22526 #. type: =item
22527 #: ../fish/guestfish.pod:390
22528 msgid "B<--verbose>"
22529 msgstr ""
22530
22531 # type: textblock
22532 #. type: textblock
22533 #: ../fish/guestfish.pod:392
22534 msgid ""
22535 "Enable very verbose messages.  This is particularly useful if you find a bug."
22536 msgstr ""
22537
22538 # type: =item
22539 #. type: =item
22540 #: ../fish/guestfish.pod:395
22541 msgid "B<-V>"
22542 msgstr ""
22543
22544 # type: =item
22545 #. type: =item
22546 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22547 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22548 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22549 #: ../tools/virt-list-partitions.pl:70
22550 msgid "B<--version>"
22551 msgstr ""
22552
22553 # type: textblock
22554 #. type: textblock
22555 #: ../fish/guestfish.pod:399
22556 msgid "Display the guestfish / libguestfs version number and exit."
22557 msgstr ""
22558
22559 # type: =item
22560 #. type: =item
22561 #: ../fish/guestfish.pod:401
22562 msgid "B<-w>"
22563 msgstr ""
22564
22565 # type: =item
22566 #. type: =item
22567 #: ../fish/guestfish.pod:403
22568 msgid "B<--rw>"
22569 msgstr ""
22570
22571 #. type: textblock
22572 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
22573 msgid ""
22574 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22575 "mounts are done read-write."
22576 msgstr ""
22577
22578 #. type: textblock
22579 #: ../fish/guestfish.pod:408
22580 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22581 msgstr ""
22582
22583 # type: =item
22584 #. type: =item
22585 #: ../fish/guestfish.pod:410
22586 msgid "B<-x>"
22587 msgstr ""
22588
22589 # type: textblock
22590 #. type: textblock
22591 #: ../fish/guestfish.pod:412
22592 msgid "Echo each command before executing it."
22593 msgstr ""
22594
22595 # type: =head1
22596 #. type: =head1
22597 #: ../fish/guestfish.pod:416
22598 msgid "COMMANDS ON COMMAND LINE"
22599 msgstr ""
22600
22601 # type: textblock
22602 #. type: textblock
22603 #: ../fish/guestfish.pod:418
22604 msgid ""
22605 "Any additional (non-option) arguments are treated as commands to execute."
22606 msgstr ""
22607
22608 # type: textblock
22609 #. type: textblock
22610 #: ../fish/guestfish.pod:421
22611 msgid ""
22612 "Commands to execute should be separated by a colon (C<:>), where the colon "
22613 "is a separate parameter.  Thus:"
22614 msgstr ""
22615
22616 # type: verbatim
22617 #. type: verbatim
22618 #: ../fish/guestfish.pod:424
22619 #, no-wrap
22620 msgid ""
22621 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22622 "\n"
22623 msgstr ""
22624
22625 # type: textblock
22626 #. type: textblock
22627 #: ../fish/guestfish.pod:426
22628 msgid ""
22629 "If there are no additional arguments, then we enter a shell, either an "
22630 "interactive shell with a prompt (if the input is a terminal) or a non-"
22631 "interactive shell."
22632 msgstr ""
22633
22634 # type: textblock
22635 #. type: textblock
22636 #: ../fish/guestfish.pod:430
22637 msgid ""
22638 "In either command line mode or non-interactive shell, the first command that "
22639 "gives an error causes the whole shell to exit.  In interactive mode (with a "
22640 "prompt) if a command fails, you can continue to enter commands."
22641 msgstr ""
22642
22643 # type: =head1
22644 #. type: =head1
22645 #: ../fish/guestfish.pod:435
22646 msgid "USING launch (OR run)"
22647 msgstr ""
22648
22649 # type: textblock
22650 #. type: textblock
22651 #: ../fish/guestfish.pod:437
22652 msgid ""
22653 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22654 "then launch it, then mount any disks you need, and finally issue actions/"
22655 "commands.  So the general order of the day is:"
22656 msgstr ""
22657
22658 # type: textblock
22659 #. type: textblock
22660 #: ../fish/guestfish.pod:445
22661 msgid "add or -a/--add"
22662 msgstr ""
22663
22664 # type: textblock
22665 #. type: textblock
22666 #: ../fish/guestfish.pod:449
22667 msgid "launch (aka run)"
22668 msgstr ""
22669
22670 # type: textblock
22671 #. type: textblock
22672 #: ../fish/guestfish.pod:453
22673 msgid "mount or -m/--mount"
22674 msgstr ""
22675
22676 # type: textblock
22677 #. type: textblock
22678 #: ../fish/guestfish.pod:457
22679 msgid "any other commands"
22680 msgstr ""
22681
22682 # type: textblock
22683 #. type: textblock
22684 #: ../fish/guestfish.pod:461
22685 msgid ""
22686 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
22687 "guest before mounting or performing any other commands."
22688 msgstr ""
22689
22690 # type: textblock
22691 #. type: textblock
22692 #: ../fish/guestfish.pod:464
22693 msgid ""
22694 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22695 "I<--new> options were given then C<run> is done automatically, simply "
22696 "because guestfish can't perform the action you asked for without doing this."
22697 msgstr ""
22698
22699 # type: =head1
22700 #. type: =head1
22701 #: ../fish/guestfish.pod:469
22702 msgid "OPENING DISKS FOR READ AND WRITE"
22703 msgstr ""
22704
22705 #. type: textblock
22706 #: ../fish/guestfish.pod:471
22707 msgid ""
22708 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22709 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22710 "I<-i> and I<-m> open disk images read-only or for writing."
22711 msgstr ""
22712
22713 #. type: textblock
22714 #: ../fish/guestfish.pod:476
22715 msgid ""
22716 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
22717 "opening disk images supplied on the command line for write.  To open a disk "
22718 "image read-only you have to do I<-a image --ro>."
22719 msgstr ""
22720
22721 # type: textblock
22722 #. type: textblock
22723 #: ../fish/guestfish.pod:480
22724 msgid ""
22725 "This matters: If you accidentally open a live VM disk image writable then "
22726 "you will cause irreversible disk corruption."
22727 msgstr ""
22728
22729 #. type: textblock
22730 #: ../fish/guestfish.pod:483
22731 msgid ""
22732 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
22733 "images will be opened read-only.  You will have to either specify "
22734 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22735 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22736 "access for disk images specified by those other command line options."
22737 msgstr ""
22738
22739 #. type: textblock
22740 #: ../fish/guestfish.pod:490
22741 msgid ""
22742 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22743 "which does nothing (it is already the default).  However it is highly "
22744 "recommended that you use this option to indicate that you need write access, "
22745 "and prepare your scripts for the day when this option will be required for "
22746 "write access."
22747 msgstr ""
22748
22749 # type: textblock
22750 #. type: textblock
22751 #: ../fish/guestfish.pod:496
22752 msgid ""
22753 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22754 "other libguestfs program apart from guestfish and guestmount."
22755 msgstr ""
22756
22757 # type: =head1
22758 #. type: =head1
22759 #: ../fish/guestfish.pod:499
22760 msgid "QUOTING"
22761 msgstr ""
22762
22763 # type: textblock
22764 #. type: textblock
22765 #: ../fish/guestfish.pod:501
22766 msgid ""
22767 "You can quote ordinary parameters using either single or double quotes.  For "
22768 "example:"
22769 msgstr ""
22770
22771 # type: verbatim
22772 #. type: verbatim
22773 #: ../fish/guestfish.pod:504
22774 #, no-wrap
22775 msgid ""
22776 " add \"file with a space.img\"\n"
22777 "\n"
22778 msgstr ""
22779
22780 # type: verbatim
22781 #. type: verbatim
22782 #: ../fish/guestfish.pod:506
22783 #, no-wrap
22784 msgid ""
22785 " rm '/file name'\n"
22786 "\n"
22787 msgstr ""
22788
22789 # type: verbatim
22790 #. type: verbatim
22791 #: ../fish/guestfish.pod:508
22792 #, no-wrap
22793 msgid ""
22794 " rm '/\"'\n"
22795 "\n"
22796 msgstr ""
22797
22798 # type: textblock
22799 #. type: textblock
22800 #: ../fish/guestfish.pod:510
22801 msgid ""
22802 "A few commands require a list of strings to be passed.  For these, use a "
22803 "whitespace-separated list, enclosed in quotes.  Strings containing "
22804 "whitespace to be passed through must be enclosed in single quotes.  A "
22805 "literal single quote must be escaped with a backslash."
22806 msgstr ""
22807
22808 # type: verbatim
22809 #. type: verbatim
22810 #: ../fish/guestfish.pod:515
22811 #, no-wrap
22812 msgid ""
22813 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22814 " command \"/bin/echo 'foo      bar'\"\n"
22815 " command \"/bin/echo \\'foo\\'\"\n"
22816 "\n"
22817 msgstr ""
22818
22819 # type: =head1
22820 #. type: =head1
22821 #: ../fish/guestfish.pod:519
22822 msgid "OPTIONAL ARGUMENTS"
22823 msgstr ""
22824
22825 # type: textblock
22826 #. type: textblock
22827 #: ../fish/guestfish.pod:521
22828 msgid ""
22829 "Some commands take optional arguments.  These arguments appear in this "
22830 "documentation as C<[argname:..]>.  You can use them as in these examples:"
22831 msgstr ""
22832
22833 # type: verbatim
22834 #. type: verbatim
22835 #: ../fish/guestfish.pod:525
22836 #, no-wrap
22837 msgid ""
22838 " add-drive-opts filename\n"
22839 "\n"
22840 msgstr ""
22841
22842 # type: verbatim
22843 #. type: verbatim
22844 #: ../fish/guestfish.pod:527
22845 #, no-wrap
22846 msgid ""
22847 " add-drive-opts filename readonly:true\n"
22848 "\n"
22849 msgstr ""
22850
22851 # type: verbatim
22852 #. type: verbatim
22853 #: ../fish/guestfish.pod:529
22854 #, no-wrap
22855 msgid ""
22856 " add-drive-opts filename format:qcow2 readonly:false\n"
22857 "\n"
22858 msgstr ""
22859
22860 # type: textblock
22861 #. type: textblock
22862 #: ../fish/guestfish.pod:531
22863 msgid ""
22864 "Each optional argument can appear at most once.  All optional arguments must "
22865 "appear after the required ones."
22866 msgstr ""
22867
22868 # type: =head1
22869 #. type: =head1
22870 #: ../fish/guestfish.pod:534
22871 msgid "NUMBERS"
22872 msgstr ""
22873
22874 # type: textblock
22875 #. type: textblock
22876 #: ../fish/guestfish.pod:536
22877 msgid ""
22878 "This section applies to all commands which can take integers as parameters."
22879 msgstr ""
22880
22881 # type: =head2
22882 #. type: =head2
22883 #: ../fish/guestfish.pod:539
22884 msgid "SIZE SUFFIX"
22885 msgstr ""
22886
22887 # type: textblock
22888 #. type: textblock
22889 #: ../fish/guestfish.pod:541
22890 msgid ""
22891 "When the command takes a parameter measured in bytes, you can use one of the "
22892 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22893 msgstr ""
22894
22895 # type: =item
22896 #. type: =item
22897 #: ../fish/guestfish.pod:547
22898 msgid "B<k> or B<K> or B<KiB>"
22899 msgstr ""
22900
22901 # type: textblock
22902 #. type: textblock
22903 #: ../fish/guestfish.pod:549
22904 msgid "The size in kilobytes (multiplied by 1024)."
22905 msgstr ""
22906
22907 # type: =item
22908 #. type: =item
22909 #: ../fish/guestfish.pod:551
22910 msgid "B<KB>"
22911 msgstr ""
22912
22913 # type: textblock
22914 #. type: textblock
22915 #: ../fish/guestfish.pod:553
22916 msgid "The size in SI 1000 byte units."
22917 msgstr ""
22918
22919 # type: =item
22920 #. type: =item
22921 #: ../fish/guestfish.pod:555
22922 msgid "B<M> or B<MiB>"
22923 msgstr ""
22924
22925 # type: textblock
22926 #. type: textblock
22927 #: ../fish/guestfish.pod:557
22928 msgid "The size in megabytes (multiplied by 1048576)."
22929 msgstr ""
22930
22931 # type: =item
22932 #. type: =item
22933 #: ../fish/guestfish.pod:559
22934 msgid "B<MB>"
22935 msgstr ""
22936
22937 # type: textblock
22938 #. type: textblock
22939 #: ../fish/guestfish.pod:561
22940 msgid "The size in SI 1000000 byte units."
22941 msgstr ""
22942
22943 # type: =item
22944 #. type: =item
22945 #: ../fish/guestfish.pod:563
22946 msgid "B<G> or B<GiB>"
22947 msgstr ""
22948
22949 # type: textblock
22950 #. type: textblock
22951 #: ../fish/guestfish.pod:565
22952 msgid "The size in gigabytes (multiplied by 2**30)."
22953 msgstr ""
22954
22955 # type: =item
22956 #. type: =item
22957 #: ../fish/guestfish.pod:567
22958 msgid "B<GB>"
22959 msgstr ""
22960
22961 # type: textblock
22962 #. type: textblock
22963 #: ../fish/guestfish.pod:569
22964 msgid "The size in SI 10**9 byte units."
22965 msgstr ""
22966
22967 # type: =item
22968 #. type: =item
22969 #: ../fish/guestfish.pod:571
22970 msgid "B<T> or B<TiB>"
22971 msgstr ""
22972
22973 # type: textblock
22974 #. type: textblock
22975 #: ../fish/guestfish.pod:573
22976 msgid "The size in terabytes (multiplied by 2**40)."
22977 msgstr ""
22978
22979 # type: =item
22980 #. type: =item
22981 #: ../fish/guestfish.pod:575
22982 msgid "B<TB>"
22983 msgstr ""
22984
22985 # type: textblock
22986 #. type: textblock
22987 #: ../fish/guestfish.pod:577
22988 msgid "The size in SI 10**12 byte units."
22989 msgstr ""
22990
22991 # type: =item
22992 #. type: =item
22993 #: ../fish/guestfish.pod:579
22994 msgid "B<P> or B<PiB>"
22995 msgstr ""
22996
22997 # type: textblock
22998 #. type: textblock
22999 #: ../fish/guestfish.pod:581
23000 msgid "The size in petabytes (multiplied by 2**50)."
23001 msgstr ""
23002
23003 # type: =item
23004 #. type: =item
23005 #: ../fish/guestfish.pod:583
23006 msgid "B<PB>"
23007 msgstr ""
23008
23009 # type: textblock
23010 #. type: textblock
23011 #: ../fish/guestfish.pod:585
23012 msgid "The size in SI 10**15 byte units."
23013 msgstr ""
23014
23015 # type: =item
23016 #. type: =item
23017 #: ../fish/guestfish.pod:587
23018 msgid "B<E> or B<EiB>"
23019 msgstr ""
23020
23021 # type: textblock
23022 #. type: textblock
23023 #: ../fish/guestfish.pod:589
23024 msgid "The size in exabytes (multiplied by 2**60)."
23025 msgstr ""
23026
23027 # type: =item
23028 #. type: =item
23029 #: ../fish/guestfish.pod:591
23030 msgid "B<EB>"
23031 msgstr ""
23032
23033 # type: textblock
23034 #. type: textblock
23035 #: ../fish/guestfish.pod:593
23036 msgid "The size in SI 10**18 byte units."
23037 msgstr ""
23038
23039 # type: =item
23040 #. type: =item
23041 #: ../fish/guestfish.pod:595
23042 msgid "B<Z> or B<ZiB>"
23043 msgstr ""
23044
23045 # type: textblock
23046 #. type: textblock
23047 #: ../fish/guestfish.pod:597
23048 msgid "The size in zettabytes (multiplied by 2**70)."
23049 msgstr ""
23050
23051 # type: =item
23052 #. type: =item
23053 #: ../fish/guestfish.pod:599
23054 msgid "B<ZB>"
23055 msgstr ""
23056
23057 # type: textblock
23058 #. type: textblock
23059 #: ../fish/guestfish.pod:601
23060 msgid "The size in SI 10**21 byte units."
23061 msgstr ""
23062
23063 # type: =item
23064 #. type: =item
23065 #: ../fish/guestfish.pod:603
23066 msgid "B<Y> or B<YiB>"
23067 msgstr ""
23068
23069 # type: textblock
23070 #. type: textblock
23071 #: ../fish/guestfish.pod:605
23072 msgid "The size in yottabytes (multiplied by 2**80)."
23073 msgstr ""
23074
23075 # type: =item
23076 #. type: =item
23077 #: ../fish/guestfish.pod:607
23078 msgid "B<YB>"
23079 msgstr ""
23080
23081 # type: textblock
23082 #. type: textblock
23083 #: ../fish/guestfish.pod:609
23084 msgid "The size in SI 10**24 byte units."
23085 msgstr ""
23086
23087 # type: verbatim
23088 #. type: verbatim
23089 #: ../fish/guestfish.pod:615
23090 #, no-wrap
23091 msgid ""
23092 " truncate-size /file 1G\n"
23093 "\n"
23094 msgstr ""
23095
23096 # type: textblock
23097 #. type: textblock
23098 #: ../fish/guestfish.pod:617
23099 msgid "would truncate the file to 1 gigabyte."
23100 msgstr ""
23101
23102 # type: textblock
23103 #. type: textblock
23104 #: ../fish/guestfish.pod:619
23105 msgid ""
23106 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
23107 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
23108 "suffix will probably not do what you expect."
23109 msgstr ""
23110
23111 # type: =head2
23112 #. type: =head2
23113 #: ../fish/guestfish.pod:623
23114 msgid "OCTAL AND HEXADECIMAL NUMBERS"
23115 msgstr ""
23116
23117 # type: textblock
23118 #. type: textblock
23119 #: ../fish/guestfish.pod:625
23120 msgid ""
23121 "For specifying the radix (base) use the C convention: C<0> to prefix an "
23122 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
23123 msgstr ""
23124
23125 # type: verbatim
23126 #. type: verbatim
23127 #: ../fish/guestfish.pod:628
23128 #, no-wrap
23129 msgid ""
23130 " 1234      decimal number 1234\n"
23131 " 02322     octal number, equivalent to decimal 1234\n"
23132 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
23133 "\n"
23134 msgstr ""
23135
23136 # type: textblock
23137 #. type: textblock
23138 #: ../fish/guestfish.pod:632
23139 msgid ""
23140 "When using the C<chmod> command, you almost always want to specify an octal "
23141 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
23142 "L<chmod(1)> program):"
23143 msgstr ""
23144
23145 # type: verbatim
23146 #. type: verbatim
23147 #: ../fish/guestfish.pod:636
23148 #, no-wrap
23149 msgid ""
23150 " chmod 0777 /public  # OK\n"
23151 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
23152 "\n"
23153 msgstr ""
23154
23155 # type: textblock
23156 #. type: textblock
23157 #: ../fish/guestfish.pod:639
23158 msgid ""
23159 "Commands that return numbers usually print them in decimal, but some "
23160 "commands print numbers in other radices (eg. C<umask> prints the mode in "
23161 "octal, preceeded by C<0>)."
23162 msgstr ""
23163
23164 # type: =head1
23165 #. type: =head1
23166 #: ../fish/guestfish.pod:643
23167 msgid "WILDCARDS AND GLOBBING"
23168 msgstr ""
23169
23170 # type: textblock
23171 #. type: textblock
23172 #: ../fish/guestfish.pod:645
23173 msgid ""
23174 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
23175 "(globbing) by default.  So for example the following will not do what you "
23176 "expect:"
23177 msgstr ""
23178
23179 # type: verbatim
23180 #. type: verbatim
23181 #: ../fish/guestfish.pod:649
23182 #, no-wrap
23183 msgid ""
23184 " rm-rf /home/*\n"
23185 "\n"
23186 msgstr ""
23187
23188 # type: textblock
23189 #. type: textblock
23190 #: ../fish/guestfish.pod:651
23191 msgid ""
23192 "Assuming you don't have a directory called literally C</home/*> then the "
23193 "above command will return an error."
23194 msgstr ""
23195
23196 # type: textblock
23197 #. type: textblock
23198 #: ../fish/guestfish.pod:654
23199 msgid "To perform wildcard expansion, use the C<glob> command."
23200 msgstr ""
23201
23202 # type: verbatim
23203 #. type: verbatim
23204 #: ../fish/guestfish.pod:656
23205 #, no-wrap
23206 msgid ""
23207 " glob rm-rf /home/*\n"
23208 "\n"
23209 msgstr ""
23210
23211 # type: textblock
23212 #. type: textblock
23213 #: ../fish/guestfish.pod:658
23214 msgid ""
23215 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23216 "many times), equivalent to:"
23217 msgstr ""
23218
23219 # type: verbatim
23220 #. type: verbatim
23221 #: ../fish/guestfish.pod:661
23222 #, no-wrap
23223 msgid ""
23224 " rm-rf /home/jim\n"
23225 " rm-rf /home/joe\n"
23226 " rm-rf /home/mary\n"
23227 "\n"
23228 msgstr ""
23229
23230 # type: textblock
23231 #. type: textblock
23232 #: ../fish/guestfish.pod:665
23233 msgid "C<glob> only works on simple guest paths and not on device names."
23234 msgstr ""
23235
23236 # type: textblock
23237 #. type: textblock
23238 #: ../fish/guestfish.pod:667
23239 msgid ""
23240 "If you have several parameters, each containing a wildcard, then glob will "
23241 "perform a Cartesian product."
23242 msgstr ""
23243
23244 # type: =head1
23245 #. type: =head1
23246 #: ../fish/guestfish.pod:670
23247 msgid "COMMENTS"
23248 msgstr ""
23249
23250 # type: textblock
23251 #. type: textblock
23252 #: ../fish/guestfish.pod:672
23253 msgid ""
23254 "Any line which starts with a I<#> character is treated as a comment and "
23255 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
23256 "a command.  For example:"
23257 msgstr ""
23258
23259 # type: verbatim
23260 #. type: verbatim
23261 #: ../fish/guestfish.pod:676
23262 #, no-wrap
23263 msgid ""
23264 " # this is a comment\n"
23265 "         # this is a comment\n"
23266 " foo # NOT a comment\n"
23267 "\n"
23268 msgstr ""
23269
23270 # type: textblock
23271 #. type: textblock
23272 #: ../fish/guestfish.pod:680
23273 msgid "Blank lines are also ignored."
23274 msgstr ""
23275
23276 # type: =head1
23277 #. type: =head1
23278 #: ../fish/guestfish.pod:682
23279 msgid "RUNNING COMMANDS LOCALLY"
23280 msgstr ""
23281
23282 # type: textblock
23283 #. type: textblock
23284 #: ../fish/guestfish.pod:684
23285 msgid ""
23286 "Any line which starts with a I<!> character is treated as a command sent to "
23287 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
23288 msgstr ""
23289
23290 # type: verbatim
23291 #. type: verbatim
23292 #: ../fish/guestfish.pod:688
23293 #, no-wrap
23294 msgid ""
23295 " !mkdir local\n"
23296 " tgz-out /remote local/remote-data.tar.gz\n"
23297 "\n"
23298 msgstr ""
23299
23300 # type: textblock
23301 #. type: textblock
23302 #: ../fish/guestfish.pod:691
23303 msgid ""
23304 "will create a directory C<local> on the host, and then export the contents "
23305 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
23306 "(See C<tgz-out>)."
23307 msgstr ""
23308
23309 # type: textblock
23310 #. type: textblock
23311 #: ../fish/guestfish.pod:695
23312 msgid ""
23313 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
23314 "effect, due to the way that subprocesses work in Unix."
23315 msgstr ""
23316
23317 #. type: =head2
23318 #: ../fish/guestfish.pod:698
23319 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23320 msgstr ""
23321
23322 #. type: textblock
23323 #: ../fish/guestfish.pod:700
23324 msgid ""
23325 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23326 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23327 "and executed as guestfish commands."
23328 msgstr ""
23329
23330 #. type: textblock
23331 #: ../fish/guestfish.pod:704
23332 msgid ""
23333 "Thus you can use shell script to construct arbitrary guestfish commands "
23334 "which are then parsed by guestfish."
23335 msgstr ""
23336
23337 #. type: textblock
23338 #: ../fish/guestfish.pod:707
23339 msgid ""
23340 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23341 "through C</foo.100>) using guestfish commands alone.  However this is simple "
23342 "if we use a shell script to create the guestfish commands for us:"
23343 msgstr ""
23344
23345 #. type: verbatim
23346 #: ../fish/guestfish.pod:712
23347 #, no-wrap
23348 msgid ""
23349 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23350 "\n"
23351 msgstr ""
23352
23353 #. type: textblock
23354 #: ../fish/guestfish.pod:714
23355 msgid "or with names like C</foo.001>:"
23356 msgstr ""
23357
23358 #. type: verbatim
23359 #: ../fish/guestfish.pod:716
23360 #, no-wrap
23361 msgid ""
23362 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23363 "\n"
23364 msgstr ""
23365
23366 #. type: textblock
23367 #: ../fish/guestfish.pod:718
23368 msgid ""
23369 "When using guestfish interactively it can be helpful to just run the shell "
23370 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23371 "ordinary I<!> local command), see what guestfish commands it would run, and "
23372 "when you are happy with those prepend the C<E<lt>> character to run the "
23373 "guestfish commands for real."
23374 msgstr ""
23375
23376 # type: =head1
23377 #. type: =head1
23378 #: ../fish/guestfish.pod:724
23379 msgid "PIPES"
23380 msgstr ""
23381
23382 # type: textblock
23383 #. type: textblock
23384 #: ../fish/guestfish.pod:726
23385 msgid ""
23386 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23387 "command (a guestfish command) to the second command (any host command).  For "
23388 "example:"
23389 msgstr ""
23390
23391 # type: verbatim
23392 #. type: verbatim
23393 #: ../fish/guestfish.pod:730
23394 #, no-wrap
23395 msgid ""
23396 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23397 "\n"
23398 msgstr ""
23399
23400 # type: textblock
23401 #. type: textblock
23402 #: ../fish/guestfish.pod:732
23403 msgid ""
23404 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23405 "program).  The above command would list all accounts in the guest filesystem "
23406 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
23407 msgstr ""
23408
23409 # type: verbatim
23410 #. type: verbatim
23411 #: ../fish/guestfish.pod:737
23412 #, no-wrap
23413 msgid ""
23414 " hexdump /bin/ls | head\n"
23415 " list-devices | tail -1\n"
23416 " tgz-out / - | tar ztf -\n"
23417 "\n"
23418 msgstr ""
23419
23420 # type: textblock
23421 #. type: textblock
23422 #: ../fish/guestfish.pod:741
23423 msgid ""
23424 "The space before the pipe symbol is required, any space after the pipe "
23425 "symbol is optional.  Everything after the pipe symbol is just passed "
23426 "straight to the host shell, so it can contain redirections, globs and "
23427 "anything else that makes sense on the host side."
23428 msgstr ""
23429
23430 # type: textblock
23431 #. type: textblock
23432 #: ../fish/guestfish.pod:746
23433 msgid ""
23434 "To use a literal argument which begins with a pipe symbol, you have to quote "
23435 "it, eg:"
23436 msgstr ""
23437
23438 # type: verbatim
23439 #. type: verbatim
23440 #: ../fish/guestfish.pod:749
23441 #, no-wrap
23442 msgid ""
23443 " echo \"|\"\n"
23444 "\n"
23445 msgstr ""
23446
23447 # type: =head1
23448 #. type: =head1
23449 #: ../fish/guestfish.pod:751
23450 msgid "HOME DIRECTORIES"
23451 msgstr ""
23452
23453 # type: textblock
23454 #. type: textblock
23455 #: ../fish/guestfish.pod:753
23456 msgid ""
23457 "If a parameter starts with the character C<~> then the tilde may be expanded "
23458 "as a home directory path (either C<~> for the current user's home directory, "
23459 "or C<~user> for another user)."
23460 msgstr ""
23461
23462 # type: textblock
23463 #. type: textblock
23464 #: ../fish/guestfish.pod:757
23465 msgid ""
23466 "Note that home directory expansion happens for users known I<on the host>, "
23467 "not in the guest filesystem."
23468 msgstr ""
23469
23470 # type: textblock
23471 #. type: textblock
23472 #: ../fish/guestfish.pod:760
23473 msgid ""
23474 "To use a literal argument which begins with a tilde, you have to quote it, "
23475 "eg:"
23476 msgstr ""
23477
23478 # type: verbatim
23479 #. type: verbatim
23480 #: ../fish/guestfish.pod:763
23481 #, no-wrap
23482 msgid ""
23483 " echo \"~\"\n"
23484 "\n"
23485 msgstr ""
23486
23487 # type: textblock
23488 #. type: textblock
23489 #: ../fish/guestfish.pod:767
23490 msgid ""
23491 "Libguestfs has some support for Linux guests encrypted according to the "
23492 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23493 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
23494 "LUKS is supported."
23495 msgstr ""
23496
23497 # type: textblock
23498 #. type: textblock
23499 #: ../fish/guestfish.pod:772
23500 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23501 msgstr ""
23502
23503 # type: verbatim
23504 #. type: verbatim
23505 #: ../fish/guestfish.pod:774
23506 #, no-wrap
23507 msgid ""
23508 " ><fs> vfs-type /dev/sda2\n"
23509 " crypto_LUKS\n"
23510 "\n"
23511 msgstr ""
23512
23513 # type: textblock
23514 #. type: textblock
23515 #: ../fish/guestfish.pod:777
23516 msgid ""
23517 "Then open those devices using L</luks-open>.  This creates a device-mapper "
23518 "device called C</dev/mapper/luksdev>."
23519 msgstr ""
23520
23521 # type: verbatim
23522 #. type: verbatim
23523 #: ../fish/guestfish.pod:780
23524 #, no-wrap
23525 msgid ""
23526 " ><fs> luks-open /dev/sda2 luksdev\n"
23527 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23528 "\n"
23529 msgstr ""
23530
23531 # type: textblock
23532 #. type: textblock
23533 #: ../fish/guestfish.pod:783
23534 msgid ""
23535 "Finally you have to tell LVM to scan for volume groups on the newly created "
23536 "mapper device:"
23537 msgstr ""
23538
23539 # type: verbatim
23540 #. type: verbatim
23541 #: ../fish/guestfish.pod:786
23542 #, no-wrap
23543 msgid ""
23544 " vgscan\n"
23545 " vg-activate-all true\n"
23546 "\n"
23547 msgstr ""
23548
23549 # type: textblock
23550 #. type: textblock
23551 #: ../fish/guestfish.pod:789
23552 msgid "The logical volume(s) can now be mounted in the usual way."
23553 msgstr ""
23554
23555 # type: textblock
23556 #. type: textblock
23557 #: ../fish/guestfish.pod:791
23558 msgid ""
23559 "Before closing a LUKS device you must unmount any logical volumes on it and "
23560 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23561 "one.  Then you can close the mapper device:"
23562 msgstr ""
23563
23564 # type: verbatim
23565 #. type: verbatim
23566 #: ../fish/guestfish.pod:795
23567 #, no-wrap
23568 msgid ""
23569 " vg-activate false /dev/VG\n"
23570 " luks-close /dev/mapper/luksdev\n"
23571 "\n"
23572 msgstr ""
23573
23574 # type: =head1
23575 #. type: =head1
23576 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23577 msgid "WINDOWS PATHS"
23578 msgstr ""
23579
23580 #. type: textblock
23581 #: ../fish/guestfish.pod:800
23582 msgid ""
23583 "If a path is prefixed with C<win:> then you can use Windows-style drive "
23584 "letters and paths (with some limitations).  The following commands are "
23585 "equivalent:"
23586 msgstr ""
23587
23588 # type: verbatim
23589 #. type: verbatim
23590 #: ../fish/guestfish.pod:804
23591 #, no-wrap
23592 msgid ""
23593 " file /WINDOWS/system32/config/system.LOG\n"
23594 "\n"
23595 msgstr ""
23596
23597 # type: verbatim
23598 #. type: verbatim
23599 #: ../fish/guestfish.pod:806
23600 #, no-wrap
23601 msgid ""
23602 " file win:\\windows\\system32\\config\\system.log\n"
23603 "\n"
23604 msgstr ""
23605
23606 #. type: verbatim
23607 #: ../fish/guestfish.pod:808
23608 #, no-wrap
23609 msgid ""
23610 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
23611 "\n"
23612 msgstr ""
23613
23614 #. type: textblock
23615 #: ../fish/guestfish.pod:810
23616 msgid ""
23617 "The parameter is rewritten \"behind the scenes\" by looking up the position "
23618 "where the drive is mounted, prepending that to the path, changing all "
23619 "backslash characters to forward slash, then resolving the result using L</"
23620 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
23621 "the parameter might be rewritten like this:"
23622 msgstr ""
23623
23624 #. type: verbatim
23625 #: ../fish/guestfish.pod:816
23626 #, no-wrap
23627 msgid ""
23628 " win:e:\\foo\\bar => /e/FOO/bar\n"
23629 "\n"
23630 msgstr ""
23631
23632 #. type: textblock
23633 #: ../fish/guestfish.pod:818
23634 msgid "This only works in argument positions that expect a path."
23635 msgstr ""
23636
23637 # type: =head1
23638 #. type: =head1
23639 #: ../fish/guestfish.pod:820
23640 msgid "UPLOADING AND DOWNLOADING FILES"
23641 msgstr ""
23642
23643 # type: textblock
23644 #. type: textblock
23645 #: ../fish/guestfish.pod:822
23646 msgid ""
23647 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23648 "others which upload from or download to a local file, you can use the "
23649 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
23650 msgstr ""
23651
23652 # type: verbatim
23653 #. type: verbatim
23654 #: ../fish/guestfish.pod:826
23655 #, no-wrap
23656 msgid ""
23657 " upload - /foo\n"
23658 "\n"
23659 msgstr ""
23660
23661 # type: textblock
23662 #. type: textblock
23663 #: ../fish/guestfish.pod:828
23664 msgid ""
23665 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23666 msgstr ""
23667
23668 # type: verbatim
23669 #. type: verbatim
23670 #: ../fish/guestfish.pod:831
23671 #, no-wrap
23672 msgid ""
23673 " tar-out /etc - | tar tf -\n"
23674 "\n"
23675 msgstr ""
23676
23677 # type: textblock
23678 #. type: textblock
23679 #: ../fish/guestfish.pod:833
23680 msgid ""
23681 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23682 "command (see L</PIPES>)."
23683 msgstr ""
23684
23685 # type: textblock
23686 #. type: textblock
23687 #: ../fish/guestfish.pod:836
23688 msgid ""
23689 "When using C<-> to read from stdin, the input is read up to the end of "
23690 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
23691 "some arbitrary end marker:"
23692 msgstr ""
23693
23694 # type: verbatim
23695 #. type: verbatim
23696 #: ../fish/guestfish.pod:840
23697 #, no-wrap
23698 msgid ""
23699 " upload -<<END /foo\n"
23700 " input line 1\n"
23701 " input line 2\n"
23702 " input line 3\n"
23703 " END\n"
23704 "\n"
23705 msgstr ""
23706
23707 # type: textblock
23708 #. type: textblock
23709 #: ../fish/guestfish.pod:846
23710 msgid ""
23711 "Any string of characters can be used instead of C<END>.  The end marker must "
23712 "appear on a line of its own, without any preceeding or following characters "
23713 "(not even spaces)."
23714 msgstr ""
23715
23716 # type: textblock
23717 #. type: textblock
23718 #: ../fish/guestfish.pod:850
23719 msgid ""
23720 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23721 "upload local files (so-called \"FileIn\" parameters in the generator)."
23722 msgstr ""
23723
23724 # type: =head1
23725 #. type: =head1
23726 #: ../fish/guestfish.pod:853
23727 msgid "EXIT ON ERROR BEHAVIOUR"
23728 msgstr ""
23729
23730 # type: textblock
23731 #. type: textblock
23732 #: ../fish/guestfish.pod:855
23733 msgid ""
23734 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23735 "taking commands from a human over a tty), and will exit on the first error "
23736 "in non-interactive mode (scripts, commands given on the command line)."
23737 msgstr ""
23738
23739 # type: textblock
23740 #. type: textblock
23741 #: ../fish/guestfish.pod:860
23742 msgid ""
23743 "If you prefix a command with a I<-> character, then that command will not "
23744 "cause guestfish to exit, even if that (one) command returns an error."
23745 msgstr ""
23746
23747 # type: =head1
23748 #. type: =head1
23749 #: ../fish/guestfish.pod:864
23750 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23751 msgstr ""
23752
23753 # type: textblock
23754 #. type: textblock
23755 #: ../fish/guestfish.pod:866
23756 msgid ""
23757 "Guestfish can be remote-controlled over a socket.  This is useful "
23758 "particularly in shell scripts where you want to make several different "
23759 "changes to a filesystem, but you don't want the overhead of starting up a "
23760 "guestfish process each time."
23761 msgstr ""
23762
23763 # type: textblock
23764 #. type: textblock
23765 #: ../fish/guestfish.pod:871
23766 msgid "Start a guestfish server process using:"
23767 msgstr ""
23768
23769 # type: verbatim
23770 #. type: verbatim
23771 #: ../fish/guestfish.pod:873
23772 #, no-wrap
23773 msgid ""
23774 " eval \"`guestfish --listen`\"\n"
23775 "\n"
23776 msgstr ""
23777
23778 # type: textblock
23779 #. type: textblock
23780 #: ../fish/guestfish.pod:875
23781 msgid "and then send it commands by doing:"
23782 msgstr ""
23783
23784 # type: verbatim
23785 #. type: verbatim
23786 #: ../fish/guestfish.pod:877
23787 #, no-wrap
23788 msgid ""
23789 " guestfish --remote cmd [...]\n"
23790 "\n"
23791 msgstr ""
23792
23793 # type: textblock
23794 #. type: textblock
23795 #: ../fish/guestfish.pod:879
23796 msgid "To cause the server to exit, send it the exit command:"
23797 msgstr ""
23798
23799 # type: verbatim
23800 #. type: verbatim
23801 #: ../fish/guestfish.pod:881
23802 #, no-wrap
23803 msgid ""
23804 " guestfish --remote exit\n"
23805 "\n"
23806 msgstr ""
23807
23808 # type: textblock
23809 #. type: textblock
23810 #: ../fish/guestfish.pod:883
23811 msgid ""
23812 "Note that the server will normally exit if there is an error in a command.  "
23813 "You can change this in the usual way.  See section L</EXIT ON ERROR "
23814 "BEHAVIOUR>."
23815 msgstr ""
23816
23817 # type: =head2
23818 #. type: =head2
23819 #: ../fish/guestfish.pod:887
23820 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23821 msgstr ""
23822
23823 # type: textblock
23824 #. type: textblock
23825 #: ../fish/guestfish.pod:889
23826 msgid ""
23827 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23828 "is how the I<--remote> option knows where to send the commands.  You can "
23829 "have several guestfish listener processes running using:"
23830 msgstr ""
23831
23832 # type: verbatim
23833 #. type: verbatim
23834 #: ../fish/guestfish.pod:893
23835 #, no-wrap
23836 msgid ""
23837 " eval \"`guestfish --listen`\"\n"
23838 " pid1=$GUESTFISH_PID\n"
23839 " eval \"`guestfish --listen`\"\n"
23840 " pid2=$GUESTFISH_PID\n"
23841 " ...\n"
23842 " guestfish --remote=$pid1 cmd\n"
23843 " guestfish --remote=$pid2 cmd\n"
23844 "\n"
23845 msgstr ""
23846
23847 # type: =head2
23848 #. type: =head2
23849 #: ../fish/guestfish.pod:901
23850 msgid "REMOTE CONTROL AND CSH"
23851 msgstr ""
23852
23853 # type: textblock
23854 #. type: textblock
23855 #: ../fish/guestfish.pod:903
23856 msgid ""
23857 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23858 "option:"
23859 msgstr ""
23860
23861 # type: verbatim
23862 #. type: verbatim
23863 #: ../fish/guestfish.pod:906
23864 #, no-wrap
23865 msgid ""
23866 " eval \"`guestfish --listen --csh`\"\n"
23867 "\n"
23868 msgstr ""
23869
23870 # type: =head2
23871 #. type: =head2
23872 #: ../fish/guestfish.pod:908
23873 msgid "REMOTE CONTROL DETAILS"
23874 msgstr ""
23875
23876 # type: textblock
23877 #. type: textblock
23878 #: ../fish/guestfish.pod:910
23879 msgid ""
23880 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23881 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23882 "and C<$PID> is the process ID of the server."
23883 msgstr ""
23884
23885 # type: textblock
23886 #. type: textblock
23887 #: ../fish/guestfish.pod:914
23888 msgid "Guestfish client and server versions must match exactly."
23889 msgstr ""
23890
23891 # type: =head1
23892 #. type: =head1
23893 #: ../fish/guestfish.pod:916
23894 msgid "PREPARED DISK IMAGES"
23895 msgstr ""
23896
23897 # type: textblock
23898 #. type: textblock
23899 #: ../fish/guestfish.pod:918
23900 msgid ""
23901 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23902 "preformatted disk images that guestfish can make for you to save typing.  "
23903 "This is particularly useful for testing purposes.  This option is used "
23904 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23905 "can be mixed with I<-a>)."
23906 msgstr ""
23907
23908 # type: textblock
23909 #. type: textblock
23910 #: ../fish/guestfish.pod:924
23911 msgid ""
23912 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23913 "the second and so on.  Existing files in the current directory are "
23914 "I<overwritten>."
23915 msgstr ""
23916
23917 # type: textblock
23918 #. type: textblock
23919 #: ../fish/guestfish.pod:928
23920 msgid ""
23921 "The type briefly describes how the disk should be sized, partitioned, how "
23922 "filesystem(s) should be created, and how content should be added.  "
23923 "Optionally the type can be followed by extra parameters, separated by C<:> "
23924 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
23925 "allocated disk, containing a single partition, with the partition formatted "
23926 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23927 "disk instead."
23928 msgstr ""
23929
23930 # type: textblock
23931 #. type: textblock
23932 #: ../fish/guestfish.pod:936
23933 msgid "To list the available types and any extra parameters they take, run:"
23934 msgstr ""
23935
23936 # type: textblock
23937 #. type: textblock
23938 #: ../fish/guestfish.pod:940
23939 msgid ""
23940 "Note that the prepared filesystem is not mounted.  You would usually have to "
23941 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
23942 msgstr ""
23943
23944 # type: textblock
23945 #. type: textblock
23946 #: ../fish/guestfish.pod:944
23947 msgid ""
23948 "If any I<-N> or I<--new> options are given, the guest is automatically "
23949 "launched."
23950 msgstr ""
23951
23952 # type: textblock
23953 #. type: textblock
23954 #: ../fish/guestfish.pod:949
23955 msgid "Create a 100MB disk with an ext4-formatted partition:"
23956 msgstr ""
23957
23958 # type: verbatim
23959 #. type: verbatim
23960 #: ../fish/guestfish.pod:951
23961 #, no-wrap
23962 msgid ""
23963 " guestfish -N fs:ext4\n"
23964 "\n"
23965 msgstr ""
23966
23967 # type: textblock
23968 #. type: textblock
23969 #: ../fish/guestfish.pod:953
23970 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
23971 msgstr ""
23972
23973 # type: verbatim
23974 #. type: verbatim
23975 #: ../fish/guestfish.pod:955
23976 #, no-wrap
23977 msgid ""
23978 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
23979 "\n"
23980 msgstr ""
23981
23982 # type: textblock
23983 #. type: textblock
23984 #: ../fish/guestfish.pod:957
23985 msgid "Create a blank 200MB disk:"
23986 msgstr ""
23987
23988 # type: verbatim
23989 #. type: verbatim
23990 #: ../fish/guestfish.pod:959
23991 #, no-wrap
23992 msgid ""
23993 " guestfish -N disk:200M\n"
23994 "\n"
23995 msgstr ""
23996
23997 # type: =head1
23998 #. type: =head1
23999 #: ../fish/guestfish.pod:961
24000 msgid "PROGRESS BARS"
24001 msgstr ""
24002
24003 # type: textblock
24004 #. type: textblock
24005 #: ../fish/guestfish.pod:963
24006 msgid ""
24007 "Some (not all) long-running commands send progress notification messages as "
24008 "they are running.  Guestfish turns these messages into progress bars."
24009 msgstr ""
24010
24011 # type: textblock
24012 #. type: textblock
24013 #: ../fish/guestfish.pod:967
24014 msgid ""
24015 "When a command that supports progress bars takes longer than two seconds to "
24016 "run, and if progress bars are enabled, then you will see one appearing below "
24017 "the command:"
24018 msgstr ""
24019
24020 # type: verbatim
24021 #. type: verbatim
24022 #: ../fish/guestfish.pod:971
24023 #, no-wrap
24024 msgid ""
24025 " ><fs> copy-size /large-file /another-file 2048M\n"
24026 " / 10% [#####-----------------------------------------] 00:30\n"
24027 "\n"
24028 msgstr ""
24029
24030 # type: textblock
24031 #. type: textblock
24032 #: ../fish/guestfish.pod:974
24033 msgid ""
24034 "The spinner on the left hand side moves round once for every progress "
24035 "notification received from the backend.  This is a (reasonably) golden "
24036 "assurance that the command is \"doing something\" even if the progress bar "
24037 "is not moving, because the command is able to send the progress "
24038 "notifications.  When the bar reaches 100% and the command finishes, the "
24039 "spinner disappears."
24040 msgstr ""
24041
24042 # type: textblock
24043 #. type: textblock
24044 #: ../fish/guestfish.pod:981
24045 msgid ""
24046 "Progress bars are enabled by default when guestfish is used interactively.  "
24047 "You can enable them even for non-interactive modes using I<--progress-bars>, "
24048 "and you can disable them completely using I<--no-progress-bars>."
24049 msgstr ""
24050
24051 # type: =head1
24052 #. type: =head1
24053 #: ../fish/guestfish.pod:986
24054 msgid "GUESTFISH COMMANDS"
24055 msgstr ""
24056
24057 # type: textblock
24058 #. type: textblock
24059 #: ../fish/guestfish.pod:988
24060 msgid ""
24061 "The commands in this section are guestfish convenience commands, in other "
24062 "words, they are not part of the L<guestfs(3)> API."
24063 msgstr ""
24064
24065 # type: =head2
24066 #. type: =head2
24067 #: ../fish/guestfish.pod:991
24068 msgid "help"
24069 msgstr ""
24070
24071 # type: verbatim
24072 #. type: verbatim
24073 #: ../fish/guestfish.pod:993
24074 #, no-wrap
24075 msgid ""
24076 " help\n"
24077 " help cmd\n"
24078 "\n"
24079 msgstr ""
24080
24081 # type: textblock
24082 #. type: textblock
24083 #: ../fish/guestfish.pod:996
24084 msgid "Without any parameter, this provides general help."
24085 msgstr ""
24086
24087 # type: textblock
24088 #. type: textblock
24089 #: ../fish/guestfish.pod:998
24090 msgid "With a C<cmd> parameter, this displays detailed help for that command."
24091 msgstr ""
24092
24093 # type: =head2
24094 #. type: =head2
24095 #: ../fish/guestfish.pod:1000
24096 msgid "quit | exit"
24097 msgstr ""
24098
24099 # type: textblock
24100 #. type: textblock
24101 #: ../fish/guestfish.pod:1002
24102 msgid "This exits guestfish.  You can also use C<^D> key."
24103 msgstr ""
24104
24105 # type: textblock
24106 #. type: textblock
24107 #: ../fish/guestfish.pod:1004
24108 msgid "@FISH_COMMANDS@"
24109 msgstr ""
24110
24111 # type: =head1
24112 #. type: =head1
24113 #: ../fish/guestfish.pod:1006
24114 msgid "COMMANDS"
24115 msgstr ""
24116
24117 # type: =head1
24118 #. type: =head1
24119 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
24120 msgid "EXIT CODE"
24121 msgstr ""
24122
24123 # type: textblock
24124 #. type: textblock
24125 #: ../fish/guestfish.pod:1012
24126 msgid ""
24127 "guestfish returns 0 if the commands completed without error, or 1 if there "
24128 "was an error."
24129 msgstr ""
24130
24131 # type: =item
24132 #. type: =item
24133 #: ../fish/guestfish.pod:1019
24134 msgid "EDITOR"
24135 msgstr ""
24136
24137 # type: textblock
24138 #. type: textblock
24139 #: ../fish/guestfish.pod:1021
24140 msgid ""
24141 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
24142 "C<vi>."
24143 msgstr ""
24144
24145 # type: =item
24146 #. type: =item
24147 #: ../fish/guestfish.pod:1024
24148 msgid "GUESTFISH_PID"
24149 msgstr ""
24150
24151 # type: textblock
24152 #. type: textblock
24153 #: ../fish/guestfish.pod:1026
24154 msgid ""
24155 "Used with the I<--remote> option to specify the remote guestfish process to "
24156 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
24157 msgstr ""
24158
24159 # type: =item
24160 #. type: =item
24161 #: ../fish/guestfish.pod:1030
24162 msgid "HEXEDITOR"
24163 msgstr ""
24164
24165 # type: textblock
24166 #. type: textblock
24167 #: ../fish/guestfish.pod:1032
24168 msgid ""
24169 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
24170 "not specified, the external L<hexedit(1)> program is used."
24171 msgstr ""
24172
24173 # type: =item
24174 #. type: =item
24175 #: ../fish/guestfish.pod:1036
24176 msgid "HOME"
24177 msgstr ""
24178
24179 # type: textblock
24180 #. type: textblock
24181 #: ../fish/guestfish.pod:1038
24182 msgid ""
24183 "If compiled with GNU readline support, various files in the home directory "
24184 "can be used.  See L</FILES>."
24185 msgstr ""
24186
24187 # type: textblock
24188 #. type: textblock
24189 #: ../fish/guestfish.pod:1047
24190 msgid ""
24191 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
24192 "effect as using the B<-v> option."
24193 msgstr ""
24194
24195 # type: textblock
24196 #. type: textblock
24197 #: ../fish/guestfish.pod:1059
24198 msgid ""
24199 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
24200 "the discussion of paths in L<guestfs(3)>."
24201 msgstr ""
24202
24203 # type: textblock
24204 #. type: textblock
24205 #: ../fish/guestfish.pod:1070
24206 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
24207 msgstr ""
24208
24209 # type: =item
24210 #. type: =item
24211 #: ../fish/guestfish.pod:1072
24212 msgid "PAGER"
24213 msgstr ""
24214
24215 # type: textblock
24216 #. type: textblock
24217 #: ../fish/guestfish.pod:1074
24218 msgid ""
24219 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
24220 "C<more>."
24221 msgstr ""
24222
24223 # type: =head1
24224 #. type: =head1
24225 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:262
24226 msgid "FILES"
24227 msgstr ""
24228
24229 #. type: =item
24230 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:266
24231 msgid "$HOME/.libguestfs-tools.rc"
24232 msgstr ""
24233
24234 #. type: =item
24235 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
24236 msgid "/etc/libguestfs-tools.conf"
24237 msgstr ""
24238
24239 #. type: textblock
24240 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
24241 msgid ""
24242 "This configuration file controls the default read-only or read-write mode "
24243 "(I<--ro> or I<--rw>)."
24244 msgstr ""
24245
24246 #. type: textblock
24247 #: ../fish/guestfish.pod:1101
24248 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24249 msgstr ""
24250
24251 # type: =item
24252 #. type: =item
24253 #: ../fish/guestfish.pod:1103
24254 msgid "$HOME/.guestfish"
24255 msgstr ""
24256
24257 # type: textblock
24258 #. type: textblock
24259 #: ../fish/guestfish.pod:1105
24260 msgid ""
24261 "If compiled with GNU readline support, then the command history is saved in "
24262 "this file."
24263 msgstr ""
24264
24265 # type: =item
24266 #. type: =item
24267 #: ../fish/guestfish.pod:1108
24268 msgid "$HOME/.inputrc"
24269 msgstr ""
24270
24271 # type: =item
24272 #. type: =item
24273 #: ../fish/guestfish.pod:1110
24274 msgid "/etc/inputrc"
24275 msgstr ""
24276
24277 # type: textblock
24278 #. type: textblock
24279 #: ../fish/guestfish.pod:1112
24280 msgid ""
24281 "If compiled with GNU readline support, then these files can be used to "
24282 "configure readline.  For further information, please see L<readline(3)/"
24283 "INITIALIZATION FILE>."
24284 msgstr ""
24285
24286 # type: textblock
24287 #. type: textblock
24288 #: ../fish/guestfish.pod:1116
24289 msgid "To write rules which only apply to guestfish, use:"
24290 msgstr ""
24291
24292 # type: verbatim
24293 #. type: verbatim
24294 #: ../fish/guestfish.pod:1118
24295 #, no-wrap
24296 msgid ""
24297 " $if guestfish\n"
24298 " ...\n"
24299 " $endif\n"
24300 "\n"
24301 msgstr ""
24302
24303 # type: textblock
24304 #. type: textblock
24305 #: ../fish/guestfish.pod:1122
24306 msgid ""
24307 "Variables that you can set in inputrc that change the behaviour of guestfish "
24308 "in useful ways include:"
24309 msgstr ""
24310
24311 # type: =item
24312 #. type: =item
24313 #: ../fish/guestfish.pod:1127
24314 msgid "completion-ignore-case (default: on)"
24315 msgstr ""
24316
24317 # type: textblock
24318 #. type: textblock
24319 #: ../fish/guestfish.pod:1129
24320 msgid ""
24321 "By default, guestfish will ignore case when tab-completing paths on the "
24322 "disk.  Use:"
24323 msgstr ""
24324
24325 # type: verbatim
24326 #. type: verbatim
24327 #: ../fish/guestfish.pod:1132
24328 #, no-wrap
24329 msgid ""
24330 " set completion-ignore-case off\n"
24331 "\n"
24332 msgstr ""
24333
24334 # type: textblock
24335 #. type: textblock
24336 #: ../fish/guestfish.pod:1134
24337 msgid "to make guestfish case sensitive."
24338 msgstr ""
24339
24340 # type: =item
24341 #. type: =item
24342 #: ../fish/guestfish.pod:1138
24343 msgid "test1.img"
24344 msgstr ""
24345
24346 # type: =item
24347 #. type: =item
24348 #: ../fish/guestfish.pod:1140
24349 msgid "test2.img (etc)"
24350 msgstr ""
24351
24352 #. type: textblock
24353 #: ../fish/guestfish.pod:1142
24354 msgid ""
24355 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
24356 "will be created in the file C<test1.img> in the current directory.  The "
24357 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
24358 "the same name will be overwritten."
24359 msgstr ""
24360
24361 #. type: textblock
24362 #: ../fish/guestfish.pod:1151
24363 msgid ""
24364 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24365 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24366 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24367 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24368 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24369 ">, L<hexedit(1)>."
24370 msgstr ""
24371
24372 # type: textblock
24373 #. type: textblock
24374 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
24375 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
24376 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24377 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24378 #: ../tools/virt-list-partitions.pl:277
24379 msgid ""
24380 "This program is free software; you can redistribute it and/or modify it "
24381 "under the terms of the GNU General Public License as published by the Free "
24382 "Software Foundation; either version 2 of the License, or (at your option) "
24383 "any later version."
24384 msgstr ""
24385
24386 # type: textblock
24387 #. type: textblock
24388 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
24389 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
24390 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24391 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24392 #: ../tools/virt-list-partitions.pl:282
24393 msgid ""
24394 "This program is distributed in the hope that it will be useful, but WITHOUT "
24395 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24396 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
24397 "more details."
24398 msgstr ""
24399
24400 # type: textblock
24401 #. type: textblock
24402 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
24403 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
24404 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24405 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24406 #: ../tools/virt-list-partitions.pl:287
24407 msgid ""
24408 "You should have received a copy of the GNU General Public License along with "
24409 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24410 "Ave, Cambridge, MA 02139, USA."
24411 msgstr ""
24412
24413 # type: =head2
24414 #. type: =head2
24415 #: ../fish/guestfish-actions.pod:1
24416 msgid "add-cdrom"
24417 msgstr ""
24418
24419 # type: verbatim
24420 #. type: verbatim
24421 #: ../fish/guestfish-actions.pod:3
24422 #, no-wrap
24423 msgid ""
24424 " add-cdrom filename\n"
24425 "\n"
24426 msgstr ""
24427
24428 # type: textblock
24429 #. type: textblock
24430 #: ../fish/guestfish-actions.pod:15
24431 msgid ""
24432 "This call checks for the existence of C<filename>.  This stops you from "
24433 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24434 "and C<http:> URLs.  To specify those, use the general L</config> call "
24435 "instead."
24436 msgstr ""
24437
24438 # type: textblock
24439 #. type: textblock
24440 #: ../fish/guestfish-actions.pod:22
24441 msgid ""
24442 "If you just want to add an ISO file (often you use this as an efficient way "
24443 "to transfer large files into the guest), then you should probably use L</add-"
24444 "drive-ro> instead."
24445 msgstr ""
24446
24447 # type: =head2
24448 #. type: =head2
24449 #: ../fish/guestfish-actions.pod:35
24450 msgid "add-domain"
24451 msgstr ""
24452
24453 # type: =head2
24454 #. type: =head2
24455 #: ../fish/guestfish-actions.pod:37
24456 msgid "domain"
24457 msgstr ""
24458
24459 #. type: verbatim
24460 #: ../fish/guestfish-actions.pod:39
24461 #, no-wrap
24462 msgid ""
24463 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24464 "\n"
24465 msgstr ""
24466
24467 # type: textblock
24468 #. type: textblock
24469 #: ../fish/guestfish-actions.pod:41
24470 msgid ""
24471 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
24472 "It works by connecting to libvirt, requesting the domain and domain XML from "
24473 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24474 msgstr ""
24475
24476 # type: textblock
24477 #. type: textblock
24478 #: ../fish/guestfish-actions.pod:71
24479 msgid ""
24480 "The other optional parameters are passed directly through to L</add-drive-"
24481 "opts>."
24482 msgstr ""
24483
24484 # type: textblock
24485 #. type: textblock
24486 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24487 #: ../fish/guestfish-actions.pod:3044
24488 msgid ""
24489 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
24490 msgstr ""
24491
24492 # type: =head2
24493 #. type: =head2
24494 #: ../fish/guestfish-actions.pod:76
24495 msgid "add-drive"
24496 msgstr ""
24497
24498 # type: verbatim
24499 #. type: verbatim
24500 #: ../fish/guestfish-actions.pod:78
24501 #, no-wrap
24502 msgid ""
24503 " add-drive filename\n"
24504 "\n"
24505 msgstr ""
24506
24507 # type: textblock
24508 #. type: textblock
24509 #: ../fish/guestfish-actions.pod:80
24510 msgid ""
24511 "This function is the equivalent of calling L</add-drive-opts> with no "
24512 "optional parameters, so the disk is added writable, with the format being "
24513 "detected automatically."
24514 msgstr ""
24515
24516 # type: textblock
24517 #. type: textblock
24518 #: ../fish/guestfish-actions.pod:84
24519 msgid ""
24520 "Automatic detection of the format opens you up to a potential security hole "
24521 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
24522 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
24523 "you should think about replacing calls to this function with calls to L</add-"
24524 "drive-opts>, and specifying the format."
24525 msgstr ""
24526
24527 # type: =head2
24528 #. type: =head2
24529 #: ../fish/guestfish-actions.pod:91
24530 msgid "add-drive-opts"
24531 msgstr ""
24532
24533 # type: =head2
24534 #. type: =head2
24535 #: ../fish/guestfish-actions.pod:93
24536 msgid "add"
24537 msgstr ""
24538
24539 # type: verbatim
24540 #. type: verbatim
24541 #: ../fish/guestfish-actions.pod:95
24542 #, no-wrap
24543 msgid ""
24544 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24545 "\n"
24546 msgstr ""
24547
24548 # type: textblock
24549 #. type: textblock
24550 #: ../fish/guestfish-actions.pod:122
24551 msgid ""
24552 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
24553 "add-drive-ro>) then the format is automatically detected.  Possible formats "
24554 "include C<raw> and C<qcow2>."
24555 msgstr ""
24556
24557 # type: textblock
24558 #. type: textblock
24559 #: ../fish/guestfish-actions.pod:133
24560 msgid ""
24561 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24562 "add-drive-with-if> call (q.v.)"
24563 msgstr ""
24564
24565 # type: =head2
24566 #. type: =head2
24567 #: ../fish/guestfish-actions.pod:140
24568 msgid "add-drive-ro"
24569 msgstr ""
24570
24571 # type: =head2
24572 #. type: =head2
24573 #: ../fish/guestfish-actions.pod:142
24574 msgid "add-ro"
24575 msgstr ""
24576
24577 # type: verbatim
24578 #. type: verbatim
24579 #: ../fish/guestfish-actions.pod:144
24580 #, no-wrap
24581 msgid ""
24582 " add-drive-ro filename\n"
24583 "\n"
24584 msgstr ""
24585
24586 # type: textblock
24587 #. type: textblock
24588 #: ../fish/guestfish-actions.pod:146
24589 msgid ""
24590 "This function is the equivalent of calling L</add-drive-opts> with the "
24591 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24592 "is added read-only, with the format being detected automatically."
24593 msgstr ""
24594
24595 # type: =head2
24596 #. type: =head2
24597 #: ../fish/guestfish-actions.pod:151
24598 msgid "add-drive-ro-with-if"
24599 msgstr ""
24600
24601 # type: verbatim
24602 #. type: verbatim
24603 #: ../fish/guestfish-actions.pod:153
24604 #, no-wrap
24605 msgid ""
24606 " add-drive-ro-with-if filename iface\n"
24607 "\n"
24608 msgstr ""
24609
24610 # type: textblock
24611 #. type: textblock
24612 #: ../fish/guestfish-actions.pod:155
24613 msgid ""
24614 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24615 "interface emulation to use at run time."
24616 msgstr ""
24617
24618 # type: =head2
24619 #. type: =head2
24620 #: ../fish/guestfish-actions.pod:165
24621 msgid "add-drive-with-if"
24622 msgstr ""
24623
24624 # type: verbatim
24625 #. type: verbatim
24626 #: ../fish/guestfish-actions.pod:167
24627 #, no-wrap
24628 msgid ""
24629 " add-drive-with-if filename iface\n"
24630 "\n"
24631 msgstr ""
24632
24633 # type: textblock
24634 #. type: textblock
24635 #: ../fish/guestfish-actions.pod:169
24636 msgid ""
24637 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24638 "interface emulation to use at run time."
24639 msgstr ""
24640
24641 # type: =head2
24642 #. type: =head2
24643 #: ../fish/guestfish-actions.pod:179
24644 msgid "aug-clear"
24645 msgstr ""
24646
24647 # type: verbatim
24648 #. type: verbatim
24649 #: ../fish/guestfish-actions.pod:181
24650 #, no-wrap
24651 msgid ""
24652 " aug-clear augpath\n"
24653 "\n"
24654 msgstr ""
24655
24656 # type: =head2
24657 #. type: =head2
24658 #: ../fish/guestfish-actions.pod:186
24659 msgid "aug-close"
24660 msgstr ""
24661
24662 # type: verbatim
24663 #. type: verbatim
24664 #: ../fish/guestfish-actions.pod:188
24665 #, no-wrap
24666 msgid ""
24667 " aug-close\n"
24668 "\n"
24669 msgstr ""
24670
24671 # type: textblock
24672 #. type: textblock
24673 #: ../fish/guestfish-actions.pod:190
24674 msgid ""
24675 "Close the current Augeas handle and free up any resources used by it.  After "
24676 "calling this, you have to call L</aug-init> again before you can use any "
24677 "other Augeas functions."
24678 msgstr ""
24679
24680 # type: =head2
24681 #. type: =head2
24682 #: ../fish/guestfish-actions.pod:195
24683 msgid "aug-defnode"
24684 msgstr ""
24685
24686 # type: verbatim
24687 #. type: verbatim
24688 #: ../fish/guestfish-actions.pod:197
24689 #, no-wrap
24690 msgid ""
24691 " aug-defnode name expr val\n"
24692 "\n"
24693 msgstr ""
24694
24695 # type: textblock
24696 #. type: textblock
24697 #: ../fish/guestfish-actions.pod:202
24698 msgid ""
24699 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24700 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
24701 "containing that single node."
24702 msgstr ""
24703
24704 # type: =head2
24705 #. type: =head2
24706 #: ../fish/guestfish-actions.pod:210
24707 msgid "aug-defvar"
24708 msgstr ""
24709
24710 # type: verbatim
24711 #. type: verbatim
24712 #: ../fish/guestfish-actions.pod:212
24713 #, no-wrap
24714 msgid ""
24715 " aug-defvar name expr\n"
24716 "\n"
24717 msgstr ""
24718
24719 # type: =head2
24720 #. type: =head2
24721 #: ../fish/guestfish-actions.pod:221
24722 msgid "aug-get"
24723 msgstr ""
24724
24725 # type: verbatim
24726 #. type: verbatim
24727 #: ../fish/guestfish-actions.pod:223
24728 #, no-wrap
24729 msgid ""
24730 " aug-get augpath\n"
24731 "\n"
24732 msgstr ""
24733
24734 # type: =head2
24735 #. type: =head2
24736 #: ../fish/guestfish-actions.pod:228
24737 msgid "aug-init"
24738 msgstr ""
24739
24740 # type: verbatim
24741 #. type: verbatim
24742 #: ../fish/guestfish-actions.pod:230
24743 #, no-wrap
24744 msgid ""
24745 " aug-init root flags\n"
24746 "\n"
24747 msgstr ""
24748
24749 # type: textblock
24750 #. type: textblock
24751 #: ../fish/guestfish-actions.pod:236
24752 msgid "You must call this before using any other L</aug-*> commands."
24753 msgstr ""
24754
24755 # type: textblock
24756 #. type: textblock
24757 #: ../fish/guestfish-actions.pod:271
24758 msgid "Do not load the tree in L</aug-init>."
24759 msgstr ""
24760
24761 # type: textblock
24762 #. type: textblock
24763 #: ../fish/guestfish-actions.pod:275
24764 msgid "To close the handle, you can call L</aug-close>."
24765 msgstr ""
24766
24767 # type: =head2
24768 #. type: =head2
24769 #: ../fish/guestfish-actions.pod:279
24770 msgid "aug-insert"
24771 msgstr ""
24772
24773 # type: verbatim
24774 #. type: verbatim
24775 #: ../fish/guestfish-actions.pod:281
24776 #, no-wrap
24777 msgid ""
24778 " aug-insert augpath label true|false\n"
24779 "\n"
24780 msgstr ""
24781
24782 # type: =head2
24783 #. type: =head2
24784 #: ../fish/guestfish-actions.pod:291
24785 msgid "aug-load"
24786 msgstr ""
24787
24788 # type: verbatim
24789 #. type: verbatim
24790 #: ../fish/guestfish-actions.pod:293
24791 #, no-wrap
24792 msgid ""
24793 " aug-load\n"
24794 "\n"
24795 msgstr ""
24796
24797 # type: =head2
24798 #. type: =head2
24799 #: ../fish/guestfish-actions.pod:300
24800 msgid "aug-ls"
24801 msgstr ""
24802
24803 # type: verbatim
24804 #. type: verbatim
24805 #: ../fish/guestfish-actions.pod:302
24806 #, no-wrap
24807 msgid ""
24808 " aug-ls augpath\n"
24809 "\n"
24810 msgstr ""
24811
24812 # type: textblock
24813 #. type: textblock
24814 #: ../fish/guestfish-actions.pod:304
24815 msgid ""
24816 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24817 "resulting nodes into alphabetical order."
24818 msgstr ""
24819
24820 # type: =head2
24821 #. type: =head2
24822 #: ../fish/guestfish-actions.pod:307
24823 msgid "aug-match"
24824 msgstr ""
24825
24826 # type: verbatim
24827 #. type: verbatim
24828 #: ../fish/guestfish-actions.pod:309
24829 #, no-wrap
24830 msgid ""
24831 " aug-match augpath\n"
24832 "\n"
24833 msgstr ""
24834
24835 # type: =head2
24836 #. type: =head2
24837 #: ../fish/guestfish-actions.pod:315
24838 msgid "aug-mv"
24839 msgstr ""
24840
24841 # type: verbatim
24842 #. type: verbatim
24843 #: ../fish/guestfish-actions.pod:317
24844 #, no-wrap
24845 msgid ""
24846 " aug-mv src dest\n"
24847 "\n"
24848 msgstr ""
24849
24850 # type: =head2
24851 #. type: =head2
24852 #: ../fish/guestfish-actions.pod:322
24853 msgid "aug-rm"
24854 msgstr ""
24855
24856 # type: verbatim
24857 #. type: verbatim
24858 #: ../fish/guestfish-actions.pod:324
24859 #, no-wrap
24860 msgid ""
24861 " aug-rm augpath\n"
24862 "\n"
24863 msgstr ""
24864
24865 # type: =head2
24866 #. type: =head2
24867 #: ../fish/guestfish-actions.pod:330
24868 msgid "aug-save"
24869 msgstr ""
24870
24871 # type: verbatim
24872 #. type: verbatim
24873 #: ../fish/guestfish-actions.pod:332
24874 #, no-wrap
24875 msgid ""
24876 " aug-save\n"
24877 "\n"
24878 msgstr ""
24879
24880 # type: textblock
24881 #. type: textblock
24882 #: ../fish/guestfish-actions.pod:336
24883 msgid ""
24884 "The flags which were passed to L</aug-init> affect exactly how files are "
24885 "saved."
24886 msgstr ""
24887
24888 # type: =head2
24889 #. type: =head2
24890 #: ../fish/guestfish-actions.pod:339
24891 msgid "aug-set"
24892 msgstr ""
24893
24894 # type: verbatim
24895 #. type: verbatim
24896 #: ../fish/guestfish-actions.pod:341
24897 #, no-wrap
24898 msgid ""
24899 " aug-set augpath val\n"
24900 "\n"
24901 msgstr ""
24902
24903 # type: textblock
24904 #. type: textblock
24905 #: ../fish/guestfish-actions.pod:345
24906 msgid ""
24907 "In the Augeas API, it is possible to clear a node by setting the value to "
24908 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
24909 "this call.  Instead you must use the L</aug-clear> call."
24910 msgstr ""
24911
24912 # type: =head2
24913 #. type: =head2
24914 #: ../fish/guestfish-actions.pod:350
24915 msgid "available"
24916 msgstr ""
24917
24918 # type: verbatim
24919 #. type: verbatim
24920 #: ../fish/guestfish-actions.pod:352
24921 #, no-wrap
24922 msgid ""
24923 " available 'groups ...'\n"
24924 "\n"
24925 msgstr ""
24926
24927 # type: textblock
24928 #. type: textblock
24929 #: ../fish/guestfish-actions.pod:358
24930 msgid ""
24931 "The libguestfs groups, and the functions that those groups correspond to, "
24932 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
24933 "runtime by calling L</available-all-groups>."
24934 msgstr ""
24935
24936 # type: textblock
24937 #. type: textblock
24938 #: ../fish/guestfish-actions.pod:382
24939 msgid "You must call L</launch> before calling this function."
24940 msgstr ""
24941
24942 # type: textblock
24943 #. type: textblock
24944 #: ../fish/guestfish-actions.pod:404
24945 msgid ""
24946 "This call was added in version C<1.0.80>.  In previous versions of "
24947 "libguestfs all you could do would be to speculatively execute a command to "
24948 "find out if the daemon implemented it.  See also L</version>."
24949 msgstr ""
24950
24951 # type: =head2
24952 #. type: =head2
24953 #: ../fish/guestfish-actions.pod:411
24954 msgid "available-all-groups"
24955 msgstr ""
24956
24957 # type: verbatim
24958 #. type: verbatim
24959 #: ../fish/guestfish-actions.pod:413
24960 #, no-wrap
24961 msgid ""
24962 " available-all-groups\n"
24963 "\n"
24964 msgstr ""
24965
24966 # type: textblock
24967 #. type: textblock
24968 #: ../fish/guestfish-actions.pod:415
24969 msgid ""
24970 "This command returns a list of all optional groups that this daemon knows "
24971 "about.  Note this returns both supported and unsupported groups.  To find "
24972 "out which ones the daemon can actually support you have to call L</"
24973 "available> on each member of the returned list."
24974 msgstr ""
24975
24976 # type: textblock
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:421
24979 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
24980 msgstr ""
24981
24982 # type: =head2
24983 #. type: =head2
24984 #: ../fish/guestfish-actions.pod:423
24985 msgid "base64-in"
24986 msgstr ""
24987
24988 # type: verbatim
24989 #. type: verbatim
24990 #: ../fish/guestfish-actions.pod:425
24991 #, no-wrap
24992 msgid ""
24993 " base64-in (base64file|-) filename\n"
24994 "\n"
24995 msgstr ""
24996
24997 # type: textblock
24998 #. type: textblock
24999 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
25000 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
25001 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1225
25002 #: ../fish/guestfish-actions.pod:4477 ../fish/guestfish-actions.pod:4489
25003 #: ../fish/guestfish-actions.pod:4500 ../fish/guestfish-actions.pod:4511
25004 #: ../fish/guestfish-actions.pod:4563 ../fish/guestfish-actions.pod:4572
25005 #: ../fish/guestfish-actions.pod:4626 ../fish/guestfish-actions.pod:4649
25006 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
25007 msgstr ""
25008
25009 # type: =head2
25010 #. type: =head2
25011 #: ../fish/guestfish-actions.pod:432
25012 msgid "base64-out"
25013 msgstr ""
25014
25015 # type: verbatim
25016 #. type: verbatim
25017 #: ../fish/guestfish-actions.pod:434
25018 #, no-wrap
25019 msgid ""
25020 " base64-out filename (base64file|-)\n"
25021 "\n"
25022 msgstr ""
25023
25024 # type: =head2
25025 #. type: =head2
25026 #: ../fish/guestfish-actions.pod:441
25027 msgid "blockdev-flushbufs"
25028 msgstr ""
25029
25030 # type: verbatim
25031 #. type: verbatim
25032 #: ../fish/guestfish-actions.pod:443
25033 #, no-wrap
25034 msgid ""
25035 " blockdev-flushbufs device\n"
25036 "\n"
25037 msgstr ""
25038
25039 # type: =head2
25040 #. type: =head2
25041 #: ../fish/guestfish-actions.pod:450
25042 msgid "blockdev-getbsz"
25043 msgstr ""
25044
25045 # type: verbatim
25046 #. type: verbatim
25047 #: ../fish/guestfish-actions.pod:452
25048 #, no-wrap
25049 msgid ""
25050 " blockdev-getbsz device\n"
25051 "\n"
25052 msgstr ""
25053
25054 # type: =head2
25055 #. type: =head2
25056 #: ../fish/guestfish-actions.pod:461
25057 msgid "blockdev-getro"
25058 msgstr ""
25059
25060 # type: verbatim
25061 #. type: verbatim
25062 #: ../fish/guestfish-actions.pod:463
25063 #, no-wrap
25064 msgid ""
25065 " blockdev-getro device\n"
25066 "\n"
25067 msgstr ""
25068
25069 # type: =head2
25070 #. type: =head2
25071 #: ../fish/guestfish-actions.pod:470
25072 msgid "blockdev-getsize64"
25073 msgstr ""
25074
25075 # type: verbatim
25076 #. type: verbatim
25077 #: ../fish/guestfish-actions.pod:472
25078 #, no-wrap
25079 msgid ""
25080 " blockdev-getsize64 device\n"
25081 "\n"
25082 msgstr ""
25083
25084 # type: textblock
25085 #. type: textblock
25086 #: ../fish/guestfish-actions.pod:476
25087 msgid "See also L</blockdev-getsz>."
25088 msgstr ""
25089
25090 # type: =head2
25091 #. type: =head2
25092 #: ../fish/guestfish-actions.pod:480
25093 msgid "blockdev-getss"
25094 msgstr ""
25095
25096 # type: verbatim
25097 #. type: verbatim
25098 #: ../fish/guestfish-actions.pod:482
25099 #, no-wrap
25100 msgid ""
25101 " blockdev-getss device\n"
25102 "\n"
25103 msgstr ""
25104
25105 # type: textblock
25106 #. type: textblock
25107 #: ../fish/guestfish-actions.pod:487
25108 msgid ""
25109 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
25110 msgstr ""
25111
25112 # type: =head2
25113 #. type: =head2
25114 #: ../fish/guestfish-actions.pod:492
25115 msgid "blockdev-getsz"
25116 msgstr ""
25117
25118 # type: verbatim
25119 #. type: verbatim
25120 #: ../fish/guestfish-actions.pod:494
25121 #, no-wrap
25122 msgid ""
25123 " blockdev-getsz device\n"
25124 "\n"
25125 msgstr ""
25126
25127 # type: textblock
25128 #. type: textblock
25129 #: ../fish/guestfish-actions.pod:499
25130 msgid ""
25131 "See also L</blockdev-getss> for the real sector size of the device, and L</"
25132 "blockdev-getsize64> for the more useful I<size in bytes>."
25133 msgstr ""
25134
25135 # type: =head2
25136 #. type: =head2
25137 #: ../fish/guestfish-actions.pod:505
25138 msgid "blockdev-rereadpt"
25139 msgstr ""
25140
25141 # type: verbatim
25142 #. type: verbatim
25143 #: ../fish/guestfish-actions.pod:507
25144 #, no-wrap
25145 msgid ""
25146 " blockdev-rereadpt device\n"
25147 "\n"
25148 msgstr ""
25149
25150 # type: =head2
25151 #. type: =head2
25152 #: ../fish/guestfish-actions.pod:513
25153 msgid "blockdev-setbsz"
25154 msgstr ""
25155
25156 # type: verbatim
25157 #. type: verbatim
25158 #: ../fish/guestfish-actions.pod:515
25159 #, no-wrap
25160 msgid ""
25161 " blockdev-setbsz device blocksize\n"
25162 "\n"
25163 msgstr ""
25164
25165 # type: =head2
25166 #. type: =head2
25167 #: ../fish/guestfish-actions.pod:524
25168 msgid "blockdev-setro"
25169 msgstr ""
25170
25171 # type: verbatim
25172 #. type: verbatim
25173 #: ../fish/guestfish-actions.pod:526
25174 #, no-wrap
25175 msgid ""
25176 " blockdev-setro device\n"
25177 "\n"
25178 msgstr ""
25179
25180 # type: =head2
25181 #. type: =head2
25182 #: ../fish/guestfish-actions.pod:532
25183 msgid "blockdev-setrw"
25184 msgstr ""
25185
25186 # type: verbatim
25187 #. type: verbatim
25188 #: ../fish/guestfish-actions.pod:534
25189 #, no-wrap
25190 msgid ""
25191 " blockdev-setrw device\n"
25192 "\n"
25193 msgstr ""
25194
25195 # type: =head2
25196 #. type: =head2
25197 #: ../fish/guestfish-actions.pod:540
25198 msgid "case-sensitive-path"
25199 msgstr ""
25200
25201 # type: verbatim
25202 #. type: verbatim
25203 #: ../fish/guestfish-actions.pod:542
25204 #, no-wrap
25205 msgid ""
25206 " case-sensitive-path path\n"
25207 "\n"
25208 msgstr ""
25209
25210 # type: textblock
25211 #. type: textblock
25212 #: ../fish/guestfish-actions.pod:566
25213 msgid ""
25214 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
25215 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25216 "the directories were originally created under Windows)."
25217 msgstr ""
25218
25219 # type: textblock
25220 #. type: textblock
25221 #: ../fish/guestfish-actions.pod:574
25222 msgid "See also L</realpath>."
25223 msgstr ""
25224
25225 # type: =head2
25226 #. type: =head2
25227 #: ../fish/guestfish-actions.pod:576
25228 msgid "cat"
25229 msgstr ""
25230
25231 # type: verbatim
25232 #. type: verbatim
25233 #: ../fish/guestfish-actions.pod:578
25234 #, no-wrap
25235 msgid ""
25236 " cat path\n"
25237 "\n"
25238 msgstr ""
25239
25240 # type: textblock
25241 #. type: textblock
25242 #: ../fish/guestfish-actions.pod:582
25243 msgid ""
25244 "Note that this function cannot correctly handle binary files (specifically, "
25245 "files containing C<\\0> character which is treated as end of string).  For "
25246 "those you need to use the L</read-file> or L</download> functions which have "
25247 "a more complex interface."
25248 msgstr ""
25249
25250 # type: =head2
25251 #. type: =head2
25252 #: ../fish/guestfish-actions.pod:590
25253 msgid "checksum"
25254 msgstr ""
25255
25256 # type: verbatim
25257 #. type: verbatim
25258 #: ../fish/guestfish-actions.pod:592
25259 #, no-wrap
25260 msgid ""
25261 " checksum csumtype path\n"
25262 "\n"
25263 msgstr ""
25264
25265 # type: textblock
25266 #. type: textblock
25267 #: ../fish/guestfish-actions.pod:635
25268 msgid "To get the checksum for a device, use L</checksum-device>."
25269 msgstr ""
25270
25271 # type: textblock
25272 #. type: textblock
25273 #: ../fish/guestfish-actions.pod:637
25274 msgid "To get the checksums for many files, use L</checksums-out>."
25275 msgstr ""
25276
25277 # type: =head2
25278 #. type: =head2
25279 #: ../fish/guestfish-actions.pod:639
25280 msgid "checksum-device"
25281 msgstr ""
25282
25283 # type: verbatim
25284 #. type: verbatim
25285 #: ../fish/guestfish-actions.pod:641
25286 #, no-wrap
25287 msgid ""
25288 " checksum-device csumtype device\n"
25289 "\n"
25290 msgstr ""
25291
25292 # type: textblock
25293 #. type: textblock
25294 #: ../fish/guestfish-actions.pod:643
25295 msgid ""
25296 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25297 "device named C<device>.  For the types of checksums supported see the L</"
25298 "checksum> command."
25299 msgstr ""
25300
25301 # type: =head2
25302 #. type: =head2
25303 #: ../fish/guestfish-actions.pod:647
25304 msgid "checksums-out"
25305 msgstr ""
25306
25307 # type: verbatim
25308 #. type: verbatim
25309 #: ../fish/guestfish-actions.pod:649
25310 #, no-wrap
25311 msgid ""
25312 " checksums-out csumtype directory (sumsfile|-)\n"
25313 "\n"
25314 msgstr ""
25315
25316 # type: =head2
25317 #. type: =head2
25318 #: ../fish/guestfish-actions.pod:665
25319 msgid "chmod"
25320 msgstr ""
25321
25322 # type: verbatim
25323 #. type: verbatim
25324 #: ../fish/guestfish-actions.pod:667
25325 #, no-wrap
25326 msgid ""
25327 " chmod mode path\n"
25328 "\n"
25329 msgstr ""
25330
25331 # type: =head2
25332 #. type: =head2
25333 #: ../fish/guestfish-actions.pod:678
25334 msgid "chown"
25335 msgstr ""
25336
25337 # type: verbatim
25338 #. type: verbatim
25339 #: ../fish/guestfish-actions.pod:680
25340 #, no-wrap
25341 msgid ""
25342 " chown owner group path\n"
25343 "\n"
25344 msgstr ""
25345
25346 # type: =head2
25347 #. type: =head2
25348 #: ../fish/guestfish-actions.pod:688
25349 msgid "command"
25350 msgstr ""
25351
25352 # type: verbatim
25353 #. type: verbatim
25354 #: ../fish/guestfish-actions.pod:690
25355 #, no-wrap
25356 msgid ""
25357 " command 'arguments ...'\n"
25358 "\n"
25359 msgstr ""
25360
25361 # type: textblock
25362 #. type: textblock
25363 #: ../fish/guestfish-actions.pod:697
25364 msgid ""
25365 "The single parameter is an argv-style list of arguments.  The first element "
25366 "is the name of the program to run.  Subsequent elements are parameters.  The "
25367 "list must be non-empty (ie. must contain a program name).  Note that the "
25368 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25369 msgstr ""
25370
25371 # type: =head2
25372 #. type: =head2
25373 #: ../fish/guestfish-actions.pod:725
25374 msgid "command-lines"
25375 msgstr ""
25376
25377 # type: verbatim
25378 #. type: verbatim
25379 #: ../fish/guestfish-actions.pod:727
25380 #, no-wrap
25381 msgid ""
25382 " command-lines 'arguments ...'\n"
25383 "\n"
25384 msgstr ""
25385
25386 # type: textblock
25387 #. type: textblock
25388 #: ../fish/guestfish-actions.pod:729
25389 msgid ""
25390 "This is the same as L</command>, but splits the result into a list of lines."
25391 msgstr ""
25392
25393 # type: textblock
25394 #. type: textblock
25395 #: ../fish/guestfish-actions.pod:732
25396 msgid "See also: L</sh-lines>"
25397 msgstr ""
25398
25399 # type: =head2
25400 #. type: =head2
25401 #: ../fish/guestfish-actions.pod:737
25402 msgid "config"
25403 msgstr ""
25404
25405 # type: verbatim
25406 #. type: verbatim
25407 #: ../fish/guestfish-actions.pod:739
25408 #, no-wrap
25409 msgid ""
25410 " config qemuparam qemuvalue\n"
25411 "\n"
25412 msgstr ""
25413
25414 # type: =head2
25415 #. type: =head2
25416 #: ../fish/guestfish-actions.pod:750
25417 msgid "copy-size"
25418 msgstr ""
25419
25420 # type: verbatim
25421 #. type: verbatim
25422 #: ../fish/guestfish-actions.pod:752
25423 #, no-wrap
25424 msgid ""
25425 " copy-size src dest size\n"
25426 "\n"
25427 msgstr ""
25428
25429 # type: =head2
25430 #. type: =head2
25431 #: ../fish/guestfish-actions.pod:760
25432 msgid "cp"
25433 msgstr ""
25434
25435 # type: verbatim
25436 #. type: verbatim
25437 #: ../fish/guestfish-actions.pod:762
25438 #, no-wrap
25439 msgid ""
25440 " cp src dest\n"
25441 "\n"
25442 msgstr ""
25443
25444 # type: =head2
25445 #. type: =head2
25446 #: ../fish/guestfish-actions.pod:767
25447 msgid "cp-a"
25448 msgstr ""
25449
25450 # type: verbatim
25451 #. type: verbatim
25452 #: ../fish/guestfish-actions.pod:769
25453 #, no-wrap
25454 msgid ""
25455 " cp-a src dest\n"
25456 "\n"
25457 msgstr ""
25458
25459 # type: =head2
25460 #. type: =head2
25461 #: ../fish/guestfish-actions.pod:774
25462 msgid "dd"
25463 msgstr ""
25464
25465 # type: verbatim
25466 #. type: verbatim
25467 #: ../fish/guestfish-actions.pod:776
25468 #, no-wrap
25469 msgid ""
25470 " dd src dest\n"
25471 "\n"
25472 msgstr ""
25473
25474 # type: textblock
25475 #. type: textblock
25476 #: ../fish/guestfish-actions.pod:783
25477 msgid ""
25478 "If the destination is a device, it must be as large or larger than the "
25479 "source file or device, otherwise the copy will fail.  This command cannot do "
25480 "partial copies (see L</copy-size>)."
25481 msgstr ""
25482
25483 # type: =head2
25484 #. type: =head2
25485 #: ../fish/guestfish-actions.pod:787
25486 msgid "df"
25487 msgstr ""
25488
25489 # type: verbatim
25490 #. type: verbatim
25491 #: ../fish/guestfish-actions.pod:789
25492 #, no-wrap
25493 msgid ""
25494 " df\n"
25495 "\n"
25496 msgstr ""
25497
25498 # type: textblock
25499 #. type: textblock
25500 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
25501 msgid ""
25502 "This command is mostly useful for interactive sessions.  It is I<not> "
25503 "intended that you try to parse the output string.  Use L</statvfs> from "
25504 "programs."
25505 msgstr ""
25506
25507 # type: =head2
25508 #. type: =head2
25509 #: ../fish/guestfish-actions.pod:797
25510 msgid "df-h"
25511 msgstr ""
25512
25513 # type: verbatim
25514 #. type: verbatim
25515 #: ../fish/guestfish-actions.pod:799
25516 #, no-wrap
25517 msgid ""
25518 " df-h\n"
25519 "\n"
25520 msgstr ""
25521
25522 # type: =head2
25523 #. type: =head2
25524 #: ../fish/guestfish-actions.pod:808
25525 msgid "dmesg"
25526 msgstr ""
25527
25528 # type: verbatim
25529 #. type: verbatim
25530 #: ../fish/guestfish-actions.pod:810
25531 #, no-wrap
25532 msgid ""
25533 " dmesg\n"
25534 "\n"
25535 msgstr ""
25536
25537 # type: textblock
25538 #. type: textblock
25539 #: ../fish/guestfish-actions.pod:816
25540 msgid ""
25541 "Another way to get the same information is to enable verbose messages with "
25542 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25543 "before running the program."
25544 msgstr ""
25545
25546 # type: =head2
25547 #. type: =head2
25548 #: ../fish/guestfish-actions.pod:821
25549 msgid "download"
25550 msgstr ""
25551
25552 # type: verbatim
25553 #. type: verbatim
25554 #: ../fish/guestfish-actions.pod:823
25555 #, no-wrap
25556 msgid ""
25557 " download remotefilename (filename|-)\n"
25558 "\n"
25559 msgstr ""
25560
25561 # type: textblock
25562 #. type: textblock
25563 #: ../fish/guestfish-actions.pod:830
25564 msgid "See also L</upload>, L</cat>."
25565 msgstr ""
25566
25567 # type: =head2
25568 #. type: =head2
25569 #: ../fish/guestfish-actions.pod:834
25570 msgid "download-offset"
25571 msgstr ""
25572
25573 # type: verbatim
25574 #. type: verbatim
25575 #: ../fish/guestfish-actions.pod:836
25576 #, no-wrap
25577 msgid ""
25578 " download-offset remotefilename (filename|-) offset size\n"
25579 "\n"
25580 msgstr ""
25581
25582 # type: textblock
25583 #. type: textblock
25584 #: ../fish/guestfish-actions.pod:844
25585 msgid ""
25586 "Note that there is no limit on the amount of data that can be downloaded "
25587 "with this call, unlike with L</pread>, and this call always reads the full "
25588 "amount unless an error occurs."
25589 msgstr ""
25590
25591 # type: textblock
25592 #. type: textblock
25593 #: ../fish/guestfish-actions.pod:849
25594 msgid "See also L</download>, L</pread>."
25595 msgstr ""
25596
25597 # type: =head2
25598 #. type: =head2
25599 #: ../fish/guestfish-actions.pod:853
25600 msgid "drop-caches"
25601 msgstr ""
25602
25603 # type: verbatim
25604 #. type: verbatim
25605 #: ../fish/guestfish-actions.pod:855
25606 #, no-wrap
25607 msgid ""
25608 " drop-caches whattodrop\n"
25609 "\n"
25610 msgstr ""
25611
25612 # type: =head2
25613 #. type: =head2
25614 #: ../fish/guestfish-actions.pod:867
25615 msgid "du"
25616 msgstr ""
25617
25618 # type: verbatim
25619 #. type: verbatim
25620 #: ../fish/guestfish-actions.pod:869
25621 #, no-wrap
25622 msgid ""
25623 " du path\n"
25624 "\n"
25625 msgstr ""
25626
25627 # type: =head2
25628 #. type: =head2
25629 #: ../fish/guestfish-actions.pod:881
25630 msgid "e2fsck-f"
25631 msgstr ""
25632
25633 # type: verbatim
25634 #. type: verbatim
25635 #: ../fish/guestfish-actions.pod:883
25636 #, no-wrap
25637 msgid ""
25638 " e2fsck-f device\n"
25639 "\n"
25640 msgstr ""
25641
25642 # type: textblock
25643 #. type: textblock
25644 #: ../fish/guestfish-actions.pod:889
25645 msgid ""
25646 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
25647 "should use L</fsck>."
25648 msgstr ""
25649
25650 # type: =head2
25651 #. type: =head2
25652 #: ../fish/guestfish-actions.pod:892
25653 msgid "echo-daemon"
25654 msgstr ""
25655
25656 # type: verbatim
25657 #. type: verbatim
25658 #: ../fish/guestfish-actions.pod:894
25659 #, no-wrap
25660 msgid ""
25661 " echo-daemon 'words ...'\n"
25662 "\n"
25663 msgstr ""
25664
25665 # type: textblock
25666 #. type: textblock
25667 #: ../fish/guestfish-actions.pod:901
25668 msgid "See also L</ping-daemon>."
25669 msgstr ""
25670
25671 # type: =head2
25672 #. type: =head2
25673 #: ../fish/guestfish-actions.pod:903
25674 msgid "egrep"
25675 msgstr ""
25676
25677 # type: verbatim
25678 #. type: verbatim
25679 #: ../fish/guestfish-actions.pod:905
25680 #, no-wrap
25681 msgid ""
25682 " egrep regex path\n"
25683 "\n"
25684 msgstr ""
25685
25686 # type: =head2
25687 #. type: =head2
25688 #: ../fish/guestfish-actions.pod:913
25689 msgid "egrepi"
25690 msgstr ""
25691
25692 # type: verbatim
25693 #. type: verbatim
25694 #: ../fish/guestfish-actions.pod:915
25695 #, no-wrap
25696 msgid ""
25697 " egrepi regex path\n"
25698 "\n"
25699 msgstr ""
25700
25701 # type: =head2
25702 #. type: =head2
25703 #: ../fish/guestfish-actions.pod:923
25704 msgid "equal"
25705 msgstr ""
25706
25707 # type: verbatim
25708 #. type: verbatim
25709 #: ../fish/guestfish-actions.pod:925
25710 #, no-wrap
25711 msgid ""
25712 " equal file1 file2\n"
25713 "\n"
25714 msgstr ""
25715
25716 # type: =head2
25717 #. type: =head2
25718 #: ../fish/guestfish-actions.pod:932
25719 msgid "exists"
25720 msgstr ""
25721
25722 # type: verbatim
25723 #. type: verbatim
25724 #: ../fish/guestfish-actions.pod:934
25725 #, no-wrap
25726 msgid ""
25727 " exists path\n"
25728 "\n"
25729 msgstr ""
25730
25731 # type: textblock
25732 #. type: textblock
25733 #: ../fish/guestfish-actions.pod:939
25734 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25735 msgstr ""
25736
25737 # type: =head2
25738 #. type: =head2
25739 #: ../fish/guestfish-actions.pod:941
25740 msgid "fallocate"
25741 msgstr ""
25742
25743 # type: verbatim
25744 #. type: verbatim
25745 #: ../fish/guestfish-actions.pod:943
25746 #, no-wrap
25747 msgid ""
25748 " fallocate path len\n"
25749 "\n"
25750 msgstr ""
25751
25752 # type: =head2
25753 #. type: =head2
25754 #: ../fish/guestfish-actions.pod:960
25755 msgid "fallocate64"
25756 msgstr ""
25757
25758 # type: verbatim
25759 #. type: verbatim
25760 #: ../fish/guestfish-actions.pod:962
25761 #, no-wrap
25762 msgid ""
25763 " fallocate64 path len\n"
25764 "\n"
25765 msgstr ""
25766
25767 # type: textblock
25768 #. type: textblock
25769 #: ../fish/guestfish-actions.pod:968
25770 msgid ""
25771 "Note that this call allocates disk blocks for the file.  To create a sparse "
25772 "file use L</truncate-size> instead."
25773 msgstr ""
25774
25775 # type: textblock
25776 #. type: textblock
25777 #: ../fish/guestfish-actions.pod:971
25778 msgid ""
25779 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25780 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25781 "maximum size of files created through that call to 1GB."
25782 msgstr ""
25783
25784 # type: =head2
25785 #. type: =head2
25786 #: ../fish/guestfish-actions.pod:980
25787 msgid "fgrep"
25788 msgstr ""
25789
25790 # type: verbatim
25791 #. type: verbatim
25792 #: ../fish/guestfish-actions.pod:982
25793 #, no-wrap
25794 msgid ""
25795 " fgrep pattern path\n"
25796 "\n"
25797 msgstr ""
25798
25799 # type: =head2
25800 #. type: =head2
25801 #: ../fish/guestfish-actions.pod:990
25802 msgid "fgrepi"
25803 msgstr ""
25804
25805 # type: verbatim
25806 #. type: verbatim
25807 #: ../fish/guestfish-actions.pod:992
25808 #, no-wrap
25809 msgid ""
25810 " fgrepi pattern path\n"
25811 "\n"
25812 msgstr ""
25813
25814 # type: =head2
25815 #. type: =head2
25816 #: ../fish/guestfish-actions.pod:1000
25817 msgid "file"
25818 msgstr ""
25819
25820 # type: verbatim
25821 #. type: verbatim
25822 #: ../fish/guestfish-actions.pod:1002
25823 #, no-wrap
25824 msgid ""
25825 " file path\n"
25826 "\n"
25827 msgstr ""
25828
25829 #. type: textblock
25830 #: ../fish/guestfish-actions.pod:1018
25831 msgid ""
25832 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
25833 "(etc)."
25834 msgstr ""
25835
25836 # type: =head2
25837 #. type: =head2
25838 #: ../fish/guestfish-actions.pod:1021
25839 msgid "file-architecture"
25840 msgstr ""
25841
25842 # type: verbatim
25843 #. type: verbatim
25844 #: ../fish/guestfish-actions.pod:1023
25845 #, no-wrap
25846 msgid ""
25847 " file-architecture filename\n"
25848 "\n"
25849 msgstr ""
25850
25851 # type: =head2
25852 #. type: =head2
25853 #: ../fish/guestfish-actions.pod:1126
25854 msgid "filesize"
25855 msgstr ""
25856
25857 # type: verbatim
25858 #. type: verbatim
25859 #: ../fish/guestfish-actions.pod:1128
25860 #, no-wrap
25861 msgid ""
25862 " filesize file\n"
25863 "\n"
25864 msgstr ""
25865
25866 # type: textblock
25867 #. type: textblock
25868 #: ../fish/guestfish-actions.pod:1132
25869 msgid ""
25870 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25871 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
25872 msgstr ""
25873
25874 # type: =head2
25875 #. type: =head2
25876 #: ../fish/guestfish-actions.pod:1136
25877 msgid "fill"
25878 msgstr ""
25879
25880 # type: verbatim
25881 #. type: verbatim
25882 #: ../fish/guestfish-actions.pod:1138
25883 #, no-wrap
25884 msgid ""
25885 " fill c len path\n"
25886 "\n"
25887 msgstr ""
25888
25889 # type: textblock
25890 #. type: textblock
25891 #: ../fish/guestfish-actions.pod:1144
25892 msgid ""
25893 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25894 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
25895 "L</fill-pattern>."
25896 msgstr ""
25897
25898 # type: =head2
25899 #. type: =head2
25900 #: ../fish/guestfish-actions.pod:1149
25901 msgid "fill-pattern"
25902 msgstr ""
25903
25904 # type: verbatim
25905 #. type: verbatim
25906 #: ../fish/guestfish-actions.pod:1151
25907 #, no-wrap
25908 msgid ""
25909 " fill-pattern pattern len path\n"
25910 "\n"
25911 msgstr ""
25912
25913 # type: textblock
25914 #. type: textblock
25915 #: ../fish/guestfish-actions.pod:1153
25916 msgid ""
25917 "This function is like L</fill> except that it creates a new file of length "
25918 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
25919 "is truncated if necessary to ensure the length of the file is exactly C<len> "
25920 "bytes."
25921 msgstr ""
25922
25923 # type: =head2
25924 #. type: =head2
25925 #: ../fish/guestfish-actions.pod:1158
25926 msgid "find"
25927 msgstr ""
25928
25929 # type: verbatim
25930 #. type: verbatim
25931 #: ../fish/guestfish-actions.pod:1160
25932 #, no-wrap
25933 msgid ""
25934 " find directory\n"
25935 "\n"
25936 msgstr ""
25937
25938 # type: textblock
25939 #. type: textblock
25940 #: ../fish/guestfish-actions.pod:1174
25941 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
25942 msgstr ""
25943
25944 # type: textblock
25945 #. type: textblock
25946 #: ../fish/guestfish-actions.pod:1187
25947 msgid "See also L</find0>."
25948 msgstr ""
25949
25950 # type: =head2
25951 #. type: =head2
25952 #: ../fish/guestfish-actions.pod:1192
25953 msgid "find0"
25954 msgstr ""
25955
25956 # type: verbatim
25957 #. type: verbatim
25958 #: ../fish/guestfish-actions.pod:1194
25959 #, no-wrap
25960 msgid ""
25961 " find0 directory (files|-)\n"
25962 "\n"
25963 msgstr ""
25964
25965 # type: textblock
25966 #. type: textblock
25967 #: ../fish/guestfish-actions.pod:1200
25968 msgid ""
25969 "This command works the same way as L</find> with the following exceptions:"
25970 msgstr ""
25971
25972 # type: =head2
25973 #. type: =head2
25974 #: ../fish/guestfish-actions.pod:1227
25975 msgid "findfs-label"
25976 msgstr ""
25977
25978 # type: verbatim
25979 #. type: verbatim
25980 #: ../fish/guestfish-actions.pod:1229
25981 #, no-wrap
25982 msgid ""
25983 " findfs-label label\n"
25984 "\n"
25985 msgstr ""
25986
25987 # type: textblock
25988 #. type: textblock
25989 #: ../fish/guestfish-actions.pod:1235
25990 msgid "To find the label of a filesystem, use L</vfs-label>."
25991 msgstr ""
25992
25993 # type: =head2
25994 #. type: =head2
25995 #: ../fish/guestfish-actions.pod:1237
25996 msgid "findfs-uuid"
25997 msgstr ""
25998
25999 # type: verbatim
26000 #. type: verbatim
26001 #: ../fish/guestfish-actions.pod:1239
26002 #, no-wrap
26003 msgid ""
26004 " findfs-uuid uuid\n"
26005 "\n"
26006 msgstr ""
26007
26008 # type: textblock
26009 #. type: textblock
26010 #: ../fish/guestfish-actions.pod:1245
26011 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
26012 msgstr ""
26013
26014 # type: =head2
26015 #. type: =head2
26016 #: ../fish/guestfish-actions.pod:1247
26017 msgid "fsck"
26018 msgstr ""
26019
26020 # type: verbatim
26021 #. type: verbatim
26022 #: ../fish/guestfish-actions.pod:1249
26023 #, no-wrap
26024 msgid ""
26025 " fsck fstype device\n"
26026 "\n"
26027 msgstr ""
26028
26029 # type: =head2
26030 #. type: =head2
26031 #: ../fish/guestfish-actions.pod:1279
26032 msgid "get-append"
26033 msgstr ""
26034
26035 # type: verbatim
26036 #. type: verbatim
26037 #: ../fish/guestfish-actions.pod:1281
26038 #, no-wrap
26039 msgid ""
26040 " get-append\n"
26041 "\n"
26042 msgstr ""
26043
26044 #. type: =head2
26045 #: ../fish/guestfish-actions.pod:1288
26046 msgid "get-attach-method"
26047 msgstr ""
26048
26049 #. type: verbatim
26050 #: ../fish/guestfish-actions.pod:1290
26051 #, no-wrap
26052 msgid ""
26053 " get-attach-method\n"
26054 "\n"
26055 msgstr ""
26056
26057 #. type: textblock
26058 #: ../fish/guestfish-actions.pod:1292
26059 msgid "Return the current attach method.  See L</set-attach-method>."
26060 msgstr ""
26061
26062 # type: =head2
26063 #. type: =head2
26064 #: ../fish/guestfish-actions.pod:1294
26065 msgid "get-autosync"
26066 msgstr ""
26067
26068 # type: verbatim
26069 #. type: verbatim
26070 #: ../fish/guestfish-actions.pod:1296
26071 #, no-wrap
26072 msgid ""
26073 " get-autosync\n"
26074 "\n"
26075 msgstr ""
26076
26077 # type: =head2
26078 #. type: =head2
26079 #: ../fish/guestfish-actions.pod:1300
26080 msgid "get-direct"
26081 msgstr ""
26082
26083 # type: verbatim
26084 #. type: verbatim
26085 #: ../fish/guestfish-actions.pod:1302
26086 #, no-wrap
26087 msgid ""
26088 " get-direct\n"
26089 "\n"
26090 msgstr ""
26091
26092 # type: =head2
26093 #. type: =head2
26094 #: ../fish/guestfish-actions.pod:1306
26095 msgid "get-e2label"
26096 msgstr ""
26097
26098 # type: verbatim
26099 #. type: verbatim
26100 #: ../fish/guestfish-actions.pod:1308
26101 #, no-wrap
26102 msgid ""
26103 " get-e2label device\n"
26104 "\n"
26105 msgstr ""
26106
26107 # type: =head2
26108 #. type: =head2
26109 #: ../fish/guestfish-actions.pod:1320
26110 msgid "get-e2uuid"
26111 msgstr ""
26112
26113 # type: verbatim
26114 #. type: verbatim
26115 #: ../fish/guestfish-actions.pod:1322
26116 #, no-wrap
26117 msgid ""
26118 " get-e2uuid device\n"
26119 "\n"
26120 msgstr ""
26121
26122 # type: =head2
26123 #. type: =head2
26124 #: ../fish/guestfish-actions.pod:1334
26125 msgid "get-memsize"
26126 msgstr ""
26127
26128 # type: verbatim
26129 #. type: verbatim
26130 #: ../fish/guestfish-actions.pod:1336
26131 #, no-wrap
26132 msgid ""
26133 " get-memsize\n"
26134 "\n"
26135 msgstr ""
26136
26137 # type: textblock
26138 #. type: textblock
26139 #: ../fish/guestfish-actions.pod:1341
26140 msgid ""
26141 "If L</set-memsize> was not called on this handle, and if "
26142 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
26143 "value for memsize."
26144 msgstr ""
26145
26146 # type: =head2
26147 #. type: =head2
26148 #: ../fish/guestfish-actions.pod:1348
26149 msgid "get-network"
26150 msgstr ""
26151
26152 # type: verbatim
26153 #. type: verbatim
26154 #: ../fish/guestfish-actions.pod:1350
26155 #, no-wrap
26156 msgid ""
26157 " get-network\n"
26158 "\n"
26159 msgstr ""
26160
26161 # type: =head2
26162 #. type: =head2
26163 #: ../fish/guestfish-actions.pod:1354
26164 msgid "get-path"
26165 msgstr ""
26166
26167 # type: verbatim
26168 #. type: verbatim
26169 #: ../fish/guestfish-actions.pod:1356
26170 #, no-wrap
26171 msgid ""
26172 " get-path\n"
26173 "\n"
26174 msgstr ""
26175
26176 # type: =head2
26177 #. type: =head2
26178 #: ../fish/guestfish-actions.pod:1363
26179 msgid "get-pid"
26180 msgstr ""
26181
26182 # type: =head2
26183 #. type: =head2
26184 #: ../fish/guestfish-actions.pod:1365
26185 msgid "pid"
26186 msgstr ""
26187
26188 # type: verbatim
26189 #. type: verbatim
26190 #: ../fish/guestfish-actions.pod:1367
26191 #, no-wrap
26192 msgid ""
26193 " get-pid\n"
26194 "\n"
26195 msgstr ""
26196
26197 # type: =head2
26198 #. type: =head2
26199 #: ../fish/guestfish-actions.pod:1374
26200 msgid "get-qemu"
26201 msgstr ""
26202
26203 # type: verbatim
26204 #. type: verbatim
26205 #: ../fish/guestfish-actions.pod:1376
26206 #, no-wrap
26207 msgid ""
26208 " get-qemu\n"
26209 "\n"
26210 msgstr ""
26211
26212 # type: =head2
26213 #. type: =head2
26214 #: ../fish/guestfish-actions.pod:1383
26215 msgid "get-recovery-proc"
26216 msgstr ""
26217
26218 # type: verbatim
26219 #. type: verbatim
26220 #: ../fish/guestfish-actions.pod:1385
26221 #, no-wrap
26222 msgid ""
26223 " get-recovery-proc\n"
26224 "\n"
26225 msgstr ""
26226
26227 # type: =head2
26228 #. type: =head2
26229 #: ../fish/guestfish-actions.pod:1389
26230 msgid "get-selinux"
26231 msgstr ""
26232
26233 # type: verbatim
26234 #. type: verbatim
26235 #: ../fish/guestfish-actions.pod:1391
26236 #, no-wrap
26237 msgid ""
26238 " get-selinux\n"
26239 "\n"
26240 msgstr ""
26241
26242 # type: textblock
26243 #. type: textblock
26244 #: ../fish/guestfish-actions.pod:1393
26245 msgid ""
26246 "This returns the current setting of the selinux flag which is passed to the "
26247 "appliance at boot time.  See L</set-selinux>."
26248 msgstr ""
26249
26250 # type: =head2
26251 #. type: =head2
26252 #: ../fish/guestfish-actions.pod:1399
26253 msgid "get-state"
26254 msgstr ""
26255
26256 # type: verbatim
26257 #. type: verbatim
26258 #: ../fish/guestfish-actions.pod:1401
26259 #, no-wrap
26260 msgid ""
26261 " get-state\n"
26262 "\n"
26263 msgstr ""
26264
26265 # type: =head2
26266 #. type: =head2
26267 #: ../fish/guestfish-actions.pod:1408
26268 msgid "get-trace"
26269 msgstr ""
26270
26271 # type: verbatim
26272 #. type: verbatim
26273 #: ../fish/guestfish-actions.pod:1410
26274 #, no-wrap
26275 msgid ""
26276 " get-trace\n"
26277 "\n"
26278 msgstr ""
26279
26280 # type: =head2
26281 #. type: =head2
26282 #: ../fish/guestfish-actions.pod:1414
26283 msgid "get-umask"
26284 msgstr ""
26285
26286 # type: verbatim
26287 #. type: verbatim
26288 #: ../fish/guestfish-actions.pod:1416
26289 #, no-wrap
26290 msgid ""
26291 " get-umask\n"
26292 "\n"
26293 msgstr ""
26294
26295 # type: textblock
26296 #. type: textblock
26297 #: ../fish/guestfish-actions.pod:1418
26298 msgid ""
26299 "Return the current umask.  By default the umask is C<022> unless it has been "
26300 "set by calling L</umask>."
26301 msgstr ""
26302
26303 # type: =head2
26304 #. type: =head2
26305 #: ../fish/guestfish-actions.pod:1421
26306 msgid "get-verbose"
26307 msgstr ""
26308
26309 # type: verbatim
26310 #. type: verbatim
26311 #: ../fish/guestfish-actions.pod:1423
26312 #, no-wrap
26313 msgid ""
26314 " get-verbose\n"
26315 "\n"
26316 msgstr ""
26317
26318 # type: =head2
26319 #. type: =head2
26320 #: ../fish/guestfish-actions.pod:1427
26321 msgid "getcon"
26322 msgstr ""
26323
26324 # type: verbatim
26325 #. type: verbatim
26326 #: ../fish/guestfish-actions.pod:1429
26327 #, no-wrap
26328 msgid ""
26329 " getcon\n"
26330 "\n"
26331 msgstr ""
26332
26333 # type: textblock
26334 #. type: textblock
26335 #: ../fish/guestfish-actions.pod:1433
26336 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26337 msgstr ""
26338
26339 # type: =head2
26340 #. type: =head2
26341 #: ../fish/guestfish-actions.pod:1436
26342 msgid "getxattr"
26343 msgstr ""
26344
26345 # type: verbatim
26346 #. type: verbatim
26347 #: ../fish/guestfish-actions.pod:1438
26348 #, no-wrap
26349 msgid ""
26350 " getxattr path name\n"
26351 "\n"
26352 msgstr ""
26353
26354 # type: textblock
26355 #. type: textblock
26356 #: ../fish/guestfish-actions.pod:1440
26357 msgid ""
26358 "Get a single extended attribute from file C<path> named C<name>.  This call "
26359 "follows symlinks.  If you want to lookup an extended attribute for the "
26360 "symlink itself, use L</lgetxattr>."
26361 msgstr ""
26362
26363 # type: textblock
26364 #. type: textblock
26365 #: ../fish/guestfish-actions.pod:1444 ../fish/guestfish-actions.pod:2450
26366 msgid ""
26367 "Normally it is better to get all extended attributes from a file in one go "
26368 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
26369 "buggy and do not provide a way to list out attributes.  For these "
26370 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
26371 "attributes you want in advance and call this function."
26372 msgstr ""
26373
26374 # type: textblock
26375 #. type: textblock
26376 #: ../fish/guestfish-actions.pod:1454
26377 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26378 msgstr ""
26379
26380 # type: =head2
26381 #. type: =head2
26382 #: ../fish/guestfish-actions.pod:1456
26383 msgid "getxattrs"
26384 msgstr ""
26385
26386 # type: verbatim
26387 #. type: verbatim
26388 #: ../fish/guestfish-actions.pod:1458
26389 #, no-wrap
26390 msgid ""
26391 " getxattrs path\n"
26392 "\n"
26393 msgstr ""
26394
26395 # type: textblock
26396 #. type: textblock
26397 #: ../fish/guestfish-actions.pod:1466
26398 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26399 msgstr ""
26400
26401 # type: =head2
26402 #. type: =head2
26403 #: ../fish/guestfish-actions.pod:1468
26404 msgid "glob-expand"
26405 msgstr ""
26406
26407 # type: verbatim
26408 #. type: verbatim
26409 #: ../fish/guestfish-actions.pod:1470
26410 #, no-wrap
26411 msgid ""
26412 " glob-expand pattern\n"
26413 "\n"
26414 msgstr ""
26415
26416 # type: =head2
26417 #. type: =head2
26418 #: ../fish/guestfish-actions.pod:1483
26419 msgid "grep"
26420 msgstr ""
26421
26422 # type: verbatim
26423 #. type: verbatim
26424 #: ../fish/guestfish-actions.pod:1485
26425 #, no-wrap
26426 msgid ""
26427 " grep regex path\n"
26428 "\n"
26429 msgstr ""
26430
26431 # type: =head2
26432 #. type: =head2
26433 #: ../fish/guestfish-actions.pod:1493
26434 msgid "grepi"
26435 msgstr ""
26436
26437 # type: verbatim
26438 #. type: verbatim
26439 #: ../fish/guestfish-actions.pod:1495
26440 #, no-wrap
26441 msgid ""
26442 " grepi regex path\n"
26443 "\n"
26444 msgstr ""
26445
26446 # type: =head2
26447 #. type: =head2
26448 #: ../fish/guestfish-actions.pod:1503
26449 msgid "grub-install"
26450 msgstr ""
26451
26452 # type: verbatim
26453 #. type: verbatim
26454 #: ../fish/guestfish-actions.pod:1505
26455 #, no-wrap
26456 msgid ""
26457 " grub-install root device\n"
26458 "\n"
26459 msgstr ""
26460
26461 # type: =head2
26462 #. type: =head2
26463 #: ../fish/guestfish-actions.pod:1521
26464 msgid "head"
26465 msgstr ""
26466
26467 # type: verbatim
26468 #. type: verbatim
26469 #: ../fish/guestfish-actions.pod:1523
26470 #, no-wrap
26471 msgid ""
26472 " head path\n"
26473 "\n"
26474 msgstr ""
26475
26476 # type: =head2
26477 #. type: =head2
26478 #: ../fish/guestfish-actions.pod:1531
26479 msgid "head-n"
26480 msgstr ""
26481
26482 # type: verbatim
26483 #. type: verbatim
26484 #: ../fish/guestfish-actions.pod:1533
26485 #, no-wrap
26486 msgid ""
26487 " head-n nrlines path\n"
26488 "\n"
26489 msgstr ""
26490
26491 # type: =head2
26492 #. type: =head2
26493 #: ../fish/guestfish-actions.pod:1546
26494 msgid "hexdump"
26495 msgstr ""
26496
26497 # type: verbatim
26498 #. type: verbatim
26499 #: ../fish/guestfish-actions.pod:1548
26500 #, no-wrap
26501 msgid ""
26502 " hexdump path\n"
26503 "\n"
26504 msgstr ""
26505
26506 # type: =head2
26507 #. type: =head2
26508 #: ../fish/guestfish-actions.pod:1556
26509 msgid "initrd-cat"
26510 msgstr ""
26511
26512 # type: verbatim
26513 #. type: verbatim
26514 #: ../fish/guestfish-actions.pod:1558
26515 #, no-wrap
26516 msgid ""
26517 " initrd-cat initrdpath filename\n"
26518 "\n"
26519 msgstr ""
26520
26521 # type: textblock
26522 #. type: textblock
26523 #: ../fish/guestfish-actions.pod:1570
26524 msgid "See also L</initrd-list>."
26525 msgstr ""
26526
26527 # type: =head2
26528 #. type: =head2
26529 #: ../fish/guestfish-actions.pod:1575
26530 msgid "initrd-list"
26531 msgstr ""
26532
26533 # type: verbatim
26534 #. type: verbatim
26535 #: ../fish/guestfish-actions.pod:1577
26536 #, no-wrap
26537 msgid ""
26538 " initrd-list path\n"
26539 "\n"
26540 msgstr ""
26541
26542 # type: =head2
26543 #. type: =head2
26544 #: ../fish/guestfish-actions.pod:1589
26545 msgid "inotify-add-watch"
26546 msgstr ""
26547
26548 # type: verbatim
26549 #. type: verbatim
26550 #: ../fish/guestfish-actions.pod:1591
26551 #, no-wrap
26552 msgid ""
26553 " inotify-add-watch path mask\n"
26554 "\n"
26555 msgstr ""
26556
26557 # type: =head2
26558 #. type: =head2
26559 #: ../fish/guestfish-actions.pod:1603
26560 msgid "inotify-close"
26561 msgstr ""
26562
26563 # type: verbatim
26564 #. type: verbatim
26565 #: ../fish/guestfish-actions.pod:1605
26566 #, no-wrap
26567 msgid ""
26568 " inotify-close\n"
26569 "\n"
26570 msgstr ""
26571
26572 # type: =head2
26573 #. type: =head2
26574 #: ../fish/guestfish-actions.pod:1611
26575 msgid "inotify-files"
26576 msgstr ""
26577
26578 # type: verbatim
26579 #. type: verbatim
26580 #: ../fish/guestfish-actions.pod:1613
26581 #, no-wrap
26582 msgid ""
26583 " inotify-files\n"
26584 "\n"
26585 msgstr ""
26586
26587 # type: textblock
26588 #. type: textblock
26589 #: ../fish/guestfish-actions.pod:1615
26590 msgid ""
26591 "This function is a helpful wrapper around L</inotify-read> which just "
26592 "returns a list of pathnames of objects that were touched.  The returned "
26593 "pathnames are sorted and deduplicated."
26594 msgstr ""
26595
26596 # type: =head2
26597 #. type: =head2
26598 #: ../fish/guestfish-actions.pod:1619
26599 msgid "inotify-init"
26600 msgstr ""
26601
26602 # type: verbatim
26603 #. type: verbatim
26604 #: ../fish/guestfish-actions.pod:1621
26605 #, no-wrap
26606 msgid ""
26607 " inotify-init maxevents\n"
26608 "\n"
26609 msgstr ""
26610
26611 # type: textblock
26612 #. type: textblock
26613 #: ../fish/guestfish-actions.pod:1627
26614 msgid ""
26615 "C<maxevents> is the maximum number of events which will be queued up between "
26616 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
26617 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
26618 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
26619 "but records the fact that it threw them away by setting a flag "
26620 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26621 msgstr ""
26622
26623 # type: textblock
26624 #. type: textblock
26625 #: ../fish/guestfish-actions.pod:1637
26626 msgid ""
26627 "Before any events are generated, you have to add some watches to the "
26628 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26629 "L</inotify-watch-all>."
26630 msgstr ""
26631
26632 # type: textblock
26633 #. type: textblock
26634 #: ../fish/guestfish-actions.pod:1643
26635 msgid ""
26636 "Queued up events should be read periodically by calling L</inotify-read> (or "
26637 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
26638 "If you don't read the events out often enough then you risk the internal "
26639 "queue overflowing."
26640 msgstr ""
26641
26642 # type: textblock
26643 #. type: textblock
26644 #: ../fish/guestfish-actions.pod:1650
26645 msgid ""
26646 "The handle should be closed after use by calling L</inotify-close>.  This "
26647 "also removes any watches automatically."
26648 msgstr ""
26649
26650 # type: =head2
26651 #. type: =head2
26652 #: ../fish/guestfish-actions.pod:1659
26653 msgid "inotify-read"
26654 msgstr ""
26655
26656 # type: verbatim
26657 #. type: verbatim
26658 #: ../fish/guestfish-actions.pod:1661
26659 #, no-wrap
26660 msgid ""
26661 " inotify-read\n"
26662 "\n"
26663 msgstr ""
26664
26665 # type: =head2
26666 #. type: =head2
26667 #: ../fish/guestfish-actions.pod:1674
26668 msgid "inotify-rm-watch"
26669 msgstr ""
26670
26671 # type: verbatim
26672 #. type: verbatim
26673 #: ../fish/guestfish-actions.pod:1676
26674 #, no-wrap
26675 msgid ""
26676 " inotify-rm-watch wd\n"
26677 "\n"
26678 msgstr ""
26679
26680 # type: textblock
26681 #. type: textblock
26682 #: ../fish/guestfish-actions.pod:1678
26683 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
26684 msgstr ""
26685
26686 # type: =head2
26687 #. type: =head2
26688 #: ../fish/guestfish-actions.pod:1681
26689 msgid "inspect-get-arch"
26690 msgstr ""
26691
26692 # type: verbatim
26693 #. type: verbatim
26694 #: ../fish/guestfish-actions.pod:1683
26695 #, no-wrap
26696 msgid ""
26697 " inspect-get-arch root\n"
26698 "\n"
26699 msgstr ""
26700
26701 # type: textblock
26702 #. type: textblock
26703 #: ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1701
26704 #: ../fish/guestfish-actions.pod:1787 ../fish/guestfish-actions.pod:1823
26705 #: ../fish/guestfish-actions.pod:1841 ../fish/guestfish-actions.pod:1875
26706 #: ../fish/guestfish-actions.pod:1890 ../fish/guestfish-actions.pod:1911
26707 #: ../fish/guestfish-actions.pod:1926 ../fish/guestfish-actions.pod:1959
26708 #: ../fish/guestfish-actions.pod:1981 ../fish/guestfish-actions.pod:2005
26709 #: ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2065
26710 #: ../fish/guestfish-actions.pod:2100 ../fish/guestfish-actions.pod:2116
26711 #: ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2145
26712 #: ../fish/guestfish-actions.pod:2158 ../fish/guestfish-actions.pod:2173
26713 msgid ""
26714 "This function should only be called with a root device string as returned by "
26715 "L</inspect-os>."
26716 msgstr ""
26717
26718 # type: textblock
26719 #. type: textblock
26720 #: ../fish/guestfish-actions.pod:1688
26721 msgid ""
26722 "This returns the architecture of the inspected operating system.  The "
26723 "possible return values are listed under L</file-architecture>."
26724 msgstr ""
26725
26726 # type: =head2
26727 #. type: =head2
26728 #: ../fish/guestfish-actions.pod:1697
26729 msgid "inspect-get-distro"
26730 msgstr ""
26731
26732 # type: verbatim
26733 #. type: verbatim
26734 #: ../fish/guestfish-actions.pod:1699
26735 #, no-wrap
26736 msgid ""
26737 " inspect-get-distro root\n"
26738 "\n"
26739 msgstr ""
26740
26741 #. type: =head2
26742 #: ../fish/guestfish-actions.pod:1783
26743 msgid "inspect-get-drive-mappings"
26744 msgstr ""
26745
26746 #. type: verbatim
26747 #: ../fish/guestfish-actions.pod:1785
26748 #, no-wrap
26749 msgid ""
26750 " inspect-get-drive-mappings root\n"
26751 "\n"
26752 msgstr ""
26753
26754 #. type: textblock
26755 #: ../fish/guestfish-actions.pod:1815
26756 msgid ""
26757 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26758 "get-mountpoints>, L</inspect-get-filesystems>."
26759 msgstr ""
26760
26761 # type: =head2
26762 #. type: =head2
26763 #: ../fish/guestfish-actions.pod:1819
26764 msgid "inspect-get-filesystems"
26765 msgstr ""
26766
26767 # type: verbatim
26768 #. type: verbatim
26769 #: ../fish/guestfish-actions.pod:1821
26770 #, no-wrap
26771 msgid ""
26772 " inspect-get-filesystems root\n"
26773 "\n"
26774 msgstr ""
26775
26776 # type: textblock
26777 #. type: textblock
26778 #: ../fish/guestfish-actions.pod:1834
26779 msgid ""
26780 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26781 "get-mountpoints>."
26782 msgstr ""
26783
26784 #. type: =head2
26785 #: ../fish/guestfish-actions.pod:1837
26786 msgid "inspect-get-format"
26787 msgstr ""
26788
26789 #. type: verbatim
26790 #: ../fish/guestfish-actions.pod:1839
26791 #, no-wrap
26792 msgid ""
26793 " inspect-get-format root\n"
26794 "\n"
26795 msgstr ""
26796
26797 # type: =head2
26798 #. type: =head2
26799 #: ../fish/guestfish-actions.pod:1871
26800 msgid "inspect-get-hostname"
26801 msgstr ""
26802
26803 # type: verbatim
26804 #. type: verbatim
26805 #: ../fish/guestfish-actions.pod:1873
26806 #, no-wrap
26807 msgid ""
26808 " inspect-get-hostname root\n"
26809 "\n"
26810 msgstr ""
26811
26812 # type: =head2
26813 #. type: =head2
26814 #: ../fish/guestfish-actions.pod:1886
26815 msgid "inspect-get-major-version"
26816 msgstr ""
26817
26818 # type: verbatim
26819 #. type: verbatim
26820 #: ../fish/guestfish-actions.pod:1888
26821 #, no-wrap
26822 msgid ""
26823 " inspect-get-major-version root\n"
26824 "\n"
26825 msgstr ""
26826
26827 # type: =head2
26828 #. type: =head2
26829 #: ../fish/guestfish-actions.pod:1907
26830 msgid "inspect-get-minor-version"
26831 msgstr ""
26832
26833 # type: verbatim
26834 #. type: verbatim
26835 #: ../fish/guestfish-actions.pod:1909
26836 #, no-wrap
26837 msgid ""
26838 " inspect-get-minor-version root\n"
26839 "\n"
26840 msgstr ""
26841
26842 # type: textblock
26843 #. type: textblock
26844 #: ../fish/guestfish-actions.pod:1919
26845 msgid ""
26846 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26847 "get-major-version>."
26848 msgstr ""
26849
26850 # type: =head2
26851 #. type: =head2
26852 #: ../fish/guestfish-actions.pod:1922
26853 msgid "inspect-get-mountpoints"
26854 msgstr ""
26855
26856 # type: verbatim
26857 #. type: verbatim
26858 #: ../fish/guestfish-actions.pod:1924
26859 #, no-wrap
26860 msgid ""
26861 " inspect-get-mountpoints root\n"
26862 "\n"
26863 msgstr ""
26864
26865 #. type: textblock
26866 #: ../fish/guestfish-actions.pod:1946
26867 msgid ""
26868 "For operating systems like Windows which still use drive letters, this call "
26869 "will only return an entry for the first drive \"mounted on\" C</>.  For "
26870 "information about the mapping of drive letters to partitions, see L</inspect-"
26871 "get-drive-mappings>."
26872 msgstr ""
26873
26874 # type: textblock
26875 #. type: textblock
26876 #: ../fish/guestfish-actions.pod:1952
26877 msgid ""
26878 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26879 "get-filesystems>."
26880 msgstr ""
26881
26882 # type: =head2
26883 #. type: =head2
26884 #: ../fish/guestfish-actions.pod:1955
26885 msgid "inspect-get-package-format"
26886 msgstr ""
26887
26888 # type: verbatim
26889 #. type: verbatim
26890 #: ../fish/guestfish-actions.pod:1957
26891 #, no-wrap
26892 msgid ""
26893 " inspect-get-package-format root\n"
26894 "\n"
26895 msgstr ""
26896
26897 # type: textblock
26898 #. type: textblock
26899 #: ../fish/guestfish-actions.pod:1962
26900 msgid ""
26901 "This function and L</inspect-get-package-management> return the package "
26902 "format and package management tool used by the inspected operating system.  "
26903 "For example for Fedora these functions would return C<rpm> (package format) "
26904 "and C<yum> (package management)."
26905 msgstr ""
26906
26907 # type: =head2
26908 #. type: =head2
26909 #: ../fish/guestfish-actions.pod:1977
26910 msgid "inspect-get-package-management"
26911 msgstr ""
26912
26913 # type: verbatim
26914 #. type: verbatim
26915 #: ../fish/guestfish-actions.pod:1979
26916 #, no-wrap
26917 msgid ""
26918 " inspect-get-package-management root\n"
26919 "\n"
26920 msgstr ""
26921
26922 # type: textblock
26923 #. type: textblock
26924 #: ../fish/guestfish-actions.pod:1984
26925 msgid ""
26926 "L</inspect-get-package-format> and this function return the package format "
26927 "and package management tool used by the inspected operating system.  For "
26928 "example for Fedora these functions would return C<rpm> (package format) and "
26929 "C<yum> (package management)."
26930 msgstr ""
26931
26932 # type: =head2
26933 #. type: =head2
26934 #: ../fish/guestfish-actions.pod:2001
26935 msgid "inspect-get-product-name"
26936 msgstr ""
26937
26938 # type: verbatim
26939 #. type: verbatim
26940 #: ../fish/guestfish-actions.pod:2003
26941 #, no-wrap
26942 msgid ""
26943 " inspect-get-product-name root\n"
26944 "\n"
26945 msgstr ""
26946
26947 #. type: =head2
26948 #: ../fish/guestfish-actions.pod:2018
26949 msgid "inspect-get-product-variant"
26950 msgstr ""
26951
26952 #. type: verbatim
26953 #: ../fish/guestfish-actions.pod:2020
26954 #, no-wrap
26955 msgid ""
26956 " inspect-get-product-variant root\n"
26957 "\n"
26958 msgstr ""
26959
26960 #. type: textblock
26961 #: ../fish/guestfish-actions.pod:2044
26962 msgid ""
26963 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26964 "get-product-name>, L</inspect-get-major-version>."
26965 msgstr ""
26966
26967 # type: =head2
26968 #. type: =head2
26969 #: ../fish/guestfish-actions.pod:2048
26970 msgid "inspect-get-roots"
26971 msgstr ""
26972
26973 # type: verbatim
26974 #. type: verbatim
26975 #: ../fish/guestfish-actions.pod:2050
26976 #, no-wrap
26977 msgid ""
26978 " inspect-get-roots\n"
26979 "\n"
26980 msgstr ""
26981
26982 # type: textblock
26983 #. type: textblock
26984 #: ../fish/guestfish-actions.pod:2052
26985 msgid ""
26986 "This function is a convenient way to get the list of root devices, as "
26987 "returned from a previous call to L</inspect-os>, but without redoing the "
26988 "whole inspection process."
26989 msgstr ""
26990
26991 # type: textblock
26992 #. type: textblock
26993 #: ../fish/guestfish-actions.pod:2056
26994 msgid ""
26995 "This returns an empty list if either no root devices were found or the "
26996 "caller has not called L</inspect-os>."
26997 msgstr ""
26998
26999 # type: =head2
27000 #. type: =head2
27001 #: ../fish/guestfish-actions.pod:2061
27002 msgid "inspect-get-type"
27003 msgstr ""
27004
27005 # type: verbatim
27006 #. type: verbatim
27007 #: ../fish/guestfish-actions.pod:2063
27008 #, no-wrap
27009 msgid ""
27010 " inspect-get-type root\n"
27011 "\n"
27012 msgstr ""
27013
27014 #. type: =head2
27015 #: ../fish/guestfish-actions.pod:2096
27016 msgid "inspect-get-windows-current-control-set"
27017 msgstr ""
27018
27019 #. type: verbatim
27020 #: ../fish/guestfish-actions.pod:2098
27021 #, no-wrap
27022 msgid ""
27023 " inspect-get-windows-current-control-set root\n"
27024 "\n"
27025 msgstr ""
27026
27027 # type: =head2
27028 #. type: =head2
27029 #: ../fish/guestfish-actions.pod:2112
27030 msgid "inspect-get-windows-systemroot"
27031 msgstr ""
27032
27033 # type: verbatim
27034 #. type: verbatim
27035 #: ../fish/guestfish-actions.pod:2114
27036 #, no-wrap
27037 msgid ""
27038 " inspect-get-windows-systemroot root\n"
27039 "\n"
27040 msgstr ""
27041
27042 #. type: =head2
27043 #: ../fish/guestfish-actions.pod:2128
27044 msgid "inspect-is-live"
27045 msgstr ""
27046
27047 #. type: verbatim
27048 #: ../fish/guestfish-actions.pod:2130
27049 #, no-wrap
27050 msgid ""
27051 " inspect-is-live root\n"
27052 "\n"
27053 msgstr ""
27054
27055 #. type: textblock
27056 #: ../fish/guestfish-actions.pod:2135
27057 msgid ""
27058 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27059 "then this returns true if a live image was detected on the disk."
27060 msgstr ""
27061
27062 #. type: =head2
27063 #: ../fish/guestfish-actions.pod:2141
27064 msgid "inspect-is-multipart"
27065 msgstr ""
27066
27067 #. type: verbatim
27068 #: ../fish/guestfish-actions.pod:2143
27069 #, no-wrap
27070 msgid ""
27071 " inspect-is-multipart root\n"
27072 "\n"
27073 msgstr ""
27074
27075 #. type: textblock
27076 #: ../fish/guestfish-actions.pod:2148
27077 msgid ""
27078 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27079 "then this returns true if the disk is part of a set."
27080 msgstr ""
27081
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:2154
27084 msgid "inspect-is-netinst"
27085 msgstr ""
27086
27087 #. type: verbatim
27088 #: ../fish/guestfish-actions.pod:2156
27089 #, no-wrap
27090 msgid ""
27091 " inspect-is-netinst root\n"
27092 "\n"
27093 msgstr ""
27094
27095 #. type: textblock
27096 #: ../fish/guestfish-actions.pod:2161
27097 msgid ""
27098 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
27099 "then this returns true if the disk is a network installer, ie. not a self-"
27100 "contained install CD but one which is likely to require network access to "
27101 "complete the install."
27102 msgstr ""
27103
27104 # type: =head2
27105 #. type: =head2
27106 #: ../fish/guestfish-actions.pod:2169
27107 msgid "inspect-list-applications"
27108 msgstr ""
27109
27110 # type: verbatim
27111 #. type: verbatim
27112 #: ../fish/guestfish-actions.pod:2171
27113 #, no-wrap
27114 msgid ""
27115 " inspect-list-applications root\n"
27116 "\n"
27117 msgstr ""
27118
27119 # type: textblock
27120 #. type: textblock
27121 #: ../fish/guestfish-actions.pod:2178
27122 msgid ""
27123 "I<Note:> This call works differently from other parts of the inspection "
27124 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
27125 "then mount up the disks, before calling this.  Listing applications is a "
27126 "significantly more difficult operation which requires access to the full "
27127 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
27128 "are just returning data cached in the libguestfs handle, this call actually "
27129 "reads parts of the mounted filesystems during the call."
27130 msgstr ""
27131
27132 # type: =head2
27133 #. type: =head2
27134 #: ../fish/guestfish-actions.pod:2268
27135 msgid "inspect-os"
27136 msgstr ""
27137
27138 # type: verbatim
27139 #. type: verbatim
27140 #: ../fish/guestfish-actions.pod:2270
27141 #, no-wrap
27142 msgid ""
27143 " inspect-os\n"
27144 "\n"
27145 msgstr ""
27146
27147 # type: textblock
27148 #. type: textblock
27149 #: ../fish/guestfish-actions.pod:2285
27150 msgid ""
27151 "You can pass the root string(s) returned to other L</inspect-get-*> "
27152 "functions in order to query further information about each operating system, "
27153 "such as the name and version."
27154 msgstr ""
27155
27156 # type: textblock
27157 #. type: textblock
27158 #: ../fish/guestfish-actions.pod:2290
27159 msgid ""
27160 "This function uses other libguestfs features such as L</mount-ro> and L</"
27161 "umount-all> in order to mount and unmount filesystems and look at the "
27162 "contents.  This should be called with no disks currently mounted.  The "
27163 "function may also use Augeas, so any existing Augeas handle will be closed."
27164 msgstr ""
27165
27166 # type: textblock
27167 #. type: textblock
27168 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2478
27169 #: ../fish/guestfish-actions.pod:2524
27170 msgid "See also L</list-filesystems>."
27171 msgstr ""
27172
27173 # type: =head2
27174 #. type: =head2
27175 #: ../fish/guestfish-actions.pod:2304
27176 msgid "is-blockdev"
27177 msgstr ""
27178
27179 # type: verbatim
27180 #. type: verbatim
27181 #: ../fish/guestfish-actions.pod:2306
27182 #, no-wrap
27183 msgid ""
27184 " is-blockdev path\n"
27185 "\n"
27186 msgstr ""
27187
27188 # type: textblock
27189 #. type: textblock
27190 #: ../fish/guestfish-actions.pod:2311 ../fish/guestfish-actions.pod:2329
27191 #: ../fish/guestfish-actions.pod:2348 ../fish/guestfish-actions.pod:2357
27192 #: ../fish/guestfish-actions.pod:2367 ../fish/guestfish-actions.pod:2401
27193 #: ../fish/guestfish-actions.pod:2410
27194 msgid "See also L</stat>."
27195 msgstr ""
27196
27197 # type: =head2
27198 #. type: =head2
27199 #: ../fish/guestfish-actions.pod:2313
27200 msgid "is-busy"
27201 msgstr ""
27202
27203 # type: verbatim
27204 #. type: verbatim
27205 #: ../fish/guestfish-actions.pod:2315
27206 #, no-wrap
27207 msgid ""
27208 " is-busy\n"
27209 "\n"
27210 msgstr ""
27211
27212 # type: =head2
27213 #. type: =head2
27214 #: ../fish/guestfish-actions.pod:2322
27215 msgid "is-chardev"
27216 msgstr ""
27217
27218 # type: verbatim
27219 #. type: verbatim
27220 #: ../fish/guestfish-actions.pod:2324
27221 #, no-wrap
27222 msgid ""
27223 " is-chardev path\n"
27224 "\n"
27225 msgstr ""
27226
27227 # type: =head2
27228 #. type: =head2
27229 #: ../fish/guestfish-actions.pod:2331
27230 msgid "is-config"
27231 msgstr ""
27232
27233 # type: verbatim
27234 #. type: verbatim
27235 #: ../fish/guestfish-actions.pod:2333
27236 #, no-wrap
27237 msgid ""
27238 " is-config\n"
27239 "\n"
27240 msgstr ""
27241
27242 # type: =head2
27243 #. type: =head2
27244 #: ../fish/guestfish-actions.pod:2340
27245 msgid "is-dir"
27246 msgstr ""
27247
27248 # type: verbatim
27249 #. type: verbatim
27250 #: ../fish/guestfish-actions.pod:2342
27251 #, no-wrap
27252 msgid ""
27253 " is-dir path\n"
27254 "\n"
27255 msgstr ""
27256
27257 # type: =head2
27258 #. type: =head2
27259 #: ../fish/guestfish-actions.pod:2350
27260 msgid "is-fifo"
27261 msgstr ""
27262
27263 # type: verbatim
27264 #. type: verbatim
27265 #: ../fish/guestfish-actions.pod:2352
27266 #, no-wrap
27267 msgid ""
27268 " is-fifo path\n"
27269 "\n"
27270 msgstr ""
27271
27272 # type: =head2
27273 #. type: =head2
27274 #: ../fish/guestfish-actions.pod:2359
27275 msgid "is-file"
27276 msgstr ""
27277
27278 # type: verbatim
27279 #. type: verbatim
27280 #: ../fish/guestfish-actions.pod:2361
27281 #, no-wrap
27282 msgid ""
27283 " is-file path\n"
27284 "\n"
27285 msgstr ""
27286
27287 # type: =head2
27288 #. type: =head2
27289 #: ../fish/guestfish-actions.pod:2369
27290 msgid "is-launching"
27291 msgstr ""
27292
27293 # type: verbatim
27294 #. type: verbatim
27295 #: ../fish/guestfish-actions.pod:2371
27296 #, no-wrap
27297 msgid ""
27298 " is-launching\n"
27299 "\n"
27300 msgstr ""
27301
27302 # type: =head2
27303 #. type: =head2
27304 #: ../fish/guestfish-actions.pod:2378
27305 msgid "is-lv"
27306 msgstr ""
27307
27308 # type: verbatim
27309 #. type: verbatim
27310 #: ../fish/guestfish-actions.pod:2380
27311 #, no-wrap
27312 msgid ""
27313 " is-lv device\n"
27314 "\n"
27315 msgstr ""
27316
27317 # type: =head2
27318 #. type: =head2
27319 #: ../fish/guestfish-actions.pod:2385
27320 msgid "is-ready"
27321 msgstr ""
27322
27323 # type: verbatim
27324 #. type: verbatim
27325 #: ../fish/guestfish-actions.pod:2387
27326 #, no-wrap
27327 msgid ""
27328 " is-ready\n"
27329 "\n"
27330 msgstr ""
27331
27332 # type: =head2
27333 #. type: =head2
27334 #: ../fish/guestfish-actions.pod:2394
27335 msgid "is-socket"
27336 msgstr ""
27337
27338 # type: verbatim
27339 #. type: verbatim
27340 #: ../fish/guestfish-actions.pod:2396
27341 #, no-wrap
27342 msgid ""
27343 " is-socket path\n"
27344 "\n"
27345 msgstr ""
27346
27347 # type: =head2
27348 #. type: =head2
27349 #: ../fish/guestfish-actions.pod:2403
27350 msgid "is-symlink"
27351 msgstr ""
27352
27353 # type: verbatim
27354 #. type: verbatim
27355 #: ../fish/guestfish-actions.pod:2405
27356 #, no-wrap
27357 msgid ""
27358 " is-symlink path\n"
27359 "\n"
27360 msgstr ""
27361
27362 # type: =head2
27363 #. type: =head2
27364 #: ../fish/guestfish-actions.pod:2412
27365 msgid "kill-subprocess"
27366 msgstr ""
27367
27368 # type: verbatim
27369 #. type: verbatim
27370 #: ../fish/guestfish-actions.pod:2414
27371 #, no-wrap
27372 msgid ""
27373 " kill-subprocess\n"
27374 "\n"
27375 msgstr ""
27376
27377 # type: =head2
27378 #. type: =head2
27379 #: ../fish/guestfish-actions.pod:2418
27380 msgid "launch"
27381 msgstr ""
27382
27383 # type: =head2
27384 #. type: =head2
27385 #: ../fish/guestfish-actions.pod:2420
27386 msgid "run"
27387 msgstr ""
27388
27389 # type: verbatim
27390 #. type: verbatim
27391 #: ../fish/guestfish-actions.pod:2422
27392 #, no-wrap
27393 msgid ""
27394 " launch\n"
27395 "\n"
27396 msgstr ""
27397
27398 # type: =head2
27399 #. type: =head2
27400 #: ../fish/guestfish-actions.pod:2430
27401 msgid "lchown"
27402 msgstr ""
27403
27404 # type: verbatim
27405 #. type: verbatim
27406 #: ../fish/guestfish-actions.pod:2432
27407 #, no-wrap
27408 msgid ""
27409 " lchown owner group path\n"
27410 "\n"
27411 msgstr ""
27412
27413 # type: textblock
27414 #. type: textblock
27415 #: ../fish/guestfish-actions.pod:2434
27416 msgid ""
27417 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
27418 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27419 "target."
27420 msgstr ""
27421
27422 # type: =head2
27423 #. type: =head2
27424 #: ../fish/guestfish-actions.pod:2442
27425 msgid "lgetxattr"
27426 msgstr ""
27427
27428 # type: verbatim
27429 #. type: verbatim
27430 #: ../fish/guestfish-actions.pod:2444
27431 #, no-wrap
27432 msgid ""
27433 " lgetxattr path name\n"
27434 "\n"
27435 msgstr ""
27436
27437 # type: textblock
27438 #. type: textblock
27439 #: ../fish/guestfish-actions.pod:2460
27440 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27441 msgstr ""
27442
27443 # type: =head2
27444 #. type: =head2
27445 #: ../fish/guestfish-actions.pod:2462
27446 msgid "lgetxattrs"
27447 msgstr ""
27448
27449 # type: verbatim
27450 #. type: verbatim
27451 #: ../fish/guestfish-actions.pod:2464
27452 #, no-wrap
27453 msgid ""
27454 " lgetxattrs path\n"
27455 "\n"
27456 msgstr ""
27457
27458 # type: textblock
27459 #. type: textblock
27460 #: ../fish/guestfish-actions.pod:2466
27461 msgid ""
27462 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27463 "it returns the extended attributes of the link itself."
27464 msgstr ""
27465
27466 # type: =head2
27467 #. type: =head2
27468 #: ../fish/guestfish-actions.pod:2470
27469 msgid "list-devices"
27470 msgstr ""
27471
27472 # type: verbatim
27473 #. type: verbatim
27474 #: ../fish/guestfish-actions.pod:2472
27475 #, no-wrap
27476 msgid ""
27477 " list-devices\n"
27478 "\n"
27479 msgstr ""
27480
27481 # type: =head2
27482 #. type: =head2
27483 #: ../fish/guestfish-actions.pod:2480
27484 msgid "list-filesystems"
27485 msgstr ""
27486
27487 # type: verbatim
27488 #. type: verbatim
27489 #: ../fish/guestfish-actions.pod:2482
27490 #, no-wrap
27491 msgid ""
27492 " list-filesystems\n"
27493 "\n"
27494 msgstr ""
27495
27496 # type: textblock
27497 #. type: textblock
27498 #: ../fish/guestfish-actions.pod:2501
27499 msgid ""
27500 "This command runs other libguestfs commands, which might include L</mount> "
27501 "and L</umount>, and therefore you should use this soon after launch and only "
27502 "when nothing is mounted."
27503 msgstr ""
27504
27505 # type: textblock
27506 #. type: textblock
27507 #: ../fish/guestfish-actions.pod:2505
27508 msgid ""
27509 "Not all of the filesystems returned will be mountable.  In particular, swap "
27510 "partitions are returned in the list.  Also this command does not check that "
27511 "each filesystem found is valid and mountable, and some filesystems might be "
27512 "mountable but require special options.  Filesystems may not all belong to a "
27513 "single logical operating system (use L</inspect-os> to look for OSes)."
27514 msgstr ""
27515
27516 # type: =head2
27517 #. type: =head2
27518 #: ../fish/guestfish-actions.pod:2513
27519 msgid "list-partitions"
27520 msgstr ""
27521
27522 # type: verbatim
27523 #. type: verbatim
27524 #: ../fish/guestfish-actions.pod:2515
27525 #, no-wrap
27526 msgid ""
27527 " list-partitions\n"
27528 "\n"
27529 msgstr ""
27530
27531 # type: textblock
27532 #. type: textblock
27533 #: ../fish/guestfish-actions.pod:2521
27534 msgid ""
27535 "This does not return logical volumes.  For that you will need to call L</"
27536 "lvs>."
27537 msgstr ""
27538
27539 # type: =head2
27540 #. type: =head2
27541 #: ../fish/guestfish-actions.pod:2526
27542 msgid "ll"
27543 msgstr ""
27544
27545 # type: verbatim
27546 #. type: verbatim
27547 #: ../fish/guestfish-actions.pod:2528
27548 #, no-wrap
27549 msgid ""
27550 " ll directory\n"
27551 "\n"
27552 msgstr ""
27553
27554 # type: =head2
27555 #. type: =head2
27556 #: ../fish/guestfish-actions.pod:2536
27557 msgid "ln"
27558 msgstr ""
27559
27560 # type: verbatim
27561 #. type: verbatim
27562 #: ../fish/guestfish-actions.pod:2538
27563 #, no-wrap
27564 msgid ""
27565 " ln target linkname\n"
27566 "\n"
27567 msgstr ""
27568
27569 # type: =head2
27570 #. type: =head2
27571 #: ../fish/guestfish-actions.pod:2542
27572 msgid "ln-f"
27573 msgstr ""
27574
27575 # type: verbatim
27576 #. type: verbatim
27577 #: ../fish/guestfish-actions.pod:2544
27578 #, no-wrap
27579 msgid ""
27580 " ln-f target linkname\n"
27581 "\n"
27582 msgstr ""
27583
27584 # type: =head2
27585 #. type: =head2
27586 #: ../fish/guestfish-actions.pod:2549
27587 msgid "ln-s"
27588 msgstr ""
27589
27590 # type: verbatim
27591 #. type: verbatim
27592 #: ../fish/guestfish-actions.pod:2551
27593 #, no-wrap
27594 msgid ""
27595 " ln-s target linkname\n"
27596 "\n"
27597 msgstr ""
27598
27599 # type: =head2
27600 #. type: =head2
27601 #: ../fish/guestfish-actions.pod:2555
27602 msgid "ln-sf"
27603 msgstr ""
27604
27605 # type: verbatim
27606 #. type: verbatim
27607 #: ../fish/guestfish-actions.pod:2557
27608 #, no-wrap
27609 msgid ""
27610 " ln-sf target linkname\n"
27611 "\n"
27612 msgstr ""
27613
27614 # type: =head2
27615 #. type: =head2
27616 #: ../fish/guestfish-actions.pod:2562
27617 msgid "lremovexattr"
27618 msgstr ""
27619
27620 # type: verbatim
27621 #. type: verbatim
27622 #: ../fish/guestfish-actions.pod:2564
27623 #, no-wrap
27624 msgid ""
27625 " lremovexattr xattr path\n"
27626 "\n"
27627 msgstr ""
27628
27629 # type: textblock
27630 #. type: textblock
27631 #: ../fish/guestfish-actions.pod:2566
27632 msgid ""
27633 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27634 "it removes an extended attribute of the link itself."
27635 msgstr ""
27636
27637 # type: =head2
27638 #. type: =head2
27639 #: ../fish/guestfish-actions.pod:2570
27640 msgid "ls"
27641 msgstr ""
27642
27643 # type: verbatim
27644 #. type: verbatim
27645 #: ../fish/guestfish-actions.pod:2572
27646 #, no-wrap
27647 msgid ""
27648 " ls directory\n"
27649 "\n"
27650 msgstr ""
27651
27652 # type: textblock
27653 #. type: textblock
27654 #: ../fish/guestfish-actions.pod:2578
27655 msgid ""
27656 "This command is mostly useful for interactive sessions.  Programs should "
27657 "probably use L</readdir> instead."
27658 msgstr ""
27659
27660 # type: =head2
27661 #. type: =head2
27662 #: ../fish/guestfish-actions.pod:2581
27663 msgid "lsetxattr"
27664 msgstr ""
27665
27666 # type: verbatim
27667 #. type: verbatim
27668 #: ../fish/guestfish-actions.pod:2583
27669 #, no-wrap
27670 msgid ""
27671 " lsetxattr xattr val vallen path\n"
27672 "\n"
27673 msgstr ""
27674
27675 # type: textblock
27676 #. type: textblock
27677 #: ../fish/guestfish-actions.pod:2585
27678 msgid ""
27679 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27680 "sets an extended attribute of the link itself."
27681 msgstr ""
27682
27683 # type: =head2
27684 #. type: =head2
27685 #: ../fish/guestfish-actions.pod:2589
27686 msgid "lstat"
27687 msgstr ""
27688
27689 # type: verbatim
27690 #. type: verbatim
27691 #: ../fish/guestfish-actions.pod:2591
27692 #, no-wrap
27693 msgid ""
27694 " lstat path\n"
27695 "\n"
27696 msgstr ""
27697
27698 # type: textblock
27699 #. type: textblock
27700 #: ../fish/guestfish-actions.pod:2595
27701 msgid ""
27702 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27703 "the link is stat-ed, not the file it refers to."
27704 msgstr ""
27705
27706 # type: =head2
27707 #. type: =head2
27708 #: ../fish/guestfish-actions.pod:2601
27709 msgid "lstatlist"
27710 msgstr ""
27711
27712 # type: verbatim
27713 #. type: verbatim
27714 #: ../fish/guestfish-actions.pod:2603
27715 #, no-wrap
27716 msgid ""
27717 " lstatlist path 'names ...'\n"
27718 "\n"
27719 msgstr ""
27720
27721 # type: textblock
27722 #. type: textblock
27723 #: ../fish/guestfish-actions.pod:2605
27724 msgid ""
27725 "This call allows you to perform the L</lstat> operation on multiple files, "
27726 "where all files are in the directory C<path>.  C<names> is the list of files "
27727 "from this directory."
27728 msgstr ""
27729
27730 # type: textblock
27731 #. type: textblock
27732 #: ../fish/guestfish-actions.pod:2614
27733 msgid ""
27734 "This call is intended for programs that want to efficiently list a directory "
27735 "contents without making many round-trips.  See also L</lxattrlist> for a "
27736 "similarly efficient call for getting extended attributes.  Very long "
27737 "directory listings might cause the protocol message size to be exceeded, "
27738 "causing this call to fail.  The caller must split up such requests into "
27739 "smaller groups of names."
27740 msgstr ""
27741
27742 # type: =head2
27743 #. type: =head2
27744 #: ../fish/guestfish-actions.pod:2622
27745 msgid "luks-add-key"
27746 msgstr ""
27747
27748 # type: verbatim
27749 #. type: verbatim
27750 #: ../fish/guestfish-actions.pod:2624
27751 #, no-wrap
27752 msgid ""
27753 " luks-add-key device keyslot\n"
27754 "\n"
27755 msgstr ""
27756
27757 # type: textblock
27758 #. type: textblock
27759 #: ../fish/guestfish-actions.pod:2631
27760 msgid ""
27761 "Note that if C<keyslot> already contains a key, then this command will "
27762 "fail.  You have to use L</luks-kill-slot> first to remove that key."
27763 msgstr ""
27764
27765 # type: textblock
27766 #. type: textblock
27767 #: ../fish/guestfish-actions.pod:2635 ../fish/guestfish-actions.pod:2657
27768 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:2684
27769 #: ../fish/guestfish-actions.pod:2707 ../fish/guestfish-actions.pod:2717
27770 msgid ""
27771 "This command has one or more key or passphrase parameters.  Guestfish will "
27772 "prompt for these separately."
27773 msgstr ""
27774
27775 # type: =head2
27776 #. type: =head2
27777 #: ../fish/guestfish-actions.pod:2638
27778 msgid "luks-close"
27779 msgstr ""
27780
27781 # type: verbatim
27782 #. type: verbatim
27783 #: ../fish/guestfish-actions.pod:2640
27784 #, no-wrap
27785 msgid ""
27786 " luks-close device\n"
27787 "\n"
27788 msgstr ""
27789
27790 # type: textblock
27791 #. type: textblock
27792 #: ../fish/guestfish-actions.pod:2642
27793 msgid ""
27794 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27795 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
27796 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27797 "block device."
27798 msgstr ""
27799
27800 # type: =head2
27801 #. type: =head2
27802 #: ../fish/guestfish-actions.pod:2648
27803 msgid "luks-format"
27804 msgstr ""
27805
27806 # type: verbatim
27807 #. type: verbatim
27808 #: ../fish/guestfish-actions.pod:2650
27809 #, no-wrap
27810 msgid ""
27811 " luks-format device keyslot\n"
27812 "\n"
27813 msgstr ""
27814
27815 # type: =head2
27816 #. type: =head2
27817 #: ../fish/guestfish-actions.pod:2663
27818 msgid "luks-format-cipher"
27819 msgstr ""
27820
27821 # type: verbatim
27822 #. type: verbatim
27823 #: ../fish/guestfish-actions.pod:2665
27824 #, no-wrap
27825 msgid ""
27826 " luks-format-cipher device keyslot cipher\n"
27827 "\n"
27828 msgstr ""
27829
27830 # type: textblock
27831 #. type: textblock
27832 #: ../fish/guestfish-actions.pod:2667
27833 msgid ""
27834 "This command is the same as L</luks-format> but it also allows you to set "
27835 "the C<cipher> used."
27836 msgstr ""
27837
27838 # type: =head2
27839 #. type: =head2
27840 #: ../fish/guestfish-actions.pod:2676
27841 msgid "luks-kill-slot"
27842 msgstr ""
27843
27844 # type: verbatim
27845 #. type: verbatim
27846 #: ../fish/guestfish-actions.pod:2678
27847 #, no-wrap
27848 msgid ""
27849 " luks-kill-slot device keyslot\n"
27850 "\n"
27851 msgstr ""
27852
27853 # type: =head2
27854 #. type: =head2
27855 #: ../fish/guestfish-actions.pod:2687
27856 msgid "luks-open"
27857 msgstr ""
27858
27859 # type: verbatim
27860 #. type: verbatim
27861 #: ../fish/guestfish-actions.pod:2689
27862 #, no-wrap
27863 msgid ""
27864 " luks-open device mapname\n"
27865 "\n"
27866 msgstr ""
27867
27868 # type: textblock
27869 #. type: textblock
27870 #: ../fish/guestfish-actions.pod:2703
27871 msgid ""
27872 "If this block device contains LVM volume groups, then calling L</vgscan> "
27873 "followed by L</vg-activate-all> will make them visible."
27874 msgstr ""
27875
27876 # type: =head2
27877 #. type: =head2
27878 #: ../fish/guestfish-actions.pod:2710
27879 msgid "luks-open-ro"
27880 msgstr ""
27881
27882 # type: verbatim
27883 #. type: verbatim
27884 #: ../fish/guestfish-actions.pod:2712
27885 #, no-wrap
27886 msgid ""
27887 " luks-open-ro device mapname\n"
27888 "\n"
27889 msgstr ""
27890
27891 # type: textblock
27892 #. type: textblock
27893 #: ../fish/guestfish-actions.pod:2714
27894 msgid ""
27895 "This is the same as L</luks-open> except that a read-only mapping is created."
27896 msgstr ""
27897
27898 # type: =head2
27899 #. type: =head2
27900 #: ../fish/guestfish-actions.pod:2720
27901 msgid "lvcreate"
27902 msgstr ""
27903
27904 # type: verbatim
27905 #. type: verbatim
27906 #: ../fish/guestfish-actions.pod:2722
27907 #, no-wrap
27908 msgid ""
27909 " lvcreate logvol volgroup mbytes\n"
27910 "\n"
27911 msgstr ""
27912
27913 # type: =head2
27914 #. type: =head2
27915 #: ../fish/guestfish-actions.pod:2727
27916 msgid "lvm-canonical-lv-name"
27917 msgstr ""
27918
27919 # type: verbatim
27920 #. type: verbatim
27921 #: ../fish/guestfish-actions.pod:2729
27922 #, no-wrap
27923 msgid ""
27924 " lvm-canonical-lv-name lvname\n"
27925 "\n"
27926 msgstr ""
27927
27928 # type: textblock
27929 #. type: textblock
27930 #: ../fish/guestfish-actions.pod:2738
27931 msgid "See also L</is-lv>."
27932 msgstr ""
27933
27934 # type: =head2
27935 #. type: =head2
27936 #: ../fish/guestfish-actions.pod:2740
27937 msgid "lvm-clear-filter"
27938 msgstr ""
27939
27940 # type: verbatim
27941 #. type: verbatim
27942 #: ../fish/guestfish-actions.pod:2742
27943 #, no-wrap
27944 msgid ""
27945 " lvm-clear-filter\n"
27946 "\n"
27947 msgstr ""
27948
27949 # type: textblock
27950 #. type: textblock
27951 #: ../fish/guestfish-actions.pod:2744
27952 msgid ""
27953 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
27954 "block device."
27955 msgstr ""
27956
27957 # type: =head2
27958 #. type: =head2
27959 #: ../fish/guestfish-actions.pod:2750
27960 msgid "lvm-remove-all"
27961 msgstr ""
27962
27963 # type: verbatim
27964 #. type: verbatim
27965 #: ../fish/guestfish-actions.pod:2752
27966 #, no-wrap
27967 msgid ""
27968 " lvm-remove-all\n"
27969 "\n"
27970 msgstr ""
27971
27972 # type: =head2
27973 #. type: =head2
27974 #: ../fish/guestfish-actions.pod:2760
27975 msgid "lvm-set-filter"
27976 msgstr ""
27977
27978 # type: verbatim
27979 #. type: verbatim
27980 #: ../fish/guestfish-actions.pod:2762
27981 #, no-wrap
27982 msgid ""
27983 " lvm-set-filter 'devices ...'\n"
27984 "\n"
27985 msgstr ""
27986
27987 # type: =head2
27988 #. type: =head2
27989 #: ../fish/guestfish-actions.pod:2787
27990 msgid "lvremove"
27991 msgstr ""
27992
27993 # type: verbatim
27994 #. type: verbatim
27995 #: ../fish/guestfish-actions.pod:2789
27996 #, no-wrap
27997 msgid ""
27998 " lvremove device\n"
27999 "\n"
28000 msgstr ""
28001
28002 # type: =head2
28003 #. type: =head2
28004 #: ../fish/guestfish-actions.pod:2797
28005 msgid "lvrename"
28006 msgstr ""
28007
28008 # type: verbatim
28009 #. type: verbatim
28010 #: ../fish/guestfish-actions.pod:2799
28011 #, no-wrap
28012 msgid ""
28013 " lvrename logvol newlogvol\n"
28014 "\n"
28015 msgstr ""
28016
28017 # type: =head2
28018 #. type: =head2
28019 #: ../fish/guestfish-actions.pod:2803
28020 msgid "lvresize"
28021 msgstr ""
28022
28023 # type: verbatim
28024 #. type: verbatim
28025 #: ../fish/guestfish-actions.pod:2805
28026 #, no-wrap
28027 msgid ""
28028 " lvresize device mbytes\n"
28029 "\n"
28030 msgstr ""
28031
28032 # type: =head2
28033 #. type: =head2
28034 #: ../fish/guestfish-actions.pod:2811
28035 msgid "lvresize-free"
28036 msgstr ""
28037
28038 # type: verbatim
28039 #. type: verbatim
28040 #: ../fish/guestfish-actions.pod:2813
28041 #, no-wrap
28042 msgid ""
28043 " lvresize-free lv percent\n"
28044 "\n"
28045 msgstr ""
28046
28047 # type: =head2
28048 #. type: =head2
28049 #: ../fish/guestfish-actions.pod:2821
28050 msgid "lvs"
28051 msgstr ""
28052
28053 # type: verbatim
28054 #. type: verbatim
28055 #: ../fish/guestfish-actions.pod:2823
28056 #, no-wrap
28057 msgid ""
28058 " lvs\n"
28059 "\n"
28060 msgstr ""
28061
28062 # type: textblock
28063 #. type: textblock
28064 #: ../fish/guestfish-actions.pod:2831
28065 msgid "See also L</lvs-full>, L</list-filesystems>."
28066 msgstr ""
28067
28068 # type: =head2
28069 #. type: =head2
28070 #: ../fish/guestfish-actions.pod:2833
28071 msgid "lvs-full"
28072 msgstr ""
28073
28074 # type: verbatim
28075 #. type: verbatim
28076 #: ../fish/guestfish-actions.pod:2835
28077 #, no-wrap
28078 msgid ""
28079 " lvs-full\n"
28080 "\n"
28081 msgstr ""
28082
28083 # type: =head2
28084 #. type: =head2
28085 #: ../fish/guestfish-actions.pod:2840
28086 msgid "lvuuid"
28087 msgstr ""
28088
28089 # type: verbatim
28090 #. type: verbatim
28091 #: ../fish/guestfish-actions.pod:2842
28092 #, no-wrap
28093 msgid ""
28094 " lvuuid device\n"
28095 "\n"
28096 msgstr ""
28097
28098 # type: =head2
28099 #. type: =head2
28100 #: ../fish/guestfish-actions.pod:2846
28101 msgid "lxattrlist"
28102 msgstr ""
28103
28104 # type: verbatim
28105 #. type: verbatim
28106 #: ../fish/guestfish-actions.pod:2848
28107 #, no-wrap
28108 msgid ""
28109 " lxattrlist path 'names ...'\n"
28110 "\n"
28111 msgstr ""
28112
28113 # type: textblock
28114 #. type: textblock
28115 #: ../fish/guestfish-actions.pod:2864
28116 msgid ""
28117 "This call is intended for programs that want to efficiently list a directory "
28118 "contents without making many round-trips.  See also L</lstatlist> for a "
28119 "similarly efficient call for getting standard stats.  Very long directory "
28120 "listings might cause the protocol message size to be exceeded, causing this "
28121 "call to fail.  The caller must split up such requests into smaller groups of "
28122 "names."
28123 msgstr ""
28124
28125 # type: =head2
28126 #. type: =head2
28127 #: ../fish/guestfish-actions.pod:2872
28128 msgid "mkdir"
28129 msgstr ""
28130
28131 # type: verbatim
28132 #. type: verbatim
28133 #: ../fish/guestfish-actions.pod:2874
28134 #, no-wrap
28135 msgid ""
28136 " mkdir path\n"
28137 "\n"
28138 msgstr ""
28139
28140 # type: =head2
28141 #. type: =head2
28142 #: ../fish/guestfish-actions.pod:2878
28143 msgid "mkdir-mode"
28144 msgstr ""
28145
28146 # type: verbatim
28147 #. type: verbatim
28148 #: ../fish/guestfish-actions.pod:2880
28149 #, no-wrap
28150 msgid ""
28151 " mkdir-mode path mode\n"
28152 "\n"
28153 msgstr ""
28154
28155 # type: textblock
28156 #. type: textblock
28157 #: ../fish/guestfish-actions.pod:2889
28158 msgid "See also L</mkdir>, L</umask>"
28159 msgstr ""
28160
28161 # type: =head2
28162 #. type: =head2
28163 #: ../fish/guestfish-actions.pod:2891
28164 msgid "mkdir-p"
28165 msgstr ""
28166
28167 # type: verbatim
28168 #. type: verbatim
28169 #: ../fish/guestfish-actions.pod:2893
28170 #, no-wrap
28171 msgid ""
28172 " mkdir-p path\n"
28173 "\n"
28174 msgstr ""
28175
28176 # type: =head2
28177 #. type: =head2
28178 #: ../fish/guestfish-actions.pod:2898
28179 msgid "mkdtemp"
28180 msgstr ""
28181
28182 # type: verbatim
28183 #. type: verbatim
28184 #: ../fish/guestfish-actions.pod:2900
28185 #, no-wrap
28186 msgid ""
28187 " mkdtemp template\n"
28188 "\n"
28189 msgstr ""
28190
28191 # type: =head2
28192 #. type: =head2
28193 #: ../fish/guestfish-actions.pod:2921
28194 msgid "mke2fs-J"
28195 msgstr ""
28196
28197 # type: verbatim
28198 #. type: verbatim
28199 #: ../fish/guestfish-actions.pod:2923
28200 #, no-wrap
28201 msgid ""
28202 " mke2fs-J fstype blocksize device journal\n"
28203 "\n"
28204 msgstr ""
28205
28206 # type: textblock
28207 #. type: textblock
28208 #: ../fish/guestfish-actions.pod:2931
28209 msgid "See also L</mke2journal>."
28210 msgstr ""
28211
28212 # type: =head2
28213 #. type: =head2
28214 #: ../fish/guestfish-actions.pod:2933
28215 msgid "mke2fs-JL"
28216 msgstr ""
28217
28218 # type: verbatim
28219 #. type: verbatim
28220 #: ../fish/guestfish-actions.pod:2935
28221 #, no-wrap
28222 msgid ""
28223 " mke2fs-JL fstype blocksize device label\n"
28224 "\n"
28225 msgstr ""
28226
28227 # type: textblock
28228 #. type: textblock
28229 #: ../fish/guestfish-actions.pod:2940
28230 msgid "See also L</mke2journal-L>."
28231 msgstr ""
28232
28233 # type: =head2
28234 #. type: =head2
28235 #: ../fish/guestfish-actions.pod:2942
28236 msgid "mke2fs-JU"
28237 msgstr ""
28238
28239 # type: verbatim
28240 #. type: verbatim
28241 #: ../fish/guestfish-actions.pod:2944
28242 #, no-wrap
28243 msgid ""
28244 " mke2fs-JU fstype blocksize device uuid\n"
28245 "\n"
28246 msgstr ""
28247
28248 # type: textblock
28249 #. type: textblock
28250 #: ../fish/guestfish-actions.pod:2949
28251 msgid "See also L</mke2journal-U>."
28252 msgstr ""
28253
28254 # type: =head2
28255 #. type: =head2
28256 #: ../fish/guestfish-actions.pod:2951
28257 msgid "mke2journal"
28258 msgstr ""
28259
28260 # type: verbatim
28261 #. type: verbatim
28262 #: ../fish/guestfish-actions.pod:2953
28263 #, no-wrap
28264 msgid ""
28265 " mke2journal blocksize device\n"
28266 "\n"
28267 msgstr ""
28268
28269 # type: =head2
28270 #. type: =head2
28271 #: ../fish/guestfish-actions.pod:2960
28272 msgid "mke2journal-L"
28273 msgstr ""
28274
28275 # type: verbatim
28276 #. type: verbatim
28277 #: ../fish/guestfish-actions.pod:2962
28278 #, no-wrap
28279 msgid ""
28280 " mke2journal-L blocksize label device\n"
28281 "\n"
28282 msgstr ""
28283
28284 # type: =head2
28285 #. type: =head2
28286 #: ../fish/guestfish-actions.pod:2966
28287 msgid "mke2journal-U"
28288 msgstr ""
28289
28290 # type: verbatim
28291 #. type: verbatim
28292 #: ../fish/guestfish-actions.pod:2968
28293 #, no-wrap
28294 msgid ""
28295 " mke2journal-U blocksize uuid device\n"
28296 "\n"
28297 msgstr ""
28298
28299 # type: =head2
28300 #. type: =head2
28301 #: ../fish/guestfish-actions.pod:2972
28302 msgid "mkfifo"
28303 msgstr ""
28304
28305 # type: verbatim
28306 #. type: verbatim
28307 #: ../fish/guestfish-actions.pod:2974
28308 #, no-wrap
28309 msgid ""
28310 " mkfifo mode path\n"
28311 "\n"
28312 msgstr ""
28313
28314 # type: textblock
28315 #. type: textblock
28316 #: ../fish/guestfish-actions.pod:2976
28317 msgid ""
28318 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
28319 "is just a convenient wrapper around L</mknod>."
28320 msgstr ""
28321
28322 # type: =head2
28323 #. type: =head2
28324 #: ../fish/guestfish-actions.pod:2982
28325 msgid "mkfs"
28326 msgstr ""
28327
28328 # type: verbatim
28329 #. type: verbatim
28330 #: ../fish/guestfish-actions.pod:2984
28331 #, no-wrap
28332 msgid ""
28333 " mkfs fstype device\n"
28334 "\n"
28335 msgstr ""
28336
28337 # type: =head2
28338 #. type: =head2
28339 #: ../fish/guestfish-actions.pod:2990
28340 msgid "mkfs-b"
28341 msgstr ""
28342
28343 # type: verbatim
28344 #. type: verbatim
28345 #: ../fish/guestfish-actions.pod:2992
28346 #, no-wrap
28347 msgid ""
28348 " mkfs-b fstype blocksize device\n"
28349 "\n"
28350 msgstr ""
28351
28352 # type: textblock
28353 #. type: textblock
28354 #: ../fish/guestfish-actions.pod:2994
28355 msgid ""
28356 "This call is similar to L</mkfs>, but it allows you to control the block "
28357 "size of the resulting filesystem.  Supported block sizes depend on the "
28358 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28359 msgstr ""
28360
28361 # type: =head2
28362 #. type: =head2
28363 #: ../fish/guestfish-actions.pod:3009
28364 msgid "mkfs-opts"
28365 msgstr ""
28366
28367 #. type: verbatim
28368 #: ../fish/guestfish-actions.pod:3011
28369 #, no-wrap
28370 msgid ""
28371 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28372 "\n"
28373 msgstr ""
28374
28375 # type: =head2
28376 #. type: =head2
28377 #: ../fish/guestfish-actions.pod:3046
28378 msgid "mkmountpoint"
28379 msgstr ""
28380
28381 # type: verbatim
28382 #. type: verbatim
28383 #: ../fish/guestfish-actions.pod:3048
28384 #, no-wrap
28385 msgid ""
28386 " mkmountpoint exemptpath\n"
28387 "\n"
28388 msgstr ""
28389
28390 # type: textblock
28391 #. type: textblock
28392 #: ../fish/guestfish-actions.pod:3050
28393 msgid ""
28394 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28395 "to create extra mountpoints before mounting the first filesystem."
28396 msgstr ""
28397
28398 # type: textblock
28399 #. type: textblock
28400 #: ../fish/guestfish-actions.pod:3074
28401 msgid ""
28402 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
28403 "unexpected errors if you try to mix these calls.  It is safest to manually "
28404 "unmount filesystems and remove mountpoints after use."
28405 msgstr ""
28406
28407 # type: textblock
28408 #. type: textblock
28409 #: ../fish/guestfish-actions.pod:3078
28410 msgid ""
28411 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28412 "for this to work for manual mountpoints, you must ensure that the innermost "
28413 "mountpoints have the longest pathnames, as in the example code above."
28414 msgstr ""
28415
28416 #. type: textblock
28417 #: ../fish/guestfish-actions.pod:3085
28418 msgid ""
28419 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28420 "L</umount-all> to be called when the handle is closed which can also trigger "
28421 "these issues."
28422 msgstr ""
28423
28424 # type: =head2
28425 #. type: =head2
28426 #: ../fish/guestfish-actions.pod:3089
28427 msgid "mknod"
28428 msgstr ""
28429
28430 # type: verbatim
28431 #. type: verbatim
28432 #: ../fish/guestfish-actions.pod:3091
28433 #, no-wrap
28434 msgid ""
28435 " mknod mode devmajor devminor path\n"
28436 "\n"
28437 msgstr ""
28438
28439 # type: textblock
28440 #. type: textblock
28441 #: ../fish/guestfish-actions.pod:3101
28442 msgid ""
28443 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28444 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28445 "regular file).  These constants are available in the standard Linux header "
28446 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28447 "wrappers around this command which bitwise OR in the appropriate constant "
28448 "for you."
28449 msgstr ""
28450
28451 # type: =head2
28452 #. type: =head2
28453 #: ../fish/guestfish-actions.pod:3111
28454 msgid "mknod-b"
28455 msgstr ""
28456
28457 # type: verbatim
28458 #. type: verbatim
28459 #: ../fish/guestfish-actions.pod:3113
28460 #, no-wrap
28461 msgid ""
28462 " mknod-b mode devmajor devminor path\n"
28463 "\n"
28464 msgstr ""
28465
28466 # type: textblock
28467 #. type: textblock
28468 #: ../fish/guestfish-actions.pod:3115
28469 msgid ""
28470 "This call creates a block device node called C<path> with mode C<mode> and "
28471 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28472 "wrapper around L</mknod>."
28473 msgstr ""
28474
28475 # type: =head2
28476 #. type: =head2
28477 #: ../fish/guestfish-actions.pod:3121
28478 msgid "mknod-c"
28479 msgstr ""
28480
28481 # type: verbatim
28482 #. type: verbatim
28483 #: ../fish/guestfish-actions.pod:3123
28484 #, no-wrap
28485 msgid ""
28486 " mknod-c mode devmajor devminor path\n"
28487 "\n"
28488 msgstr ""
28489
28490 # type: textblock
28491 #. type: textblock
28492 #: ../fish/guestfish-actions.pod:3125
28493 msgid ""
28494 "This call creates a char device node called C<path> with mode C<mode> and "
28495 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28496 "wrapper around L</mknod>."
28497 msgstr ""
28498
28499 # type: =head2
28500 #. type: =head2
28501 #: ../fish/guestfish-actions.pod:3131
28502 msgid "mkswap"
28503 msgstr ""
28504
28505 # type: verbatim
28506 #. type: verbatim
28507 #: ../fish/guestfish-actions.pod:3133
28508 #, no-wrap
28509 msgid ""
28510 " mkswap device\n"
28511 "\n"
28512 msgstr ""
28513
28514 # type: =head2
28515 #. type: =head2
28516 #: ../fish/guestfish-actions.pod:3137
28517 msgid "mkswap-L"
28518 msgstr ""
28519
28520 # type: verbatim
28521 #. type: verbatim
28522 #: ../fish/guestfish-actions.pod:3139
28523 #, no-wrap
28524 msgid ""
28525 " mkswap-L label device\n"
28526 "\n"
28527 msgstr ""
28528
28529 # type: =head2
28530 #. type: =head2
28531 #: ../fish/guestfish-actions.pod:3147
28532 msgid "mkswap-U"
28533 msgstr ""
28534
28535 # type: verbatim
28536 #. type: verbatim
28537 #: ../fish/guestfish-actions.pod:3149
28538 #, no-wrap
28539 msgid ""
28540 " mkswap-U uuid device\n"
28541 "\n"
28542 msgstr ""
28543
28544 # type: =head2
28545 #. type: =head2
28546 #: ../fish/guestfish-actions.pod:3153
28547 msgid "mkswap-file"
28548 msgstr ""
28549
28550 # type: verbatim
28551 #. type: verbatim
28552 #: ../fish/guestfish-actions.pod:3155
28553 #, no-wrap
28554 msgid ""
28555 " mkswap-file path\n"
28556 "\n"
28557 msgstr ""
28558
28559 # type: textblock
28560 #. type: textblock
28561 #: ../fish/guestfish-actions.pod:3159
28562 msgid ""
28563 "This command just writes a swap file signature to an existing file.  To "
28564 "create the file itself, use something like L</fallocate>."
28565 msgstr ""
28566
28567 # type: =head2
28568 #. type: =head2
28569 #: ../fish/guestfish-actions.pod:3162
28570 msgid "modprobe"
28571 msgstr ""
28572
28573 # type: verbatim
28574 #. type: verbatim
28575 #: ../fish/guestfish-actions.pod:3164
28576 #, no-wrap
28577 msgid ""
28578 " modprobe modulename\n"
28579 "\n"
28580 msgstr ""
28581
28582 # type: =head2
28583 #. type: =head2
28584 #: ../fish/guestfish-actions.pod:3171
28585 msgid "mount"
28586 msgstr ""
28587
28588 # type: verbatim
28589 #. type: verbatim
28590 #: ../fish/guestfish-actions.pod:3173
28591 #, no-wrap
28592 msgid ""
28593 " mount device mountpoint\n"
28594 "\n"
28595 msgstr ""
28596
28597 # type: textblock
28598 #. type: textblock
28599 #: ../fish/guestfish-actions.pod:3189
28600 msgid ""
28601 "B<Important note:> When you use this call, the filesystem options C<sync> "
28602 "and C<noatime> are set implicitly.  This was originally done because we "
28603 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28604 "very large negative performance impact and negligible effect on "
28605 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
28606 "code that needs performance, and instead use L</mount-options> (use an empty "
28607 "string for the first parameter if you don't want any options)."
28608 msgstr ""
28609
28610 # type: =head2
28611 #. type: =head2
28612 #: ../fish/guestfish-actions.pod:3206
28613 msgid "mount-loop"
28614 msgstr ""
28615
28616 # type: verbatim
28617 #. type: verbatim
28618 #: ../fish/guestfish-actions.pod:3208
28619 #, no-wrap
28620 msgid ""
28621 " mount-loop file mountpoint\n"
28622 "\n"
28623 msgstr ""
28624
28625 # type: =head2
28626 #. type: =head2
28627 #: ../fish/guestfish-actions.pod:3214
28628 msgid "mount-options"
28629 msgstr ""
28630
28631 # type: verbatim
28632 #. type: verbatim
28633 #: ../fish/guestfish-actions.pod:3216
28634 #, no-wrap
28635 msgid ""
28636 " mount-options options device mountpoint\n"
28637 "\n"
28638 msgstr ""
28639
28640 # type: textblock
28641 #. type: textblock
28642 #: ../fish/guestfish-actions.pod:3218
28643 msgid ""
28644 "This is the same as the L</mount> command, but it allows you to set the "
28645 "mount options as for the L<mount(8)> I<-o> flag."
28646 msgstr ""
28647
28648 # type: =head2
28649 #. type: =head2
28650 #: ../fish/guestfish-actions.pod:3226
28651 msgid "mount-ro"
28652 msgstr ""
28653
28654 # type: verbatim
28655 #. type: verbatim
28656 #: ../fish/guestfish-actions.pod:3228
28657 #, no-wrap
28658 msgid ""
28659 " mount-ro device mountpoint\n"
28660 "\n"
28661 msgstr ""
28662
28663 # type: textblock
28664 #. type: textblock
28665 #: ../fish/guestfish-actions.pod:3230
28666 msgid ""
28667 "This is the same as the L</mount> command, but it mounts the filesystem with "
28668 "the read-only (I<-o ro>) flag."
28669 msgstr ""
28670
28671 # type: =head2
28672 #. type: =head2
28673 #: ../fish/guestfish-actions.pod:3233
28674 msgid "mount-vfs"
28675 msgstr ""
28676
28677 # type: verbatim
28678 #. type: verbatim
28679 #: ../fish/guestfish-actions.pod:3235
28680 #, no-wrap
28681 msgid ""
28682 " mount-vfs options vfstype device mountpoint\n"
28683 "\n"
28684 msgstr ""
28685
28686 # type: textblock
28687 #. type: textblock
28688 #: ../fish/guestfish-actions.pod:3237
28689 msgid ""
28690 "This is the same as the L</mount> command, but it allows you to set both the "
28691 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28692 msgstr ""
28693
28694 # type: =head2
28695 #. type: =head2
28696 #: ../fish/guestfish-actions.pod:3241
28697 msgid "mountpoints"
28698 msgstr ""
28699
28700 # type: verbatim
28701 #. type: verbatim
28702 #: ../fish/guestfish-actions.pod:3243
28703 #, no-wrap
28704 msgid ""
28705 " mountpoints\n"
28706 "\n"
28707 msgstr ""
28708
28709 # type: textblock
28710 #. type: textblock
28711 #: ../fish/guestfish-actions.pod:3245
28712 msgid ""
28713 "This call is similar to L</mounts>.  That call returns a list of devices.  "
28714 "This one returns a hash table (map) of device name to directory where the "
28715 "device is mounted."
28716 msgstr ""
28717
28718 # type: =head2
28719 #. type: =head2
28720 #: ../fish/guestfish-actions.pod:3249
28721 msgid "mounts"
28722 msgstr ""
28723
28724 # type: verbatim
28725 #. type: verbatim
28726 #: ../fish/guestfish-actions.pod:3251
28727 #, no-wrap
28728 msgid ""
28729 " mounts\n"
28730 "\n"
28731 msgstr ""
28732
28733 # type: textblock
28734 #. type: textblock
28735 #: ../fish/guestfish-actions.pod:3258
28736 msgid "See also: L</mountpoints>"
28737 msgstr ""
28738
28739 # type: =head2
28740 #. type: =head2
28741 #: ../fish/guestfish-actions.pod:3260
28742 msgid "mv"
28743 msgstr ""
28744
28745 # type: verbatim
28746 #. type: verbatim
28747 #: ../fish/guestfish-actions.pod:3262
28748 #, no-wrap
28749 msgid ""
28750 " mv src dest\n"
28751 "\n"
28752 msgstr ""
28753
28754 # type: =head2
28755 #. type: =head2
28756 #: ../fish/guestfish-actions.pod:3267
28757 msgid "ntfs-3g-probe"
28758 msgstr ""
28759
28760 # type: verbatim
28761 #. type: verbatim
28762 #: ../fish/guestfish-actions.pod:3269
28763 #, no-wrap
28764 msgid ""
28765 " ntfs-3g-probe true|false device\n"
28766 "\n"
28767 msgstr ""
28768
28769 # type: =head2
28770 #. type: =head2
28771 #: ../fish/guestfish-actions.pod:3283
28772 msgid "ntfsresize"
28773 msgstr ""
28774
28775 # type: verbatim
28776 #. type: verbatim
28777 #: ../fish/guestfish-actions.pod:3285
28778 #, no-wrap
28779 msgid ""
28780 " ntfsresize device\n"
28781 "\n"
28782 msgstr ""
28783
28784 # type: =head2
28785 #. type: =head2
28786 #: ../fish/guestfish-actions.pod:3291
28787 msgid "ntfsresize-size"
28788 msgstr ""
28789
28790 # type: verbatim
28791 #. type: verbatim
28792 #: ../fish/guestfish-actions.pod:3293
28793 #, no-wrap
28794 msgid ""
28795 " ntfsresize-size device size\n"
28796 "\n"
28797 msgstr ""
28798
28799 # type: textblock
28800 #. type: textblock
28801 #: ../fish/guestfish-actions.pod:3295
28802 msgid ""
28803 "This command is the same as L</ntfsresize> except that it allows you to "
28804 "specify the new size (in bytes) explicitly."
28805 msgstr ""
28806
28807 # type: =head2
28808 #. type: =head2
28809 #: ../fish/guestfish-actions.pod:3298
28810 msgid "part-add"
28811 msgstr ""
28812
28813 # type: verbatim
28814 #. type: verbatim
28815 #: ../fish/guestfish-actions.pod:3300
28816 #, no-wrap
28817 msgid ""
28818 " part-add device prlogex startsect endsect\n"
28819 "\n"
28820 msgstr ""
28821
28822 # type: textblock
28823 #. type: textblock
28824 #: ../fish/guestfish-actions.pod:3302
28825 msgid ""
28826 "This command adds a partition to C<device>.  If there is no partition table "
28827 "on the device, call L</part-init> first."
28828 msgstr ""
28829
28830 # type: textblock
28831 #. type: textblock
28832 #: ../fish/guestfish-actions.pod:3314
28833 msgid ""
28834 "Creating a partition which covers the whole disk is not so easy.  Use L</"
28835 "part-disk> to do that."
28836 msgstr ""
28837
28838 # type: =head2
28839 #. type: =head2
28840 #: ../fish/guestfish-actions.pod:3317
28841 msgid "part-del"
28842 msgstr ""
28843
28844 # type: verbatim
28845 #. type: verbatim
28846 #: ../fish/guestfish-actions.pod:3319
28847 #, no-wrap
28848 msgid ""
28849 " part-del device partnum\n"
28850 "\n"
28851 msgstr ""
28852
28853 # type: =head2
28854 #. type: =head2
28855 #: ../fish/guestfish-actions.pod:3327
28856 msgid "part-disk"
28857 msgstr ""
28858
28859 # type: verbatim
28860 #. type: verbatim
28861 #: ../fish/guestfish-actions.pod:3329
28862 #, no-wrap
28863 msgid ""
28864 " part-disk device parttype\n"
28865 "\n"
28866 msgstr ""
28867
28868 # type: textblock
28869 #. type: textblock
28870 #: ../fish/guestfish-actions.pod:3331
28871 msgid ""
28872 "This command is simply a combination of L</part-init> followed by L</part-"
28873 "add> to create a single primary partition covering the whole disk."
28874 msgstr ""
28875
28876 # type: textblock
28877 #. type: textblock
28878 #: ../fish/guestfish-actions.pod:3335
28879 msgid ""
28880 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28881 "possible values are described in L</part-init>."
28882 msgstr ""
28883
28884 # type: =head2
28885 #. type: =head2
28886 #: ../fish/guestfish-actions.pod:3341
28887 msgid "part-get-bootable"
28888 msgstr ""
28889
28890 # type: verbatim
28891 #. type: verbatim
28892 #: ../fish/guestfish-actions.pod:3343
28893 #, no-wrap
28894 msgid ""
28895 " part-get-bootable device partnum\n"
28896 "\n"
28897 msgstr ""
28898
28899 # type: textblock
28900 #. type: textblock
28901 #: ../fish/guestfish-actions.pod:3348
28902 msgid "See also L</part-set-bootable>."
28903 msgstr ""
28904
28905 # type: =head2
28906 #. type: =head2
28907 #: ../fish/guestfish-actions.pod:3350
28908 msgid "part-get-mbr-id"
28909 msgstr ""
28910
28911 # type: verbatim
28912 #. type: verbatim
28913 #: ../fish/guestfish-actions.pod:3352
28914 #, no-wrap
28915 msgid ""
28916 " part-get-mbr-id device partnum\n"
28917 "\n"
28918 msgstr ""
28919
28920 # type: textblock
28921 #. type: textblock
28922 #: ../fish/guestfish-actions.pod:3357 ../fish/guestfish-actions.pod:3495
28923 msgid ""
28924 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
28925 "undefined results for other partition table types (see L</part-get-"
28926 "parttype>)."
28927 msgstr ""
28928
28929 # type: =head2
28930 #. type: =head2
28931 #: ../fish/guestfish-actions.pod:3361
28932 msgid "part-get-parttype"
28933 msgstr ""
28934
28935 # type: verbatim
28936 #. type: verbatim
28937 #: ../fish/guestfish-actions.pod:3363
28938 #, no-wrap
28939 msgid ""
28940 " part-get-parttype device\n"
28941 "\n"
28942 msgstr ""
28943
28944 # type: textblock
28945 #. type: textblock
28946 #: ../fish/guestfish-actions.pod:3368
28947 msgid ""
28948 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
28949 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
28950 "possible, although unusual.  See L</part-init> for a full list."
28951 msgstr ""
28952
28953 # type: =head2
28954 #. type: =head2
28955 #: ../fish/guestfish-actions.pod:3373
28956 msgid "part-init"
28957 msgstr ""
28958
28959 # type: verbatim
28960 #. type: verbatim
28961 #: ../fish/guestfish-actions.pod:3375
28962 #, no-wrap
28963 msgid ""
28964 " part-init device parttype\n"
28965 "\n"
28966 msgstr ""
28967
28968 # type: textblock
28969 #. type: textblock
28970 #: ../fish/guestfish-actions.pod:3381
28971 msgid ""
28972 "Initially there are no partitions.  Following this, you should call L</part-"
28973 "add> for each partition required."
28974 msgstr ""
28975
28976 # type: =head2
28977 #. type: =head2
28978 #: ../fish/guestfish-actions.pod:3444
28979 msgid "part-list"
28980 msgstr ""
28981
28982 # type: verbatim
28983 #. type: verbatim
28984 #: ../fish/guestfish-actions.pod:3446
28985 #, no-wrap
28986 msgid ""
28987 " part-list device\n"
28988 "\n"
28989 msgstr ""
28990
28991 # type: textblock
28992 #. type: textblock
28993 #: ../fish/guestfish-actions.pod:3461
28994 msgid ""
28995 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
28996 "the device's sector size, see L</blockdev-getss>."
28997 msgstr ""
28998
28999 # type: =head2
29000 #. type: =head2
29001 #: ../fish/guestfish-actions.pod:3474
29002 msgid "part-set-bootable"
29003 msgstr ""
29004
29005 # type: verbatim
29006 #. type: verbatim
29007 #: ../fish/guestfish-actions.pod:3476
29008 #, no-wrap
29009 msgid ""
29010 " part-set-bootable device partnum true|false\n"
29011 "\n"
29012 msgstr ""
29013
29014 # type: =head2
29015 #. type: =head2
29016 #: ../fish/guestfish-actions.pod:3485
29017 msgid "part-set-mbr-id"
29018 msgstr ""
29019
29020 # type: verbatim
29021 #. type: verbatim
29022 #: ../fish/guestfish-actions.pod:3487
29023 #, no-wrap
29024 msgid ""
29025 " part-set-mbr-id device partnum idbyte\n"
29026 "\n"
29027 msgstr ""
29028
29029 # type: =head2
29030 #. type: =head2
29031 #: ../fish/guestfish-actions.pod:3499
29032 msgid "part-set-name"
29033 msgstr ""
29034
29035 # type: verbatim
29036 #. type: verbatim
29037 #: ../fish/guestfish-actions.pod:3501
29038 #, no-wrap
29039 msgid ""
29040 " part-set-name device partnum name\n"
29041 "\n"
29042 msgstr ""
29043
29044 # type: =head2
29045 #. type: =head2
29046 #: ../fish/guestfish-actions.pod:3509
29047 msgid "part-to-dev"
29048 msgstr ""
29049
29050 # type: verbatim
29051 #. type: verbatim
29052 #: ../fish/guestfish-actions.pod:3511
29053 #, no-wrap
29054 msgid ""
29055 " part-to-dev partition\n"
29056 "\n"
29057 msgstr ""
29058
29059 # type: textblock
29060 #. type: textblock
29061 #: ../fish/guestfish-actions.pod:3517
29062 msgid ""
29063 "The named partition must exist, for example as a string returned from L</"
29064 "list-partitions>."
29065 msgstr ""
29066
29067 # type: =head2
29068 #. type: =head2
29069 #: ../fish/guestfish-actions.pod:3520
29070 msgid "ping-daemon"
29071 msgstr ""
29072
29073 # type: verbatim
29074 #. type: verbatim
29075 #: ../fish/guestfish-actions.pod:3522
29076 #, no-wrap
29077 msgid ""
29078 " ping-daemon\n"
29079 "\n"
29080 msgstr ""
29081
29082 # type: =head2
29083 #. type: =head2
29084 #: ../fish/guestfish-actions.pod:3529
29085 msgid "pread"
29086 msgstr ""
29087
29088 # type: verbatim
29089 #. type: verbatim
29090 #: ../fish/guestfish-actions.pod:3531
29091 #, no-wrap
29092 msgid ""
29093 " pread path count offset\n"
29094 "\n"
29095 msgstr ""
29096
29097 # type: textblock
29098 #. type: textblock
29099 #: ../fish/guestfish-actions.pod:3539
29100 msgid "See also L</pwrite>, L</pread-device>."
29101 msgstr ""
29102
29103 # type: =head2
29104 #. type: =head2
29105 #: ../fish/guestfish-actions.pod:3544
29106 msgid "pread-device"
29107 msgstr ""
29108
29109 # type: verbatim
29110 #. type: verbatim
29111 #: ../fish/guestfish-actions.pod:3546
29112 #, no-wrap
29113 msgid ""
29114 " pread-device device count offset\n"
29115 "\n"
29116 msgstr ""
29117
29118 # type: textblock
29119 #. type: textblock
29120 #: ../fish/guestfish-actions.pod:3554
29121 msgid "See also L</pread>."
29122 msgstr ""
29123
29124 # type: =head2
29125 #. type: =head2
29126 #: ../fish/guestfish-actions.pod:3559
29127 msgid "pvcreate"
29128 msgstr ""
29129
29130 # type: verbatim
29131 #. type: verbatim
29132 #: ../fish/guestfish-actions.pod:3561
29133 #, no-wrap
29134 msgid ""
29135 " pvcreate device\n"
29136 "\n"
29137 msgstr ""
29138
29139 # type: =head2
29140 #. type: =head2
29141 #: ../fish/guestfish-actions.pod:3567
29142 msgid "pvremove"
29143 msgstr ""
29144
29145 # type: verbatim
29146 #. type: verbatim
29147 #: ../fish/guestfish-actions.pod:3569
29148 #, no-wrap
29149 msgid ""
29150 " pvremove device\n"
29151 "\n"
29152 msgstr ""
29153
29154 # type: =head2
29155 #. type: =head2
29156 #: ../fish/guestfish-actions.pod:3578
29157 msgid "pvresize"
29158 msgstr ""
29159
29160 # type: verbatim
29161 #. type: verbatim
29162 #: ../fish/guestfish-actions.pod:3580
29163 #, no-wrap
29164 msgid ""
29165 " pvresize device\n"
29166 "\n"
29167 msgstr ""
29168
29169 # type: =head2
29170 #. type: =head2
29171 #: ../fish/guestfish-actions.pod:3585
29172 msgid "pvresize-size"
29173 msgstr ""
29174
29175 # type: verbatim
29176 #. type: verbatim
29177 #: ../fish/guestfish-actions.pod:3587
29178 #, no-wrap
29179 msgid ""
29180 " pvresize-size device size\n"
29181 "\n"
29182 msgstr ""
29183
29184 # type: textblock
29185 #. type: textblock
29186 #: ../fish/guestfish-actions.pod:3589
29187 msgid ""
29188 "This command is the same as L</pvresize> except that it allows you to "
29189 "specify the new size (in bytes) explicitly."
29190 msgstr ""
29191
29192 # type: =head2
29193 #. type: =head2
29194 #: ../fish/guestfish-actions.pod:3592
29195 msgid "pvs"
29196 msgstr ""
29197
29198 # type: verbatim
29199 #. type: verbatim
29200 #: ../fish/guestfish-actions.pod:3594
29201 #, no-wrap
29202 msgid ""
29203 " pvs\n"
29204 "\n"
29205 msgstr ""
29206
29207 # type: textblock
29208 #. type: textblock
29209 #: ../fish/guestfish-actions.pod:3602
29210 msgid "See also L</pvs-full>."
29211 msgstr ""
29212
29213 # type: =head2
29214 #. type: =head2
29215 #: ../fish/guestfish-actions.pod:3604
29216 msgid "pvs-full"
29217 msgstr ""
29218
29219 # type: verbatim
29220 #. type: verbatim
29221 #: ../fish/guestfish-actions.pod:3606
29222 #, no-wrap
29223 msgid ""
29224 " pvs-full\n"
29225 "\n"
29226 msgstr ""
29227
29228 # type: =head2
29229 #. type: =head2
29230 #: ../fish/guestfish-actions.pod:3611
29231 msgid "pvuuid"
29232 msgstr ""
29233
29234 # type: verbatim
29235 #. type: verbatim
29236 #: ../fish/guestfish-actions.pod:3613
29237 #, no-wrap
29238 msgid ""
29239 " pvuuid device\n"
29240 "\n"
29241 msgstr ""
29242
29243 # type: =head2
29244 #. type: =head2
29245 #: ../fish/guestfish-actions.pod:3617
29246 msgid "pwrite"
29247 msgstr ""
29248
29249 # type: verbatim
29250 #. type: verbatim
29251 #: ../fish/guestfish-actions.pod:3619
29252 #, no-wrap
29253 msgid ""
29254 " pwrite path content offset\n"
29255 "\n"
29256 msgstr ""
29257
29258 # type: textblock
29259 #. type: textblock
29260 #: ../fish/guestfish-actions.pod:3630
29261 msgid "See also L</pread>, L</pwrite-device>."
29262 msgstr ""
29263
29264 # type: =head2
29265 #. type: =head2
29266 #: ../fish/guestfish-actions.pod:3635
29267 msgid "pwrite-device"
29268 msgstr ""
29269
29270 # type: verbatim
29271 #. type: verbatim
29272 #: ../fish/guestfish-actions.pod:3637
29273 #, no-wrap
29274 msgid ""
29275 " pwrite-device device content offset\n"
29276 "\n"
29277 msgstr ""
29278
29279 # type: textblock
29280 #. type: textblock
29281 #: ../fish/guestfish-actions.pod:3647
29282 msgid "See also L</pwrite>."
29283 msgstr ""
29284
29285 # type: =head2
29286 #. type: =head2
29287 #: ../fish/guestfish-actions.pod:3652
29288 msgid "read-file"
29289 msgstr ""
29290
29291 # type: verbatim
29292 #. type: verbatim
29293 #: ../fish/guestfish-actions.pod:3654
29294 #, no-wrap
29295 msgid ""
29296 " read-file path\n"
29297 "\n"
29298 msgstr ""
29299
29300 # type: textblock
29301 #. type: textblock
29302 #: ../fish/guestfish-actions.pod:3659
29303 msgid ""
29304 "Unlike L</cat>, this function can correctly handle files that contain "
29305 "embedded ASCII NUL characters.  However unlike L</download>, this function "
29306 "is limited in the total size of file that can be handled."
29307 msgstr ""
29308
29309 # type: =head2
29310 #. type: =head2
29311 #: ../fish/guestfish-actions.pod:3667
29312 msgid "read-lines"
29313 msgstr ""
29314
29315 # type: verbatim
29316 #. type: verbatim
29317 #: ../fish/guestfish-actions.pod:3669
29318 #, no-wrap
29319 msgid ""
29320 " read-lines path\n"
29321 "\n"
29322 msgstr ""
29323
29324 # type: textblock
29325 #. type: textblock
29326 #: ../fish/guestfish-actions.pod:3676
29327 msgid ""
29328 "Note that this function cannot correctly handle binary files (specifically, "
29329 "files containing C<\\0> character which is treated as end of line).  For "
29330 "those you need to use the L</read-file> function which has a more complex "
29331 "interface."
29332 msgstr ""
29333
29334 # type: =head2
29335 #. type: =head2
29336 #: ../fish/guestfish-actions.pod:3681
29337 msgid "readdir"
29338 msgstr ""
29339
29340 # type: verbatim
29341 #. type: verbatim
29342 #: ../fish/guestfish-actions.pod:3683
29343 #, no-wrap
29344 msgid ""
29345 " readdir dir\n"
29346 "\n"
29347 msgstr ""
29348
29349 # type: textblock
29350 #. type: textblock
29351 #: ../fish/guestfish-actions.pod:3735
29352 msgid ""
29353 "This function is primarily intended for use by programs.  To get a simple "
29354 "list of names, use L</ls>.  To get a printable directory for human "
29355 "consumption, use L</ll>."
29356 msgstr ""
29357
29358 # type: =head2
29359 #. type: =head2
29360 #: ../fish/guestfish-actions.pod:3739
29361 msgid "readlink"
29362 msgstr ""
29363
29364 # type: verbatim
29365 #. type: verbatim
29366 #: ../fish/guestfish-actions.pod:3741
29367 #, no-wrap
29368 msgid ""
29369 " readlink path\n"
29370 "\n"
29371 msgstr ""
29372
29373 # type: =head2
29374 #. type: =head2
29375 #: ../fish/guestfish-actions.pod:3745
29376 msgid "readlinklist"
29377 msgstr ""
29378
29379 # type: verbatim
29380 #. type: verbatim
29381 #: ../fish/guestfish-actions.pod:3747
29382 #, no-wrap
29383 msgid ""
29384 " readlinklist path 'names ...'\n"
29385 "\n"
29386 msgstr ""
29387
29388 # type: =head2
29389 #. type: =head2
29390 #: ../fish/guestfish-actions.pod:3771
29391 msgid "realpath"
29392 msgstr ""
29393
29394 # type: verbatim
29395 #. type: verbatim
29396 #: ../fish/guestfish-actions.pod:3773
29397 #, no-wrap
29398 msgid ""
29399 " realpath path\n"
29400 "\n"
29401 msgstr ""
29402
29403 # type: =head2
29404 #. type: =head2
29405 #: ../fish/guestfish-actions.pod:3778
29406 msgid "removexattr"
29407 msgstr ""
29408
29409 # type: verbatim
29410 #. type: verbatim
29411 #: ../fish/guestfish-actions.pod:3780
29412 #, no-wrap
29413 msgid ""
29414 " removexattr xattr path\n"
29415 "\n"
29416 msgstr ""
29417
29418 # type: textblock
29419 #. type: textblock
29420 #: ../fish/guestfish-actions.pod:3785
29421 msgid "See also: L</lremovexattr>, L<attr(5)>."
29422 msgstr ""
29423
29424 # type: =head2
29425 #. type: =head2
29426 #: ../fish/guestfish-actions.pod:3787
29427 msgid "resize2fs"
29428 msgstr ""
29429
29430 # type: verbatim
29431 #. type: verbatim
29432 #: ../fish/guestfish-actions.pod:3789
29433 #, no-wrap
29434 msgid ""
29435 " resize2fs device\n"
29436 "\n"
29437 msgstr ""
29438
29439 # type: textblock
29440 #. type: textblock
29441 #: ../fish/guestfish-actions.pod:3794
29442 msgid ""
29443 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29444 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
29445 "gives an error about this and sometimes not.  In any case, it is always safe "
29446 "to call L</e2fsck-f> before calling this function."
29447 msgstr ""
29448
29449 #. type: =head2
29450 #: ../fish/guestfish-actions.pod:3800
29451 msgid "resize2fs-M"
29452 msgstr ""
29453
29454 #. type: verbatim
29455 #: ../fish/guestfish-actions.pod:3802
29456 #, no-wrap
29457 msgid ""
29458 " resize2fs-M device\n"
29459 "\n"
29460 msgstr ""
29461
29462 #. type: textblock
29463 #: ../fish/guestfish-actions.pod:3804
29464 msgid ""
29465 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29466 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
29467 "command."
29468 msgstr ""
29469
29470 #. type: textblock
29471 #: ../fish/guestfish-actions.pod:3808
29472 msgid ""
29473 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29474 "and read the C<Block size> and C<Block count> values.  These two numbers, "
29475 "multiplied together, give the resulting size of the minimal filesystem in "
29476 "bytes."
29477 msgstr ""
29478
29479 # type: =head2
29480 #. type: =head2
29481 #: ../fish/guestfish-actions.pod:3813
29482 msgid "resize2fs-size"
29483 msgstr ""
29484
29485 # type: verbatim
29486 #. type: verbatim
29487 #: ../fish/guestfish-actions.pod:3815
29488 #, no-wrap
29489 msgid ""
29490 " resize2fs-size device size\n"
29491 "\n"
29492 msgstr ""
29493
29494 # type: textblock
29495 #. type: textblock
29496 #: ../fish/guestfish-actions.pod:3817
29497 msgid ""
29498 "This command is the same as L</resize2fs> except that it allows you to "
29499 "specify the new size (in bytes) explicitly."
29500 msgstr ""
29501
29502 # type: =head2
29503 #. type: =head2
29504 #: ../fish/guestfish-actions.pod:3820
29505 msgid "rm"
29506 msgstr ""
29507
29508 # type: verbatim
29509 #. type: verbatim
29510 #: ../fish/guestfish-actions.pod:3822
29511 #, no-wrap
29512 msgid ""
29513 " rm path\n"
29514 "\n"
29515 msgstr ""
29516
29517 # type: =head2
29518 #. type: =head2
29519 #: ../fish/guestfish-actions.pod:3826
29520 msgid "rm-rf"
29521 msgstr ""
29522
29523 # type: verbatim
29524 #. type: verbatim
29525 #: ../fish/guestfish-actions.pod:3828
29526 #, no-wrap
29527 msgid ""
29528 " rm-rf path\n"
29529 "\n"
29530 msgstr ""
29531
29532 # type: =head2
29533 #. type: =head2
29534 #: ../fish/guestfish-actions.pod:3834
29535 msgid "rmdir"
29536 msgstr ""
29537
29538 # type: verbatim
29539 #. type: verbatim
29540 #: ../fish/guestfish-actions.pod:3836
29541 #, no-wrap
29542 msgid ""
29543 " rmdir path\n"
29544 "\n"
29545 msgstr ""
29546
29547 # type: =head2
29548 #. type: =head2
29549 #: ../fish/guestfish-actions.pod:3840
29550 msgid "rmmountpoint"
29551 msgstr ""
29552
29553 # type: verbatim
29554 #. type: verbatim
29555 #: ../fish/guestfish-actions.pod:3842
29556 #, no-wrap
29557 msgid ""
29558 " rmmountpoint exemptpath\n"
29559 "\n"
29560 msgstr ""
29561
29562 # type: textblock
29563 #. type: textblock
29564 #: ../fish/guestfish-actions.pod:3844
29565 msgid ""
29566 "This calls removes a mountpoint that was previously created with L</"
29567 "mkmountpoint>.  See L</mkmountpoint> for full details."
29568 msgstr ""
29569
29570 # type: =head2
29571 #. type: =head2
29572 #: ../fish/guestfish-actions.pod:3848
29573 msgid "scrub-device"
29574 msgstr ""
29575
29576 # type: verbatim
29577 #. type: verbatim
29578 #: ../fish/guestfish-actions.pod:3850
29579 #, no-wrap
29580 msgid ""
29581 " scrub-device device\n"
29582 "\n"
29583 msgstr ""
29584
29585 # type: =head2
29586 #. type: =head2
29587 #: ../fish/guestfish-actions.pod:3861
29588 msgid "scrub-file"
29589 msgstr ""
29590
29591 # type: verbatim
29592 #. type: verbatim
29593 #: ../fish/guestfish-actions.pod:3863
29594 #, no-wrap
29595 msgid ""
29596 " scrub-file file\n"
29597 "\n"
29598 msgstr ""
29599
29600 # type: =head2
29601 #. type: =head2
29602 #: ../fish/guestfish-actions.pod:3873
29603 msgid "scrub-freespace"
29604 msgstr ""
29605
29606 # type: verbatim
29607 #. type: verbatim
29608 #: ../fish/guestfish-actions.pod:3875
29609 #, no-wrap
29610 msgid ""
29611 " scrub-freespace dir\n"
29612 "\n"
29613 msgstr ""
29614
29615 # type: textblock
29616 #. type: textblock
29617 #: ../fish/guestfish-actions.pod:3877
29618 msgid ""
29619 "This command creates the directory C<dir> and then fills it with files until "
29620 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29621 "deletes them.  The intention is to scrub any free space on the partition "
29622 "containing C<dir>."
29623 msgstr ""
29624
29625 # type: =head2
29626 #. type: =head2
29627 #: ../fish/guestfish-actions.pod:3886
29628 msgid "set-append"
29629 msgstr ""
29630
29631 # type: =head2
29632 #. type: =head2
29633 #: ../fish/guestfish-actions.pod:3888
29634 msgid "append"
29635 msgstr ""
29636
29637 # type: verbatim
29638 #. type: verbatim
29639 #: ../fish/guestfish-actions.pod:3890
29640 #, no-wrap
29641 msgid ""
29642 " set-append append\n"
29643 "\n"
29644 msgstr ""
29645
29646 #. type: =head2
29647 #: ../fish/guestfish-actions.pod:3901
29648 msgid "set-attach-method"
29649 msgstr ""
29650
29651 #. type: =head2
29652 #: ../fish/guestfish-actions.pod:3903
29653 msgid "attach-method"
29654 msgstr ""
29655
29656 #. type: verbatim
29657 #: ../fish/guestfish-actions.pod:3905
29658 #, no-wrap
29659 msgid ""
29660 " set-attach-method attachmethod\n"
29661 "\n"
29662 msgstr ""
29663
29664 # type: =head2
29665 #. type: =head2
29666 #: ../fish/guestfish-actions.pod:3927
29667 msgid "set-autosync"
29668 msgstr ""
29669
29670 # type: =head2
29671 #. type: =head2
29672 #: ../fish/guestfish-actions.pod:3929
29673 msgid "autosync"
29674 msgstr ""
29675
29676 # type: verbatim
29677 #. type: verbatim
29678 #: ../fish/guestfish-actions.pod:3931
29679 #, no-wrap
29680 msgid ""
29681 " set-autosync true|false\n"
29682 "\n"
29683 msgstr ""
29684
29685 # type: =head2
29686 #. type: =head2
29687 #: ../fish/guestfish-actions.pod:3941
29688 msgid "set-direct"
29689 msgstr ""
29690
29691 # type: =head2
29692 #. type: =head2
29693 #: ../fish/guestfish-actions.pod:3943
29694 msgid "direct"
29695 msgstr ""
29696
29697 # type: verbatim
29698 #. type: verbatim
29699 #: ../fish/guestfish-actions.pod:3945
29700 #, no-wrap
29701 msgid ""
29702 " set-direct true|false\n"
29703 "\n"
29704 msgstr ""
29705
29706 # type: textblock
29707 #. type: textblock
29708 #: ../fish/guestfish-actions.pod:3951
29709 msgid ""
29710 "One consequence of this is that log messages aren't caught by the library "
29711 "and handled by L</set-log-message-callback>, but go straight to stdout."
29712 msgstr ""
29713
29714 # type: =head2
29715 #. type: =head2
29716 #: ../fish/guestfish-actions.pod:3960
29717 msgid "set-e2label"
29718 msgstr ""
29719
29720 # type: verbatim
29721 #. type: verbatim
29722 #: ../fish/guestfish-actions.pod:3962
29723 #, no-wrap
29724 msgid ""
29725 " set-e2label device label\n"
29726 "\n"
29727 msgstr ""
29728
29729 # type: textblock
29730 #. type: textblock
29731 #: ../fish/guestfish-actions.pod:3968
29732 msgid ""
29733 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29734 "label on a filesystem."
29735 msgstr ""
29736
29737 # type: =head2
29738 #. type: =head2
29739 #: ../fish/guestfish-actions.pod:3971
29740 msgid "set-e2uuid"
29741 msgstr ""
29742
29743 # type: verbatim
29744 #. type: verbatim
29745 #: ../fish/guestfish-actions.pod:3973
29746 #, no-wrap
29747 msgid ""
29748 " set-e2uuid device uuid\n"
29749 "\n"
29750 msgstr ""
29751
29752 # type: textblock
29753 #. type: textblock
29754 #: ../fish/guestfish-actions.pod:3980
29755 msgid ""
29756 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29757 "UUID of a filesystem."
29758 msgstr ""
29759
29760 # type: =head2
29761 #. type: =head2
29762 #: ../fish/guestfish-actions.pod:3983
29763 msgid "set-memsize"
29764 msgstr ""
29765
29766 # type: =head2
29767 #. type: =head2
29768 #: ../fish/guestfish-actions.pod:3985
29769 msgid "memsize"
29770 msgstr ""
29771
29772 # type: verbatim
29773 #. type: verbatim
29774 #: ../fish/guestfish-actions.pod:3987
29775 #, no-wrap
29776 msgid ""
29777 " set-memsize memsize\n"
29778 "\n"
29779 msgstr ""
29780
29781 # type: textblock
29782 #. type: textblock
29783 #: ../fish/guestfish-actions.pod:3989
29784 msgid ""
29785 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
29786 "This only has any effect if called before L</launch>."
29787 msgstr ""
29788
29789 # type: =head2
29790 #. type: =head2
29791 #: ../fish/guestfish-actions.pod:4000
29792 msgid "set-network"
29793 msgstr ""
29794
29795 # type: =head2
29796 #. type: =head2
29797 #: ../fish/guestfish-actions.pod:4002
29798 msgid "network"
29799 msgstr ""
29800
29801 # type: verbatim
29802 #. type: verbatim
29803 #: ../fish/guestfish-actions.pod:4004
29804 #, no-wrap
29805 msgid ""
29806 " set-network true|false\n"
29807 "\n"
29808 msgstr ""
29809
29810 # type: textblock
29811 #. type: textblock
29812 #: ../fish/guestfish-actions.pod:4012
29813 msgid ""
29814 "You must call this before calling L</launch>, otherwise it has no effect."
29815 msgstr ""
29816
29817 # type: =head2
29818 #. type: =head2
29819 #: ../fish/guestfish-actions.pod:4015
29820 msgid "set-path"
29821 msgstr ""
29822
29823 # type: =head2
29824 #. type: =head2
29825 #: ../fish/guestfish-actions.pod:4017
29826 msgid "path"
29827 msgstr ""
29828
29829 # type: verbatim
29830 #. type: verbatim
29831 #: ../fish/guestfish-actions.pod:4019
29832 #, no-wrap
29833 msgid ""
29834 " set-path searchpath\n"
29835 "\n"
29836 msgstr ""
29837
29838 # type: =head2
29839 #. type: =head2
29840 #: ../fish/guestfish-actions.pod:4028
29841 msgid "set-qemu"
29842 msgstr ""
29843
29844 # type: =head2
29845 #. type: =head2
29846 #: ../fish/guestfish-actions.pod:4030
29847 msgid "qemu"
29848 msgstr ""
29849
29850 # type: verbatim
29851 #. type: verbatim
29852 #: ../fish/guestfish-actions.pod:4032
29853 #, no-wrap
29854 msgid ""
29855 " set-qemu qemu\n"
29856 "\n"
29857 msgstr ""
29858
29859 # type: =head2
29860 #. type: =head2
29861 #: ../fish/guestfish-actions.pod:4052
29862 msgid "set-recovery-proc"
29863 msgstr ""
29864
29865 # type: =head2
29866 #. type: =head2
29867 #: ../fish/guestfish-actions.pod:4054
29868 msgid "recovery-proc"
29869 msgstr ""
29870
29871 # type: verbatim
29872 #. type: verbatim
29873 #: ../fish/guestfish-actions.pod:4056
29874 #, no-wrap
29875 msgid ""
29876 " set-recovery-proc true|false\n"
29877 "\n"
29878 msgstr ""
29879
29880 # type: textblock
29881 #. type: textblock
29882 #: ../fish/guestfish-actions.pod:4058
29883 msgid ""
29884 "If this is called with the parameter C<false> then L</launch> does not "
29885 "create a recovery process.  The purpose of the recovery process is to stop "
29886 "runaway qemu processes in the case where the main program aborts abruptly."
29887 msgstr ""
29888
29889 # type: textblock
29890 #. type: textblock
29891 #: ../fish/guestfish-actions.pod:4063
29892 msgid ""
29893 "This only has any effect if called before L</launch>, and the default is "
29894 "true."
29895 msgstr ""
29896
29897 # type: =head2
29898 #. type: =head2
29899 #: ../fish/guestfish-actions.pod:4072
29900 msgid "set-selinux"
29901 msgstr ""
29902
29903 # type: =head2
29904 #. type: =head2
29905 #: ../fish/guestfish-actions.pod:4074
29906 msgid "selinux"
29907 msgstr ""
29908
29909 # type: verbatim
29910 #. type: verbatim
29911 #: ../fish/guestfish-actions.pod:4076
29912 #, no-wrap
29913 msgid ""
29914 " set-selinux true|false\n"
29915 "\n"
29916 msgstr ""
29917
29918 # type: =head2
29919 #. type: =head2
29920 #: ../fish/guestfish-actions.pod:4087
29921 msgid "set-trace"
29922 msgstr ""
29923
29924 # type: =head2
29925 #. type: =head2
29926 #: ../fish/guestfish-actions.pod:4089
29927 msgid "trace"
29928 msgstr ""
29929
29930 # type: verbatim
29931 #. type: verbatim
29932 #: ../fish/guestfish-actions.pod:4091
29933 #, no-wrap
29934 msgid ""
29935 " set-trace true|false\n"
29936 "\n"
29937 msgstr ""
29938
29939 #. type: textblock
29940 #: ../fish/guestfish-actions.pod:4103
29941 msgid ""
29942 "Trace messages are normally sent to C<stderr>, unless you register a "
29943 "callback to send them somewhere else (see L</set-event-callback>)."
29944 msgstr ""
29945
29946 # type: =head2
29947 #. type: =head2
29948 #: ../fish/guestfish-actions.pod:4107
29949 msgid "set-verbose"
29950 msgstr ""
29951
29952 # type: =head2
29953 #. type: =head2
29954 #: ../fish/guestfish-actions.pod:4109
29955 msgid "verbose"
29956 msgstr ""
29957
29958 # type: verbatim
29959 #. type: verbatim
29960 #: ../fish/guestfish-actions.pod:4111
29961 #, no-wrap
29962 msgid ""
29963 " set-verbose true|false\n"
29964 "\n"
29965 msgstr ""
29966
29967 #. type: textblock
29968 #: ../fish/guestfish-actions.pod:4118
29969 msgid ""
29970 "Verbose messages are normally sent to C<stderr>, unless you register a "
29971 "callback to send them somewhere else (see L</set-event-callback>)."
29972 msgstr ""
29973
29974 # type: =head2
29975 #. type: =head2
29976 #: ../fish/guestfish-actions.pod:4122
29977 msgid "setcon"
29978 msgstr ""
29979
29980 # type: verbatim
29981 #. type: verbatim
29982 #: ../fish/guestfish-actions.pod:4124
29983 #, no-wrap
29984 msgid ""
29985 " setcon context\n"
29986 "\n"
29987 msgstr ""
29988
29989 # type: =head2
29990 #. type: =head2
29991 #: ../fish/guestfish-actions.pod:4131
29992 msgid "setxattr"
29993 msgstr ""
29994
29995 # type: verbatim
29996 #. type: verbatim
29997 #: ../fish/guestfish-actions.pod:4133
29998 #, no-wrap
29999 msgid ""
30000 " setxattr xattr val vallen path\n"
30001 "\n"
30002 msgstr ""
30003
30004 # type: textblock
30005 #. type: textblock
30006 #: ../fish/guestfish-actions.pod:4139
30007 msgid "See also: L</lsetxattr>, L<attr(5)>."
30008 msgstr ""
30009
30010 # type: =head2
30011 #. type: =head2
30012 #: ../fish/guestfish-actions.pod:4141
30013 msgid "sfdisk"
30014 msgstr ""
30015
30016 # type: verbatim
30017 #. type: verbatim
30018 #: ../fish/guestfish-actions.pod:4143
30019 #, no-wrap
30020 msgid ""
30021 " sfdisk device cyls heads sectors 'lines ...'\n"
30022 "\n"
30023 msgstr ""
30024
30025 # type: textblock
30026 #. type: textblock
30027 #: ../fish/guestfish-actions.pod:4165
30028 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
30029 msgstr ""
30030
30031 # type: =head2
30032 #. type: =head2
30033 #: ../fish/guestfish-actions.pod:4178
30034 msgid "sfdiskM"
30035 msgstr ""
30036
30037 # type: verbatim
30038 #. type: verbatim
30039 #: ../fish/guestfish-actions.pod:4180
30040 #, no-wrap
30041 msgid ""
30042 " sfdiskM device 'lines ...'\n"
30043 "\n"
30044 msgstr ""
30045
30046 # type: textblock
30047 #. type: textblock
30048 #: ../fish/guestfish-actions.pod:4182
30049 msgid ""
30050 "This is a simplified interface to the L</sfdisk> command, where partition "
30051 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
30052 "you don't need to specify the cyls, heads and sectors parameters which were "
30053 "rarely if ever used anyway."
30054 msgstr ""
30055
30056 # type: textblock
30057 #. type: textblock
30058 #: ../fish/guestfish-actions.pod:4188
30059 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
30060 msgstr ""
30061
30062 # type: =head2
30063 #. type: =head2
30064 #: ../fish/guestfish-actions.pod:4201
30065 msgid "sfdisk-N"
30066 msgstr ""
30067
30068 # type: verbatim
30069 #. type: verbatim
30070 #: ../fish/guestfish-actions.pod:4203
30071 #, no-wrap
30072 msgid ""
30073 " sfdisk-N device partnum cyls heads sectors line\n"
30074 "\n"
30075 msgstr ""
30076
30077 # type: textblock
30078 #. type: textblock
30079 #: ../fish/guestfish-actions.pod:4208
30080 msgid ""
30081 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
30082 "cyls/heads/sectors parameters."
30083 msgstr ""
30084
30085 # type: textblock
30086 #. type: textblock
30087 #: ../fish/guestfish-actions.pod:4211
30088 msgid "See also: L</part-add>"
30089 msgstr ""
30090
30091 # type: =head2
30092 #. type: =head2
30093 #: ../fish/guestfish-actions.pod:4223
30094 msgid "sfdisk-disk-geometry"
30095 msgstr ""
30096
30097 # type: verbatim
30098 #. type: verbatim
30099 #: ../fish/guestfish-actions.pod:4225
30100 #, no-wrap
30101 msgid ""
30102 " sfdisk-disk-geometry device\n"
30103 "\n"
30104 msgstr ""
30105
30106 # type: textblock
30107 #. type: textblock
30108 #: ../fish/guestfish-actions.pod:4227
30109 msgid ""
30110 "This displays the disk geometry of C<device> read from the partition table.  "
30111 "Especially in the case where the underlying block device has been resized, "
30112 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
30113 "kernel-geometry>)."
30114 msgstr ""
30115
30116 # type: =head2
30117 #. type: =head2
30118 #: ../fish/guestfish-actions.pod:4235
30119 msgid "sfdisk-kernel-geometry"
30120 msgstr ""
30121
30122 # type: verbatim
30123 #. type: verbatim
30124 #: ../fish/guestfish-actions.pod:4237
30125 #, no-wrap
30126 msgid ""
30127 " sfdisk-kernel-geometry device\n"
30128 "\n"
30129 msgstr ""
30130
30131 # type: =head2
30132 #. type: =head2
30133 #: ../fish/guestfish-actions.pod:4244
30134 msgid "sfdisk-l"
30135 msgstr ""
30136
30137 # type: verbatim
30138 #. type: verbatim
30139 #: ../fish/guestfish-actions.pod:4246
30140 #, no-wrap
30141 msgid ""
30142 " sfdisk-l device\n"
30143 "\n"
30144 msgstr ""
30145
30146 # type: textblock
30147 #. type: textblock
30148 #: ../fish/guestfish-actions.pod:4252
30149 msgid "See also: L</part-list>"
30150 msgstr ""
30151
30152 # type: =head2
30153 #. type: =head2
30154 #: ../fish/guestfish-actions.pod:4261
30155 msgid "sh"
30156 msgstr ""
30157
30158 # type: verbatim
30159 #. type: verbatim
30160 #: ../fish/guestfish-actions.pod:4263
30161 #, no-wrap
30162 msgid ""
30163 " sh command\n"
30164 "\n"
30165 msgstr ""
30166
30167 # type: textblock
30168 #. type: textblock
30169 #: ../fish/guestfish-actions.pod:4268
30170 msgid "This is like L</command>, but passes the command to:"
30171 msgstr ""
30172
30173 # type: textblock
30174 #. type: textblock
30175 #: ../fish/guestfish-actions.pod:4276
30176 msgid "All the provisos about L</command> apply to this call."
30177 msgstr ""
30178
30179 # type: =head2
30180 #. type: =head2
30181 #: ../fish/guestfish-actions.pod:4278
30182 msgid "sh-lines"
30183 msgstr ""
30184
30185 # type: verbatim
30186 #. type: verbatim
30187 #: ../fish/guestfish-actions.pod:4280
30188 #, no-wrap
30189 msgid ""
30190 " sh-lines command\n"
30191 "\n"
30192 msgstr ""
30193
30194 # type: textblock
30195 #. type: textblock
30196 #: ../fish/guestfish-actions.pod:4282
30197 msgid "This is the same as L</sh>, but splits the result into a list of lines."
30198 msgstr ""
30199
30200 # type: textblock
30201 #. type: textblock
30202 #: ../fish/guestfish-actions.pod:4285
30203 msgid "See also: L</command-lines>"
30204 msgstr ""
30205
30206 # type: =head2
30207 #. type: =head2
30208 #: ../fish/guestfish-actions.pod:4287
30209 msgid "sleep"
30210 msgstr ""
30211
30212 # type: verbatim
30213 #. type: verbatim
30214 #: ../fish/guestfish-actions.pod:4289
30215 #, no-wrap
30216 msgid ""
30217 " sleep secs\n"
30218 "\n"
30219 msgstr ""
30220
30221 # type: =head2
30222 #. type: =head2
30223 #: ../fish/guestfish-actions.pod:4293
30224 msgid "stat"
30225 msgstr ""
30226
30227 # type: verbatim
30228 #. type: verbatim
30229 #: ../fish/guestfish-actions.pod:4295
30230 #, no-wrap
30231 msgid ""
30232 " stat path\n"
30233 "\n"
30234 msgstr ""
30235
30236 # type: =head2
30237 #. type: =head2
30238 #: ../fish/guestfish-actions.pod:4301
30239 msgid "statvfs"
30240 msgstr ""
30241
30242 # type: verbatim
30243 #. type: verbatim
30244 #: ../fish/guestfish-actions.pod:4303
30245 #, no-wrap
30246 msgid ""
30247 " statvfs path\n"
30248 "\n"
30249 msgstr ""
30250
30251 # type: =head2
30252 #. type: =head2
30253 #: ../fish/guestfish-actions.pod:4311
30254 msgid "strings"
30255 msgstr ""
30256
30257 # type: verbatim
30258 #. type: verbatim
30259 #: ../fish/guestfish-actions.pod:4313
30260 #, no-wrap
30261 msgid ""
30262 " strings path\n"
30263 "\n"
30264 msgstr ""
30265
30266 # type: =head2
30267 #. type: =head2
30268 #: ../fish/guestfish-actions.pod:4321
30269 msgid "strings-e"
30270 msgstr ""
30271
30272 # type: verbatim
30273 #. type: verbatim
30274 #: ../fish/guestfish-actions.pod:4323
30275 #, no-wrap
30276 msgid ""
30277 " strings-e encoding path\n"
30278 "\n"
30279 msgstr ""
30280
30281 # type: textblock
30282 #. type: textblock
30283 #: ../fish/guestfish-actions.pod:4325
30284 msgid ""
30285 "This is like the L</strings> command, but allows you to specify the encoding "
30286 "of strings that are looked for in the source file C<path>."
30287 msgstr ""
30288
30289 # type: textblock
30290 #. type: textblock
30291 #: ../fish/guestfish-actions.pod:4335
30292 msgid ""
30293 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30294 "ISO-8859-X (this is what L</strings> uses)."
30295 msgstr ""
30296
30297 # type: =head2
30298 #. type: =head2
30299 #: ../fish/guestfish-actions.pod:4367
30300 msgid "swapoff-device"
30301 msgstr ""
30302
30303 # type: verbatim
30304 #. type: verbatim
30305 #: ../fish/guestfish-actions.pod:4369
30306 #, no-wrap
30307 msgid ""
30308 " swapoff-device device\n"
30309 "\n"
30310 msgstr ""
30311
30312 # type: textblock
30313 #. type: textblock
30314 #: ../fish/guestfish-actions.pod:4371
30315 msgid ""
30316 "This command disables the libguestfs appliance swap device or partition "
30317 "named C<device>.  See L</swapon-device>."
30318 msgstr ""
30319
30320 # type: =head2
30321 #. type: =head2
30322 #: ../fish/guestfish-actions.pod:4375
30323 msgid "swapoff-file"
30324 msgstr ""
30325
30326 # type: verbatim
30327 #. type: verbatim
30328 #: ../fish/guestfish-actions.pod:4377
30329 #, no-wrap
30330 msgid ""
30331 " swapoff-file file\n"
30332 "\n"
30333 msgstr ""
30334
30335 # type: =head2
30336 #. type: =head2
30337 #: ../fish/guestfish-actions.pod:4381
30338 msgid "swapoff-label"
30339 msgstr ""
30340
30341 # type: verbatim
30342 #. type: verbatim
30343 #: ../fish/guestfish-actions.pod:4383
30344 #, no-wrap
30345 msgid ""
30346 " swapoff-label label\n"
30347 "\n"
30348 msgstr ""
30349
30350 # type: =head2
30351 #. type: =head2
30352 #: ../fish/guestfish-actions.pod:4388
30353 msgid "swapoff-uuid"
30354 msgstr ""
30355
30356 # type: verbatim
30357 #. type: verbatim
30358 #: ../fish/guestfish-actions.pod:4390
30359 #, no-wrap
30360 msgid ""
30361 " swapoff-uuid uuid\n"
30362 "\n"
30363 msgstr ""
30364
30365 # type: =head2
30366 #. type: =head2
30367 #: ../fish/guestfish-actions.pod:4395
30368 msgid "swapon-device"
30369 msgstr ""
30370
30371 # type: verbatim
30372 #. type: verbatim
30373 #: ../fish/guestfish-actions.pod:4397
30374 #, no-wrap
30375 msgid ""
30376 " swapon-device device\n"
30377 "\n"
30378 msgstr ""
30379
30380 # type: textblock
30381 #. type: textblock
30382 #: ../fish/guestfish-actions.pod:4399
30383 msgid ""
30384 "This command enables the libguestfs appliance to use the swap device or "
30385 "partition named C<device>.  The increased memory is made available for all "
30386 "commands, for example those run using L</command> or L</sh>."
30387 msgstr ""
30388
30389 # type: =head2
30390 #. type: =head2
30391 #: ../fish/guestfish-actions.pod:4411
30392 msgid "swapon-file"
30393 msgstr ""
30394
30395 # type: verbatim
30396 #. type: verbatim
30397 #: ../fish/guestfish-actions.pod:4413
30398 #, no-wrap
30399 msgid ""
30400 " swapon-file file\n"
30401 "\n"
30402 msgstr ""
30403
30404 # type: textblock
30405 #. type: textblock
30406 #: ../fish/guestfish-actions.pod:4415
30407 msgid ""
30408 "This command enables swap to a file.  See L</swapon-device> for other notes."
30409 msgstr ""
30410
30411 # type: =head2
30412 #. type: =head2
30413 #: ../fish/guestfish-actions.pod:4418
30414 msgid "swapon-label"
30415 msgstr ""
30416
30417 # type: verbatim
30418 #. type: verbatim
30419 #: ../fish/guestfish-actions.pod:4420
30420 #, no-wrap
30421 msgid ""
30422 " swapon-label label\n"
30423 "\n"
30424 msgstr ""
30425
30426 # type: textblock
30427 #. type: textblock
30428 #: ../fish/guestfish-actions.pod:4422
30429 msgid ""
30430 "This command enables swap to a labeled swap partition.  See L</swapon-"
30431 "device> for other notes."
30432 msgstr ""
30433
30434 # type: =head2
30435 #. type: =head2
30436 #: ../fish/guestfish-actions.pod:4425
30437 msgid "swapon-uuid"
30438 msgstr ""
30439
30440 # type: verbatim
30441 #. type: verbatim
30442 #: ../fish/guestfish-actions.pod:4427
30443 #, no-wrap
30444 msgid ""
30445 " swapon-uuid uuid\n"
30446 "\n"
30447 msgstr ""
30448
30449 # type: textblock
30450 #. type: textblock
30451 #: ../fish/guestfish-actions.pod:4429
30452 msgid ""
30453 "This command enables swap to a swap partition with the given UUID.  See L</"
30454 "swapon-device> for other notes."
30455 msgstr ""
30456
30457 # type: =head2
30458 #. type: =head2
30459 #: ../fish/guestfish-actions.pod:4432
30460 msgid "sync"
30461 msgstr ""
30462
30463 # type: verbatim
30464 #. type: verbatim
30465 #: ../fish/guestfish-actions.pod:4434
30466 #, no-wrap
30467 msgid ""
30468 " sync\n"
30469 "\n"
30470 msgstr ""
30471
30472 # type: =head2
30473 #. type: =head2
30474 #: ../fish/guestfish-actions.pod:4442
30475 msgid "tail"
30476 msgstr ""
30477
30478 # type: verbatim
30479 #. type: verbatim
30480 #: ../fish/guestfish-actions.pod:4444
30481 #, no-wrap
30482 msgid ""
30483 " tail path\n"
30484 "\n"
30485 msgstr ""
30486
30487 # type: =head2
30488 #. type: =head2
30489 #: ../fish/guestfish-actions.pod:4452
30490 msgid "tail-n"
30491 msgstr ""
30492
30493 # type: verbatim
30494 #. type: verbatim
30495 #: ../fish/guestfish-actions.pod:4454
30496 #, no-wrap
30497 msgid ""
30498 " tail-n nrlines path\n"
30499 "\n"
30500 msgstr ""
30501
30502 # type: =head2
30503 #. type: =head2
30504 #: ../fish/guestfish-actions.pod:4467
30505 msgid "tar-in"
30506 msgstr ""
30507
30508 # type: verbatim
30509 #. type: verbatim
30510 #: ../fish/guestfish-actions.pod:4469
30511 #, no-wrap
30512 msgid ""
30513 " tar-in (tarfile|-) directory\n"
30514 "\n"
30515 msgstr ""
30516
30517 # type: textblock
30518 #. type: textblock
30519 #: ../fish/guestfish-actions.pod:4474
30520 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30521 msgstr ""
30522
30523 # type: =head2
30524 #. type: =head2
30525 #: ../fish/guestfish-actions.pod:4479
30526 msgid "tar-out"
30527 msgstr ""
30528
30529 # type: verbatim
30530 #. type: verbatim
30531 #: ../fish/guestfish-actions.pod:4481
30532 #, no-wrap
30533 msgid ""
30534 " tar-out directory (tarfile|-)\n"
30535 "\n"
30536 msgstr ""
30537
30538 # type: textblock
30539 #. type: textblock
30540 #: ../fish/guestfish-actions.pod:4486
30541 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30542 msgstr ""
30543
30544 # type: =head2
30545 #. type: =head2
30546 #: ../fish/guestfish-actions.pod:4491
30547 msgid "tgz-in"
30548 msgstr ""
30549
30550 # type: verbatim
30551 #. type: verbatim
30552 #: ../fish/guestfish-actions.pod:4493
30553 #, no-wrap
30554 msgid ""
30555 " tgz-in (tarball|-) directory\n"
30556 "\n"
30557 msgstr ""
30558
30559 # type: textblock
30560 #. type: textblock
30561 #: ../fish/guestfish-actions.pod:4498
30562 msgid "To upload an uncompressed tarball, use L</tar-in>."
30563 msgstr ""
30564
30565 # type: =head2
30566 #. type: =head2
30567 #: ../fish/guestfish-actions.pod:4502
30568 msgid "tgz-out"
30569 msgstr ""
30570
30571 # type: verbatim
30572 #. type: verbatim
30573 #: ../fish/guestfish-actions.pod:4504
30574 #, no-wrap
30575 msgid ""
30576 " tgz-out directory (tarball|-)\n"
30577 "\n"
30578 msgstr ""
30579
30580 # type: textblock
30581 #. type: textblock
30582 #: ../fish/guestfish-actions.pod:4509
30583 msgid "To download an uncompressed tarball, use L</tar-out>."
30584 msgstr ""
30585
30586 # type: =head2
30587 #. type: =head2
30588 #: ../fish/guestfish-actions.pod:4513
30589 msgid "touch"
30590 msgstr ""
30591
30592 # type: verbatim
30593 #. type: verbatim
30594 #: ../fish/guestfish-actions.pod:4515
30595 #, no-wrap
30596 msgid ""
30597 " touch path\n"
30598 "\n"
30599 msgstr ""
30600
30601 # type: =head2
30602 #. type: =head2
30603 #: ../fish/guestfish-actions.pod:4524
30604 msgid "truncate"
30605 msgstr ""
30606
30607 # type: verbatim
30608 #. type: verbatim
30609 #: ../fish/guestfish-actions.pod:4526
30610 #, no-wrap
30611 msgid ""
30612 " truncate path\n"
30613 "\n"
30614 msgstr ""
30615
30616 # type: =head2
30617 #. type: =head2
30618 #: ../fish/guestfish-actions.pod:4531
30619 msgid "truncate-size"
30620 msgstr ""
30621
30622 # type: verbatim
30623 #. type: verbatim
30624 #: ../fish/guestfish-actions.pod:4533
30625 #, no-wrap
30626 msgid ""
30627 " truncate-size path size\n"
30628 "\n"
30629 msgstr ""
30630
30631 # type: textblock
30632 #. type: textblock
30633 #: ../fish/guestfish-actions.pod:4538
30634 msgid ""
30635 "If the current file size is less than C<size> then the file is extended to "
30636 "the required size with zero bytes.  This creates a sparse file (ie. disk "
30637 "blocks are not allocated for the file until you write to it).  To create a "
30638 "non-sparse file of zeroes, use L</fallocate64> instead."
30639 msgstr ""
30640
30641 # type: =head2
30642 #. type: =head2
30643 #: ../fish/guestfish-actions.pod:4544
30644 msgid "tune2fs-l"
30645 msgstr ""
30646
30647 # type: verbatim
30648 #. type: verbatim
30649 #: ../fish/guestfish-actions.pod:4546
30650 #, no-wrap
30651 msgid ""
30652 " tune2fs-l device\n"
30653 "\n"
30654 msgstr ""
30655
30656 # type: =head2
30657 #. type: =head2
30658 #: ../fish/guestfish-actions.pod:4556
30659 msgid "txz-in"
30660 msgstr ""
30661
30662 # type: verbatim
30663 #. type: verbatim
30664 #: ../fish/guestfish-actions.pod:4558
30665 #, no-wrap
30666 msgid ""
30667 " txz-in (tarball|-) directory\n"
30668 "\n"
30669 msgstr ""
30670
30671 # type: =head2
30672 #. type: =head2
30673 #: ../fish/guestfish-actions.pod:4565
30674 msgid "txz-out"
30675 msgstr ""
30676
30677 # type: verbatim
30678 #. type: verbatim
30679 #: ../fish/guestfish-actions.pod:4567
30680 #, no-wrap
30681 msgid ""
30682 " txz-out directory (tarball|-)\n"
30683 "\n"
30684 msgstr ""
30685
30686 # type: =head2
30687 #. type: =head2
30688 #: ../fish/guestfish-actions.pod:4574
30689 msgid "umask"
30690 msgstr ""
30691
30692 # type: verbatim
30693 #. type: verbatim
30694 #: ../fish/guestfish-actions.pod:4576
30695 #, no-wrap
30696 msgid ""
30697 " umask mask\n"
30698 "\n"
30699 msgstr ""
30700
30701 # type: textblock
30702 #. type: textblock
30703 #: ../fish/guestfish-actions.pod:4590
30704 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30705 msgstr ""
30706
30707 # type: =head2
30708 #. type: =head2
30709 #: ../fish/guestfish-actions.pod:4595
30710 msgid "umount"
30711 msgstr ""
30712
30713 # type: =head2
30714 #. type: =head2
30715 #: ../fish/guestfish-actions.pod:4597
30716 msgid "unmount"
30717 msgstr ""
30718
30719 # type: verbatim
30720 #. type: verbatim
30721 #: ../fish/guestfish-actions.pod:4599
30722 #, no-wrap
30723 msgid ""
30724 " umount pathordevice\n"
30725 "\n"
30726 msgstr ""
30727
30728 # type: =head2
30729 #. type: =head2
30730 #: ../fish/guestfish-actions.pod:4605
30731 msgid "umount-all"
30732 msgstr ""
30733
30734 # type: =head2
30735 #. type: =head2
30736 #: ../fish/guestfish-actions.pod:4607
30737 msgid "unmount-all"
30738 msgstr ""
30739
30740 # type: verbatim
30741 #. type: verbatim
30742 #: ../fish/guestfish-actions.pod:4609
30743 #, no-wrap
30744 msgid ""
30745 " umount-all\n"
30746 "\n"
30747 msgstr ""
30748
30749 # type: =head2
30750 #. type: =head2
30751 #: ../fish/guestfish-actions.pod:4615
30752 msgid "upload"
30753 msgstr ""
30754
30755 # type: verbatim
30756 #. type: verbatim
30757 #: ../fish/guestfish-actions.pod:4617
30758 #, no-wrap
30759 msgid ""
30760 " upload (filename|-) remotefilename\n"
30761 "\n"
30762 msgstr ""
30763
30764 # type: textblock
30765 #. type: textblock
30766 #: ../fish/guestfish-actions.pod:4624
30767 msgid "See also L</download>."
30768 msgstr ""
30769
30770 # type: =head2
30771 #. type: =head2
30772 #: ../fish/guestfish-actions.pod:4628
30773 msgid "upload-offset"
30774 msgstr ""
30775
30776 # type: verbatim
30777 #. type: verbatim
30778 #: ../fish/guestfish-actions.pod:4630
30779 #, no-wrap
30780 msgid ""
30781 " upload-offset (filename|-) remotefilename offset\n"
30782 "\n"
30783 msgstr ""
30784
30785 # type: textblock
30786 #. type: textblock
30787 #: ../fish/guestfish-actions.pod:4642
30788 msgid ""
30789 "Note that there is no limit on the amount of data that can be uploaded with "
30790 "this call, unlike with L</pwrite>, and this call always writes the full "
30791 "amount unless an error occurs."
30792 msgstr ""
30793
30794 # type: textblock
30795 #. type: textblock
30796 #: ../fish/guestfish-actions.pod:4647
30797 msgid "See also L</upload>, L</pwrite>."
30798 msgstr ""
30799
30800 # type: =head2
30801 #. type: =head2
30802 #: ../fish/guestfish-actions.pod:4651
30803 msgid "utimens"
30804 msgstr ""
30805
30806 # type: verbatim
30807 #. type: verbatim
30808 #: ../fish/guestfish-actions.pod:4653
30809 #, no-wrap
30810 msgid ""
30811 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30812 "\n"
30813 msgstr ""
30814
30815 # type: =head2
30816 #. type: =head2
30817 #: ../fish/guestfish-actions.pod:4672
30818 msgid "version"
30819 msgstr ""
30820
30821 # type: verbatim
30822 #. type: verbatim
30823 #: ../fish/guestfish-actions.pod:4674
30824 #, no-wrap
30825 msgid ""
30826 " version\n"
30827 "\n"
30828 msgstr ""
30829
30830 # type: textblock
30831 #. type: textblock
30832 #: ../fish/guestfish-actions.pod:4701
30833 msgid ""
30834 "I<Note:> Don't use this call to test for availability of features.  In "
30835 "enterprise distributions we backport features from later versions into "
30836 "earlier versions, making this an unreliable way to test for features.  Use "
30837 "L</available> instead."
30838 msgstr ""
30839
30840 # type: =head2
30841 #. type: =head2
30842 #: ../fish/guestfish-actions.pod:4707
30843 msgid "vfs-label"
30844 msgstr ""
30845
30846 # type: verbatim
30847 #. type: verbatim
30848 #: ../fish/guestfish-actions.pod:4709
30849 #, no-wrap
30850 msgid ""
30851 " vfs-label device\n"
30852 "\n"
30853 msgstr ""
30854
30855 # type: textblock
30856 #. type: textblock
30857 #: ../fish/guestfish-actions.pod:4716
30858 msgid "To find a filesystem from the label, use L</findfs-label>."
30859 msgstr ""
30860
30861 # type: =head2
30862 #. type: =head2
30863 #: ../fish/guestfish-actions.pod:4718
30864 msgid "vfs-type"
30865 msgstr ""
30866
30867 # type: verbatim
30868 #. type: verbatim
30869 #: ../fish/guestfish-actions.pod:4720
30870 #, no-wrap
30871 msgid ""
30872 " vfs-type device\n"
30873 "\n"
30874 msgstr ""
30875
30876 # type: =head2
30877 #. type: =head2
30878 #: ../fish/guestfish-actions.pod:4730
30879 msgid "vfs-uuid"
30880 msgstr ""
30881
30882 # type: verbatim
30883 #. type: verbatim
30884 #: ../fish/guestfish-actions.pod:4732
30885 #, no-wrap
30886 msgid ""
30887 " vfs-uuid device\n"
30888 "\n"
30889 msgstr ""
30890
30891 # type: textblock
30892 #. type: textblock
30893 #: ../fish/guestfish-actions.pod:4739
30894 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
30895 msgstr ""
30896
30897 # type: =head2
30898 #. type: =head2
30899 #: ../fish/guestfish-actions.pod:4741
30900 msgid "vg-activate"
30901 msgstr ""
30902
30903 # type: verbatim
30904 #. type: verbatim
30905 #: ../fish/guestfish-actions.pod:4743
30906 #, no-wrap
30907 msgid ""
30908 " vg-activate true|false 'volgroups ...'\n"
30909 "\n"
30910 msgstr ""
30911
30912 # type: =head2
30913 #. type: =head2
30914 #: ../fish/guestfish-actions.pod:4756
30915 msgid "vg-activate-all"
30916 msgstr ""
30917
30918 # type: verbatim
30919 #. type: verbatim
30920 #: ../fish/guestfish-actions.pod:4758
30921 #, no-wrap
30922 msgid ""
30923 " vg-activate-all true|false\n"
30924 "\n"
30925 msgstr ""
30926
30927 # type: =head2
30928 #. type: =head2
30929 #: ../fish/guestfish-actions.pod:4768
30930 msgid "vgcreate"
30931 msgstr ""
30932
30933 # type: verbatim
30934 #. type: verbatim
30935 #: ../fish/guestfish-actions.pod:4770
30936 #, no-wrap
30937 msgid ""
30938 " vgcreate volgroup 'physvols ...'\n"
30939 "\n"
30940 msgstr ""
30941
30942 # type: =head2
30943 #. type: =head2
30944 #: ../fish/guestfish-actions.pod:4775
30945 msgid "vglvuuids"
30946 msgstr ""
30947
30948 # type: verbatim
30949 #. type: verbatim
30950 #: ../fish/guestfish-actions.pod:4777
30951 #, no-wrap
30952 msgid ""
30953 " vglvuuids vgname\n"
30954 "\n"
30955 msgstr ""
30956
30957 # type: textblock
30958 #. type: textblock
30959 #: ../fish/guestfish-actions.pod:4782
30960 msgid ""
30961 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
30962 "logical volumes and volume groups."
30963 msgstr ""
30964
30965 # type: textblock
30966 #. type: textblock
30967 #: ../fish/guestfish-actions.pod:4785
30968 msgid "See also L</vgpvuuids>."
30969 msgstr ""
30970
30971 # type: =head2
30972 #. type: =head2
30973 #: ../fish/guestfish-actions.pod:4787
30974 msgid "vgpvuuids"
30975 msgstr ""
30976
30977 # type: verbatim
30978 #. type: verbatim
30979 #: ../fish/guestfish-actions.pod:4789
30980 #, no-wrap
30981 msgid ""
30982 " vgpvuuids vgname\n"
30983 "\n"
30984 msgstr ""
30985
30986 # type: textblock
30987 #. type: textblock
30988 #: ../fish/guestfish-actions.pod:4794
30989 msgid ""
30990 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
30991 "physical volumes and volume groups."
30992 msgstr ""
30993
30994 # type: textblock
30995 #. type: textblock
30996 #: ../fish/guestfish-actions.pod:4797
30997 msgid "See also L</vglvuuids>."
30998 msgstr ""
30999
31000 # type: =head2
31001 #. type: =head2
31002 #: ../fish/guestfish-actions.pod:4799
31003 msgid "vgremove"
31004 msgstr ""
31005
31006 # type: verbatim
31007 #. type: verbatim
31008 #: ../fish/guestfish-actions.pod:4801
31009 #, no-wrap
31010 msgid ""
31011 " vgremove vgname\n"
31012 "\n"
31013 msgstr ""
31014
31015 # type: =head2
31016 #. type: =head2
31017 #: ../fish/guestfish-actions.pod:4808
31018 msgid "vgrename"
31019 msgstr ""
31020
31021 # type: verbatim
31022 #. type: verbatim
31023 #: ../fish/guestfish-actions.pod:4810
31024 #, no-wrap
31025 msgid ""
31026 " vgrename volgroup newvolgroup\n"
31027 "\n"
31028 msgstr ""
31029
31030 # type: =head2
31031 #. type: =head2
31032 #: ../fish/guestfish-actions.pod:4814
31033 msgid "vgs"
31034 msgstr ""
31035
31036 # type: verbatim
31037 #. type: verbatim
31038 #: ../fish/guestfish-actions.pod:4816
31039 #, no-wrap
31040 msgid ""
31041 " vgs\n"
31042 "\n"
31043 msgstr ""
31044
31045 # type: textblock
31046 #. type: textblock
31047 #: ../fish/guestfish-actions.pod:4824
31048 msgid "See also L</vgs-full>."
31049 msgstr ""
31050
31051 # type: =head2
31052 #. type: =head2
31053 #: ../fish/guestfish-actions.pod:4826
31054 msgid "vgs-full"
31055 msgstr ""
31056
31057 # type: verbatim
31058 #. type: verbatim
31059 #: ../fish/guestfish-actions.pod:4828
31060 #, no-wrap
31061 msgid ""
31062 " vgs-full\n"
31063 "\n"
31064 msgstr ""
31065
31066 # type: =head2
31067 #. type: =head2
31068 #: ../fish/guestfish-actions.pod:4833
31069 msgid "vgscan"
31070 msgstr ""
31071
31072 # type: verbatim
31073 #. type: verbatim
31074 #: ../fish/guestfish-actions.pod:4835
31075 #, no-wrap
31076 msgid ""
31077 " vgscan\n"
31078 "\n"
31079 msgstr ""
31080
31081 # type: =head2
31082 #. type: =head2
31083 #: ../fish/guestfish-actions.pod:4840
31084 msgid "vguuid"
31085 msgstr ""
31086
31087 # type: verbatim
31088 #. type: verbatim
31089 #: ../fish/guestfish-actions.pod:4842
31090 #, no-wrap
31091 msgid ""
31092 " vguuid vgname\n"
31093 "\n"
31094 msgstr ""
31095
31096 # type: =head2
31097 #. type: =head2
31098 #: ../fish/guestfish-actions.pod:4846
31099 msgid "wc-c"
31100 msgstr ""
31101
31102 # type: verbatim
31103 #. type: verbatim
31104 #: ../fish/guestfish-actions.pod:4848
31105 #, no-wrap
31106 msgid ""
31107 " wc-c path\n"
31108 "\n"
31109 msgstr ""
31110
31111 # type: =head2
31112 #. type: =head2
31113 #: ../fish/guestfish-actions.pod:4853
31114 msgid "wc-l"
31115 msgstr ""
31116
31117 # type: verbatim
31118 #. type: verbatim
31119 #: ../fish/guestfish-actions.pod:4855
31120 #, no-wrap
31121 msgid ""
31122 " wc-l path\n"
31123 "\n"
31124 msgstr ""
31125
31126 # type: =head2
31127 #. type: =head2
31128 #: ../fish/guestfish-actions.pod:4860
31129 msgid "wc-w"
31130 msgstr ""
31131
31132 # type: verbatim
31133 #. type: verbatim
31134 #: ../fish/guestfish-actions.pod:4862
31135 #, no-wrap
31136 msgid ""
31137 " wc-w path\n"
31138 "\n"
31139 msgstr ""
31140
31141 # type: =head2
31142 #. type: =head2
31143 #: ../fish/guestfish-actions.pod:4867
31144 msgid "write"
31145 msgstr ""
31146
31147 # type: verbatim
31148 #. type: verbatim
31149 #: ../fish/guestfish-actions.pod:4869
31150 #, no-wrap
31151 msgid ""
31152 " write path content\n"
31153 "\n"
31154 msgstr ""
31155
31156 # type: =head2
31157 #. type: =head2
31158 #: ../fish/guestfish-actions.pod:4877
31159 msgid "write-file"
31160 msgstr ""
31161
31162 # type: verbatim
31163 #. type: verbatim
31164 #: ../fish/guestfish-actions.pod:4879
31165 #, no-wrap
31166 msgid ""
31167 " write-file path content size\n"
31168 "\n"
31169 msgstr ""
31170
31171 # type: =head2
31172 #. type: =head2
31173 #: ../fish/guestfish-actions.pod:4902
31174 msgid "zegrep"
31175 msgstr ""
31176
31177 # type: verbatim
31178 #. type: verbatim
31179 #: ../fish/guestfish-actions.pod:4904
31180 #, no-wrap
31181 msgid ""
31182 " zegrep regex path\n"
31183 "\n"
31184 msgstr ""
31185
31186 # type: =head2
31187 #. type: =head2
31188 #: ../fish/guestfish-actions.pod:4912
31189 msgid "zegrepi"
31190 msgstr ""
31191
31192 # type: verbatim
31193 #. type: verbatim
31194 #: ../fish/guestfish-actions.pod:4914
31195 #, no-wrap
31196 msgid ""
31197 " zegrepi regex path\n"
31198 "\n"
31199 msgstr ""
31200
31201 # type: =head2
31202 #. type: =head2
31203 #: ../fish/guestfish-actions.pod:4922
31204 msgid "zero"
31205 msgstr ""
31206
31207 # type: verbatim
31208 #. type: verbatim
31209 #: ../fish/guestfish-actions.pod:4924
31210 #, no-wrap
31211 msgid ""
31212 " zero device\n"
31213 "\n"
31214 msgstr ""
31215
31216 # type: textblock
31217 #. type: textblock
31218 #: ../fish/guestfish-actions.pod:4932
31219 msgid "See also: L</zero-device>, L</scrub-device>."
31220 msgstr ""
31221
31222 # type: =head2
31223 #. type: =head2
31224 #: ../fish/guestfish-actions.pod:4934
31225 msgid "zero-device"
31226 msgstr ""
31227
31228 # type: verbatim
31229 #. type: verbatim
31230 #: ../fish/guestfish-actions.pod:4936
31231 #, no-wrap
31232 msgid ""
31233 " zero-device device\n"
31234 "\n"
31235 msgstr ""
31236
31237 # type: textblock
31238 #. type: textblock
31239 #: ../fish/guestfish-actions.pod:4938
31240 msgid ""
31241 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
31242 "which just zeroes the first few blocks of a device."
31243 msgstr ""
31244
31245 # type: =head2
31246 #. type: =head2
31247 #: ../fish/guestfish-actions.pod:4945
31248 msgid "zerofree"
31249 msgstr ""
31250
31251 # type: verbatim
31252 #. type: verbatim
31253 #: ../fish/guestfish-actions.pod:4947
31254 #, no-wrap
31255 msgid ""
31256 " zerofree device\n"
31257 "\n"
31258 msgstr ""
31259
31260 # type: =head2
31261 #. type: =head2
31262 #: ../fish/guestfish-actions.pod:4960
31263 msgid "zfgrep"
31264 msgstr ""
31265
31266 # type: verbatim
31267 #. type: verbatim
31268 #: ../fish/guestfish-actions.pod:4962
31269 #, no-wrap
31270 msgid ""
31271 " zfgrep pattern path\n"
31272 "\n"
31273 msgstr ""
31274
31275 # type: =head2
31276 #. type: =head2
31277 #: ../fish/guestfish-actions.pod:4970
31278 msgid "zfgrepi"
31279 msgstr ""
31280
31281 # type: verbatim
31282 #. type: verbatim
31283 #: ../fish/guestfish-actions.pod:4972
31284 #, no-wrap
31285 msgid ""
31286 " zfgrepi pattern path\n"
31287 "\n"
31288 msgstr ""
31289
31290 # type: =head2
31291 #. type: =head2
31292 #: ../fish/guestfish-actions.pod:4980
31293 msgid "zfile"
31294 msgstr ""
31295
31296 # type: verbatim
31297 #. type: verbatim
31298 #: ../fish/guestfish-actions.pod:4982
31299 #, no-wrap
31300 msgid ""
31301 " zfile meth path\n"
31302 "\n"
31303 msgstr ""
31304
31305 # type: textblock
31306 #. type: textblock
31307 #: ../fish/guestfish-actions.pod:4989
31308 msgid ""
31309 "Since 1.0.63, use L</file> instead which can now process compressed files."
31310 msgstr ""
31311
31312 # type: =head2
31313 #. type: =head2
31314 #: ../fish/guestfish-actions.pod:4999
31315 msgid "zgrep"
31316 msgstr ""
31317
31318 # type: verbatim
31319 #. type: verbatim
31320 #: ../fish/guestfish-actions.pod:5001
31321 #, no-wrap
31322 msgid ""
31323 " zgrep regex path\n"
31324 "\n"
31325 msgstr ""
31326
31327 # type: =head2
31328 #. type: =head2
31329 #: ../fish/guestfish-actions.pod:5009
31330 msgid "zgrepi"
31331 msgstr ""
31332
31333 # type: verbatim
31334 #. type: verbatim
31335 #: ../fish/guestfish-actions.pod:5011
31336 #, no-wrap
31337 msgid ""
31338 " zgrepi regex path\n"
31339 "\n"
31340 msgstr ""
31341
31342 # type: =head2
31343 #. type: =head2
31344 #: ../fish/guestfish-commands.pod:1
31345 msgid "alloc"
31346 msgstr ""
31347
31348 # type: =head2
31349 #. type: =head2
31350 #: ../fish/guestfish-commands.pod:3
31351 msgid "allocate"
31352 msgstr ""
31353
31354 # type: verbatim
31355 #. type: verbatim
31356 #: ../fish/guestfish-commands.pod:5
31357 #, no-wrap
31358 msgid ""
31359 " alloc filename size\n"
31360 "\n"
31361 msgstr ""
31362
31363 # type: textblock
31364 #. type: textblock
31365 #: ../fish/guestfish-commands.pod:7
31366 msgid ""
31367 "This creates an empty (zeroed) file of the given size, and then adds so it "
31368 "can be further examined."
31369 msgstr ""
31370
31371 # type: textblock
31372 #. type: textblock
31373 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31374 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31375 msgstr ""
31376
31377 # type: textblock
31378 #. type: textblock
31379 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31380 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31381 msgstr ""
31382
31383 # type: textblock
31384 #. type: textblock
31385 #: ../fish/guestfish-commands.pod:14
31386 msgid ""
31387 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
31388 "image, see L</PREPARED DISK IMAGES>."
31389 msgstr ""
31390
31391 # type: =head2
31392 #. type: =head2
31393 #: ../fish/guestfish-commands.pod:17
31394 msgid "copy-in"
31395 msgstr ""
31396
31397 # type: verbatim
31398 #. type: verbatim
31399 #: ../fish/guestfish-commands.pod:19
31400 #, no-wrap
31401 msgid ""
31402 " copy-in local [local ...] /remotedir\n"
31403 "\n"
31404 msgstr ""
31405
31406 # type: textblock
31407 #. type: textblock
31408 #: ../fish/guestfish-commands.pod:21
31409 msgid ""
31410 "C<copy-in> copies local files or directories recursively into the disk "
31411 "image, placing them in the directory called C</remotedir> (which must "
31412 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
31413 "other commands as necessary."
31414 msgstr ""
31415
31416 # type: textblock
31417 #. type: textblock
31418 #: ../fish/guestfish-commands.pod:26
31419 msgid ""
31420 "Multiple local files and directories can be specified, but the last "
31421 "parameter must always be a remote directory.  Wildcards cannot be used."
31422 msgstr ""
31423
31424 # type: =head2
31425 #. type: =head2
31426 #: ../fish/guestfish-commands.pod:30
31427 msgid "copy-out"
31428 msgstr ""
31429
31430 # type: verbatim
31431 #. type: verbatim
31432 #: ../fish/guestfish-commands.pod:32
31433 #, no-wrap
31434 msgid ""
31435 " copy-out remote [remote ...] localdir\n"
31436 "\n"
31437 msgstr ""
31438
31439 # type: textblock
31440 #. type: textblock
31441 #: ../fish/guestfish-commands.pod:34
31442 msgid ""
31443 "C<copy-out> copies remote files or directories recursively out of the disk "
31444 "image, placing them on the host disk in a local directory called C<localdir> "
31445 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
31446 "download>, L</tar-out> and other commands as necessary."
31447 msgstr ""
31448
31449 # type: textblock
31450 #. type: textblock
31451 #: ../fish/guestfish-commands.pod:40
31452 msgid ""
31453 "Multiple remote files and directories can be specified, but the last "
31454 "parameter must always be a local directory.  To download to the current "
31455 "directory, use C<.> as in:"
31456 msgstr ""
31457
31458 # type: verbatim
31459 #. type: verbatim
31460 #: ../fish/guestfish-commands.pod:44
31461 #, no-wrap
31462 msgid ""
31463 " copy-out /home .\n"
31464 "\n"
31465 msgstr ""
31466
31467 # type: textblock
31468 #. type: textblock
31469 #: ../fish/guestfish-commands.pod:46
31470 msgid ""
31471 "Wildcards cannot be used in the ordinary command, but you can use them with "
31472 "the help of L</glob> like this:"
31473 msgstr ""
31474
31475 # type: verbatim
31476 #. type: verbatim
31477 #: ../fish/guestfish-commands.pod:49
31478 #, no-wrap
31479 msgid ""
31480 " glob copy-out /home/* .\n"
31481 "\n"
31482 msgstr ""
31483
31484 # type: =head2
31485 #. type: =head2
31486 #: ../fish/guestfish-commands.pod:51
31487 msgid "echo"
31488 msgstr ""
31489
31490 # type: verbatim
31491 #. type: verbatim
31492 #: ../fish/guestfish-commands.pod:53
31493 #, no-wrap
31494 msgid ""
31495 " echo [params ...]\n"
31496 "\n"
31497 msgstr ""
31498
31499 # type: textblock
31500 #. type: textblock
31501 #: ../fish/guestfish-commands.pod:55
31502 msgid "This echos the parameters to the terminal."
31503 msgstr ""
31504
31505 # type: =head2
31506 #. type: =head2
31507 #: ../fish/guestfish-commands.pod:57
31508 msgid "edit"
31509 msgstr ""
31510
31511 # type: =head2
31512 #. type: =head2
31513 #: ../fish/guestfish-commands.pod:59
31514 msgid "vi"
31515 msgstr ""
31516
31517 # type: =head2
31518 #. type: =head2
31519 #: ../fish/guestfish-commands.pod:61
31520 msgid "emacs"
31521 msgstr ""
31522
31523 # type: verbatim
31524 #. type: verbatim
31525 #: ../fish/guestfish-commands.pod:63
31526 #, no-wrap
31527 msgid ""
31528 " edit filename\n"
31529 "\n"
31530 msgstr ""
31531
31532 # type: textblock
31533 #. type: textblock
31534 #: ../fish/guestfish-commands.pod:65
31535 msgid ""
31536 "This is used to edit a file.  It downloads the file, edits it locally using "
31537 "your editor, then uploads the result."
31538 msgstr ""
31539
31540 # type: textblock
31541 #. type: textblock
31542 #: ../fish/guestfish-commands.pod:68
31543 msgid ""
31544 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
31545 "or C<emacs> you will get those corresponding editors."
31546 msgstr ""
31547
31548 # type: =head2
31549 #. type: =head2
31550 #: ../fish/guestfish-commands.pod:72
31551 msgid "glob"
31552 msgstr ""
31553
31554 # type: verbatim
31555 #. type: verbatim
31556 #: ../fish/guestfish-commands.pod:74
31557 #, no-wrap
31558 msgid ""
31559 " glob command args...\n"
31560 "\n"
31561 msgstr ""
31562
31563 # type: textblock
31564 #. type: textblock
31565 #: ../fish/guestfish-commands.pod:76
31566 msgid ""
31567 "Expand wildcards in any paths in the args list, and run C<command> "
31568 "repeatedly on each matching path."
31569 msgstr ""
31570
31571 # type: textblock
31572 #. type: textblock
31573 #: ../fish/guestfish-commands.pod:79
31574 msgid "See L</WILDCARDS AND GLOBBING>."
31575 msgstr ""
31576
31577 # type: =head2
31578 #. type: =head2
31579 #: ../fish/guestfish-commands.pod:81
31580 msgid "hexedit"
31581 msgstr ""
31582
31583 # type: verbatim
31584 #. type: verbatim
31585 #: ../fish/guestfish-commands.pod:83
31586 #, no-wrap
31587 msgid ""
31588 " hexedit <filename|device>\n"
31589 " hexedit <filename|device> <max>\n"
31590 " hexedit <filename|device> <start> <max>\n"
31591 "\n"
31592 msgstr ""
31593
31594 # type: textblock
31595 #. type: textblock
31596 #: ../fish/guestfish-commands.pod:87
31597 msgid ""
31598 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31599 "device."
31600 msgstr ""
31601
31602 # type: textblock
31603 #. type: textblock
31604 #: ../fish/guestfish-commands.pod:90
31605 msgid ""
31606 "This command works by downloading potentially the whole file or device, "
31607 "editing it locally, then uploading it.  If the file or device is large, you "
31608 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31609 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
31610 "usual modifiers allowed such as C<1M> (1 megabyte)."
31611 msgstr ""
31612
31613 # type: textblock
31614 #. type: textblock
31615 #: ../fish/guestfish-commands.pod:97
31616 msgid "For example to edit the first few sectors of a disk you might do:"
31617 msgstr ""
31618
31619 # type: verbatim
31620 #. type: verbatim
31621 #: ../fish/guestfish-commands.pod:100
31622 #, no-wrap
31623 msgid ""
31624 " hexedit /dev/sda 1M\n"
31625 "\n"
31626 msgstr ""
31627
31628 # type: textblock
31629 #. type: textblock
31630 #: ../fish/guestfish-commands.pod:102
31631 msgid ""
31632 "which would allow you to edit anywhere within the first megabyte of the disk."
31633 msgstr ""
31634
31635 # type: textblock
31636 #. type: textblock
31637 #: ../fish/guestfish-commands.pod:105
31638 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31639 msgstr ""
31640
31641 # type: verbatim
31642 #. type: verbatim
31643 #: ../fish/guestfish-commands.pod:107
31644 #, no-wrap
31645 msgid ""
31646 " hexedit /dev/sda1 0x400 0x400\n"
31647 "\n"
31648 msgstr ""
31649
31650 # type: textblock
31651 #. type: textblock
31652 #: ../fish/guestfish-commands.pod:109
31653 msgid "(assuming the superblock is in the standard location)."
31654 msgstr ""
31655
31656 # type: textblock
31657 #. type: textblock
31658 #: ../fish/guestfish-commands.pod:111
31659 msgid ""
31660 "This command requires the external L<hexedit(1)> program.  You can specify "
31661 "another program to use by setting the C<HEXEDITOR> environment variable."
31662 msgstr ""
31663
31664 # type: textblock
31665 #. type: textblock
31666 #: ../fish/guestfish-commands.pod:115
31667 msgid "See also L</hexdump>."
31668 msgstr ""
31669
31670 # type: =head2
31671 #. type: =head2
31672 #: ../fish/guestfish-commands.pod:117
31673 msgid "lcd"
31674 msgstr ""
31675
31676 # type: verbatim
31677 #. type: verbatim
31678 #: ../fish/guestfish-commands.pod:119
31679 #, no-wrap
31680 msgid ""
31681 " lcd directory\n"
31682 "\n"
31683 msgstr ""
31684
31685 # type: textblock
31686 #. type: textblock
31687 #: ../fish/guestfish-commands.pod:121
31688 msgid ""
31689 "Change the local directory, ie. the current directory of guestfish itself."
31690 msgstr ""
31691
31692 # type: textblock
31693 #. type: textblock
31694 #: ../fish/guestfish-commands.pod:124
31695 msgid "Note that C<!cd> won't do what you might expect."
31696 msgstr ""
31697
31698 # type: =head2
31699 #. type: =head2
31700 #: ../fish/guestfish-commands.pod:126
31701 msgid "man"
31702 msgstr ""
31703
31704 # type: =head2
31705 #. type: =head2
31706 #: ../fish/guestfish-commands.pod:128
31707 msgid "manual"
31708 msgstr ""
31709
31710 # type: verbatim
31711 #. type: verbatim
31712 #: ../fish/guestfish-commands.pod:130
31713 #, no-wrap
31714 msgid ""
31715 "  man\n"
31716 "\n"
31717 msgstr ""
31718
31719 # type: textblock
31720 #. type: textblock
31721 #: ../fish/guestfish-commands.pod:132
31722 msgid "Opens the manual page for guestfish."
31723 msgstr ""
31724
31725 # type: =head2
31726 #. type: =head2
31727 #: ../fish/guestfish-commands.pod:134
31728 msgid "more"
31729 msgstr ""
31730
31731 # type: =head2
31732 #. type: =head2
31733 #: ../fish/guestfish-commands.pod:136
31734 msgid "less"
31735 msgstr ""
31736
31737 # type: verbatim
31738 #. type: verbatim
31739 #: ../fish/guestfish-commands.pod:138
31740 #, no-wrap
31741 msgid ""
31742 " more filename\n"
31743 "\n"
31744 msgstr ""
31745
31746 # type: verbatim
31747 #. type: verbatim
31748 #: ../fish/guestfish-commands.pod:140
31749 #, no-wrap
31750 msgid ""
31751 " less filename\n"
31752 "\n"
31753 msgstr ""
31754
31755 # type: textblock
31756 #. type: textblock
31757 #: ../fish/guestfish-commands.pod:142
31758 msgid "This is used to view a file."
31759 msgstr ""
31760
31761 # type: textblock
31762 #. type: textblock
31763 #: ../fish/guestfish-commands.pod:144
31764 msgid ""
31765 "The default viewer is C<$PAGER>.  However if you use the alternate command "
31766 "C<less> you will get the C<less> command specifically."
31767 msgstr ""
31768
31769 # type: =head2
31770 #. type: =head2
31771 #: ../fish/guestfish-commands.pod:147
31772 msgid "reopen"
31773 msgstr ""
31774
31775 # type: verbatim
31776 #. type: verbatim
31777 #: ../fish/guestfish-commands.pod:149
31778 #, no-wrap
31779 msgid ""
31780 "  reopen\n"
31781 "\n"
31782 msgstr ""
31783
31784 # type: textblock
31785 #. type: textblock
31786 #: ../fish/guestfish-commands.pod:151
31787 msgid ""
31788 "Close and reopen the libguestfs handle.  It is not necessary to use this "
31789 "normally, because the handle is closed properly when guestfish exits.  "
31790 "However this is occasionally useful for testing."
31791 msgstr ""
31792
31793 # type: =head2
31794 #. type: =head2
31795 #: ../fish/guestfish-commands.pod:155
31796 msgid "sparse"
31797 msgstr ""
31798
31799 # type: verbatim
31800 #. type: verbatim
31801 #: ../fish/guestfish-commands.pod:157
31802 #, no-wrap
31803 msgid ""
31804 " sparse filename size\n"
31805 "\n"
31806 msgstr ""
31807
31808 # type: textblock
31809 #. type: textblock
31810 #: ../fish/guestfish-commands.pod:159
31811 msgid ""
31812 "This creates an empty sparse file of the given size, and then adds so it can "
31813 "be further examined."
31814 msgstr ""
31815
31816 # type: textblock
31817 #. type: textblock
31818 #: ../fish/guestfish-commands.pod:162
31819 msgid ""
31820 "In all respects it works the same as the L</alloc> command, except that the "
31821 "image file is allocated sparsely, which means that disk blocks are not "
31822 "assigned to the file until they are needed.  Sparse disk files only use "
31823 "space when written to, but they are slower and there is a danger you could "
31824 "run out of real disk space during a write operation."
31825 msgstr ""
31826
31827 # type: =head2
31828 #. type: =head2
31829 #: ../fish/guestfish-commands.pod:172
31830 msgid "supported"
31831 msgstr ""
31832
31833 # type: verbatim
31834 #. type: verbatim
31835 #: ../fish/guestfish-commands.pod:174
31836 #, no-wrap
31837 msgid ""
31838 " supported\n"
31839 "\n"
31840 msgstr ""
31841
31842 # type: textblock
31843 #. type: textblock
31844 #: ../fish/guestfish-commands.pod:176
31845 msgid ""
31846 "This command returns a list of the optional groups known to the daemon, and "
31847 "indicates which ones are supported by this build of the libguestfs appliance."
31848 msgstr ""
31849
31850 # type: textblock
31851 #. type: textblock
31852 #: ../fish/guestfish-commands.pod:180
31853 msgid "See also L<guestfs(3)/AVAILABILITY>."
31854 msgstr ""
31855
31856 # type: =head2
31857 #. type: =head2
31858 #: ../fish/guestfish-commands.pod:182
31859 msgid "time"
31860 msgstr ""
31861
31862 # type: verbatim
31863 #. type: verbatim
31864 #: ../fish/guestfish-commands.pod:184
31865 #, no-wrap
31866 msgid ""
31867 " time command args...\n"
31868 "\n"
31869 msgstr ""
31870
31871 # type: textblock
31872 #. type: textblock
31873 #: ../fish/guestfish-commands.pod:186
31874 msgid ""
31875 "Run the command as usual, but print the elapsed time afterwards.  This can "
31876 "be useful for benchmarking operations."
31877 msgstr ""
31878
31879 # type: textblock
31880 #. type: textblock
31881 #: ../test-tool/libguestfs-test-tool.pod:5
31882 msgid "libguestfs-test-tool - End user tests for libguestfs"
31883 msgstr ""
31884
31885 # type: verbatim
31886 #. type: verbatim
31887 #: ../test-tool/libguestfs-test-tool.pod:9
31888 #, no-wrap
31889 msgid ""
31890 " libguestfs-test-tool [--options]\n"
31891 "\n"
31892 msgstr ""
31893
31894 # type: textblock
31895 #. type: textblock
31896 #: ../test-tool/libguestfs-test-tool.pod:13
31897 msgid ""
31898 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
31899 "and developers, to allow them to check basic libguestfs functionality is "
31900 "working.  This is needed because libguestfs occasionally breaks for reasons "
31901 "beyond our control: usually because of changes in the underlying qemu or "
31902 "kernel packages, or the host environment."
31903 msgstr ""
31904
31905 # type: textblock
31906 #. type: textblock
31907 #: ../test-tool/libguestfs-test-tool.pod:20
31908 msgid "If you suspect a problem in libguestfs, then just run:"
31909 msgstr ""
31910
31911 # type: verbatim
31912 #. type: verbatim
31913 #: ../test-tool/libguestfs-test-tool.pod:22
31914 #, no-wrap
31915 msgid ""
31916 " libguestfs-test-tool\n"
31917 "\n"
31918 msgstr ""
31919
31920 # type: textblock
31921 #. type: textblock
31922 #: ../test-tool/libguestfs-test-tool.pod:24
31923 msgid "It will print lots of diagnostic messages."
31924 msgstr ""
31925
31926 # type: textblock
31927 #. type: textblock
31928 #: ../test-tool/libguestfs-test-tool.pod:26
31929 msgid "If it runs to completion successfully, you will see this near the end:"
31930 msgstr ""
31931
31932 # type: verbatim
31933 #. type: verbatim
31934 #: ../test-tool/libguestfs-test-tool.pod:28
31935 #, no-wrap
31936 msgid ""
31937 " ===== TEST FINISHED OK =====\n"
31938 "\n"
31939 msgstr ""
31940
31941 # type: textblock
31942 #. type: textblock
31943 #: ../test-tool/libguestfs-test-tool.pod:30
31944 msgid "and the test tool will exit with code 0."
31945 msgstr ""
31946
31947 # type: textblock
31948 #. type: textblock
31949 #: ../test-tool/libguestfs-test-tool.pod:32
31950 msgid ""
31951 "If it fails (and/or exits with non-zero error code), please paste the "
31952 "B<complete, unedited> output of the test tool into a bug report.  More "
31953 "information about reporting bugs can be found on the L<http://libguestfs.org/"
31954 "> website."
31955 msgstr ""
31956
31957 # type: =item
31958 #. type: =item
31959 #: ../test-tool/libguestfs-test-tool.pod:41
31960 msgid "I<--help>"
31961 msgstr ""
31962
31963 # type: textblock
31964 #. type: textblock
31965 #: ../test-tool/libguestfs-test-tool.pod:43
31966 msgid "Display short usage information and exit."
31967 msgstr ""
31968
31969 # type: =item
31970 #. type: =item
31971 #: ../test-tool/libguestfs-test-tool.pod:45
31972 msgid "I<--qemu qemu_binary>"
31973 msgstr ""
31974
31975 # type: textblock
31976 #. type: textblock
31977 #: ../test-tool/libguestfs-test-tool.pod:47
31978 msgid ""
31979 "If you have downloaded another qemu binary, point this option at the full "
31980 "path of the binary to try it."
31981 msgstr ""
31982
31983 # type: =item
31984 #. type: =item
31985 #: ../test-tool/libguestfs-test-tool.pod:50
31986 msgid "I<--qemudir qemu_source_dir>"
31987 msgstr ""
31988
31989 # type: textblock
31990 #. type: textblock
31991 #: ../test-tool/libguestfs-test-tool.pod:52
31992 msgid ""
31993 "If you have compiled qemu from source, point this option at the source "
31994 "directory to try it."
31995 msgstr ""
31996
31997 # type: =item
31998 #. type: =item
31999 #: ../test-tool/libguestfs-test-tool.pod:55
32000 msgid "I<--timeout N>"
32001 msgstr ""
32002
32003 # type: textblock
32004 #. type: textblock
32005 #: ../test-tool/libguestfs-test-tool.pod:57
32006 msgid ""
32007 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
32008 "does not usually need to be adjusted unless your machine is very slow."
32009 msgstr ""
32010
32011 # type: =head1
32012 #. type: =head1
32013 #: ../test-tool/libguestfs-test-tool.pod:63
32014 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
32015 msgstr ""
32016
32017 # type: textblock
32018 #. type: textblock
32019 #: ../test-tool/libguestfs-test-tool.pod:65
32020 msgid ""
32021 "If you have compiled another version of qemu from source and would like to "
32022 "try that, then you can use the I<--qemudir> option to point to the qemu "
32023 "source directory."
32024 msgstr ""
32025
32026 # type: textblock
32027 #. type: textblock
32028 #: ../test-tool/libguestfs-test-tool.pod:69
32029 msgid ""
32030 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
32031 "option to point to the binary."
32032 msgstr ""
32033
32034 # type: textblock
32035 #. type: textblock
32036 #: ../test-tool/libguestfs-test-tool.pod:72
32037 msgid ""
32038 "When using an alternate qemu with libguestfs, usually you would need to "
32039 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
32040 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
32041 "use either of the I<--qemudir> or I<--qemu> options."
32042 msgstr ""
32043
32044 # type: textblock
32045 #. type: textblock
32046 #: ../test-tool/libguestfs-test-tool.pod:79
32047 msgid ""
32048 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
32049 "I<1> if there was an error."
32050 msgstr ""
32051
32052 # type: textblock
32053 #. type: textblock
32054 #: ../test-tool/libguestfs-test-tool.pod:84
32055 msgid ""
32056 "For the full list of environment variables which may affect libguestfs, "
32057 "please see the L<guestfs(3)> manual page."
32058 msgstr ""
32059
32060 # type: textblock
32061 #. type: textblock
32062 #: ../test-tool/libguestfs-test-tool.pod:89
32063 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
32064 msgstr ""
32065
32066 # type: textblock
32067 #. type: textblock
32068 #: ../fuse/guestmount.pod:5
32069 msgid ""
32070 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
32071 msgstr ""
32072
32073 # type: verbatim
32074 #. type: verbatim
32075 #: ../fuse/guestmount.pod:9
32076 #, no-wrap
32077 msgid ""
32078 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
32079 "\n"
32080 msgstr ""
32081
32082 # type: verbatim
32083 #. type: verbatim
32084 #: ../fuse/guestmount.pod:11
32085 #, no-wrap
32086 msgid ""
32087 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
32088 "\n"
32089 msgstr ""
32090
32091 # type: verbatim
32092 #. type: verbatim
32093 #: ../fuse/guestmount.pod:13
32094 #, no-wrap
32095 msgid ""
32096 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
32097 "\n"
32098 msgstr ""
32099
32100 # type: textblock
32101 #. type: textblock
32102 #: ../fuse/guestmount.pod:17
32103 msgid ""
32104 "You must I<not> use C<guestmount> in read-write mode on live virtual "
32105 "machines.  If you do this, you risk disk corruption in the VM."
32106 msgstr ""
32107
32108 # type: textblock
32109 #. type: textblock
32110 #: ../fuse/guestmount.pod:22
32111 msgid ""
32112 "The guestmount program can be used to mount virtual machine filesystems and "
32113 "other disk images on the host.  It uses libguestfs for access to the guest "
32114 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
32115 "a mountable device."
32116 msgstr ""
32117
32118 # type: textblock
32119 #. type: textblock
32120 #: ../fuse/guestmount.pod:27
32121 msgid ""
32122 "Along with other options, you have to give at least one device (I<-a> "
32123 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
32124 "option) or use the I<-i> inspection option.  How this works is better "
32125 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
32126 "below."
32127 msgstr ""
32128
32129 # type: textblock
32130 #. type: textblock
32131 #: ../fuse/guestmount.pod:33
32132 msgid ""
32133 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
32134 "by you, and the filesystem will not be visible to any other users unless you "
32135 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
32136 "the filesystem, use the C<fusermount -u> command."
32137 msgstr ""
32138
32139 # type: textblock
32140 #. type: textblock
32141 #: ../fuse/guestmount.pod:41
32142 msgid ""
32143 "For a typical Windows guest which has its main filesystem on the first "
32144 "partition:"
32145 msgstr ""
32146
32147 # type: verbatim
32148 #. type: verbatim
32149 #: ../fuse/guestmount.pod:44
32150 #, no-wrap
32151 msgid ""
32152 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
32153 "\n"
32154 msgstr ""
32155
32156 # type: textblock
32157 #. type: textblock
32158 #: ../fuse/guestmount.pod:46
32159 msgid ""
32160 "For a typical Linux guest which has a /boot filesystem on the first "
32161 "partition, and the root filesystem on a logical volume:"
32162 msgstr ""
32163
32164 # type: verbatim
32165 #. type: verbatim
32166 #: ../fuse/guestmount.pod:49
32167 #, no-wrap
32168 msgid ""
32169 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
32170 "\n"
32171 msgstr ""
32172
32173 # type: textblock
32174 #. type: textblock
32175 #: ../fuse/guestmount.pod:51
32176 msgid "To get libguestfs to detect guest mountpoints for you:"
32177 msgstr ""
32178
32179 # type: verbatim
32180 #. type: verbatim
32181 #: ../fuse/guestmount.pod:53
32182 #, no-wrap
32183 msgid ""
32184 " guestmount -a guest.img -i --ro /mnt\n"
32185 "\n"
32186 msgstr ""
32187
32188 # type: textblock
32189 #. type: textblock
32190 #: ../fuse/guestmount.pod:55
32191 msgid "For a libvirt guest called \"Guest\" you could do:"
32192 msgstr ""
32193
32194 # type: verbatim
32195 #. type: verbatim
32196 #: ../fuse/guestmount.pod:57
32197 #, no-wrap
32198 msgid ""
32199 " guestmount -d Guest -i --ro /mnt\n"
32200 "\n"
32201 msgstr ""
32202
32203 # type: textblock
32204 #. type: textblock
32205 #: ../fuse/guestmount.pod:59
32206 msgid ""
32207 "If you don't know what filesystems are contained in a guest or disk image, "
32208 "use L<virt-filesystems(1)> first:"
32209 msgstr ""
32210
32211 # type: verbatim
32212 #. type: verbatim
32213 #: ../fuse/guestmount.pod:62
32214 #, no-wrap
32215 msgid ""
32216 " virt-filesystems MyGuest\n"
32217 "\n"
32218 msgstr ""
32219
32220 # type: textblock
32221 #. type: textblock
32222 #: ../fuse/guestmount.pod:64
32223 msgid ""
32224 "If you want to trace the libguestfs calls but without excessive debugging "
32225 "information, we recommend:"
32226 msgstr ""
32227
32228 # type: verbatim
32229 #. type: verbatim
32230 #: ../fuse/guestmount.pod:67
32231 #, no-wrap
32232 msgid ""
32233 " guestmount [...] --trace /mnt\n"
32234 "\n"
32235 msgstr ""
32236
32237 # type: textblock
32238 #. type: textblock
32239 #: ../fuse/guestmount.pod:69
32240 msgid "If you want to debug the program, we recommend:"
32241 msgstr ""
32242
32243 # type: verbatim
32244 #. type: verbatim
32245 #: ../fuse/guestmount.pod:71
32246 #, no-wrap
32247 msgid ""
32248 " guestmount [...] --trace --verbose /mnt\n"
32249 "\n"
32250 msgstr ""
32251
32252 #. type: =head1
32253 #: ../fuse/guestmount.pod:73
32254 msgid "NOTES"
32255 msgstr ""
32256
32257 #. type: =head2
32258 #: ../fuse/guestmount.pod:75
32259 msgid "Other users cannot see the filesystem by default"
32260 msgstr ""
32261
32262 #. type: textblock
32263 #: ../fuse/guestmount.pod:77
32264 msgid ""
32265 "If you mount a filesystem as one user (eg. root), then other users will not "
32266 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
32267 "option when mounting:"
32268 msgstr ""
32269
32270 #. type: verbatim
32271 #: ../fuse/guestmount.pod:81
32272 #, no-wrap
32273 msgid ""
32274 " sudo guestmount [...] -o allow_other /mnt\n"
32275 "\n"
32276 msgstr ""
32277
32278 # type: =item
32279 #. type: =item
32280 #: ../fuse/guestmount.pod:87
32281 msgid "B<-a image> | B<--add image>"
32282 msgstr ""
32283
32284 # type: textblock
32285 #. type: textblock
32286 #: ../fuse/guestmount.pod:89
32287 msgid "Add a block device or virtual machine image."
32288 msgstr ""
32289
32290 # type: =item
32291 #. type: =item
32292 #: ../fuse/guestmount.pod:94
32293 msgid "B<-c URI> | B<--connect URI>"
32294 msgstr ""
32295
32296 # type: =item
32297 #. type: =item
32298 #: ../fuse/guestmount.pod:100
32299 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32300 msgstr ""
32301
32302 # type: =item
32303 #. type: =item
32304 #: ../fuse/guestmount.pod:106
32305 msgid "B<--dir-cache-timeout N>"
32306 msgstr ""
32307
32308 # type: textblock
32309 #. type: textblock
32310 #: ../fuse/guestmount.pod:108
32311 msgid ""
32312 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32313 "seconds.  The readdir cache [actually, there are several semi-independent "
32314 "caches] is populated after a readdir(2) call with the stat and extended "
32315 "attributes of the files in the directory, in anticipation that they will be "
32316 "requested soon after."
32317 msgstr ""
32318
32319 # type: textblock
32320 #. type: textblock
32321 #: ../fuse/guestmount.pod:114
32322 msgid ""
32323 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32324 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32325 "requests, only cache existing ones."
32326 msgstr ""
32327
32328 # type: =item
32329 #. type: =item
32330 #: ../fuse/guestmount.pod:125
32331 msgid "B<--format=raw|qcow2|..> | B<--format>"
32332 msgstr ""
32333
32334 # type: textblock
32335 #. type: textblock
32336 #: ../fuse/guestmount.pod:132
32337 msgid ""
32338 "If you have untrusted raw-format guest disk images, you should use this "
32339 "option to specify the disk format.  This avoids a possible security problem "
32340 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
32341 "guestfs_add_drive_opts>."
32342 msgstr ""
32343
32344 # type: =item
32345 #. type: =item
32346 #: ../fuse/guestmount.pod:137
32347 msgid "B<--fuse-help>"
32348 msgstr ""
32349
32350 # type: textblock
32351 #. type: textblock
32352 #: ../fuse/guestmount.pod:139
32353 msgid "Display help on special FUSE options (see I<-o> below)."
32354 msgstr ""
32355
32356 # type: textblock
32357 #. type: textblock
32358 #: ../fuse/guestmount.pod:143
32359 msgid "Display brief help and exit."
32360 msgstr ""
32361
32362 # type: =item
32363 #. type: =item
32364 #: ../fuse/guestmount.pod:145
32365 msgid "B<-i> | B<--inspector>"
32366 msgstr ""
32367
32368 # type: textblock
32369 #. type: textblock
32370 #: ../fuse/guestmount.pod:165
32371 msgid ""
32372 "Mount the named partition or logical volume on the given mountpoint B<in the "
32373 "guest> (this has nothing to do with mountpoints in the host)."
32374 msgstr ""
32375
32376 # type: textblock
32377 #. type: textblock
32378 #: ../fuse/guestmount.pod:168
32379 msgid ""
32380 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
32381 "something on C</>."
32382 msgstr ""
32383
32384 # type: =item
32385 #. type: =item
32386 #: ../fuse/guestmount.pod:181
32387 msgid "B<-n> | B<--no-sync>"
32388 msgstr ""
32389
32390 # type: textblock
32391 #. type: textblock
32392 #: ../fuse/guestmount.pod:183
32393 msgid ""
32394 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32395 "unmounted.  If you specify this option, then we don't attempt to sync the "
32396 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
32397 msgstr ""
32398
32399 # type: =item
32400 #. type: =item
32401 #: ../fuse/guestmount.pod:188
32402 msgid "B<-o option> | B<--option option>"
32403 msgstr ""
32404
32405 # type: textblock
32406 #. type: textblock
32407 #: ../fuse/guestmount.pod:190
32408 msgid "Pass extra options to FUSE."
32409 msgstr ""
32410
32411 # type: textblock
32412 #. type: textblock
32413 #: ../fuse/guestmount.pod:192
32414 msgid ""
32415 "To get a list of all the extra options supported by FUSE, use the command "
32416 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
32417 "of them are a good idea."
32418 msgstr ""
32419
32420 # type: verbatim
32421 #. type: verbatim
32422 #: ../fuse/guestmount.pod:196
32423 #, no-wrap
32424 msgid ""
32425 " guestmount --fuse-help\n"
32426 "\n"
32427 msgstr ""
32428
32429 # type: textblock
32430 #. type: textblock
32431 #: ../fuse/guestmount.pod:198
32432 msgid "Some potentially useful FUSE options:"
32433 msgstr ""
32434
32435 # type: =item
32436 #. type: =item
32437 #: ../fuse/guestmount.pod:202
32438 msgid "B<-o allow_other>"
32439 msgstr ""
32440
32441 # type: textblock
32442 #. type: textblock
32443 #: ../fuse/guestmount.pod:204
32444 msgid "Allow other users to see the filesystem."
32445 msgstr ""
32446
32447 # type: =item
32448 #. type: =item
32449 #: ../fuse/guestmount.pod:206
32450 msgid "B<-o attr_timeout=N>"
32451 msgstr ""
32452
32453 # type: textblock
32454 #. type: textblock
32455 #: ../fuse/guestmount.pod:208
32456 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32457 msgstr ""
32458
32459 # type: =item
32460 #. type: =item
32461 #: ../fuse/guestmount.pod:210
32462 msgid "B<-o kernel_cache>"
32463 msgstr ""
32464
32465 # type: textblock
32466 #. type: textblock
32467 #: ../fuse/guestmount.pod:212
32468 msgid ""
32469 "Allow the kernel to cache files (reduces the number of reads that have to go "
32470 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
32471 "afford the extra memory usage."
32472 msgstr ""
32473
32474 # type: =item
32475 #. type: =item
32476 #: ../fuse/guestmount.pod:216
32477 msgid "B<-o uid=N> B<-o gid=N>"
32478 msgstr ""
32479
32480 # type: textblock
32481 #. type: textblock
32482 #: ../fuse/guestmount.pod:218
32483 msgid ""
32484 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32485 "the chosen values."
32486 msgstr ""
32487
32488 # type: =item
32489 #. type: =item
32490 #: ../fuse/guestmount.pod:223
32491 msgid "B<-r> | B<--ro>"
32492 msgstr ""
32493
32494 # type: textblock
32495 #. type: textblock
32496 #: ../fuse/guestmount.pod:225
32497 msgid ""
32498 "Add devices and mount everything read-only.  Also disallow writes and make "
32499 "the disk appear read-only to FUSE."
32500 msgstr ""
32501
32502 # type: textblock
32503 #. type: textblock
32504 #: ../fuse/guestmount.pod:228
32505 msgid ""
32506 "This is highly recommended if you are not going to edit the guest disk.  If "
32507 "the guest is running and this option is I<not> supplied, then there is a "
32508 "strong risk of disk corruption in the guest.  We try to prevent this from "
32509 "happening, but it is not always possible."
32510 msgstr ""
32511
32512 # type: textblock
32513 #. type: textblock
32514 #: ../fuse/guestmount.pod:233
32515 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32516 msgstr ""
32517
32518 # type: textblock
32519 #. type: textblock
32520 #: ../fuse/guestmount.pod:237
32521 msgid "Enable SELinux support for the guest."
32522 msgstr ""
32523
32524 # type: =item
32525 #. type: =item
32526 #: ../fuse/guestmount.pod:239
32527 msgid "B<-v> | B<--verbose>"
32528 msgstr ""
32529
32530 # type: textblock
32531 #. type: textblock
32532 #: ../fuse/guestmount.pod:241
32533 msgid "Enable verbose messages from underlying libguestfs."
32534 msgstr ""
32535
32536 # type: =item
32537 #. type: =item
32538 #: ../fuse/guestmount.pod:243
32539 msgid "B<-V> | B<--version>"
32540 msgstr ""
32541
32542 # type: textblock
32543 #. type: textblock
32544 #: ../fuse/guestmount.pod:245
32545 msgid "Display the program version and exit."
32546 msgstr ""
32547
32548 # type: =item
32549 #. type: =item
32550 #: ../fuse/guestmount.pod:247
32551 msgid "B<-w> | B<--rw>"
32552 msgstr ""
32553
32554 #. type: textblock
32555 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
32556 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32557 msgstr ""
32558
32559 # type: =item
32560 #. type: =item
32561 #: ../fuse/guestmount.pod:254
32562 msgid "B<-x> | B<--trace>"
32563 msgstr ""
32564
32565 # type: textblock
32566 #. type: textblock
32567 #: ../fuse/guestmount.pod:256
32568 msgid "Trace libguestfs calls and entry into each FUSE function."
32569 msgstr ""
32570
32571 # type: textblock
32572 #. type: textblock
32573 #: ../fuse/guestmount.pod:258
32574 msgid "This also stops the daemon from forking into the background."
32575 msgstr ""
32576
32577 # type: textblock
32578 #. type: textblock
32579 #: ../fuse/guestmount.pod:279
32580 msgid ""
32581 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32582 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32583 "net/>."
32584 msgstr ""
32585
32586 # type: textblock
32587 #. type: textblock
32588 #: ../fuse/guestmount.pod:294
32589 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
32590 msgstr ""
32591
32592 # type: textblock
32593 #. type: textblock
32594 #: ../tools/virt-edit.pl:34
32595 msgid "virt-edit - Edit a file in a virtual machine"
32596 msgstr ""
32597
32598 # type: verbatim
32599 #. type: verbatim
32600 #: ../tools/virt-edit.pl:38
32601 #, no-wrap
32602 msgid ""
32603 " virt-edit [--options] domname file\n"
32604 "\n"
32605 msgstr ""
32606
32607 # type: verbatim
32608 #. type: verbatim
32609 #: ../tools/virt-edit.pl:40
32610 #, no-wrap
32611 msgid ""
32612 " virt-edit [--options] disk.img [disk.img ...] file\n"
32613 "\n"
32614 msgstr ""
32615
32616 # type: verbatim
32617 #. type: verbatim
32618 #: ../tools/virt-edit.pl:42
32619 #, no-wrap
32620 msgid ""
32621 " virt-edit [domname|disk.img] file -e 'expr'\n"
32622 "\n"
32623 msgstr ""
32624
32625 # type: textblock
32626 #. type: textblock
32627 #: ../tools/virt-edit.pl:46
32628 msgid ""
32629 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
32630 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
32631 "doing this, but doesn't catch all cases."
32632 msgstr ""
32633
32634 # type: textblock
32635 #. type: textblock
32636 #: ../tools/virt-edit.pl:52
32637 msgid ""
32638 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32639 "the named virtual machine (or disk image)."
32640 msgstr ""
32641
32642 #. type: textblock
32643 #: ../tools/virt-edit.pl:55
32644 msgid "If you want to just view a file, use L<virt-cat(1)>."
32645 msgstr ""
32646
32647 #. type: textblock
32648 #: ../tools/virt-edit.pl:57
32649 msgid ""
32650 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32651 "USING GUESTFISH> below)."
32652 msgstr ""
32653
32654 #. type: textblock
32655 #: ../tools/virt-edit.pl:60
32656 msgid ""
32657 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32658 "files.  L<guestfish(1)> can do that and much more."
32659 msgstr ""
32660
32661 # type: textblock
32662 #. type: textblock
32663 #: ../tools/virt-edit.pl:65
32664 msgid "Edit the named files interactively:"
32665 msgstr ""
32666
32667 # type: verbatim
32668 #. type: verbatim
32669 #: ../tools/virt-edit.pl:67
32670 #, no-wrap
32671 msgid ""
32672 " virt-edit mydomain /boot/grub/grub.conf\n"
32673 "\n"
32674 msgstr ""
32675
32676 # type: verbatim
32677 #. type: verbatim
32678 #: ../tools/virt-edit.pl:69
32679 #, no-wrap
32680 msgid ""
32681 " virt-edit mydomain /etc/passwd\n"
32682 "\n"
32683 msgstr ""
32684
32685 #. type: textblock
32686 #: ../tools/virt-edit.pl:71
32687 msgid "For Windows guests, some Windows paths are understood:"
32688 msgstr ""
32689
32690 #. type: verbatim
32691 #: ../tools/virt-edit.pl:73
32692 #, no-wrap
32693 msgid ""
32694 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32695 "\n"
32696 msgstr ""
32697
32698 # type: textblock
32699 #. type: textblock
32700 #: ../tools/virt-edit.pl:75
32701 msgid ""
32702 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32703 "below).  To change the init default level to 5:"
32704 msgstr ""
32705
32706 # type: verbatim
32707 #. type: verbatim
32708 #: ../tools/virt-edit.pl:79
32709 #, no-wrap
32710 msgid ""
32711 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32712 "\n"
32713 msgstr ""
32714
32715 # type: textblock
32716 #. type: textblock
32717 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32718 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32719 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32720 msgid "Display brief help."
32721 msgstr ""
32722
32723 # type: textblock
32724 #. type: textblock
32725 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32726 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32727 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32728 msgid "Display version number and exit."
32729 msgstr ""
32730
32731 # type: =item
32732 #. type: =item
32733 #: ../tools/virt-edit.pl:105
32734 msgid "B<--backup extension> | B<-b extension>"
32735 msgstr ""
32736
32737 # type: textblock
32738 #. type: textblock
32739 #: ../tools/virt-edit.pl:107
32740 msgid ""
32741 "Create a backup of the original file I<in the guest disk image>.  The backup "
32742 "has the original filename with C<extension> added."
32743 msgstr ""
32744
32745 # type: textblock
32746 #. type: textblock
32747 #: ../tools/virt-edit.pl:110
32748 msgid ""
32749 "Usually the first character of C<extension> would be a dot C<.> so you would "
32750 "write:"
32751 msgstr ""
32752
32753 # type: verbatim
32754 #. type: verbatim
32755 #: ../tools/virt-edit.pl:113
32756 #, no-wrap
32757 msgid ""
32758 " virt-edit -b .orig [etc]\n"
32759 "\n"
32760 msgstr ""
32761
32762 # type: textblock
32763 #. type: textblock
32764 #: ../tools/virt-edit.pl:115
32765 msgid "By default, no backup file is made."
32766 msgstr ""
32767
32768 # type: =item
32769 #. type: =item
32770 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32771 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32772 #: ../tools/virt-list-partitions.pl:78
32773 msgid "B<--connect URI> | B<-c URI>"
32774 msgstr ""
32775
32776 # type: textblock
32777 #. type: textblock
32778 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32779 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32780 #: ../tools/virt-list-partitions.pl:80
32781 msgid ""
32782 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
32783 "to the default libvirt hypervisor."
32784 msgstr ""
32785
32786 # type: textblock
32787 #. type: textblock
32788 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32789 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32790 #: ../tools/virt-list-partitions.pl:83
32791 msgid ""
32792 "If you specify guest block devices directly, then libvirt is not used at all."
32793 msgstr ""
32794
32795 # type: =item
32796 #. type: =item
32797 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32798 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32799 #: ../tools/virt-list-partitions.pl:90
32800 msgid "B<--format> raw"
32801 msgstr ""
32802
32803 # type: textblock
32804 #. type: textblock
32805 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32806 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32807 #: ../tools/virt-list-partitions.pl:92
32808 msgid ""
32809 "Specify the format of disk images given on the command line.  If this is "
32810 "omitted then the format is autodetected from the content of the disk image."
32811 msgstr ""
32812
32813 # type: textblock
32814 #. type: textblock
32815 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32816 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32817 #: ../tools/virt-list-partitions.pl:96
32818 msgid ""
32819 "If disk images are requested from libvirt, then this program asks libvirt "
32820 "for this information.  In this case, the value of the format parameter is "
32821 "ignored."
32822 msgstr ""
32823
32824 # type: textblock
32825 #. type: textblock
32826 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32827 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32828 #: ../tools/virt-list-partitions.pl:100
32829 msgid ""
32830 "If working with untrusted raw-format guest disk images, you should ensure "
32831 "the format is always specified."
32832 msgstr ""
32833
32834 # type: =item
32835 #. type: =item
32836 #: ../tools/virt-edit.pl:150
32837 msgid "B<--expr EXPR> | B<-e EXPR>"
32838 msgstr ""
32839
32840 # type: textblock
32841 #. type: textblock
32842 #: ../tools/virt-edit.pl:152
32843 msgid ""
32844 "Instead of launching the external editor, non-interactively apply the Perl "
32845 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
32846 "EDITING> below."
32847 msgstr ""
32848
32849 # type: textblock
32850 #. type: textblock
32851 #: ../tools/virt-edit.pl:156
32852 msgid ""
32853 "Be careful to properly quote the expression to prevent it from being altered "
32854 "by the shell."
32855 msgstr ""
32856
32857 # type: =head1
32858 #. type: =head1
32859 #: ../tools/virt-edit.pl:280
32860 msgid "NON-INTERACTIVE EDITING"
32861 msgstr ""
32862
32863 # type: textblock
32864 #. type: textblock
32865 #: ../tools/virt-edit.pl:282
32866 msgid ""
32867 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
32868 "administrator can interactively edit the file."
32869 msgstr ""
32870
32871 # type: textblock
32872 #. type: textblock
32873 #: ../tools/virt-edit.pl:285
32874 msgid ""
32875 "There are two ways also to use C<virt-edit> from scripts in order to make "
32876 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
32877 "like this, it's less error-prone to write scripts directly using the "
32878 "libguestfs API and Augeas for configuration file editing.)"
32879 msgstr ""
32880
32881 # type: textblock
32882 #. type: textblock
32883 #: ../tools/virt-edit.pl:291
32884 msgid ""
32885 "The first method is to temporarily set C<$EDITOR> to any script or program "
32886 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
32887 "update C<tmpfile> in place however it likes."
32888 msgstr ""
32889
32890 #. type: textblock
32891 #: ../tools/virt-edit.pl:295
32892 msgid ""
32893 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
32894 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
32895 "instances of C<foo> with C<bar> in a file:"
32896 msgstr ""
32897
32898 # type: verbatim
32899 #. type: verbatim
32900 #: ../tools/virt-edit.pl:299
32901 #, no-wrap
32902 msgid ""
32903 " virt-edit domname filename -e 's/foo/bar/'\n"
32904 "\n"
32905 msgstr ""
32906
32907 # type: textblock
32908 #. type: textblock
32909 #: ../tools/virt-edit.pl:301
32910 msgid ""
32911 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
32912 "For example to delete root's password you could do:"
32913 msgstr ""
32914
32915 # type: verbatim
32916 #. type: verbatim
32917 #: ../tools/virt-edit.pl:304
32918 #, no-wrap
32919 msgid ""
32920 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
32921 "\n"
32922 msgstr ""
32923
32924 # type: textblock
32925 #. type: textblock
32926 #: ../tools/virt-edit.pl:306
32927 msgid ""
32928 "What really happens is that the snippet is evaluated as a Perl expression "
32929 "for each line of the file.  The line, including the final C<\\n>, is passed "
32930 "in C<$_> and the expression should update C<$_> or leave it unchanged."
32931 msgstr ""
32932
32933 # type: textblock
32934 #. type: textblock
32935 #: ../tools/virt-edit.pl:311
32936 msgid ""
32937 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
32938 "C<apache> user account from the password file you can do:"
32939 msgstr ""
32940
32941 # type: verbatim
32942 #. type: verbatim
32943 #: ../tools/virt-edit.pl:314
32944 #, no-wrap
32945 msgid ""
32946 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
32947 "\n"
32948 msgstr ""
32949
32950 # type: textblock
32951 #. type: textblock
32952 #: ../tools/virt-edit.pl:316
32953 msgid ""
32954 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
32955 "the end of the file is rather difficult this way since there is no concept "
32956 "of \"last line of the file\" - your expression just doesn't get called "
32957 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
32958 "want to do this."
32959 msgstr ""
32960
32961 # type: textblock
32962 #. type: textblock
32963 #: ../tools/virt-edit.pl:322
32964 msgid ""
32965 "The variable C<$lineno> contains the current line number.  As is "
32966 "traditional, the first line in the file is number C<1>."
32967 msgstr ""
32968
32969 # type: textblock
32970 #. type: textblock
32971 #: ../tools/virt-edit.pl:325
32972 msgid ""
32973 "The return value from the expression is ignored, but the expression may call "
32974 "C<die> in order to abort the whole program, leaving the original file "
32975 "untouched."
32976 msgstr ""
32977
32978 # type: textblock
32979 #. type: textblock
32980 #: ../tools/virt-edit.pl:329
32981 msgid ""
32982 "Remember when matching the end of a line that C<$_> may contain the final C<"
32983 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
32984 "newline then neither of these.  Thus to match or substitute some text at the "
32985 "end of a line, use this regular expression:"
32986 msgstr ""
32987
32988 # type: verbatim
32989 #. type: verbatim
32990 #: ../tools/virt-edit.pl:334
32991 #, no-wrap
32992 msgid ""
32993 " /some text(\\r?\\n)?$/\n"
32994 "\n"
32995 msgstr ""
32996
32997 # type: textblock
32998 #. type: textblock
32999 #: ../tools/virt-edit.pl:336
33000 msgid ""
33001 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
33002 "$_> itself (since that would remove all newlines from the file):"
33003 msgstr ""
33004
33005 # type: verbatim
33006 #. type: verbatim
33007 #: ../tools/virt-edit.pl:340
33008 #, no-wrap
33009 msgid ""
33010 " my $m = $_; chomp $m; $m =~ /some text$/\n"
33011 "\n"
33012 msgstr ""
33013
33014 #. type: textblock
33015 #: ../tools/virt-edit.pl:344
33016 msgid ""
33017 "C<virt-edit> has a limited ability to understand Windows drive letters and "
33018 "paths (eg. C<E:\\foo\\bar.txt>)."
33019 msgstr ""
33020
33021 #. type: textblock
33022 #: ../tools/virt-edit.pl:347
33023 msgid "If and only if the guest is running Windows then:"
33024 msgstr ""
33025
33026 #. type: textblock
33027 #: ../tools/virt-edit.pl:353
33028 msgid ""
33029 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
33030 "to the correct filesystem."
33031 msgstr ""
33032
33033 #. type: textblock
33034 #: ../tools/virt-edit.pl:358
33035 msgid ""
33036 "Any backslash (C<\\>) characters in the path are replaced with forward "
33037 "slashes so that libguestfs can process it."
33038 msgstr ""
33039
33040 #. type: textblock
33041 #: ../tools/virt-edit.pl:363
33042 msgid ""
33043 "The path is resolved case insensitively to locate the file that should be "
33044 "edited."
33045 msgstr ""
33046
33047 #. type: textblock
33048 #: ../tools/virt-edit.pl:368
33049 msgid "There are some known shortcomings:"
33050 msgstr ""
33051
33052 #. type: textblock
33053 #: ../tools/virt-edit.pl:374
33054 msgid "Some NTFS symbolic links may not be followed correctly."
33055 msgstr ""
33056
33057 #. type: textblock
33058 #: ../tools/virt-edit.pl:378
33059 msgid "NTFS junction points that cross filesystems are not followed."
33060 msgstr ""
33061
33062 #. type: =head1
33063 #: ../tools/virt-edit.pl:435
33064 msgid "USING GUESTFISH"
33065 msgstr ""
33066
33067 #. type: textblock
33068 #: ../tools/virt-edit.pl:437
33069 msgid ""
33070 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
33071 "C<virt-edit> doesn't work."
33072 msgstr ""
33073
33074 #. type: textblock
33075 #: ../tools/virt-edit.pl:440
33076 msgid "Using C<virt-edit> is approximately equivalent to doing:"
33077 msgstr ""
33078
33079 #. type: verbatim
33080 #: ../tools/virt-edit.pl:442
33081 #, no-wrap
33082 msgid ""
33083 " guestfish --rw -i -d domname edit /file\n"
33084 "\n"
33085 msgstr ""
33086
33087 #. type: textblock
33088 #: ../tools/virt-edit.pl:444
33089 msgid ""
33090 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
33091 "path to the file."
33092 msgstr ""
33093
33094 #. type: textblock
33095 #: ../tools/virt-edit.pl:447
33096 msgid ""
33097 "The command above uses libguestfs's guest inspection feature and so does not "
33098 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
33099 "disk images that don't contain guests.  To edit a file on a disk image "
33100 "directly, use:"
33101 msgstr ""
33102
33103 #. type: verbatim
33104 #: ../tools/virt-edit.pl:452
33105 #, no-wrap
33106 msgid ""
33107 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
33108 "\n"
33109 msgstr ""
33110
33111 #. type: textblock
33112 #: ../tools/virt-edit.pl:454
33113 msgid ""
33114 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
33115 "the disk image to edit, and C</file> is the full path to the file."
33116 msgstr ""
33117
33118 #. type: textblock
33119 #: ../tools/virt-edit.pl:458
33120 msgid ""
33121 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
33122 "C<write> or C<upload> instead:"
33123 msgstr ""
33124
33125 #. type: verbatim
33126 #: ../tools/virt-edit.pl:461
33127 #, no-wrap
33128 msgid ""
33129 " guestfish --rw -i -d domname touch /newfile\n"
33130 "\n"
33131 msgstr ""
33132
33133 #. type: verbatim
33134 #: ../tools/virt-edit.pl:463
33135 #, no-wrap
33136 msgid ""
33137 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
33138 "\n"
33139 msgstr ""
33140
33141 #. type: verbatim
33142 #: ../tools/virt-edit.pl:465
33143 #, no-wrap
33144 msgid ""
33145 " guestfish --rw -i -d domname upload localfile /newfile\n"
33146 "\n"
33147 msgstr ""
33148
33149 #. type: textblock
33150 #: ../tools/virt-edit.pl:467
33151 msgid ""
33152 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
33153 msgstr ""
33154
33155 #. type: verbatim
33156 #: ../tools/virt-edit.pl:470
33157 #, no-wrap
33158 msgid ""
33159 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
33160 "\n"
33161 msgstr ""
33162
33163 # type: =item
33164 #. type: =item
33165 #: ../tools/virt-edit.pl:480
33166 msgid "C<EDITOR>"
33167 msgstr ""
33168
33169 # type: textblock
33170 #. type: textblock
33171 #: ../tools/virt-edit.pl:482
33172 msgid ""
33173 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
33174 "\"emacs -nw\">"
33175 msgstr ""
33176
33177 # type: textblock
33178 #. type: textblock
33179 #: ../tools/virt-edit.pl:485
33180 msgid "If not set, C<vi> is used."
33181 msgstr ""
33182
33183 # type: =head2
33184 #. type: =head1
33185 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
33186 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
33187 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
33188 msgid "SHELL QUOTING"
33189 msgstr ""
33190
33191 # type: textblock
33192 #. type: textblock
33193 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
33194 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
33195 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
33196 msgid ""
33197 "Libvirt guest names can contain arbitrary characters, some of which have "
33198 "meaning to the shell such as C<#> and space.  You may need to quote or "
33199 "escape these characters on the command line.  See the shell manual page L<sh"
33200 "(1)> for details."
33201 msgstr ""
33202
33203 #. type: textblock
33204 #: ../tools/virt-edit.pl:498
33205 msgid ""
33206 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
33207 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
33208 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
33209 msgstr ""
33210
33211 # type: =head1
33212 #. type: =head1
33213 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
33214 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
33215 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
33216 msgid "AUTHOR"
33217 msgstr ""
33218
33219 # type: textblock
33220 #. type: textblock
33221 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
33222 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
33223 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
33224 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
33225 msgstr ""
33226
33227 #. type: textblock
33228 #: ../tools/virt-edit.pl:516
33229 msgid "Copyright (C) 2009-2011 Red Hat Inc."
33230 msgstr ""
33231
33232 # type: textblock
33233 #. type: textblock
33234 #: ../tools/virt-win-reg.pl:37
33235 msgid ""
33236 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33237 msgstr ""
33238
33239 # type: verbatim
33240 #. type: verbatim
33241 #: ../tools/virt-win-reg.pl:41
33242 #, no-wrap
33243 msgid ""
33244 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33245 "\n"
33246 msgstr ""
33247
33248 # type: verbatim
33249 #. type: verbatim
33250 #: ../tools/virt-win-reg.pl:43
33251 #, no-wrap
33252 msgid ""
33253 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33254 "\n"
33255 msgstr ""
33256
33257 # type: verbatim
33258 #. type: verbatim
33259 #: ../tools/virt-win-reg.pl:45
33260 #, no-wrap
33261 msgid ""
33262 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33263 "\n"
33264 msgstr ""
33265
33266 # type: verbatim
33267 #. type: verbatim
33268 #: ../tools/virt-win-reg.pl:47
33269 #, no-wrap
33270 msgid ""
33271 " virt-win-reg --merge domname [input.reg ...]\n"
33272 "\n"
33273 msgstr ""
33274
33275 # type: verbatim
33276 #. type: verbatim
33277 #: ../tools/virt-win-reg.pl:49
33278 #, no-wrap
33279 msgid ""
33280 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33281 "\n"
33282 msgstr ""
33283
33284 #. type: textblock
33285 #: ../tools/virt-win-reg.pl:53
33286 msgid ""
33287 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
33288 "virtual machines.  If you do this, you I<will> get irreversible disk "
33289 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
33290 "but doesn't catch all cases."
33291 msgstr ""
33292
33293 #. type: textblock
33294 #: ../tools/virt-win-reg.pl:58
33295 msgid ""
33296 "Modifying the Windows Registry is an inherently risky operation.  The format "
33297 "is deliberately obscure and undocumented, and Registry changes can leave the "
33298 "system unbootable.  Therefore when using the I<--merge> option, make sure "
33299 "you have a reliable backup first."
33300 msgstr ""
33301
33302 # type: textblock
33303 #. type: textblock
33304 #: ../tools/virt-win-reg.pl:65
33305 msgid ""
33306 "This program can export and merge Windows Registry entries from a Windows "
33307 "guest."
33308 msgstr ""
33309
33310 # type: textblock
33311 #. type: textblock
33312 #: ../tools/virt-win-reg.pl:68
33313 msgid ""
33314 "The first parameter is the libvirt guest name or the raw disk image of a "
33315 "Windows guest."
33316 msgstr ""
33317
33318 #. type: textblock
33319 #: ../tools/virt-win-reg.pl:71
33320 msgid ""
33321 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
33322 "exported (recursively).  For example:"
33323 msgstr ""
33324
33325 # type: verbatim
33326 #. type: verbatim
33327 #: ../tools/virt-win-reg.pl:74
33328 #, no-wrap
33329 msgid ""
33330 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33331 "\n"
33332 msgstr ""
33333
33334 # type: textblock
33335 #. type: textblock
33336 #: ../tools/virt-win-reg.pl:76
33337 msgid ""
33338 "You can also display single values from within registry keys, for example:"
33339 msgstr ""
33340
33341 # type: verbatim
33342 #. type: verbatim
33343 #: ../tools/virt-win-reg.pl:79
33344 #, no-wrap
33345 msgid ""
33346 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33347 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33348 " Windows 7 Enterprise\n"
33349 "\n"
33350 msgstr ""
33351
33352 #. type: textblock
33353 #: ../tools/virt-win-reg.pl:83
33354 msgid ""
33355 "With I<--merge>, you can merge a textual regedit file into the Windows "
33356 "Registry:"
33357 msgstr ""
33358
33359 # type: verbatim
33360 #. type: verbatim
33361 #: ../tools/virt-win-reg.pl:86
33362 #, no-wrap
33363 msgid ""
33364 " $ virt-win-reg --merge Windows7 changes.reg\n"
33365 "\n"
33366 msgstr ""
33367
33368 # type: =head2
33369 #. type: =head1
33370 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33371 msgid "NOTE"
33372 msgstr ""
33373
33374 # type: textblock
33375 #. type: textblock
33376 #: ../tools/virt-win-reg.pl:90
33377 msgid ""
33378 "This program is only meant for simple access to the registry.  If you want "
33379 "to do complicated things with the registry, we suggest you download the "
33380 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33381 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33382 "L<hivexregedit(1)>."
33383 msgstr ""
33384
33385 # type: =item
33386 #. type: =item
33387 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33388 msgid "B<--debug>"
33389 msgstr ""
33390
33391 # type: textblock
33392 #. type: textblock
33393 #: ../tools/virt-win-reg.pl:122
33394 msgid "Enable debugging messages."
33395 msgstr ""
33396
33397 # type: =item
33398 #. type: =item
33399 #: ../tools/virt-win-reg.pl:157
33400 msgid "B<--merge>"
33401 msgstr ""
33402
33403 # type: textblock
33404 #. type: textblock
33405 #: ../tools/virt-win-reg.pl:159
33406 msgid ""
33407 "In merge mode, this merges a textual regedit file into the Windows Registry "
33408 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
33409 "displays or exports Registry entries instead."
33410 msgstr ""
33411
33412 #. type: textblock
33413 #: ../tools/virt-win-reg.pl:163
33414 msgid ""
33415 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
33416 "result in disk corruption.  However exporting (without this flag)  is always "
33417 "safe."
33418 msgstr ""
33419
33420 # type: =item
33421 #. type: =item
33422 #: ../tools/virt-win-reg.pl:171
33423 msgid "B<--encoding> UTF-16LE|ASCII"
33424 msgstr ""
33425
33426 # type: textblock
33427 #. type: textblock
33428 #: ../tools/virt-win-reg.pl:173
33429 msgid ""
33430 "When merging (only), you may need to specify the encoding for strings to be "
33431 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
33432 "(3)/ENCODING STRINGS>."
33433 msgstr ""
33434
33435 # type: textblock
33436 #. type: textblock
33437 #: ../tools/virt-win-reg.pl:177
33438 msgid ""
33439 "The default is to use UTF-16LE, which should work with recent versions of "
33440 "Windows."
33441 msgstr ""
33442
33443 # type: =head2
33444 #. type: =head1
33445 #: ../tools/virt-win-reg.pl:402
33446 msgid "SUPPORTED SYSTEMS"
33447 msgstr ""
33448
33449 # type: textblock
33450 #. type: textblock
33451 #: ../tools/virt-win-reg.pl:404
33452 msgid ""
33453 "The program currently supports Windows NT-derived guests starting with "
33454 "Windows XP through to at least Windows 7."
33455 msgstr ""
33456
33457 # type: textblock
33458 #. type: textblock
33459 #: ../tools/virt-win-reg.pl:407
33460 msgid ""
33461 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33462 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33463 "and C<HKEY_USERS\\.DEFAULT>."
33464 msgstr ""
33465
33466 # type: textblock
33467 #. type: textblock
33468 #: ../tools/virt-win-reg.pl:411
33469 msgid ""
33470 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33471 "C<HKEY_USERS>."
33472 msgstr ""
33473
33474 # type: textblock
33475 #. type: textblock
33476 #: ../tools/virt-win-reg.pl:414
33477 msgid ""
33478 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33479 "time."
33480 msgstr ""
33481
33482 # type: =head2
33483 #. type: =head1
33484 #: ../tools/virt-win-reg.pl:417
33485 msgid "ENCODING"
33486 msgstr ""
33487
33488 # type: textblock
33489 #. type: textblock
33490 #: ../tools/virt-win-reg.pl:419
33491 msgid ""
33492 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33493 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
33494 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
33495 "Windows-style line endings, you may need to reencode the whole file before "
33496 "or after processing."
33497 msgstr ""
33498
33499 #. type: textblock
33500 #: ../tools/virt-win-reg.pl:425
33501 msgid ""
33502 "To reencode a file from Windows format to Linux (before processing it with "
33503 "the I<--merge> option), you would do something like this:"
33504 msgstr ""
33505
33506 # type: verbatim
33507 #. type: verbatim
33508 #: ../tools/virt-win-reg.pl:428
33509 #, no-wrap
33510 msgid ""
33511 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33512 "\n"
33513 msgstr ""
33514
33515 # type: textblock
33516 #. type: textblock
33517 #: ../tools/virt-win-reg.pl:430
33518 msgid ""
33519 "To go in the opposite direction, after exporting and before sending the file "
33520 "to a Windows user, do something like this:"
33521 msgstr ""
33522
33523 # type: verbatim
33524 #. type: verbatim
33525 #: ../tools/virt-win-reg.pl:433
33526 #, no-wrap
33527 msgid ""
33528 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33529 "\n"
33530 msgstr ""
33531
33532 # type: textblock
33533 #. type: textblock
33534 #: ../tools/virt-win-reg.pl:435
33535 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33536 msgstr ""
33537
33538 # type: textblock
33539 #. type: textblock
33540 #: ../tools/virt-win-reg.pl:437
33541 msgid ""
33542 "If you are unsure about the current encoding, use the L<file(1)> command.  "
33543 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33544 "style (CRLF) line endings, like this:"
33545 msgstr ""
33546
33547 # type: verbatim
33548 #. type: verbatim
33549 #: ../tools/virt-win-reg.pl:441
33550 #, no-wrap
33551 msgid ""
33552 " $ file software.reg\n"
33553 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33554 " with CRLF line terminators\n"
33555 "\n"
33556 msgstr ""
33557
33558 #. type: textblock
33559 #: ../tools/virt-win-reg.pl:445
33560 msgid "This file would need conversion before you could I<--merge> it."
33561 msgstr ""
33562
33563 # type: =head2
33564 #. type: =head1
33565 #: ../tools/virt-win-reg.pl:447
33566 msgid "CurrentControlSet etc."
33567 msgstr ""
33568
33569 # type: textblock
33570 #. type: textblock
33571 #: ../tools/virt-win-reg.pl:449
33572 msgid ""
33573 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33574 "Registry at the level of the hive file, and therefore you cannot modify "
33575 "these."
33576 msgstr ""
33577
33578 # type: textblock
33579 #. type: textblock
33580 #: ../tools/virt-win-reg.pl:453
33581 msgid ""
33582 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
33583 "circumstances it might refer to another control set.  The way to find out is "
33584 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33585 msgstr ""
33586
33587 # type: verbatim
33588 #. type: verbatim
33589 #: ../tools/virt-win-reg.pl:457
33590 #, no-wrap
33591 msgid ""
33592 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33593 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33594 " \"Current\"=dword:00000001\n"
33595 " \"Default\"=dword:00000001\n"
33596 " \"Failed\"=dword:00000000\n"
33597 " \"LastKnownGood\"=dword:00000002\n"
33598 "\n"
33599 msgstr ""
33600
33601 # type: textblock
33602 #. type: textblock
33603 #: ../tools/virt-win-reg.pl:464
33604 msgid "\"Current\" is the one which Windows will choose when it boots."
33605 msgstr ""
33606
33607 # type: textblock
33608 #. type: textblock
33609 #: ../tools/virt-win-reg.pl:466
33610 msgid ""
33611 "Similarly, other C<Current...> keys in the path may need to be replaced."
33612 msgstr ""
33613
33614 # type: =head1
33615 #. type: =head1
33616 #: ../tools/virt-win-reg.pl:469
33617 msgid "WINDOWS TIPS"
33618 msgstr ""
33619
33620 # type: textblock
33621 #. type: textblock
33622 #: ../tools/virt-win-reg.pl:471
33623 msgid ""
33624 "Note that some of these tips modify the guest disk image.  The guest I<must> "
33625 "be shut off, else you will get disk corruption."
33626 msgstr ""
33627
33628 # type: =head2
33629 #. type: =head2
33630 #: ../tools/virt-win-reg.pl:474
33631 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33632 msgstr ""
33633
33634 # type: textblock
33635 #. type: textblock
33636 #: ../tools/virt-win-reg.pl:476
33637 msgid ""
33638 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
33639 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
33640 "is uploaded into C<C:\\>:"
33641 msgstr ""
33642
33643 # type: verbatim
33644 #. type: verbatim
33645 #: ../tools/virt-win-reg.pl:480
33646 #, no-wrap
33647 msgid ""
33648 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33649 "\n"
33650 msgstr ""
33651
33652 # type: textblock
33653 #. type: textblock
33654 #: ../tools/virt-win-reg.pl:482
33655 msgid "Prepare a regedit file containing the registry change:"
33656 msgstr ""
33657
33658 # type: verbatim
33659 #. type: verbatim
33660 #: ../tools/virt-win-reg.pl:484
33661 #, no-wrap
33662 msgid ""
33663 " cat > test.reg <<'EOF'\n"
33664 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33665 " \"Test\"=\"c:\\\\test.bat\"\n"
33666 " EOF\n"
33667 "\n"
33668 msgstr ""
33669
33670 # type: textblock
33671 #. type: textblock
33672 #: ../tools/virt-win-reg.pl:489
33673 msgid ""
33674 "In this example we use the key C<RunOnce> which means that the script will "
33675 "run precisely once when the first user logs in.  If you want it to run every "
33676 "time a user logs in, replace C<RunOnce> with C<Run>."
33677 msgstr ""
33678
33679 # type: textblock
33680 #. type: textblock
33681 #: ../tools/virt-win-reg.pl:493
33682 msgid "Now update the registry:"
33683 msgstr ""
33684
33685 # type: verbatim
33686 #. type: verbatim
33687 #: ../tools/virt-win-reg.pl:495
33688 #, no-wrap
33689 msgid ""
33690 " virt-win-reg --merge WindowsGuest test.reg\n"
33691 "\n"
33692 msgstr ""
33693
33694 # type: =head2
33695 #. type: =head2
33696 #: ../tools/virt-win-reg.pl:497
33697 msgid "INSTALLING A SERVICE"
33698 msgstr ""
33699
33700 # type: textblock
33701 #. type: textblock
33702 #: ../tools/virt-win-reg.pl:499
33703 msgid ""
33704 "This section assumes you are familiar with Windows services, and you either "
33705 "have a program which handles the Windows Service Control Protocol directly "
33706 "or you want to run any program using a service wrapper like SrvAny or the "
33707 "free RHSrvAny."
33708 msgstr ""
33709
33710 # type: textblock
33711 #. type: textblock
33712 #: ../tools/virt-win-reg.pl:504
33713 msgid ""
33714 "First upload the program and optionally the service wrapper.  In this case "
33715 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33716 msgstr ""
33717
33718 # type: verbatim
33719 #. type: verbatim
33720 #: ../tools/virt-win-reg.pl:508
33721 #, no-wrap
33722 msgid ""
33723 " guestfish -i -d WindowsGuest <<EOF\n"
33724 "   upload rhsrvany.exe /rhsrvany.exe\n"
33725 "   upload test.exe /test.exe\n"
33726 " EOF\n"
33727 "\n"
33728 msgstr ""
33729
33730 # type: textblock
33731 #. type: textblock
33732 #: ../tools/virt-win-reg.pl:513
33733 msgid ""
33734 "Prepare a regedit file containing the registry changes.  In this example, "
33735 "the first registry change is needed for the service itself or the service "
33736 "wrapper (if used).  The second registry change is only needed because I am "
33737 "using the RHSrvAny service wrapper."
33738 msgstr ""
33739
33740 # type: verbatim
33741 #. type: verbatim
33742 #: ../tools/virt-win-reg.pl:518
33743 #, no-wrap
33744 msgid ""
33745 " cat > service.reg <<'EOF'\n"
33746 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33747 " \"Type\"=dword:00000010\n"
33748 " \"Start\"=dword:00000002\n"
33749 " \"ErrorControl\"=dword:00000001\n"
33750 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33751 " \"DisplayName\"=\"RHSrvAny\"\n"
33752 " \"ObjectName\"=\"NetworkService\"\n"
33753 " \n"
33754 msgstr ""
33755
33756 # type: verbatim
33757 #. type: verbatim
33758 #: ../tools/virt-win-reg.pl:527
33759 #, no-wrap
33760 msgid ""
33761 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33762 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33763 " \"PWD\"=\"c:\\\\Temp\"\n"
33764 " EOF\n"
33765 "\n"
33766 msgstr ""
33767
33768 # type: textblock
33769 #. type: textblock
33770 #: ../tools/virt-win-reg.pl:538
33771 msgid ""
33772 "For use of C<ControlSet001> see the section above in this manual page.  You "
33773 "may need to adjust this according to the control set that is in use by the "
33774 "guest."
33775 msgstr ""
33776
33777 # type: textblock
33778 #. type: textblock
33779 #: ../tools/virt-win-reg.pl:544
33780 msgid ""
33781 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
33782 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33783 "privileged account."
33784 msgstr ""
33785
33786 # type: textblock
33787 #. type: textblock
33788 #: ../tools/virt-win-reg.pl:550
33789 msgid ""
33790 "For the meaning of the magic numbers, see this Microsoft KB article: "
33791 "L<http://support.microsoft.com/kb/103000>."
33792 msgstr ""
33793
33794 # type: textblock
33795 #. type: textblock
33796 #: ../tools/virt-win-reg.pl:555
33797 msgid "Update the registry:"
33798 msgstr ""
33799
33800 # type: verbatim
33801 #. type: verbatim
33802 #: ../tools/virt-win-reg.pl:557
33803 #, no-wrap
33804 msgid ""
33805 " virt-win-reg --merge WindowsGuest service.reg\n"
33806 "\n"
33807 msgstr ""
33808
33809 # type: textblock
33810 #. type: textblock
33811 #: ../tools/virt-win-reg.pl:561
33812 msgid ""
33813 "Be careful when passing parameters containing C<\\> (backslash) in the "
33814 "shell.  Usually you will have to use 'single quotes' or double backslashes "
33815 "(but not both) to protect them from the shell."
33816 msgstr ""
33817
33818 # type: textblock
33819 #. type: textblock
33820 #: ../tools/virt-win-reg.pl:565
33821 msgid "Paths and value names are case-insensitive."
33822 msgstr ""
33823
33824 # type: textblock
33825 #. type: textblock
33826 #: ../tools/virt-win-reg.pl:574
33827 msgid ""
33828 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33829 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33830 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33831 msgstr ""
33832
33833 # type: textblock
33834 #. type: textblock
33835 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33836 msgid ""
33837 "When reporting bugs, please enable debugging and capture the I<complete> "
33838 "output:"
33839 msgstr ""
33840
33841 # type: verbatim
33842 #. type: verbatim
33843 #: ../tools/virt-win-reg.pl:592
33844 #, no-wrap
33845 msgid ""
33846 " export LIBGUESTFS_DEBUG=1\n"
33847 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33848 "\n"
33849 msgstr ""
33850
33851 # type: textblock
33852 #. type: textblock
33853 #: ../tools/virt-win-reg.pl:595
33854 msgid ""
33855 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33856 "redhat.com/>"
33857 msgstr ""
33858
33859 # type: textblock
33860 #. type: textblock
33861 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
33862 msgid "Copyright (C) 2010 Red Hat Inc."
33863 msgstr ""
33864
33865 # type: textblock
33866 #. type: textblock
33867 #: ../tools/virt-list-filesystems.pl:32
33868 msgid ""
33869 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
33870 msgstr ""
33871
33872 # type: verbatim
33873 #. type: verbatim
33874 #: ../tools/virt-list-filesystems.pl:36
33875 #, no-wrap
33876 msgid ""
33877 " virt-list-filesystems [--options] domname\n"
33878 "\n"
33879 msgstr ""
33880
33881 # type: verbatim
33882 #. type: verbatim
33883 #: ../tools/virt-list-filesystems.pl:38
33884 #, no-wrap
33885 msgid ""
33886 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
33887 "\n"
33888 msgstr ""
33889
33890 # type: textblock
33891 #. type: textblock
33892 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
33893 msgid ""
33894 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
33895 "replacement."
33896 msgstr ""
33897
33898 # type: textblock
33899 #. type: textblock
33900 #: ../tools/virt-list-filesystems.pl:45
33901 msgid ""
33902 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
33903 "are contained in a virtual machine or disk image."
33904 msgstr ""
33905
33906 # type: textblock
33907 #. type: textblock
33908 #: ../tools/virt-list-filesystems.pl:49
33909 msgid ""
33910 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
33911 "functionality.  For more complex cases you should look at the L<guestfish(1)"
33912 "> tool."
33913 msgstr ""
33914
33915 # type: =item
33916 #. type: =item
33917 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
33918 msgid "B<-l> | B<--long>"
33919 msgstr ""
33920
33921 # type: textblock
33922 #. type: textblock
33923 #: ../tools/virt-list-filesystems.pl:108
33924 msgid ""
33925 "With this option, C<virt-list-filesystems> displays the type of each "
33926 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
33927 msgstr ""
33928
33929 # type: =item
33930 #. type: =item
33931 #: ../tools/virt-list-filesystems.pl:115
33932 msgid "B<-a> | B<--all>"
33933 msgstr ""
33934
33935 # type: textblock
33936 #. type: textblock
33937 #: ../tools/virt-list-filesystems.pl:117
33938 msgid ""
33939 "Normally we only show mountable filesystems.  If this option is given then "
33940 "swap devices are shown too."
33941 msgstr ""
33942
33943 # type: textblock
33944 #. type: textblock
33945 #: ../tools/virt-list-filesystems.pl:191
33946 msgid ""
33947 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
33948 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
33949 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33950 msgstr ""
33951
33952 # type: textblock
33953 #. type: textblock
33954 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
33955 msgid "Copyright (C) 2009 Red Hat Inc."
33956 msgstr ""
33957
33958 # type: textblock
33959 #. type: textblock
33960 #: ../tools/virt-tar.pl:33
33961 msgid "virt-tar - Extract or upload files to a virtual machine"
33962 msgstr ""
33963
33964 # type: verbatim
33965 #. type: verbatim
33966 #: ../tools/virt-tar.pl:37
33967 #, no-wrap
33968 msgid ""
33969 " virt-tar [--options] -x domname directory tarball\n"
33970 "\n"
33971 msgstr ""
33972
33973 # type: verbatim
33974 #. type: verbatim
33975 #: ../tools/virt-tar.pl:39
33976 #, no-wrap
33977 msgid ""
33978 " virt-tar [--options] -u domname tarball directory\n"
33979 "\n"
33980 msgstr ""
33981
33982 # type: verbatim
33983 #. type: verbatim
33984 #: ../tools/virt-tar.pl:41
33985 #, no-wrap
33986 msgid ""
33987 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
33988 "\n"
33989 msgstr ""
33990
33991 # type: verbatim
33992 #. type: verbatim
33993 #: ../tools/virt-tar.pl:43
33994 #, no-wrap
33995 msgid ""
33996 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
33997 "\n"
33998 msgstr ""
33999
34000 #. type: textblock
34001 #: ../tools/virt-tar.pl:47
34002 msgid ""
34003 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
34004 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
34005 msgstr ""
34006
34007 # type: textblock
34008 #. type: textblock
34009 #: ../tools/virt-tar.pl:52
34010 msgid "Download C</home> from the VM into a local tarball:"
34011 msgstr ""
34012
34013 # type: verbatim
34014 #. type: verbatim
34015 #: ../tools/virt-tar.pl:54
34016 #, no-wrap
34017 msgid ""
34018 " virt-tar -x domname /home home.tar\n"
34019 "\n"
34020 msgstr ""
34021
34022 # type: verbatim
34023 #. type: verbatim
34024 #: ../tools/virt-tar.pl:56
34025 #, no-wrap
34026 msgid ""
34027 " virt-tar -zx domname /home home.tar.gz\n"
34028 "\n"
34029 msgstr ""
34030
34031 # type: textblock
34032 #. type: textblock
34033 #: ../tools/virt-tar.pl:58
34034 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
34035 msgstr ""
34036
34037 # type: verbatim
34038 #. type: verbatim
34039 #: ../tools/virt-tar.pl:60
34040 #, no-wrap
34041 msgid ""
34042 " virt-tar -u domname uploadstuff.tar /tmp\n"
34043 "\n"
34044 msgstr ""
34045
34046 # type: verbatim
34047 #. type: verbatim
34048 #: ../tools/virt-tar.pl:62
34049 #, no-wrap
34050 msgid ""
34051 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
34052 "\n"
34053 msgstr ""
34054
34055 #. type: textblock
34056 #: ../tools/virt-tar.pl:66
34057 msgid ""
34058 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
34059 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
34060 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
34061 msgstr ""
34062
34063 #. type: textblock
34064 #: ../tools/virt-tar.pl:71
34065 msgid ""
34066 "You can use I<-x> (extract) on live virtual machines, but you might get "
34067 "inconsistent results or errors if there is filesystem activity inside the "
34068 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
34069 "work, but the only way to guarantee consistent results is if the virtual "
34070 "machine is shut down."
34071 msgstr ""
34072
34073 # type: textblock
34074 #. type: textblock
34075 #: ../tools/virt-tar.pl:79
34076 msgid ""
34077 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
34078 "parts of a guest filesystem.  There are many possibilities: making backups, "
34079 "uploading data files, snooping on guest activity, fixing or customizing "
34080 "guests, etc."
34081 msgstr ""
34082
34083 # type: textblock
34084 #. type: textblock
34085 #: ../tools/virt-tar.pl:84
34086 msgid ""
34087 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
34088 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
34089 "should look at the L<guestfish(1)> tool."
34090 msgstr ""
34091
34092 #. type: textblock
34093 #: ../tools/virt-tar.pl:88
34094 msgid ""
34095 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
34096 "its contents (recursively) from the virtual machine into a local tarball.  "
34097 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
34098 "virtual machine.  You cannot use these two options together."
34099 msgstr ""
34100
34101 #. type: textblock
34102 #: ../tools/virt-tar.pl:94
34103 msgid ""
34104 "In addition, you may need to use the I<-z> (gZip) option to enable "
34105 "compression.  When uploading, you have to specify I<-z> if the upload file "
34106 "is compressed because virt-tar won't detect this on its own."
34107 msgstr ""
34108
34109 # type: textblock
34110 #. type: textblock
34111 #: ../tools/virt-tar.pl:98
34112 msgid ""
34113 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
34114 "example it cannot do PKZip files or bzip2 compression.  If you want that "
34115 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
34116 "the L<libguestfs(3)> API)."
34117 msgstr ""
34118
34119 # type: =item
34120 #. type: =item
34121 #: ../tools/virt-tar.pl:156
34122 msgid "B<-x> | B<--extract> | B<--download>"
34123 msgstr ""
34124
34125 # type: =item
34126 #. type: =item
34127 #: ../tools/virt-tar.pl:158
34128 msgid "B<-u> | B<--upload>"
34129 msgstr ""
34130
34131 #. type: textblock
34132 #: ../tools/virt-tar.pl:160
34133 msgid ""
34134 "Use I<-x> to extract (download) a directory from a virtual machine to a "
34135 "local tarball."
34136 msgstr ""
34137
34138 #. type: textblock
34139 #: ../tools/virt-tar.pl:163
34140 msgid ""
34141 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
34142 "Please read the L</WARNING> section above before using this option."
34143 msgstr ""
34144
34145 # type: textblock
34146 #. type: textblock
34147 #: ../tools/virt-tar.pl:167
34148 msgid "You must specify exactly one of these options."
34149 msgstr ""
34150
34151 # type: =item
34152 #. type: =item
34153 #: ../tools/virt-tar.pl:173
34154 msgid "B<-z> | B<--gzip>"
34155 msgstr ""
34156
34157 # type: textblock
34158 #. type: textblock
34159 #: ../tools/virt-tar.pl:175
34160 msgid "Specify that the input or output tarball is gzip-compressed."
34161 msgstr ""
34162
34163 #. type: textblock
34164 #: ../tools/virt-tar.pl:288
34165 msgid ""
34166 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
34167 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
34168 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
34169 "org/>."
34170 msgstr ""
34171
34172 # type: textblock
34173 #. type: textblock
34174 #: ../tools/virt-make-fs.pl:37
34175 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
34176 msgstr ""
34177
34178 # type: verbatim
34179 #. type: verbatim
34180 #: ../tools/virt-make-fs.pl:41
34181 #, no-wrap
34182 msgid ""
34183 " virt-make-fs [--options] input.tar output.img\n"
34184 "\n"
34185 msgstr ""
34186
34187 # type: verbatim
34188 #. type: verbatim
34189 #: ../tools/virt-make-fs.pl:43
34190 #, no-wrap
34191 msgid ""
34192 " virt-make-fs [--options] input.tar.gz output.img\n"
34193 "\n"
34194 msgstr ""
34195
34196 # type: verbatim
34197 #. type: verbatim
34198 #: ../tools/virt-make-fs.pl:45
34199 #, no-wrap
34200 msgid ""
34201 " virt-make-fs [--options] directory output.img\n"
34202 "\n"
34203 msgstr ""
34204
34205 # type: textblock
34206 #. type: textblock
34207 #: ../tools/virt-make-fs.pl:49
34208 msgid ""
34209 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
34210 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
34211 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
34212 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
34213 "you want to attach these filesystems to existing virtual machines (eg. to "
34214 "import large amounts of read-only data to a VM)."
34215 msgstr ""
34216
34217 # type: textblock
34218 #. type: textblock
34219 #: ../tools/virt-make-fs.pl:57
34220 msgid "Basic usage is:"
34221 msgstr ""
34222
34223 # type: verbatim
34224 #. type: verbatim
34225 #: ../tools/virt-make-fs.pl:59
34226 #, no-wrap
34227 msgid ""
34228 " virt-make-fs input output\n"
34229 "\n"
34230 msgstr ""
34231
34232 # type: textblock
34233 #. type: textblock
34234 #: ../tools/virt-make-fs.pl:61
34235 msgid ""
34236 "where C<input> is either a directory containing files that you want to add, "
34237 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34238 "C<output> is a disk image.  The input type is detected automatically.  The "
34239 "output disk image defaults to a raw ext2 image unless you specify extra "
34240 "flags (see L</OPTIONS> below)."
34241 msgstr ""
34242
34243 # type: =head2
34244 #. type: =head2
34245 #: ../tools/virt-make-fs.pl:67
34246 msgid "EXTRA SPACE"
34247 msgstr ""
34248
34249 #. type: textblock
34250 #: ../tools/virt-make-fs.pl:69
34251 msgid ""
34252 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34253 "the files that it contains, but might have extra space.  Depending on how "
34254 "you are going to use the output, you might think this extra space is wasted "
34255 "and want to minimize it, or you might want to leave space so that more files "
34256 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
34257 "but you can use the I<--size> flag to leave space in the filesystem if you "
34258 "want it."
34259 msgstr ""
34260
34261 #. type: textblock
34262 #: ../tools/virt-make-fs.pl:77
34263 msgid ""
34264 "An alternative way to leave extra space but not make the output image any "
34265 "bigger is to use an alternative disk image format (instead of the default "
34266 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
34267 "image format (check your hypervisor supports this before using it).  This "
34268 "allows you to choose a large I<--size> but the extra space won't actually be "
34269 "allocated in the image until you try to store something in it."
34270 msgstr ""
34271
34272 #. type: textblock
34273 #: ../tools/virt-make-fs.pl:85
34274 msgid ""
34275 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34276 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34277 "to build another image from scratch."
34278 msgstr ""
34279
34280 # type: =head3
34281 #. type: =head3
34282 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34283 #: ../tools/virt-make-fs.pl:142
34284 msgid "EXAMPLE"
34285 msgstr ""
34286
34287 # type: verbatim
34288 #. type: verbatim
34289 #: ../tools/virt-make-fs.pl:91
34290 #, no-wrap
34291 msgid ""
34292 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34293 "\n"
34294 msgstr ""
34295
34296 # type: =head2
34297 #. type: =head2
34298 #: ../tools/virt-make-fs.pl:93
34299 msgid "FILESYSTEM TYPE"
34300 msgstr ""
34301
34302 # type: textblock
34303 #. type: textblock
34304 #: ../tools/virt-make-fs.pl:95
34305 msgid ""
34306 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
34307 "libguestfs supports can be used (but I<not> read-only formats like "
34308 "ISO9660).  Here are some of the more common choices:"
34309 msgstr ""
34310
34311 # type: =item
34312 #. type: =item
34313 #: ../tools/virt-make-fs.pl:101
34314 msgid "I<ext3>"
34315 msgstr ""
34316
34317 # type: textblock
34318 #. type: textblock
34319 #: ../tools/virt-make-fs.pl:103
34320 msgid ""
34321 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
34322 "you are not going to use the filesystem in a way that requires the journal, "
34323 "then this is just wasted overhead."
34324 msgstr ""
34325
34326 # type: =item
34327 #. type: =item
34328 #: ../tools/virt-make-fs.pl:107
34329 msgid "I<ntfs> or I<vfat>"
34330 msgstr ""
34331
34332 # type: textblock
34333 #. type: textblock
34334 #: ../tools/virt-make-fs.pl:109
34335 msgid "Useful if exporting data to a Windows guest."
34336 msgstr ""
34337
34338 # type: textblock
34339 #. type: textblock
34340 #: ../tools/virt-make-fs.pl:111
34341 msgid ""
34342 "I<Note for vfat>: The tar archive or local directory must only contain files "
34343 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
34344 "program running within libguestfs is unable to change the ownership of non-"
34345 "root files, since vfat itself does not support this."
34346 msgstr ""
34347
34348 # type: =item
34349 #. type: =item
34350 #: ../tools/virt-make-fs.pl:116
34351 msgid "I<minix>"
34352 msgstr ""
34353
34354 # type: textblock
34355 #. type: textblock
34356 #: ../tools/virt-make-fs.pl:118
34357 msgid ""
34358 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34359 "total filesystem size."
34360 msgstr ""
34361
34362 # type: verbatim
34363 #. type: verbatim
34364 #: ../tools/virt-make-fs.pl:125
34365 #, no-wrap
34366 msgid ""
34367 " virt-make-fs --type=minix input minixfs.img\n"
34368 "\n"
34369 msgstr ""
34370
34371 # type: =head2
34372 #. type: =head2
34373 #: ../tools/virt-make-fs.pl:127
34374 msgid "TO PARTITION OR NOT TO PARTITION"
34375 msgstr ""
34376
34377 # type: textblock
34378 #. type: textblock
34379 #: ../tools/virt-make-fs.pl:129
34380 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34381 msgstr ""
34382
34383 # type: textblock
34384 #. type: textblock
34385 #: ../tools/virt-make-fs.pl:131
34386 msgid ""
34387 "Adding a partition can make the disk image more compatible with certain "
34388 "virtualized operating systems which don't expect to see a filesystem "
34389 "directly located on a block device (Linux doesn't care and will happily "
34390 "handle both types)."
34391 msgstr ""
34392
34393 # type: textblock
34394 #. type: textblock
34395 #: ../tools/virt-make-fs.pl:136
34396 msgid ""
34397 "On the other hand, if you have a partition table then the output image is no "
34398 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
34399 "directly on a partitioned disk image.  (However libguestfs tools such as "
34400 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34401 msgstr ""
34402
34403 # type: textblock
34404 #. type: textblock
34405 #: ../tools/virt-make-fs.pl:144
34406 msgid "Add an MBR partition:"
34407 msgstr ""
34408
34409 # type: verbatim
34410 #. type: verbatim
34411 #: ../tools/virt-make-fs.pl:146
34412 #, no-wrap
34413 msgid ""
34414 " virt-make-fs --partition -- input disk.img\n"
34415 "\n"
34416 msgstr ""
34417
34418 # type: textblock
34419 #. type: textblock
34420 #: ../tools/virt-make-fs.pl:148
34421 msgid ""
34422 "If the output disk image could be terabyte-sized or larger, it's better to "
34423 "use an EFI/GPT-compatible partition table:"
34424 msgstr ""
34425
34426 # type: verbatim
34427 #. type: verbatim
34428 #: ../tools/virt-make-fs.pl:151
34429 #, no-wrap
34430 msgid ""
34431 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34432 "\n"
34433 msgstr ""
34434
34435 # type: textblock
34436 #. type: textblock
34437 #: ../tools/virt-make-fs.pl:179
34438 msgid "Enable debugging information."
34439 msgstr ""
34440
34441 # type: =item
34442 #. type: =item
34443 #: ../tools/virt-make-fs.pl:185
34444 msgid "B<--size=E<lt>NE<gt>>"
34445 msgstr ""
34446
34447 # type: =item
34448 #. type: =item
34449 #: ../tools/virt-make-fs.pl:187
34450 msgid "B<--size=+E<lt>NE<gt>>"
34451 msgstr ""
34452
34453 # type: =item
34454 #. type: =item
34455 #: ../tools/virt-make-fs.pl:189
34456 msgid "B<-s E<lt>NE<gt>>"
34457 msgstr ""
34458
34459 # type: =item
34460 #. type: =item
34461 #: ../tools/virt-make-fs.pl:191
34462 msgid "B<-s +E<lt>NE<gt>>"
34463 msgstr ""
34464
34465 #. type: textblock
34466 #: ../tools/virt-make-fs.pl:193
34467 msgid ""
34468 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
34469 msgstr ""
34470
34471 # type: textblock
34472 #. type: textblock
34473 #: ../tools/virt-make-fs.pl:196
34474 msgid ""
34475 "If this option is I<not> given, then the output image will be just large "
34476 "enough to contain all the files, with not much wasted space."
34477 msgstr ""
34478
34479 # type: textblock
34480 #. type: textblock
34481 #: ../tools/virt-make-fs.pl:199
34482 msgid ""
34483 "To choose a fixed size output disk, specify an absolute number followed by b/"
34484 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34485 "Petabytes or Exabytes.  This must be large enough to contain all the input "
34486 "files, else you will get an error."
34487 msgstr ""
34488
34489 #. type: textblock
34490 #: ../tools/virt-make-fs.pl:204
34491 msgid ""
34492 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34493 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34494 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
34495 "the input files, and (approximately) an extra 200 MB free space."
34496 msgstr ""
34497
34498 # type: textblock
34499 #. type: textblock
34500 #: ../tools/virt-make-fs.pl:210
34501 msgid ""
34502 "Note that virt-make-fs estimates free space, and therefore will not produce "
34503 "filesystems containing precisely the free space requested.  (It is much more "
34504 "expensive and time-consuming to produce a filesystem which has precisely the "
34505 "desired free space)."
34506 msgstr ""
34507
34508 # type: =item
34509 #. type: =item
34510 #: ../tools/virt-make-fs.pl:219
34511 msgid "B<--format=E<lt>fmtE<gt>>"
34512 msgstr ""
34513
34514 # type: =item
34515 #. type: =item
34516 #: ../tools/virt-make-fs.pl:221
34517 msgid "B<-F E<lt>fmtE<gt>>"
34518 msgstr ""
34519
34520 # type: textblock
34521 #. type: textblock
34522 #: ../tools/virt-make-fs.pl:223
34523 msgid "Choose the output disk image format."
34524 msgstr ""
34525
34526 # type: textblock
34527 #. type: textblock
34528 #: ../tools/virt-make-fs.pl:225
34529 msgid "The default is C<raw> (raw disk image)."
34530 msgstr ""
34531
34532 # type: textblock
34533 #. type: textblock
34534 #: ../tools/virt-make-fs.pl:227
34535 msgid ""
34536 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
34537 "that would really make sense here is C<qcow2>."
34538 msgstr ""
34539
34540 # type: =item
34541 #. type: =item
34542 #: ../tools/virt-make-fs.pl:234
34543 msgid "B<--type=E<lt>fsE<gt>>"
34544 msgstr ""
34545
34546 # type: =item
34547 #. type: =item
34548 #: ../tools/virt-make-fs.pl:236
34549 msgid "B<-t E<lt>fsE<gt>>"
34550 msgstr ""
34551
34552 # type: textblock
34553 #. type: textblock
34554 #: ../tools/virt-make-fs.pl:238
34555 msgid "Choose the output filesystem type."
34556 msgstr ""
34557
34558 # type: textblock
34559 #. type: textblock
34560 #: ../tools/virt-make-fs.pl:240
34561 msgid "The default is C<ext2>."
34562 msgstr ""
34563
34564 # type: textblock
34565 #. type: textblock
34566 #: ../tools/virt-make-fs.pl:242
34567 msgid ""
34568 "Any filesystem which is supported read-write by libguestfs can be used here."
34569 msgstr ""
34570
34571 # type: =item
34572 #. type: =item
34573 #: ../tools/virt-make-fs.pl:249
34574 msgid "B<--partition>"
34575 msgstr ""
34576
34577 # type: =item
34578 #. type: =item
34579 #: ../tools/virt-make-fs.pl:251
34580 msgid "B<--partition=E<lt>parttypeE<gt>>"
34581 msgstr ""
34582
34583 # type: textblock
34584 #. type: textblock
34585 #: ../tools/virt-make-fs.pl:253
34586 msgid ""
34587 "If specified, this flag adds an MBR partition table to the output disk image."
34588 msgstr ""
34589
34590 #. type: textblock
34591 #: ../tools/virt-make-fs.pl:256
34592 msgid ""
34593 "You can change the partition table type, eg. I<--partition=gpt> for large "
34594 "disks."
34595 msgstr ""
34596
34597 #. type: textblock
34598 #: ../tools/virt-make-fs.pl:259
34599 msgid ""
34600 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
34601 "might consider the next parameter to be the partition type.  For example:"
34602 msgstr ""
34603
34604 # type: verbatim
34605 #. type: verbatim
34606 #: ../tools/virt-make-fs.pl:263
34607 #, no-wrap
34608 msgid ""
34609 " virt-make-fs --partition input.tar ...\n"
34610 "\n"
34611 msgstr ""
34612
34613 #. type: textblock
34614 #: ../tools/virt-make-fs.pl:265
34615 msgid ""
34616 "would cause virt-make-fs to think you wanted to use a partition type of "
34617 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
34618 "dash) between options and the input file argument:"
34619 msgstr ""
34620
34621 # type: verbatim
34622 #. type: verbatim
34623 #: ../tools/virt-make-fs.pl:269
34624 #, no-wrap
34625 msgid ""
34626 " virt-make-fs --partition -- input.tar ...\n"
34627 "\n"
34628 msgstr ""
34629
34630 #. type: textblock
34631 #: ../tools/virt-make-fs.pl:541
34632 msgid ""
34633 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34634 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34635 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34636 msgstr ""
34637
34638 # type: verbatim
34639 #. type: verbatim
34640 #: ../tools/virt-make-fs.pl:558
34641 #, no-wrap
34642 msgid ""
34643 " export LIBGUESTFS_DEBUG=1\n"
34644 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34645 "\n"
34646 msgstr ""
34647
34648 # type: textblock
34649 #. type: textblock
34650 #: ../tools/virt-make-fs.pl:561
34651 msgid ""
34652 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34653 "redhat.com/>"
34654 msgstr ""
34655
34656 # type: textblock
34657 #. type: textblock
34658 #: ../tools/virt-list-partitions.pl:32
34659 msgid ""
34660 "virt-list-partitions - List partitions in a virtual machine or disk image"
34661 msgstr ""
34662
34663 # type: verbatim
34664 #. type: verbatim
34665 #: ../tools/virt-list-partitions.pl:36
34666 #, no-wrap
34667 msgid ""
34668 " virt-list-partitions [--options] domname\n"
34669 "\n"
34670 msgstr ""
34671
34672 # type: verbatim
34673 #. type: verbatim
34674 #: ../tools/virt-list-partitions.pl:38
34675 #, no-wrap
34676 msgid ""
34677 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34678 "\n"
34679 msgstr ""
34680
34681 # type: textblock
34682 #. type: textblock
34683 #: ../tools/virt-list-partitions.pl:45
34684 msgid ""
34685 "C<virt-list-partitions> is a command line tool to list the partitions that "
34686 "are contained in a virtual machine or disk image.  It is mainly useful as a "
34687 "first step to using L<virt-resize(1)>."
34688 msgstr ""
34689
34690 # type: textblock
34691 #. type: textblock
34692 #: ../tools/virt-list-partitions.pl:50
34693 msgid ""
34694 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34695 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34696 "> tool."
34697 msgstr ""
34698
34699 # type: =item
34700 #. type: =item
34701 #: ../tools/virt-list-partitions.pl:107
34702 msgid "B<-h> | B<--human-readable>"
34703 msgstr ""
34704
34705 # type: textblock
34706 #. type: textblock
34707 #: ../tools/virt-list-partitions.pl:109
34708 msgid "Show sizes in human-readable form (eg. \"1G\")."
34709 msgstr ""
34710
34711 # type: textblock
34712 #. type: textblock
34713 #: ../tools/virt-list-partitions.pl:117
34714 msgid ""
34715 "With this option, C<virt-list-partitions> displays the type and size of each "
34716 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34717 msgstr ""
34718
34719 # type: =item
34720 #. type: =item
34721 #: ../tools/virt-list-partitions.pl:124
34722 msgid "B<-t> | B<--total>"
34723 msgstr ""
34724
34725 # type: textblock
34726 #. type: textblock
34727 #: ../tools/virt-list-partitions.pl:126
34728 msgid ""
34729 "Display the total size of each block device (as a separate row or rows)."
34730 msgstr ""
34731
34732 # type: textblock
34733 #. type: textblock
34734 #: ../tools/virt-list-partitions.pl:259
34735 msgid ""
34736 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34737 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34738 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34739 msgstr ""
34740
34741 # type: textblock
34742 #. type: textblock
34743 #: ../tools/virt-list-partitions.pl:275
34744 msgid "Copyright (C) 2009-2010 Red Hat Inc."
34745 msgstr ""