3f4d7d140bf43571b8b03c27185dd49d3260abba
[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-04-09 18:35+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 #. type: textblock
840 #: ../src/guestfs.pod:357
841 msgid "and you can write tar output to a pipe C<fd> by doing:"
842 msgstr ""
843
844 #. type: verbatim
845 #: ../src/guestfs.pod:359
846 #, no-wrap
847 msgid ""
848 " char devfd[64];\n"
849 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
850 " guestfs_tar_out (g, \"/\", devfd);\n"
851 "\n"
852 msgstr ""
853
854 # type: =head2
855 #. type: =head2
856 #: ../src/guestfs.pod:363
857 msgid "LISTING FILES"
858 msgstr ""
859
860 # type: textblock
861 #. type: textblock
862 #: ../src/guestfs.pod:365
863 msgid ""
864 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
865 "L<guestfish(1)>-equivalent command C<ll>)."
866 msgstr ""
867
868 # type: textblock
869 #. type: textblock
870 #: ../src/guestfs.pod:368
871 msgid ""
872 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
873 "programs, as a flat list of strings."
874 msgstr ""
875
876 # type: textblock
877 #. type: textblock
878 #: ../src/guestfs.pod:371
879 msgid ""
880 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
881 "directory, plus additional information about each one.  It is more "
882 "equivalent to using the L<readdir(3)> call on a local filesystem."
883 msgstr ""
884
885 # type: textblock
886 #. type: textblock
887 #: ../src/guestfs.pod:375
888 msgid ""
889 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
890 msgstr ""
891
892 # type: =head2
893 #. type: =head2
894 #: ../src/guestfs.pod:378
895 msgid "RUNNING COMMANDS"
896 msgstr ""
897
898 # type: textblock
899 #. type: textblock
900 #: ../src/guestfs.pod:380
901 msgid ""
902 "Although libguestfs is primarily an API for manipulating files inside guest "
903 "images, we also provide some limited facilities for running commands inside "
904 "guests."
905 msgstr ""
906
907 # type: textblock
908 #. type: textblock
909 #: ../src/guestfs.pod:384
910 msgid "There are many limitations to this:"
911 msgstr ""
912
913 # type: =item
914 #. type: =item
915 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
916 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
917 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1088
918 #: ../src/guestfs.pod:1092 ../src/guestfs.pod:1096 ../src/guestfs.pod:1101
919 #: ../src/guestfs.pod:1109 ../src/guestfs.pod:1128 ../src/guestfs.pod:1136
920 #: ../src/guestfs.pod:1158 ../src/guestfs.pod:1162 ../src/guestfs.pod:1166
921 #: ../src/guestfs.pod:1170 ../src/guestfs.pod:1174 ../src/guestfs.pod:1178
922 #: ../src/guestfs.pod:1660 ../src/guestfs.pod:1665 ../src/guestfs.pod:1669
923 #: ../src/guestfs.pod:1770 ../src/guestfs.pod:1775 ../src/guestfs.pod:1779
924 #: ../src/guestfs.pod:1789 ../src/guestfs.pod:2023 ../src/guestfs.pod:2028
925 #: ../src/guestfs.pod:2034 ../src/guestfs.pod:2042 ../src/guestfs.pod:2396
926 #: ../src/guestfs.pod:2402 ../src/guestfs.pod:2407 ../src/guestfs.pod:2413
927 #: ../src/guestfs.pod:2878 ../src/guestfs.pod:2882 ../src/guestfs.pod:2886
928 #: ../src/guestfs.pod:2890 ../src/guestfs-actions.pod:15
929 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
930 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
931 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1600
932 #: ../src/guestfs-actions.pod:1604 ../src/guestfs-actions.pod:1608
933 #: ../src/guestfs-actions.pod:1612 ../src/guestfs-actions.pod:1620
934 #: ../src/guestfs-actions.pod:1624 ../src/guestfs-actions.pod:1628
935 #: ../src/guestfs-actions.pod:1638 ../src/guestfs-actions.pod:1642
936 #: ../src/guestfs-actions.pod:1646 ../src/guestfs-actions.pod:1784
937 #: ../src/guestfs-actions.pod:1788 ../src/guestfs-actions.pod:1793
938 #: ../src/guestfs-actions.pod:1798 ../src/guestfs-actions.pod:1859
939 #: ../src/guestfs-actions.pod:1863 ../src/guestfs-actions.pod:1868
940 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
941 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
942 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
943 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
944 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
945 #: ../fish/guestfish-actions.pod:1072 ../fish/guestfish-actions.pod:1076
946 #: ../fish/guestfish-actions.pod:1080 ../fish/guestfish-actions.pod:1084
947 #: ../fish/guestfish-actions.pod:1092 ../fish/guestfish-actions.pod:1096
948 #: ../fish/guestfish-actions.pod:1100 ../fish/guestfish-actions.pod:1110
949 #: ../fish/guestfish-actions.pod:1114 ../fish/guestfish-actions.pod:1118
950 #: ../fish/guestfish-actions.pod:1208 ../fish/guestfish-actions.pod:1212
951 #: ../fish/guestfish-actions.pod:1217 ../fish/guestfish-actions.pod:1222
952 #: ../fish/guestfish-actions.pod:1264 ../fish/guestfish-actions.pod:1268
953 #: ../fish/guestfish-actions.pod:1273 ../tools/virt-edit.pl:351
954 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
955 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
956 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
957 #: ../tools/virt-win-reg.pl:548
958 msgid "*"
959 msgstr ""
960
961 # type: textblock
962 #. type: textblock
963 #: ../src/guestfs.pod:390
964 msgid ""
965 "The kernel version that the command runs under will be different from what "
966 "it expects."
967 msgstr ""
968
969 # type: textblock
970 #. type: textblock
971 #: ../src/guestfs.pod:395
972 msgid ""
973 "If the command needs to communicate with daemons, then most likely they "
974 "won't be running."
975 msgstr ""
976
977 # type: textblock
978 #. type: textblock
979 #: ../src/guestfs.pod:400
980 msgid "The command will be running in limited memory."
981 msgstr ""
982
983 # type: textblock
984 #. type: textblock
985 #: ../src/guestfs.pod:404
986 msgid ""
987 "The network may not be available unless you enable it (see L</"
988 "guestfs_set_network>)."
989 msgstr ""
990
991 # type: textblock
992 #. type: textblock
993 #: ../src/guestfs.pod:409
994 msgid "Only supports Linux guests (not Windows, BSD, etc)."
995 msgstr ""
996
997 # type: textblock
998 #. type: textblock
999 #: ../src/guestfs.pod:413
1000 msgid ""
1001 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
1002 msgstr ""
1003
1004 # type: textblock
1005 #. type: textblock
1006 #: ../src/guestfs.pod:418
1007 msgid ""
1008 "For SELinux guests, you may need to enable SELinux and load policy first.  "
1009 "See L</SELINUX> in this manpage."
1010 msgstr ""
1011
1012 # type: textblock
1013 #. type: textblock
1014 #: ../src/guestfs.pod:423
1015 msgid ""
1016 "I<Security:> It is not safe to run commands from untrusted, possibly "
1017 "malicious guests.  These commands may attempt to exploit your program by "
1018 "sending unexpected output.  They could also try to exploit the Linux kernel "
1019 "or qemu provided by the libguestfs appliance.  They could use the network "
1020 "provided by the libguestfs appliance to bypass ordinary network partitions "
1021 "and firewalls.  They could use the elevated privileges or different SELinux "
1022 "context of your program to their advantage."
1023 msgstr ""
1024
1025 # type: textblock
1026 #. type: textblock
1027 #: ../src/guestfs.pod:432
1028 msgid ""
1029 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
1030 "(a script which runs when the guest next boots normally), and to have this "
1031 "script run the commands you want in the normal context of the running guest, "
1032 "network security and so on.  For information about other security issues, "
1033 "see L</SECURITY>."
1034 msgstr ""
1035
1036 # type: textblock
1037 #. type: textblock
1038 #: ../src/guestfs.pod:440
1039 msgid ""
1040 "The two main API calls to run commands are L</guestfs_command> and L</"
1041 "guestfs_sh> (there are also variations)."
1042 msgstr ""
1043
1044 # type: textblock
1045 #. type: textblock
1046 #: ../src/guestfs.pod:443
1047 msgid ""
1048 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
1049 "shell globs, redirections, etc will work."
1050 msgstr ""
1051
1052 # type: =head2
1053 #. type: =head2
1054 #: ../src/guestfs.pod:446
1055 msgid "CONFIGURATION FILES"
1056 msgstr ""
1057
1058 # type: textblock
1059 #. type: textblock
1060 #: ../src/guestfs.pod:448
1061 msgid ""
1062 "To read and write configuration files in Linux guest filesystems, we "
1063 "strongly recommend using Augeas.  For example, Augeas understands how to "
1064 "read and write, say, a Linux shadow password file or X.org configuration "
1065 "file, and so avoids you having to write that code."
1066 msgstr ""
1067
1068 # type: textblock
1069 #. type: textblock
1070 #: ../src/guestfs.pod:453
1071 msgid ""
1072 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1073 "document Augeas itself here because there is excellent documentation on the "
1074 "L<http://augeas.net/> website."
1075 msgstr ""
1076
1077 # type: textblock
1078 #. type: textblock
1079 #: ../src/guestfs.pod:457
1080 msgid ""
1081 "If you don't want to use Augeas (you fool!) then try calling L</"
1082 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1083 "over."
1084 msgstr ""
1085
1086 # type: =head2
1087 #. type: =head2
1088 #: ../src/guestfs.pod:461
1089 msgid "SELINUX"
1090 msgstr ""
1091
1092 # type: textblock
1093 #. type: textblock
1094 #: ../src/guestfs.pod:463
1095 msgid ""
1096 "We support SELinux guests.  To ensure that labeling happens correctly in "
1097 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1098 msgstr ""
1099
1100 # type: =item
1101 #. type: =item
1102 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1281 ../src/guestfs.pod:1412
1103 #: ../src/guestfs.pod:2441
1104 msgid "1."
1105 msgstr ""
1106
1107 # type: textblock
1108 #. type: textblock
1109 #: ../src/guestfs.pod:471
1110 msgid "Before launching, do:"
1111 msgstr ""
1112
1113 # type: verbatim
1114 #. type: verbatim
1115 #: ../src/guestfs.pod:473
1116 #, no-wrap
1117 msgid ""
1118 " guestfs_set_selinux (g, 1);\n"
1119 "\n"
1120 msgstr ""
1121
1122 # type: =item
1123 #. type: =item
1124 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1285 ../src/guestfs.pod:1416
1125 #: ../src/guestfs.pod:2466
1126 msgid "2."
1127 msgstr ""
1128
1129 # type: textblock
1130 #. type: textblock
1131 #: ../src/guestfs.pod:477
1132 msgid ""
1133 "After mounting the guest's filesystem(s), load the policy.  This is best "
1134 "done by running the L<load_policy(8)> command in the guest itself:"
1135 msgstr ""
1136
1137 # type: verbatim
1138 #. type: verbatim
1139 #: ../src/guestfs.pod:481
1140 #, no-wrap
1141 msgid ""
1142 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1143 "\n"
1144 msgstr ""
1145
1146 # type: textblock
1147 #. type: textblock
1148 #: ../src/guestfs.pod:483
1149 msgid ""
1150 "(Older versions of C<load_policy> require you to specify the name of the "
1151 "policy file)."
1152 msgstr ""
1153
1154 # type: =item
1155 #. type: =item
1156 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1422
1157 msgid "3."
1158 msgstr ""
1159
1160 # type: textblock
1161 #. type: textblock
1162 #: ../src/guestfs.pod:488
1163 msgid ""
1164 "Optionally, set the security context for the API.  The correct security "
1165 "context to use can only be known by inspecting the guest.  As an example:"
1166 msgstr ""
1167
1168 # type: verbatim
1169 #. type: verbatim
1170 #: ../src/guestfs.pod:492
1171 #, no-wrap
1172 msgid ""
1173 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1174 "\n"
1175 msgstr ""
1176
1177 # type: textblock
1178 #. type: textblock
1179 #: ../src/guestfs.pod:496
1180 msgid "This will work for running commands and editing existing files."
1181 msgstr ""
1182
1183 # type: textblock
1184 #. type: textblock
1185 #: ../src/guestfs.pod:498
1186 msgid ""
1187 "When new files are created, you may need to label them explicitly, for "
1188 "example by running the external command C<restorecon pathname>."
1189 msgstr ""
1190
1191 # type: =head2
1192 #. type: =head2
1193 #: ../src/guestfs.pod:502
1194 msgid "UMASK"
1195 msgstr ""
1196
1197 # type: textblock
1198 #. type: textblock
1199 #: ../src/guestfs.pod:504
1200 msgid ""
1201 "Certain calls are affected by the current file mode creation mask (the "
1202 "\"umask\").  In particular ones which create files or directories, such as "
1203 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1204 "either the default mode that the file is created with or modifies the mode "
1205 "that you supply."
1206 msgstr ""
1207
1208 # type: textblock
1209 #. type: textblock
1210 #: ../src/guestfs.pod:510
1211 msgid ""
1212 "The default umask is C<022>, so files are created with modes such as C<0644> "
1213 "and directories with C<0755>."
1214 msgstr ""
1215
1216 # type: textblock
1217 #. type: textblock
1218 #: ../src/guestfs.pod:513
1219 msgid ""
1220 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1221 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1222 "guestfs_chmod> after creating each file or directory."
1223 msgstr ""
1224
1225 # type: textblock
1226 #. type: textblock
1227 #: ../src/guestfs.pod:517
1228 msgid "For more information about umask, see L<umask(2)>."
1229 msgstr ""
1230
1231 # type: =head1
1232 #. type: =head1
1233 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1234 msgid "ENCRYPTED DISKS"
1235 msgstr ""
1236
1237 # type: textblock
1238 #. type: textblock
1239 #: ../src/guestfs.pod:521
1240 msgid ""
1241 "Libguestfs allows you to access Linux guests which have been encrypted using "
1242 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1243 "standard.  This includes nearly all whole disk encryption systems used by "
1244 "modern Linux guests."
1245 msgstr ""
1246
1247 # type: textblock
1248 #. type: textblock
1249 #: ../src/guestfs.pod:527
1250 msgid ""
1251 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1252 "returns the string C<crypto_LUKS>)."
1253 msgstr ""
1254
1255 # type: textblock
1256 #. type: textblock
1257 #: ../src/guestfs.pod:530
1258 msgid ""
1259 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1260 "will require the passphrase!"
1261 msgstr ""
1262
1263 # type: textblock
1264 #. type: textblock
1265 #: ../src/guestfs.pod:533
1266 msgid ""
1267 "Opening a LUKS device creates a new device mapper device called C</dev/"
1268 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1269 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1270 "from and encrypted to the underlying block device respectively."
1271 msgstr ""
1272
1273 # type: textblock
1274 #. type: textblock
1275 #: ../src/guestfs.pod:539
1276 msgid ""
1277 "LVM volume groups on the device can be made visible by calling L</"
1278 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1279 "(s) can now be mounted in the usual way."
1280 msgstr ""
1281
1282 # type: textblock
1283 #. type: textblock
1284 #: ../src/guestfs.pod:543
1285 msgid ""
1286 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1287 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1288 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1289 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1290 "underlying encrypted block device)."
1291 msgstr ""
1292
1293 # type: =head2
1294 #. type: =head2
1295 #: ../src/guestfs.pod:550
1296 msgid "INSPECTION"
1297 msgstr ""
1298
1299 #. type: textblock
1300 #: ../src/guestfs.pod:552
1301 msgid ""
1302 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1303 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1304 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1305 "version 1.5.3 the most frequently used part of this library has been "
1306 "rewritten in C and moved into the core code)."
1307 msgstr ""
1308
1309 # type: textblock
1310 #. type: textblock
1311 #: ../src/guestfs.pod:559
1312 msgid ""
1313 "Add all disks belonging to the unknown virtual machine and call L</"
1314 "guestfs_launch> in the usual way."
1315 msgstr ""
1316
1317 # type: textblock
1318 #. type: textblock
1319 #: ../src/guestfs.pod:562
1320 msgid ""
1321 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1322 "and certain heuristics, and returns a list of operating systems that were "
1323 "found.  An empty list means none were found.  A single element is the root "
1324 "filesystem of the operating system.  For dual- or multi-boot guests, "
1325 "multiple roots can be returned, each one corresponding to a separate "
1326 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1327 "world of virtualization, but since this scenario can happen, we have built "
1328 "libguestfs to deal with it.)"
1329 msgstr ""
1330
1331 # type: textblock
1332 #. type: textblock
1333 #: ../src/guestfs.pod:571
1334 msgid ""
1335 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1336 "to get additional details about that operating system.  For example, call L</"
1337 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1338 "Windows and Linux-based operating systems respectively."
1339 msgstr ""
1340
1341 # type: textblock
1342 #. type: textblock
1343 #: ../src/guestfs.pod:577
1344 msgid ""
1345 "Un*x-like and Linux-based operating systems usually consist of several "
1346 "filesystems which are mounted at boot time (for example, a separate boot "
1347 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1348 "filesystems correspond to mount points.  Call "
1349 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1350 "hash table like this example:"
1351 msgstr ""
1352
1353 # type: verbatim
1354 #. type: verbatim
1355 #: ../src/guestfs.pod:584
1356 #, no-wrap
1357 msgid ""
1358 " /boot => /dev/sda1\n"
1359 " /     => /dev/vg_guest/lv_root\n"
1360 " /usr  => /dev/vg_guest/lv_usr\n"
1361 "\n"
1362 msgstr ""
1363
1364 # type: textblock
1365 #. type: textblock
1366 #: ../src/guestfs.pod:588
1367 msgid ""
1368 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1369 "filesystems as suggested."
1370 msgstr ""
1371
1372 # type: textblock
1373 #. type: textblock
1374 #: ../src/guestfs.pod:591
1375 msgid ""
1376 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1377 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1378 msgstr ""
1379
1380 # type: textblock
1381 #. type: textblock
1382 #: ../src/guestfs.pod:595
1383 msgid ""
1384 "Inspection currently only works for some common operating systems.  "
1385 "Contributors are welcome to send patches for other operating systems that we "
1386 "currently cannot detect."
1387 msgstr ""
1388
1389 # type: textblock
1390 #. type: textblock
1391 #: ../src/guestfs.pod:599
1392 msgid ""
1393 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1394 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1395 "encrypted devices."
1396 msgstr ""
1397
1398 # type: textblock
1399 #. type: textblock
1400 #: ../src/guestfs.pod:603
1401 msgid ""
1402 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1403 "inspection and caches the results in the guest handle.  Subsequent calls to "
1404 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1405 "read the disks.  If you change the content of the guest disks, you can redo "
1406 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1407 "guestfs_inspect_list_applications> works a little differently from the other "
1408 "calls and does read the disks.  See documentation for that function for "
1409 "details)."
1410 msgstr ""
1411
1412 #. type: =head3
1413 #: ../src/guestfs.pod:612
1414 msgid "INSPECTING INSTALL DISKS"
1415 msgstr ""
1416
1417 #. type: textblock
1418 #: ../src/guestfs.pod:614
1419 msgid ""
1420 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1421 "CDs and more."
1422 msgstr ""
1423
1424 #. type: textblock
1425 #: ../src/guestfs.pod:617
1426 msgid ""
1427 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1428 "system, which currently can be C<installed> (a regular operating system) or "
1429 "C<installer> (some sort of install disk)."
1430 msgstr ""
1431
1432 #. type: textblock
1433 #: ../src/guestfs.pod:621
1434 msgid ""
1435 "Further information is available about the operating system that can be "
1436 "installed using the regular inspection APIs like L</"
1437 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1438 msgstr ""
1439
1440 #. type: textblock
1441 #: ../src/guestfs.pod:626
1442 msgid ""
1443 "Some additional information specific to installer disks is also available "
1444 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1445 "guestfs_inspect_is_multipart> calls."
1446 msgstr ""
1447
1448 # type: =head2
1449 #. type: =head2
1450 #: ../src/guestfs.pod:631
1451 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1452 msgstr ""
1453
1454 # type: textblock
1455 #. type: textblock
1456 #: ../src/guestfs.pod:633
1457 msgid ""
1458 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1459 "ntfs-3g.org/> driver."
1460 msgstr ""
1461
1462 # type: =head3
1463 #. type: =head3
1464 #: ../src/guestfs.pod:636
1465 msgid "DRIVE LETTERS AND PATHS"
1466 msgstr ""
1467
1468 # type: textblock
1469 #. type: textblock
1470 #: ../src/guestfs.pod:638
1471 msgid ""
1472 "DOS and Windows still use drive letters, and the filesystems are always "
1473 "treated as case insensitive by Windows itself, and therefore you might find "
1474 "a Windows configuration file referring to a path like C<c:\\windows"
1475 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1476 "might be referred to as C</WINDOWS/System32>."
1477 msgstr ""
1478
1479 # type: textblock
1480 #. type: textblock
1481 #: ../src/guestfs.pod:644
1482 msgid ""
1483 "Drive letter mappings are outside the scope of libguestfs.  You have to use "
1484 "libguestfs to read the appropriate Windows Registry and configuration files, "
1485 "to determine yourself how drives are mapped (see also L<hivex(3)> and L<virt-"
1486 "inspector(1)>)."
1487 msgstr ""
1488
1489 # type: textblock
1490 #. type: textblock
1491 #: ../src/guestfs.pod:649
1492 msgid ""
1493 "Replacing backslash characters with forward slash characters is also outside "
1494 "the scope of libguestfs, but something that you can easily do."
1495 msgstr ""
1496
1497 # type: textblock
1498 #. type: textblock
1499 #: ../src/guestfs.pod:652
1500 msgid ""
1501 "Where we can help is in resolving the case insensitivity of paths.  For "
1502 "this, call L</guestfs_case_sensitive_path>."
1503 msgstr ""
1504
1505 # type: =head3
1506 #. type: =head3
1507 #: ../src/guestfs.pod:655
1508 msgid "ACCESSING THE WINDOWS REGISTRY"
1509 msgstr ""
1510
1511 # type: textblock
1512 #. type: textblock
1513 #: ../src/guestfs.pod:657
1514 msgid ""
1515 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1516 "files, through the library C<hivex> which is part of the libguestfs project "
1517 "although ships as a separate tarball.  You have to locate and download the "
1518 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1519 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1520 "reg(1)> for more help on this issue."
1521 msgstr ""
1522
1523 # type: =head3
1524 #. type: =head3
1525 #: ../src/guestfs.pod:665
1526 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1527 msgstr ""
1528
1529 # type: textblock
1530 #. type: textblock
1531 #: ../src/guestfs.pod:667
1532 msgid ""
1533 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1534 "provide something which looks like a Linux symlink.  The way it tries to do "
1535 "the rewriting is described here:"
1536 msgstr ""
1537
1538 # type: textblock
1539 #. type: textblock
1540 #: ../src/guestfs.pod:671
1541 msgid ""
1542 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1543 "symbolic-links/>"
1544 msgstr ""
1545
1546 # type: textblock
1547 #. type: textblock
1548 #: ../src/guestfs.pod:673
1549 msgid ""
1550 "The essential problem is that ntfs-3g simply does not have enough "
1551 "information to do a correct job.  NTFS links can contain drive letters and "
1552 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1553 "It is almost certainly the case that libguestfs callers should ignore what "
1554 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1555 msgstr ""
1556
1557 # type: textblock
1558 #. type: textblock
1559 #: ../src/guestfs.pod:680
1560 msgid ""
1561 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1562 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1563 "attribute, and read the raw reparse data from that (you can find the format "
1564 "documented in various places around the web)."
1565 msgstr ""
1566
1567 # type: =head3
1568 #. type: =head3
1569 #: ../src/guestfs.pod:685
1570 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1571 msgstr ""
1572
1573 # type: textblock
1574 #. type: textblock
1575 #: ../src/guestfs.pod:687
1576 msgid ""
1577 "There are other useful extended attributes that can be read from ntfs-3g "
1578 "filesystems (using L</guestfs_getxattr>).  See:"
1579 msgstr ""
1580
1581 # type: textblock
1582 #. type: textblock
1583 #: ../src/guestfs.pod:690
1584 msgid ""
1585 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1586 msgstr ""
1587
1588 # type: =head2
1589 #. type: =head2
1590 #: ../src/guestfs.pod:692
1591 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1592 msgstr ""
1593
1594 # type: textblock
1595 #. type: textblock
1596 #: ../src/guestfs.pod:694
1597 msgid ""
1598 "Although we don't want to discourage you from using the C API, we will "
1599 "mention here that the same API is also available in other languages."
1600 msgstr ""
1601
1602 #. type: textblock
1603 #: ../src/guestfs.pod:697
1604 msgid ""
1605 "The API is broadly identical in all supported languages.  This means that "
1606 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1607 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1608 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1609 "each language."
1610 msgstr ""
1611
1612 # type: textblock
1613 #. type: textblock
1614 #: ../src/guestfs.pod:703
1615 msgid ""
1616 "Error messages are automatically transformed into exceptions if the language "
1617 "supports it."
1618 msgstr ""
1619
1620 # type: textblock
1621 #. type: textblock
1622 #: ../src/guestfs.pod:706
1623 msgid ""
1624 "We don't try to \"object orientify\" parts of the API in OO languages, "
1625 "although contributors are welcome to write higher level APIs above what we "
1626 "provide in their favourite languages if they wish."
1627 msgstr ""
1628
1629 # type: =item
1630 #. type: =item
1631 #: ../src/guestfs.pod:712
1632 msgid "B<C++>"
1633 msgstr ""
1634
1635 # type: textblock
1636 #. type: textblock
1637 #: ../src/guestfs.pod:714
1638 msgid ""
1639 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1640 "identical to the C API.  C++ classes and exceptions are not used."
1641 msgstr ""
1642
1643 # type: =item
1644 #. type: =item
1645 #: ../src/guestfs.pod:718
1646 msgid "B<C#>"
1647 msgstr ""
1648
1649 # type: textblock
1650 #. type: textblock
1651 #: ../src/guestfs.pod:720
1652 msgid ""
1653 "The C# bindings are highly experimental.  Please read the warnings at the "
1654 "top of C<csharp/Libguestfs.cs>."
1655 msgstr ""
1656
1657 # type: =item
1658 #. type: =item
1659 #: ../src/guestfs.pod:723
1660 msgid "B<Haskell>"
1661 msgstr ""
1662
1663 # type: textblock
1664 #. type: textblock
1665 #: ../src/guestfs.pod:725
1666 msgid ""
1667 "This is the only language binding that is working but incomplete.  Only "
1668 "calls which return simple integers have been bound in Haskell, and we are "
1669 "looking for help to complete this binding."
1670 msgstr ""
1671
1672 # type: =item
1673 #. type: =item
1674 #: ../src/guestfs.pod:729
1675 msgid "B<Java>"
1676 msgstr ""
1677
1678 # type: textblock
1679 #. type: textblock
1680 #: ../src/guestfs.pod:731
1681 msgid ""
1682 "Full documentation is contained in the Javadoc which is distributed with "
1683 "libguestfs."
1684 msgstr ""
1685
1686 # type: =item
1687 #. type: =item
1688 #: ../src/guestfs.pod:734
1689 msgid "B<OCaml>"
1690 msgstr ""
1691
1692 #. type: textblock
1693 #: ../src/guestfs.pod:736
1694 msgid "See L<guestfs-ocaml(3)>."
1695 msgstr ""
1696
1697 # type: =item
1698 #. type: =item
1699 #: ../src/guestfs.pod:738
1700 msgid "B<Perl>"
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:740
1705 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1706 msgstr ""
1707
1708 # type: =item
1709 #. type: =item
1710 #: ../src/guestfs.pod:742
1711 msgid "B<PHP>"
1712 msgstr ""
1713
1714 # type: textblock
1715 #. type: textblock
1716 #: ../src/guestfs.pod:744
1717 msgid ""
1718 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1719 "the php-libguestfs package for your distribution."
1720 msgstr ""
1721
1722 # type: textblock
1723 #. type: textblock
1724 #: ../src/guestfs.pod:747
1725 msgid "The PHP binding only works correctly on 64 bit machines."
1726 msgstr ""
1727
1728 # type: =item
1729 #. type: =item
1730 #: ../src/guestfs.pod:749
1731 msgid "B<Python>"
1732 msgstr ""
1733
1734 #. type: textblock
1735 #: ../src/guestfs.pod:751
1736 msgid "See L<guestfs-python(3)>."
1737 msgstr ""
1738
1739 # type: =item
1740 #. type: =item
1741 #: ../src/guestfs.pod:753
1742 msgid "B<Ruby>"
1743 msgstr ""
1744
1745 #. type: textblock
1746 #: ../src/guestfs.pod:755
1747 msgid "See L<guestfs-ruby(3)>."
1748 msgstr ""
1749
1750 # type: =item
1751 #. type: =item
1752 #: ../src/guestfs.pod:757
1753 msgid "B<shell scripts>"
1754 msgstr ""
1755
1756 #. type: textblock
1757 #: ../src/guestfs.pod:759
1758 msgid "See L<guestfish(1)>."
1759 msgstr ""
1760
1761 # type: =head2
1762 #. type: =head2
1763 #: ../src/guestfs.pod:763
1764 msgid "LIBGUESTFS GOTCHAS"
1765 msgstr ""
1766
1767 # type: textblock
1768 #. type: textblock
1769 #: ../src/guestfs.pod:765
1770 msgid ""
1771 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1772 "system [...] that works in the way it is documented but is counterintuitive "
1773 "and almost invites mistakes.\""
1774 msgstr ""
1775
1776 # type: textblock
1777 #. type: textblock
1778 #: ../src/guestfs.pod:769
1779 msgid ""
1780 "Since we developed libguestfs and the associated tools, there are several "
1781 "things we would have designed differently, but are now stuck with for "
1782 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1783 "release, you can expect these to change.  Beware of them."
1784 msgstr ""
1785
1786 # type: =item
1787 #. type: =item
1788 #: ../src/guestfs.pod:777
1789 msgid "Autosync / forgetting to sync."
1790 msgstr ""
1791
1792 # type: textblock
1793 #. type: textblock
1794 #: ../src/guestfs.pod:779
1795 msgid ""
1796 "When modifying a filesystem from C or another language, you B<must> unmount "
1797 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1798 "libguestfs handle.  You can also call:"
1799 msgstr ""
1800
1801 # type: verbatim
1802 #. type: verbatim
1803 #: ../src/guestfs.pod:783
1804 #, no-wrap
1805 msgid ""
1806 " guestfs_set_autosync (g, 1);\n"
1807 "\n"
1808 msgstr ""
1809
1810 # type: textblock
1811 #. type: textblock
1812 #: ../src/guestfs.pod:785
1813 msgid ""
1814 "to have the unmount/sync done automatically for you when the handle 'g' is "
1815 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1816 msgstr ""
1817
1818 # type: textblock
1819 #. type: textblock
1820 #: ../src/guestfs.pod:789
1821 msgid ""
1822 "If you forget to do this, then it is entirely possible that your changes "
1823 "won't be written out, or will be partially written, or (very rarely) that "
1824 "you'll get disk corruption."
1825 msgstr ""
1826
1827 # type: textblock
1828 #. type: textblock
1829 #: ../src/guestfs.pod:793
1830 msgid ""
1831 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1832 "guestfish scripts that forget to sync will work just fine, which can make "
1833 "this very puzzling if you are trying to debug a problem."
1834 msgstr ""
1835
1836 # type: textblock
1837 #. type: textblock
1838 #: ../src/guestfs.pod:797
1839 msgid ""
1840 "Update: Autosync is enabled by default for all API users starting from "
1841 "libguestfs 1.5.24."
1842 msgstr ""
1843
1844 # type: =item
1845 #. type: =item
1846 #: ../src/guestfs.pod:800
1847 msgid "Mount option C<-o sync> should not be the default."
1848 msgstr ""
1849
1850 # type: textblock
1851 #. type: textblock
1852 #: ../src/guestfs.pod:802
1853 msgid ""
1854 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1855 "However C<-o sync> does not add any reliability benefit, but does have a "
1856 "very large performance impact."
1857 msgstr ""
1858
1859 # type: textblock
1860 #. type: textblock
1861 #: ../src/guestfs.pod:806
1862 msgid ""
1863 "The work around is to use L</guestfs_mount_options> and set the mount "
1864 "options that you actually want to use."
1865 msgstr ""
1866
1867 # type: =item
1868 #. type: =item
1869 #: ../src/guestfs.pod:809
1870 msgid "Read-only should be the default."
1871 msgstr ""
1872
1873 # type: textblock
1874 #. type: textblock
1875 #: ../src/guestfs.pod:811
1876 msgid ""
1877 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1878 "specify I<--rw> if you want to make changes to the image."
1879 msgstr ""
1880
1881 # type: textblock
1882 #. type: textblock
1883 #: ../src/guestfs.pod:814
1884 msgid "This would reduce the potential to corrupt live VM images."
1885 msgstr ""
1886
1887 # type: textblock
1888 #. type: textblock
1889 #: ../src/guestfs.pod:816
1890 msgid ""
1891 "Note that many filesystems change the disk when you just mount and unmount, "
1892 "even if you didn't perform any writes.  You need to use L</"
1893 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1894 msgstr ""
1895
1896 # type: =item
1897 #. type: =item
1898 #: ../src/guestfs.pod:820
1899 msgid "guestfish command line is hard to use."
1900 msgstr ""
1901
1902 # type: textblock
1903 #. type: textblock
1904 #: ../src/guestfs.pod:822
1905 msgid ""
1906 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1907 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1908 "exist, so it fails.  In earlier versions of guestfish the error message was "
1909 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1910 "we should have used C<guestfish -c command> to run commands."
1911 msgstr ""
1912
1913 # type: =item
1914 #. type: =item
1915 #: ../src/guestfs.pod:829
1916 msgid "guestfish megabyte modifiers don't work right on all commands"
1917 msgstr ""
1918
1919 # type: textblock
1920 #. type: textblock
1921 #: ../src/guestfs.pod:831
1922 msgid ""
1923 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1924 "other modifiers).  What guestfish actually does is to multiply the number "
1925 "part by the modifier part and pass the result to the C API.  However this "
1926 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1927 "expecting some other unit (eg. megabytes)."
1928 msgstr ""
1929
1930 # type: textblock
1931 #. type: textblock
1932 #: ../src/guestfs.pod:838
1933 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1934 msgstr ""
1935
1936 # type: verbatim
1937 #. type: verbatim
1938 #: ../src/guestfs.pod:840
1939 #, no-wrap
1940 msgid ""
1941 " lvcreate LV VG 100M\n"
1942 "\n"
1943 msgstr ""
1944
1945 # type: textblock
1946 #. type: textblock
1947 #: ../src/guestfs.pod:842
1948 msgid ""
1949 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1950 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1951 "megabytes * megabytes) logical volume.  The error message you get from this "
1952 "is also a little obscure."
1953 msgstr ""
1954
1955 # type: textblock
1956 #. type: textblock
1957 #: ../src/guestfs.pod:847
1958 msgid ""
1959 "This could be fixed in the generator by specially marking parameters and "
1960 "return values which take bytes or other units."
1961 msgstr ""
1962
1963 # type: =item
1964 #. type: =item
1965 #: ../src/guestfs.pod:850
1966 msgid "Ambiguity between devices and paths"
1967 msgstr ""
1968
1969 # type: textblock
1970 #. type: textblock
1971 #: ../src/guestfs.pod:852
1972 msgid ""
1973 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1974 "sdb2>) and a similar pathname.  A file might just happen to be called "
1975 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1976 msgstr ""
1977
1978 # type: textblock
1979 #. type: textblock
1980 #: ../src/guestfs.pod:857
1981 msgid ""
1982 "In the current API we usually resolve this ambiguity by having two separate "
1983 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1984 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1985 "detecting if the path supplied begins with C</dev/>."
1986 msgstr ""
1987
1988 # type: textblock
1989 #. type: textblock
1990 #: ../src/guestfs.pod:863
1991 msgid ""
1992 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1993 "make paths/devices into structured names.  One way to do this would be to "
1994 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1995 "aspect of grub.  Another way would be to use a structured type, equivalent "
1996 "to this OCaml type:"
1997 msgstr ""
1998
1999 # type: verbatim
2000 #. type: verbatim
2001 #: ../src/guestfs.pod:869
2002 #, no-wrap
2003 msgid ""
2004 " type path = Path of string | Device of int | Partition of int * int\n"
2005 "\n"
2006 msgstr ""
2007
2008 # type: textblock
2009 #. type: textblock
2010 #: ../src/guestfs.pod:871
2011 msgid "which would allow you to pass arguments like:"
2012 msgstr ""
2013
2014 # type: verbatim
2015 #. type: verbatim
2016 #: ../src/guestfs.pod:873
2017 #, no-wrap
2018 msgid ""
2019 " Path \"/foo/bar\"\n"
2020 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
2021 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
2022 " Path \"/dev/sdb2\"    (* not a device *)\n"
2023 "\n"
2024 msgstr ""
2025
2026 # type: textblock
2027 #. type: textblock
2028 #: ../src/guestfs.pod:878
2029 msgid ""
2030 "As you can see there are still problems to resolve even with this "
2031 "representation.  Also consider how it might work in guestfish."
2032 msgstr ""
2033
2034 # type: =head2
2035 #. type: =head2
2036 #: ../src/guestfs.pod:883
2037 msgid "PROTOCOL LIMITS"
2038 msgstr ""
2039
2040 # type: textblock
2041 #. type: textblock
2042 #: ../src/guestfs.pod:885
2043 msgid ""
2044 "Internally libguestfs uses a message-based protocol to pass API calls and "
2045 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
2046 "plenty more detail about this).  The maximum message size used by the "
2047 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
2048 "aware of this limit.  The API calls which may be affected are individually "
2049 "documented, with a link back to this section of the documentation."
2050 msgstr ""
2051
2052 # type: textblock
2053 #. type: textblock
2054 #: ../src/guestfs.pod:893
2055 msgid ""
2056 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
2057 "a simple string.  Because this string is at some point internally encoded as "
2058 "a message, the maximum size that it can return is slightly under 4 MB.  If "
2059 "the requested file is larger than this then you will get an error."
2060 msgstr ""
2061
2062 # type: textblock
2063 #. type: textblock
2064 #: ../src/guestfs.pod:899
2065 msgid ""
2066 "In order to transfer large files into and out of the guest filesystem, you "
2067 "need to use particular calls that support this.  The sections L</UPLOADING> "
2068 "and L</DOWNLOADING> document how to do this."
2069 msgstr ""
2070
2071 # type: textblock
2072 #. type: textblock
2073 #: ../src/guestfs.pod:903
2074 msgid ""
2075 "You might also consider mounting the disk image using our FUSE filesystem "
2076 "support (L<guestmount(1)>)."
2077 msgstr ""
2078
2079 # type: =head2
2080 #. type: =head2
2081 #: ../src/guestfs.pod:906
2082 msgid "KEYS AND PASSPHRASES"
2083 msgstr ""
2084
2085 # type: textblock
2086 #. type: textblock
2087 #: ../src/guestfs.pod:908
2088 msgid ""
2089 "Certain libguestfs calls take a parameter that contains sensitive key "
2090 "material, passed in as a C string."
2091 msgstr ""
2092
2093 # type: textblock
2094 #. type: textblock
2095 #: ../src/guestfs.pod:911
2096 msgid ""
2097 "In the future we would hope to change the libguestfs implementation so that "
2098 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
2099 "swap.  However this is I<not> done at the moment, because of the complexity "
2100 "of such an implementation."
2101 msgstr ""
2102
2103 # type: textblock
2104 #. type: textblock
2105 #: ../src/guestfs.pod:916
2106 msgid ""
2107 "Therefore you should be aware that any key parameter you pass to libguestfs "
2108 "might end up being written out to the swap partition.  If this is a concern, "
2109 "scrub the swap partition or don't use libguestfs on encrypted devices."
2110 msgstr ""
2111
2112 # type: =head1
2113 #. type: =head2
2114 #: ../src/guestfs.pod:921
2115 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
2116 msgstr ""
2117
2118 # type: textblock
2119 #. type: textblock
2120 #: ../src/guestfs.pod:923
2121 msgid ""
2122 "All high-level libguestfs actions are synchronous.  If you want to use "
2123 "libguestfs asynchronously then you must create a thread."
2124 msgstr ""
2125
2126 # type: textblock
2127 #. type: textblock
2128 #: ../src/guestfs.pod:926
2129 msgid ""
2130 "Only use the handle from a single thread.  Either use the handle exclusively "
2131 "from one thread, or provide your own mutex so that two threads cannot issue "
2132 "calls on the same handle at the same time."
2133 msgstr ""
2134
2135 # type: textblock
2136 #. type: textblock
2137 #: ../src/guestfs.pod:930
2138 msgid ""
2139 "See the graphical program guestfs-browser for one possible architecture for "
2140 "multithreaded programs using libvirt and libguestfs."
2141 msgstr ""
2142
2143 # type: =head1
2144 #. type: =head2
2145 #: ../src/guestfs.pod:933
2146 msgid "PATH"
2147 msgstr ""
2148
2149 #. type: textblock
2150 #: ../src/guestfs.pod:935
2151 msgid ""
2152 "Libguestfs needs a supermin appliance, which it finds by looking along an "
2153 "internal path."
2154 msgstr ""
2155
2156 # type: textblock
2157 #. type: textblock
2158 #: ../src/guestfs.pod:938
2159 msgid ""
2160 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
2161 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
2162 msgstr ""
2163
2164 # type: textblock
2165 #. type: textblock
2166 #: ../src/guestfs.pod:941
2167 msgid ""
2168 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
2169 "to change the directories that libguestfs will search in.  The value is a "
2170 "colon-separated list of paths.  The current directory is I<not> searched "
2171 "unless the path contains an empty element or C<.>.  For example "
2172 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
2173 "then C</usr/lib/guestfs>."
2174 msgstr ""
2175
2176 # type: =head1
2177 #. type: =head2
2178 #: ../src/guestfs.pod:948
2179 msgid "QEMU WRAPPERS"
2180 msgstr ""
2181
2182 # type: textblock
2183 #. type: textblock
2184 #: ../src/guestfs.pod:950
2185 msgid ""
2186 "If you want to compile your own qemu, run qemu from a non-standard location, "
2187 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
2188 "around qemu."
2189 msgstr ""
2190
2191 # type: textblock
2192 #. type: textblock
2193 #: ../src/guestfs.pod:954
2194 msgid ""
2195 "There is one important rule to remember: you I<must C<exec qemu>> as the "
2196 "last command in the shell script (so that qemu replaces the shell and "
2197 "becomes the direct child of the libguestfs-using program).  If you don't do "
2198 "this, then the qemu process won't be cleaned up correctly."
2199 msgstr ""
2200
2201 # type: textblock
2202 #. type: textblock
2203 #: ../src/guestfs.pod:959
2204 msgid ""
2205 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2206 "source:"
2207 msgstr ""
2208
2209 # type: verbatim
2210 #. type: verbatim
2211 #: ../src/guestfs.pod:962
2212 #, no-wrap
2213 msgid ""
2214 " #!/bin/sh -\n"
2215 " qemudir=/home/rjones/d/qemu\n"
2216 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2217 "\n"
2218 msgstr ""
2219
2220 # type: textblock
2221 #. type: textblock
2222 #: ../src/guestfs.pod:966
2223 msgid ""
2224 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2225 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
2226 "example:"
2227 msgstr ""
2228
2229 # type: verbatim
2230 #. type: verbatim
2231 #: ../src/guestfs.pod:970
2232 #, no-wrap
2233 msgid ""
2234 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2235 "\n"
2236 msgstr ""
2237
2238 # type: textblock
2239 #. type: textblock
2240 #: ../src/guestfs.pod:972
2241 msgid ""
2242 "Note that libguestfs also calls qemu with the -help and -version options in "
2243 "order to determine features."
2244 msgstr ""
2245
2246 #. type: =head2
2247 #: ../src/guestfs.pod:975
2248 msgid "ATTACHING TO RUNNING DAEMONS"
2249 msgstr ""
2250
2251 #. type: textblock
2252 #: ../src/guestfs.pod:977
2253 msgid ""
2254 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2255 "babies.  Use with caution."
2256 msgstr ""
2257
2258 #. type: textblock
2259 #: ../src/guestfs.pod:980
2260 msgid ""
2261 "I<Note (2):> This section explains how to attach to a running daemon from a "
2262 "low level perspective.  For most users, simply using virt tools such as "
2263 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2264 msgstr ""
2265
2266 #. type: =head3
2267 #: ../src/guestfs.pod:984
2268 msgid "Using guestfs_set_attach_method"
2269 msgstr ""
2270
2271 #. type: textblock
2272 #: ../src/guestfs.pod:986
2273 msgid ""
2274 "By calling L</guestfs_set_attach_method> you can change how the library "
2275 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2276 "ARCHITECTURE> for some background)."
2277 msgstr ""
2278
2279 #. type: textblock
2280 #: ../src/guestfs.pod:990
2281 msgid ""
2282 "The normal attach method is C<appliance>, where a small appliance is created "
2283 "containing the daemon, and then the library connects to this."
2284 msgstr ""
2285
2286 #. type: textblock
2287 #: ../src/guestfs.pod:993
2288 msgid ""
2289 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2290 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2291 "daemon over the Unix domain socket."
2292 msgstr ""
2293
2294 #. type: textblock
2295 #: ../src/guestfs.pod:997
2296 msgid ""
2297 "The normal use for this is to connect to a running virtual machine that "
2298 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2299 "files inside the live virtual machine."
2300 msgstr ""
2301
2302 #. type: =head3
2303 #: ../src/guestfs.pod:1001
2304 msgid "Using guestfs_add_domain with live flag"
2305 msgstr ""
2306
2307 #. type: textblock
2308 #: ../src/guestfs.pod:1003
2309 msgid ""
2310 "L</guestfs_add_domain> provides some help for getting the correct attach "
2311 "method.  If you pass the C<live> option to this function, then (if the "
2312 "virtual machine is running) it will examine the libvirt XML looking for a "
2313 "virtio-serial channel to connect to:"
2314 msgstr ""
2315
2316 #. type: verbatim
2317 #: ../src/guestfs.pod:1009
2318 #, no-wrap
2319 msgid ""
2320 " <domain>\n"
2321 "   ...\n"
2322 "   <devices>\n"
2323 "     ...\n"
2324 "     <channel type='unix'>\n"
2325 "       <source mode='bind' path='/path/to/socket'/>\n"
2326 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2327 "     </channel>\n"
2328 "     ...\n"
2329 "   </devices>\n"
2330 " </domain>\n"
2331 "\n"
2332 msgstr ""
2333
2334 #. type: textblock
2335 #: ../src/guestfs.pod:1021
2336 msgid ""
2337 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2338 "method to C<unix:/path/to/socket>."
2339 msgstr ""
2340
2341 #. type: textblock
2342 #: ../src/guestfs.pod:1024
2343 msgid ""
2344 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2345 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2346 "to attach to and modify live virtual machines."
2347 msgstr ""
2348
2349 #. type: textblock
2350 #: ../src/guestfs.pod:1028
2351 msgid ""
2352 "The virtual machine needs to have been set up beforehand so that it has the "
2353 "virtio-serial channel and so that guestfsd is running inside it."
2354 msgstr ""
2355
2356 # type: =head2
2357 #. type: =head2
2358 #: ../src/guestfs.pod:1032
2359 msgid "ABI GUARANTEE"
2360 msgstr ""
2361
2362 # type: textblock
2363 #. type: textblock
2364 #: ../src/guestfs.pod:1034
2365 msgid ""
2366 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2367 "actions as outlined in this section.  Although we will deprecate some "
2368 "actions, for example if they get replaced by newer calls, we will keep the "
2369 "old actions forever.  This allows you the developer to program in confidence "
2370 "against the libguestfs API."
2371 msgstr ""
2372
2373 # type: =head1
2374 #. type: =head2
2375 #: ../src/guestfs.pod:1040
2376 msgid "BLOCK DEVICE NAMING"
2377 msgstr ""
2378
2379 # type: textblock
2380 #. type: textblock
2381 #: ../src/guestfs.pod:1042
2382 msgid ""
2383 "In the kernel there is now quite a profusion of schemata for naming block "
2384 "devices (in this context, by I<block device> I mean a physical or virtual "
2385 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2386 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2387 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2388 "for the old IDE driver (particularly for SATA devices) those devices also "
2389 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2390 "paravirtualized drivers.  This has created several different naming systems, "
2391 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2392 msgstr ""
2393
2394 # type: textblock
2395 #. type: textblock
2396 #: ../src/guestfs.pod:1054
2397 msgid ""
2398 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2399 "Linux kernel to access block devices.  We can run a variety of appliances "
2400 "based on a variety of Linux kernels."
2401 msgstr ""
2402
2403 # type: textblock
2404 #. type: textblock
2405 #: ../src/guestfs.pod:1058
2406 msgid ""
2407 "This causes a problem for libguestfs because many API calls use device or "
2408 "partition names.  Working scripts and the recipe (example) scripts that we "
2409 "make available over the internet could fail if the naming scheme changes."
2410 msgstr ""
2411
2412 # type: textblock
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1063
2415 msgid ""
2416 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2417 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2418 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2419 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2420 msgstr ""
2421
2422 # type: textblock
2423 #. type: textblock
2424 #: ../src/guestfs.pod:1069
2425 msgid ""
2426 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2427 "L</guestfs_list_partitions> and similar calls return the true names of the "
2428 "devices and partitions as known to the appliance."
2429 msgstr ""
2430
2431 # type: =head2
2432 #. type: =head3
2433 #: ../src/guestfs.pod:1074
2434 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2435 msgstr ""
2436
2437 # type: textblock
2438 #. type: textblock
2439 #: ../src/guestfs.pod:1076
2440 msgid ""
2441 "Usually this translation is transparent.  However in some (very rare)  cases "
2442 "you may need to know the exact algorithm.  Such cases include where you use "
2443 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2444 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2445 msgstr ""
2446
2447 # type: textblock
2448 #. type: textblock
2449 #: ../src/guestfs.pod:1082
2450 msgid ""
2451 "The algorithm is applied only to I<parameters> which are known to be either "
2452 "device or partition names.  Return values from functions such as L</"
2453 "guestfs_list_devices> are never changed."
2454 msgstr ""
2455
2456 # type: textblock
2457 #. type: textblock
2458 #: ../src/guestfs.pod:1090
2459 msgid "Is the string a parameter which is a device or partition name?"
2460 msgstr ""
2461
2462 # type: textblock
2463 #. type: textblock
2464 #: ../src/guestfs.pod:1094
2465 msgid "Does the string begin with C</dev/sd>?"
2466 msgstr ""
2467
2468 # type: textblock
2469 #. type: textblock
2470 #: ../src/guestfs.pod:1098
2471 msgid ""
2472 "Does the named device exist? If so, we use that device.  However if I<not> "
2473 "then we continue with this algorithm."
2474 msgstr ""
2475
2476 # type: textblock
2477 #. type: textblock
2478 #: ../src/guestfs.pod:1103
2479 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2480 msgstr ""
2481
2482 # type: textblock
2483 #. type: textblock
2484 #: ../src/guestfs.pod:1105
2485 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2486 msgstr ""
2487
2488 # type: textblock
2489 #. type: textblock
2490 #: ../src/guestfs.pod:1107
2491 msgid "If that named device exists, use it.  If not, continue."
2492 msgstr ""
2493
2494 # type: textblock
2495 #. type: textblock
2496 #: ../src/guestfs.pod:1111
2497 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2498 msgstr ""
2499
2500 # type: textblock
2501 #. type: textblock
2502 #: ../src/guestfs.pod:1113
2503 msgid "If that named device exists, use it.  If not, return an error."
2504 msgstr ""
2505
2506 # type: =head3
2507 #. type: =head3
2508 #: ../src/guestfs.pod:1117
2509 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2510 msgstr ""
2511
2512 # type: textblock
2513 #. type: textblock
2514 #: ../src/guestfs.pod:1119
2515 msgid ""
2516 "Although the standard naming scheme and automatic translation is useful for "
2517 "simple programs and guestfish scripts, for larger programs it is best not to "
2518 "rely on this mechanism."
2519 msgstr ""
2520
2521 # type: textblock
2522 #. type: textblock
2523 #: ../src/guestfs.pod:1123
2524 msgid ""
2525 "Where possible for maximum future portability programs using libguestfs "
2526 "should use these future-proof techniques:"
2527 msgstr ""
2528
2529 # type: textblock
2530 #. type: textblock
2531 #: ../src/guestfs.pod:1130
2532 msgid ""
2533 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2534 "device names, and then use those names directly."
2535 msgstr ""
2536
2537 # type: textblock
2538 #. type: textblock
2539 #: ../src/guestfs.pod:1133
2540 msgid ""
2541 "Since those device names exist by definition, they will never be translated."
2542 msgstr ""
2543
2544 # type: textblock
2545 #. type: textblock
2546 #: ../src/guestfs.pod:1138
2547 msgid ""
2548 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2549 "filesystem labels."
2550 msgstr ""
2551
2552 # type: =head1
2553 #. type: =head1
2554 #: ../src/guestfs.pod:1143
2555 msgid "SECURITY"
2556 msgstr ""
2557
2558 # type: textblock
2559 #. type: textblock
2560 #: ../src/guestfs.pod:1145
2561 msgid ""
2562 "This section discusses security implications of using libguestfs, "
2563 "particularly with untrusted or malicious guests or disk images."
2564 msgstr ""
2565
2566 # type: =head2
2567 #. type: =head2
2568 #: ../src/guestfs.pod:1148
2569 msgid "GENERAL SECURITY CONSIDERATIONS"
2570 msgstr ""
2571
2572 # type: textblock
2573 #. type: textblock
2574 #: ../src/guestfs.pod:1150
2575 msgid ""
2576 "Be careful with any files or data that you download from a guest (by "
2577 "\"download\" we mean not just the L</guestfs_download> command but any "
2578 "command that reads files, filenames, directories or anything else from a "
2579 "disk image).  An attacker could manipulate the data to fool your program "
2580 "into doing the wrong thing.  Consider cases such as:"
2581 msgstr ""
2582
2583 # type: textblock
2584 #. type: textblock
2585 #: ../src/guestfs.pod:1160
2586 msgid "the data (file etc) not being present"
2587 msgstr ""
2588
2589 # type: textblock
2590 #. type: textblock
2591 #: ../src/guestfs.pod:1164
2592 msgid "being present but empty"
2593 msgstr ""
2594
2595 # type: textblock
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1168
2598 msgid "being much larger than normal"
2599 msgstr ""
2600
2601 # type: textblock
2602 #. type: textblock
2603 #: ../src/guestfs.pod:1172
2604 msgid "containing arbitrary 8 bit data"
2605 msgstr ""
2606
2607 # type: textblock
2608 #. type: textblock
2609 #: ../src/guestfs.pod:1176
2610 msgid "being in an unexpected character encoding"
2611 msgstr ""
2612
2613 # type: textblock
2614 #. type: textblock
2615 #: ../src/guestfs.pod:1180
2616 msgid "containing homoglyphs."
2617 msgstr ""
2618
2619 # type: =head2
2620 #. type: =head2
2621 #: ../src/guestfs.pod:1184
2622 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2623 msgstr ""
2624
2625 # type: textblock
2626 #. type: textblock
2627 #: ../src/guestfs.pod:1186
2628 msgid ""
2629 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2630 "(VFS) module can sometimes be escalated into exploits by deliberately "
2631 "creating a malicious, malformed filesystem.  These exploits are very severe "
2632 "for two reasons.  Firstly there are very many filesystem drivers in the "
2633 "kernel, and many of them are infrequently used and not much developer "
2634 "attention has been paid to the code.  Linux userspace helps potential "
2635 "crackers by detecting the filesystem type and automatically choosing the "
2636 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2637 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2638 "exploit (worse in some ways), giving immediate and total access to the "
2639 "system right down to the hardware level."
2640 msgstr ""
2641
2642 # type: textblock
2643 #. type: textblock
2644 #: ../src/guestfs.pod:1199
2645 msgid ""
2646 "That explains why you should never mount a filesystem from an untrusted "
2647 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2648 "inside a qemu virtual machine, usually running as a non-root user.  The "
2649 "attacker would need to write a filesystem which first exploited the kernel, "
2650 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2651 "the libguestfs protocol, and finally to be as serious as the host kernel "
2652 "exploit it would need to escalate its privileges to root.  This multi-step "
2653 "escalation, performed by a static piece of data, is thought to be extremely "
2654 "hard to do, although we never say 'never' about security issues."
2655 msgstr ""
2656
2657 # type: textblock
2658 #. type: textblock
2659 #: ../src/guestfs.pod:1210
2660 msgid ""
2661 "In any case callers can reduce the attack surface by forcing the filesystem "
2662 "type when mounting (use L</guestfs_mount_vfs>)."
2663 msgstr ""
2664
2665 # type: =head2
2666 #. type: =head2
2667 #: ../src/guestfs.pod:1213
2668 msgid "PROTOCOL SECURITY"
2669 msgstr ""
2670
2671 # type: textblock
2672 #. type: textblock
2673 #: ../src/guestfs.pod:1215
2674 msgid ""
2675 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2676 "defined upper message size.  However a program that uses libguestfs must "
2677 "also take care - for example you can write a program that downloads a binary "
2678 "from a disk image and executes it locally, and no amount of protocol "
2679 "security will save you from the consequences."
2680 msgstr ""
2681
2682 # type: =head2
2683 #. type: =head2
2684 #: ../src/guestfs.pod:1221
2685 msgid "INSPECTION SECURITY"
2686 msgstr ""
2687
2688 # type: textblock
2689 #. type: textblock
2690 #: ../src/guestfs.pod:1223
2691 msgid ""
2692 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2693 "directly from the guest, and these could contain any 8 bit data.  Callers "
2694 "should be careful to escape these before printing them to a structured file "
2695 "(for example, use HTML escaping if creating a web page)."
2696 msgstr ""
2697
2698 # type: textblock
2699 #. type: textblock
2700 #: ../src/guestfs.pod:1229
2701 msgid ""
2702 "Guest configuration may be altered in unusual ways by the administrator of "
2703 "the virtual machine, and may not reflect reality (particularly for untrusted "
2704 "or actively malicious guests).  For example we parse the hostname from "
2705 "configuration files like C</etc/sysconfig/network> that we find in the "
2706 "guest, but the guest administrator can easily manipulate these files to "
2707 "provide the wrong hostname."
2708 msgstr ""
2709
2710 # type: textblock
2711 #. type: textblock
2712 #: ../src/guestfs.pod:1237
2713 msgid ""
2714 "The inspection API parses guest configuration using two external libraries: "
2715 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2716 "designed to be robust in the face of malicious data, although denial of "
2717 "service attacks are still possible, for example with oversized configuration "
2718 "files."
2719 msgstr ""
2720
2721 # type: =head2
2722 #. type: =head2
2723 #: ../src/guestfs.pod:1243
2724 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2725 msgstr ""
2726
2727 # type: textblock
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1245
2730 msgid ""
2731 "Be very cautious about running commands from the guest.  By running a "
2732 "command in the guest, you are giving CPU time to a binary that you do not "
2733 "control, under the same user account as the library, albeit wrapped in qemu "
2734 "virtualization.  More information and alternatives can be found in the "
2735 "section L</RUNNING COMMANDS>."
2736 msgstr ""
2737
2738 # type: =head2
2739 #. type: =head2
2740 #: ../src/guestfs.pod:1251
2741 msgid "CVE-2010-3851"
2742 msgstr ""
2743
2744 # type: textblock
2745 #. type: textblock
2746 #: ../src/guestfs.pod:1253
2747 msgid "https://bugzilla.redhat.com/642934"
2748 msgstr ""
2749
2750 # type: textblock
2751 #. type: textblock
2752 #: ../src/guestfs.pod:1255
2753 msgid ""
2754 "This security bug concerns the automatic disk format detection that qemu "
2755 "does on disk images."
2756 msgstr ""
2757
2758 # type: textblock
2759 #. type: textblock
2760 #: ../src/guestfs.pod:1258
2761 msgid ""
2762 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2763 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2764 "for one of the known headers, and if none is found then assuming the disk "
2765 "image must be raw."
2766 msgstr ""
2767
2768 # type: textblock
2769 #. type: textblock
2770 #: ../src/guestfs.pod:1263
2771 msgid ""
2772 "This allows a guest which has been given a raw disk image to write some "
2773 "other header.  At next boot (or when the disk image is accessed by "
2774 "libguestfs) qemu would do autodetection and think the disk image format was, "
2775 "say, qcow2 based on the header written by the guest."
2776 msgstr ""
2777
2778 # type: textblock
2779 #. type: textblock
2780 #: ../src/guestfs.pod:1268
2781 msgid ""
2782 "This in itself would not be a problem, but qcow2 offers many features, one "
2783 "of which is to allow a disk image to refer to another image (called the "
2784 "\"backing disk\").  It does this by placing the path to the backing disk "
2785 "into the qcow2 header.  This path is not validated and could point to any "
2786 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2787 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2788 "control of the attacker."
2789 msgstr ""
2790
2791 # type: textblock
2792 #. type: textblock
2793 #: ../src/guestfs.pod:1276
2794 msgid ""
2795 "In libguestfs this is rather hard to exploit except under two circumstances:"
2796 msgstr ""
2797
2798 # type: textblock
2799 #. type: textblock
2800 #: ../src/guestfs.pod:1283
2801 msgid "You have enabled the network or have opened the disk in write mode."
2802 msgstr ""
2803
2804 # type: textblock
2805 #. type: textblock
2806 #: ../src/guestfs.pod:1287
2807 msgid ""
2808 "You are also running untrusted code from the guest (see L</RUNNING "
2809 "COMMANDS>)."
2810 msgstr ""
2811
2812 # type: textblock
2813 #. type: textblock
2814 #: ../src/guestfs.pod:1292
2815 msgid ""
2816 "The way to avoid this is to specify the expected disk format when adding "
2817 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2818 "should always do this if the disk is raw format, and it's a good idea for "
2819 "other cases too."
2820 msgstr ""
2821
2822 # type: textblock
2823 #. type: textblock
2824 #: ../src/guestfs.pod:1297
2825 msgid ""
2826 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2827 "format is fetched from libvirt and passed through."
2828 msgstr ""
2829
2830 # type: textblock
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1300
2833 msgid ""
2834 "For libguestfs tools, use the I<--format> command line parameter as "
2835 "appropriate."
2836 msgstr ""
2837
2838 # type: =head1
2839 #. type: =head1
2840 #: ../src/guestfs.pod:1303
2841 msgid "CONNECTION MANAGEMENT"
2842 msgstr ""
2843
2844 # type: =head2
2845 #. type: =head2
2846 #: ../src/guestfs.pod:1305
2847 msgid "guestfs_h *"
2848 msgstr ""
2849
2850 # type: textblock
2851 #. type: textblock
2852 #: ../src/guestfs.pod:1307
2853 msgid ""
2854 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2855 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2856 "handle and release all resources used."
2857 msgstr ""
2858
2859 # type: textblock
2860 #. type: textblock
2861 #: ../src/guestfs.pod:1311
2862 msgid ""
2863 "For information on using multiple handles and threads, see the section L</"
2864 "MULTIPLE HANDLES AND MULTIPLE THREADS> below."
2865 msgstr ""
2866
2867 # type: =head2
2868 #. type: =head2
2869 #: ../src/guestfs.pod:1314
2870 msgid "guestfs_create"
2871 msgstr ""
2872
2873 # type: verbatim
2874 #. type: verbatim
2875 #: ../src/guestfs.pod:1316
2876 #, no-wrap
2877 msgid ""
2878 " guestfs_h *guestfs_create (void);\n"
2879 "\n"
2880 msgstr ""
2881
2882 # type: textblock
2883 #. type: textblock
2884 #: ../src/guestfs.pod:1318
2885 msgid "Create a connection handle."
2886 msgstr ""
2887
2888 # type: textblock
2889 #. type: textblock
2890 #: ../src/guestfs.pod:1320
2891 msgid ""
2892 "You have to call L</guestfs_add_drive_opts> (or one of the equivalent calls) "
2893 "on the handle at least once."
2894 msgstr ""
2895
2896 # type: textblock
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1323
2899 msgid ""
2900 "This function returns a non-NULL pointer to a handle on success or NULL on "
2901 "error."
2902 msgstr ""
2903
2904 # type: textblock
2905 #. type: textblock
2906 #: ../src/guestfs.pod:1326
2907 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2908 msgstr ""
2909
2910 # type: textblock
2911 #. type: textblock
2912 #: ../src/guestfs.pod:1328
2913 msgid ""
2914 "You may also want to configure error handling for the handle.  See L</ERROR "
2915 "HANDLING> section below."
2916 msgstr ""
2917
2918 # type: =head2
2919 #. type: =head2
2920 #: ../src/guestfs.pod:1331
2921 msgid "guestfs_close"
2922 msgstr ""
2923
2924 # type: verbatim
2925 #. type: verbatim
2926 #: ../src/guestfs.pod:1333
2927 #, no-wrap
2928 msgid ""
2929 " void guestfs_close (guestfs_h *g);\n"
2930 "\n"
2931 msgstr ""
2932
2933 # type: textblock
2934 #. type: textblock
2935 #: ../src/guestfs.pod:1335
2936 msgid "This closes the connection handle and frees up all resources used."
2937 msgstr ""
2938
2939 # type: =head1
2940 #. type: =head1
2941 #: ../src/guestfs.pod:1337
2942 msgid "ERROR HANDLING"
2943 msgstr ""
2944
2945 # type: textblock
2946 #. type: textblock
2947 #: ../src/guestfs.pod:1339
2948 msgid ""
2949 "API functions can return errors.  For example, almost all functions that "
2950 "return C<int> will return C<-1> to indicate an error."
2951 msgstr ""
2952
2953 # type: textblock
2954 #. type: textblock
2955 #: ../src/guestfs.pod:1342
2956 msgid ""
2957 "Additional information is available for errors: an error message string and "
2958 "optionally an error number (errno) if the thing that failed was a system "
2959 "call."
2960 msgstr ""
2961
2962 # type: textblock
2963 #. type: textblock
2964 #: ../src/guestfs.pod:1346
2965 msgid ""
2966 "You can get at the additional information about the last error on the handle "
2967 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2968 "up an error handler with L</guestfs_set_error_handler>."
2969 msgstr ""
2970
2971 # type: textblock
2972 #. type: textblock
2973 #: ../src/guestfs.pod:1351
2974 msgid ""
2975 "When the handle is created, a default error handler is installed which "
2976 "prints the error message string to C<stderr>.  For small short-running "
2977 "command line programs it is sufficient to do:"
2978 msgstr ""
2979
2980 # type: verbatim
2981 #. type: verbatim
2982 #: ../src/guestfs.pod:1355
2983 #, no-wrap
2984 msgid ""
2985 " if (guestfs_launch (g) == -1)\n"
2986 "   exit (EXIT_FAILURE);\n"
2987 "\n"
2988 msgstr ""
2989
2990 # type: textblock
2991 #. type: textblock
2992 #: ../src/guestfs.pod:1358
2993 msgid ""
2994 "since the default error handler will ensure that an error message has been "
2995 "printed to C<stderr> before the program exits."
2996 msgstr ""
2997
2998 # type: textblock
2999 #. type: textblock
3000 #: ../src/guestfs.pod:1361
3001 msgid ""
3002 "For other programs the caller will almost certainly want to install an "
3003 "alternate error handler or do error handling in-line like this:"
3004 msgstr ""
3005
3006 # type: verbatim
3007 #. type: verbatim
3008 #: ../src/guestfs.pod:1364
3009 #, no-wrap
3010 msgid ""
3011 " g = guestfs_create ();\n"
3012 " \n"
3013 msgstr ""
3014
3015 # type: verbatim
3016 #. type: verbatim
3017 #: ../src/guestfs.pod:1366
3018 #, no-wrap
3019 msgid ""
3020 " /* This disables the default behaviour of printing errors\n"
3021 "    on stderr. */\n"
3022 " guestfs_set_error_handler (g, NULL, NULL);\n"
3023 " \n"
3024 msgstr ""
3025
3026 # type: verbatim
3027 #. type: verbatim
3028 #: ../src/guestfs.pod:1370
3029 #, no-wrap
3030 msgid ""
3031 " if (guestfs_launch (g) == -1) {\n"
3032 "   /* Examine the error message and print it etc. */\n"
3033 "   char *msg = guestfs_last_error (g);\n"
3034 "   int errnum = guestfs_last_errno (g);\n"
3035 "   fprintf (stderr, \"%s\\n\", msg);\n"
3036 "   /* ... */\n"
3037 "  }\n"
3038 "\n"
3039 msgstr ""
3040
3041 # type: textblock
3042 #. type: textblock
3043 #: ../src/guestfs.pod:1378
3044 msgid ""
3045 "Out of memory errors are handled differently.  The default action is to call "
3046 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
3047 "guestfs_set_out_of_memory_handler>."
3048 msgstr ""
3049
3050 # type: textblock
3051 #. type: textblock
3052 #: ../src/guestfs.pod:1382
3053 msgid ""
3054 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
3055 "because there is no handle if this happens there is no way to get additional "
3056 "error information.  However L</guestfs_create> is supposed to be a "
3057 "lightweight operation which can only fail because of insufficient memory (it "
3058 "returns NULL in this case)."
3059 msgstr ""
3060
3061 # type: =head2
3062 #. type: =head2
3063 #: ../src/guestfs.pod:1388
3064 msgid "guestfs_last_error"
3065 msgstr ""
3066
3067 # type: verbatim
3068 #. type: verbatim
3069 #: ../src/guestfs.pod:1390
3070 #, no-wrap
3071 msgid ""
3072 " const char *guestfs_last_error (guestfs_h *g);\n"
3073 "\n"
3074 msgstr ""
3075
3076 # type: textblock
3077 #. type: textblock
3078 #: ../src/guestfs.pod:1392
3079 msgid ""
3080 "This returns the last error message that happened on C<g>.  If there has not "
3081 "been an error since the handle was created, then this returns C<NULL>."
3082 msgstr ""
3083
3084 # type: textblock
3085 #. type: textblock
3086 #: ../src/guestfs.pod:1396
3087 msgid ""
3088 "The lifetime of the returned string is until the next error occurs, or L</"
3089 "guestfs_close> is called."
3090 msgstr ""
3091
3092 # type: =head2
3093 #. type: =head2
3094 #: ../src/guestfs.pod:1399
3095 msgid "guestfs_last_errno"
3096 msgstr ""
3097
3098 # type: verbatim
3099 #. type: verbatim
3100 #: ../src/guestfs.pod:1401
3101 #, no-wrap
3102 msgid ""
3103 " int guestfs_last_errno (guestfs_h *g);\n"
3104 "\n"
3105 msgstr ""
3106
3107 # type: textblock
3108 #. type: textblock
3109 #: ../src/guestfs.pod:1403
3110 msgid "This returns the last error number (errno) that happened on C<g>."
3111 msgstr ""
3112
3113 # type: textblock
3114 #. type: textblock
3115 #: ../src/guestfs.pod:1405
3116 msgid "If successful, an errno integer not equal to zero is returned."
3117 msgstr ""
3118
3119 # type: textblock
3120 #. type: textblock
3121 #: ../src/guestfs.pod:1407
3122 msgid ""
3123 "If no error, this returns 0.  This call can return 0 in three situations:"
3124 msgstr ""
3125
3126 # type: textblock
3127 #. type: textblock
3128 #: ../src/guestfs.pod:1414
3129 msgid "There has not been any error on the handle."
3130 msgstr ""
3131
3132 # type: textblock
3133 #. type: textblock
3134 #: ../src/guestfs.pod:1418
3135 msgid ""
3136 "There has been an error but the errno was meaningless.  This corresponds to "
3137 "the case where the error did not come from a failed system call, but for "
3138 "some other reason."
3139 msgstr ""
3140
3141 # type: textblock
3142 #. type: textblock
3143 #: ../src/guestfs.pod:1424
3144 msgid ""
3145 "There was an error from a failed system call, but for some reason the errno "
3146 "was not captured and returned.  This usually indicates a bug in libguestfs."
3147 msgstr ""
3148
3149 # type: textblock
3150 #. type: textblock
3151 #: ../src/guestfs.pod:1430
3152 msgid ""
3153 "Libguestfs tries to convert the errno from inside the applicance into a "
3154 "corresponding errno for the caller (not entirely trivial: the appliance "
3155 "might be running a completely different operating system from the library "
3156 "and error numbers are not standardized across Un*xen).  If this could not be "
3157 "done, then the error is translated to C<EINVAL>.  In practice this should "
3158 "only happen in very rare circumstances."
3159 msgstr ""
3160
3161 # type: =head2
3162 #. type: =head2
3163 #: ../src/guestfs.pod:1438
3164 msgid "guestfs_set_error_handler"
3165 msgstr ""
3166
3167 # type: verbatim
3168 #. type: verbatim
3169 #: ../src/guestfs.pod:1440
3170 #, no-wrap
3171 msgid ""
3172 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
3173 "                                           void *opaque,\n"
3174 "                                           const char *msg);\n"
3175 " void guestfs_set_error_handler (guestfs_h *g,\n"
3176 "                                 guestfs_error_handler_cb cb,\n"
3177 "                                 void *opaque);\n"
3178 "\n"
3179 msgstr ""
3180
3181 # type: textblock
3182 #. type: textblock
3183 #: ../src/guestfs.pod:1447
3184 msgid ""
3185 "The callback C<cb> will be called if there is an error.  The parameters "
3186 "passed to the callback are an opaque data pointer and the error message "
3187 "string."
3188 msgstr ""
3189
3190 # type: textblock
3191 #. type: textblock
3192 #: ../src/guestfs.pod:1451
3193 msgid ""
3194 "C<errno> is not passed to the callback.  To get that the callback must call "
3195 "L</guestfs_last_errno>."
3196 msgstr ""
3197
3198 # type: textblock
3199 #. type: textblock
3200 #: ../src/guestfs.pod:1454
3201 msgid ""
3202 "Note that the message string C<msg> is freed as soon as the callback "
3203 "function returns, so if you want to stash it somewhere you must make your "
3204 "own copy."
3205 msgstr ""
3206
3207 # type: textblock
3208 #. type: textblock
3209 #: ../src/guestfs.pod:1458
3210 msgid "The default handler prints messages on C<stderr>."
3211 msgstr ""
3212
3213 # type: textblock
3214 #. type: textblock
3215 #: ../src/guestfs.pod:1460
3216 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
3217 msgstr ""
3218
3219 # type: =head2
3220 #. type: =head2
3221 #: ../src/guestfs.pod:1462
3222 msgid "guestfs_get_error_handler"
3223 msgstr ""
3224
3225 # type: verbatim
3226 #. type: verbatim
3227 #: ../src/guestfs.pod:1464
3228 #, no-wrap
3229 msgid ""
3230 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
3231 "                                                     void **opaque_rtn);\n"
3232 "\n"
3233 msgstr ""
3234
3235 # type: textblock
3236 #. type: textblock
3237 #: ../src/guestfs.pod:1467
3238 msgid "Returns the current error handler callback."
3239 msgstr ""
3240
3241 # type: =head2
3242 #. type: =head2
3243 #: ../src/guestfs.pod:1469
3244 msgid "guestfs_set_out_of_memory_handler"
3245 msgstr ""
3246
3247 # type: verbatim
3248 #. type: verbatim
3249 #: ../src/guestfs.pod:1471
3250 #, no-wrap
3251 msgid ""
3252 " typedef void (*guestfs_abort_cb) (void);\n"
3253 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
3254 "                                        guestfs_abort_cb);\n"
3255 "\n"
3256 msgstr ""
3257
3258 # type: textblock
3259 #. type: textblock
3260 #: ../src/guestfs.pod:1475
3261 msgid ""
3262 "The callback C<cb> will be called if there is an out of memory situation.  "
3263 "I<Note this callback must not return>."
3264 msgstr ""
3265
3266 # type: textblock
3267 #. type: textblock
3268 #: ../src/guestfs.pod:1478
3269 msgid "The default is to call L<abort(3)>."
3270 msgstr ""
3271
3272 # type: textblock
3273 #. type: textblock
3274 #: ../src/guestfs.pod:1480
3275 msgid ""
3276 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
3277 msgstr ""
3278
3279 # type: =head2
3280 #. type: =head2
3281 #: ../src/guestfs.pod:1483
3282 msgid "guestfs_get_out_of_memory_handler"
3283 msgstr ""
3284
3285 # type: verbatim
3286 #. type: verbatim
3287 #: ../src/guestfs.pod:1485
3288 #, no-wrap
3289 msgid ""
3290 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
3291 "\n"
3292 msgstr ""
3293
3294 # type: textblock
3295 #. type: textblock
3296 #: ../src/guestfs.pod:1487
3297 msgid "This returns the current out of memory handler."
3298 msgstr ""
3299
3300 # type: =head1
3301 #. type: =head1
3302 #: ../src/guestfs.pod:1489
3303 msgid "API CALLS"
3304 msgstr ""
3305
3306 # type: textblock
3307 #. type: textblock
3308 #: ../src/guestfs.pod:1491 ../fish/guestfish.pod:1003
3309 msgid "@ACTIONS@"
3310 msgstr ""
3311
3312 # type: =head1
3313 #. type: =head1
3314 #: ../src/guestfs.pod:1493
3315 msgid "STRUCTURES"
3316 msgstr ""
3317
3318 # type: textblock
3319 #. type: textblock
3320 #: ../src/guestfs.pod:1495
3321 msgid "@STRUCTS@"
3322 msgstr ""
3323
3324 # type: =head1
3325 #. type: =head1
3326 #: ../src/guestfs.pod:1497
3327 msgid "AVAILABILITY"
3328 msgstr ""
3329
3330 # type: =head2
3331 #. type: =head2
3332 #: ../src/guestfs.pod:1499
3333 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3334 msgstr ""
3335
3336 # type: textblock
3337 #. type: textblock
3338 #: ../src/guestfs.pod:1501
3339 msgid ""
3340 "Using L</guestfs_available> you can test availability of the following "
3341 "groups of functions.  This test queries the appliance to see if the "
3342 "appliance you are currently using supports the functionality."
3343 msgstr ""
3344
3345 # type: textblock
3346 #. type: textblock
3347 #: ../src/guestfs.pod:1506
3348 msgid "@AVAILABILITY@"
3349 msgstr ""
3350
3351 # type: =head2
3352 #. type: =head2
3353 #: ../src/guestfs.pod:1508
3354 msgid "GUESTFISH supported COMMAND"
3355 msgstr ""
3356
3357 # type: textblock
3358 #. type: textblock
3359 #: ../src/guestfs.pod:1510
3360 msgid ""
3361 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3362 "prints out the available groups and whether they are supported by this build "
3363 "of libguestfs.  Note however that you have to do C<run> first."
3364 msgstr ""
3365
3366 # type: =head2
3367 #. type: =head2
3368 #: ../src/guestfs.pod:1515
3369 msgid "SINGLE CALLS AT COMPILE TIME"
3370 msgstr ""
3371
3372 # type: textblock
3373 #. type: textblock
3374 #: ../src/guestfs.pod:1517
3375 msgid ""
3376 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3377 "function, such as:"
3378 msgstr ""
3379
3380 # type: verbatim
3381 #. type: verbatim
3382 #: ../src/guestfs.pod:1520
3383 #, no-wrap
3384 msgid ""
3385 " #define LIBGUESTFS_HAVE_DD 1\n"
3386 "\n"
3387 msgstr ""
3388
3389 # type: textblock
3390 #. type: textblock
3391 #: ../src/guestfs.pod:1522
3392 msgid "if L</guestfs_dd> is available."
3393 msgstr ""
3394
3395 # type: textblock
3396 #. type: textblock
3397 #: ../src/guestfs.pod:1524
3398 msgid ""
3399 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3400 "function is available at compile time, we recommended using build tools such "
3401 "as autoconf or cmake.  For example in autotools you could use:"
3402 msgstr ""
3403
3404 # type: verbatim
3405 #. type: verbatim
3406 #: ../src/guestfs.pod:1529
3407 #, no-wrap
3408 msgid ""
3409 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3410 " AC_CHECK_FUNCS([guestfs_dd])\n"
3411 "\n"
3412 msgstr ""
3413
3414 # type: textblock
3415 #. type: textblock
3416 #: ../src/guestfs.pod:1532
3417 msgid ""
3418 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3419 "in your program."
3420 msgstr ""
3421
3422 # type: =head2
3423 #. type: =head2
3424 #: ../src/guestfs.pod:1535
3425 msgid "SINGLE CALLS AT RUN TIME"
3426 msgstr ""
3427
3428 # type: textblock
3429 #. type: textblock
3430 #: ../src/guestfs.pod:1537
3431 msgid ""
3432 "Testing at compile time doesn't guarantee that a function really exists in "
3433 "the library.  The reason is that you might be dynamically linked against a "
3434 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3435 "This situation unfortunately results in a segmentation fault, which is a "
3436 "shortcoming of the C dynamic linking system itself."
3437 msgstr ""
3438
3439 # type: textblock
3440 #. type: textblock
3441 #: ../src/guestfs.pod:1544
3442 msgid ""
3443 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3444 "in this example program (note that you still need the compile time check as "
3445 "well):"
3446 msgstr ""
3447
3448 # type: verbatim
3449 #. type: verbatim
3450 #: ../src/guestfs.pod:1548
3451 #, no-wrap
3452 msgid ""
3453 " #include <stdio.h>\n"
3454 " #include <stdlib.h>\n"
3455 " #include <unistd.h>\n"
3456 " #include <dlfcn.h>\n"
3457 " #include <guestfs.h>\n"
3458 " \n"
3459 msgstr ""
3460
3461 # type: verbatim
3462 #. type: verbatim
3463 #: ../src/guestfs.pod:1554
3464 #, no-wrap
3465 msgid ""
3466 " main ()\n"
3467 " {\n"
3468 " #ifdef LIBGUESTFS_HAVE_DD\n"
3469 "   void *dl;\n"
3470 "   int has_function;\n"
3471 " \n"
3472 msgstr ""
3473
3474 # type: verbatim
3475 #. type: verbatim
3476 #: ../src/guestfs.pod:1560
3477 #, no-wrap
3478 msgid ""
3479 "   /* Test if the function guestfs_dd is really available. */\n"
3480 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3481 "   if (!dl) {\n"
3482 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3483 "     exit (EXIT_FAILURE);\n"
3484 "   }\n"
3485 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3486 "   dlclose (dl);\n"
3487 " \n"
3488 msgstr ""
3489
3490 # type: verbatim
3491 #. type: verbatim
3492 #: ../src/guestfs.pod:1569
3493 #, no-wrap
3494 msgid ""
3495 "   if (!has_function)\n"
3496 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3497 "   else {\n"
3498 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3499 "     /* Now it's safe to call\n"
3500 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3501 "     */\n"
3502 "   }\n"
3503 " #else\n"
3504 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3505 " #endif\n"
3506 "  }\n"
3507 "\n"
3508 msgstr ""
3509
3510 # type: textblock
3511 #. type: textblock
3512 #: ../src/guestfs.pod:1582
3513 msgid ""
3514 "You may think the above is an awful lot of hassle, and it is.  There are "
3515 "other ways outside of the C linking system to ensure that this kind of "
3516 "incompatibility never arises, such as using package versioning:"
3517 msgstr ""
3518
3519 # type: verbatim
3520 #. type: verbatim
3521 #: ../src/guestfs.pod:1587
3522 #, no-wrap
3523 msgid ""
3524 " Requires: libguestfs >= 1.0.80\n"
3525 "\n"
3526 msgstr ""
3527
3528 # type: =head1
3529 #. type: =head1
3530 #: ../src/guestfs.pod:1589
3531 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3532 msgstr ""
3533
3534 # type: textblock
3535 #. type: textblock
3536 #: ../src/guestfs.pod:1591
3537 msgid ""
3538 "A recent feature of the API is the introduction of calls which take optional "
3539 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3540 "takes variable arguments (ie. C<...>), as in this example:"
3541 msgstr ""
3542
3543 # type: verbatim
3544 #. type: verbatim
3545 #: ../src/guestfs.pod:1596
3546 #, no-wrap
3547 msgid ""
3548 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3549 "\n"
3550 msgstr ""
3551
3552 # type: textblock
3553 #. type: textblock
3554 #: ../src/guestfs.pod:1598
3555 msgid ""
3556 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3557 "call with no optional arguments specified:"
3558 msgstr ""
3559
3560 # type: verbatim
3561 #. type: verbatim
3562 #: ../src/guestfs.pod:1601
3563 #, no-wrap
3564 msgid ""
3565 " guestfs_add_drive_opts (g, filename, -1);\n"
3566 "\n"
3567 msgstr ""
3568
3569 # type: textblock
3570 #. type: textblock
3571 #: ../src/guestfs.pod:1603
3572 msgid "With a single optional argument:"
3573 msgstr ""
3574
3575 # type: verbatim
3576 #. type: verbatim
3577 #: ../src/guestfs.pod:1605
3578 #, no-wrap
3579 msgid ""
3580 " guestfs_add_drive_opts (g, filename,\n"
3581 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3582 "                         -1);\n"
3583 "\n"
3584 msgstr ""
3585
3586 # type: textblock
3587 #. type: textblock
3588 #: ../src/guestfs.pod:1609
3589 msgid "With two:"
3590 msgstr ""
3591
3592 # type: verbatim
3593 #. type: verbatim
3594 #: ../src/guestfs.pod:1611
3595 #, no-wrap
3596 msgid ""
3597 " guestfs_add_drive_opts (g, filename,\n"
3598 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3599 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3600 "                         -1);\n"
3601 "\n"
3602 msgstr ""
3603
3604 # type: textblock
3605 #. type: textblock
3606 #: ../src/guestfs.pod:1616
3607 msgid ""
3608 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3609 "happen!"
3610 msgstr ""
3611
3612 # type: =head2
3613 #. type: =head2
3614 #: ../src/guestfs.pod:1619
3615 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3616 msgstr ""
3617
3618 # type: textblock
3619 #. type: textblock
3620 #: ../src/guestfs.pod:1621
3621 msgid ""
3622 "The second variant has the same name with the suffix C<_va>, which works the "
3623 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3624 "example function, this is declared:"
3625 msgstr ""
3626
3627 # type: verbatim
3628 #. type: verbatim
3629 #: ../src/guestfs.pod:1625
3630 #, no-wrap
3631 msgid ""
3632 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3633 "                                va_list args);\n"
3634 "\n"
3635 msgstr ""
3636
3637 # type: =head2
3638 #. type: =head2
3639 #: ../src/guestfs.pod:1628
3640 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3641 msgstr ""
3642
3643 # type: textblock
3644 #. type: textblock
3645 #: ../src/guestfs.pod:1630
3646 msgid ""
3647 "The third variant is useful where you need to construct these calls.  You "
3648 "pass in a structure where you fill in the optional fields.  The structure "
3649 "has a bitmask as the first element which you must set to indicate which "
3650 "fields you have filled in.  For our example function the structure and call "
3651 "are declared:"
3652 msgstr ""
3653
3654 # type: verbatim
3655 #. type: verbatim
3656 #: ../src/guestfs.pod:1636
3657 #, no-wrap
3658 msgid ""
3659 " struct guestfs_add_drive_opts_argv {\n"
3660 "   uint64_t bitmask;\n"
3661 "   int readonly;\n"
3662 "   const char *format;\n"
3663 "   /* ... */\n"
3664 " };\n"
3665 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3666 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3667 "\n"
3668 msgstr ""
3669
3670 # type: textblock
3671 #. type: textblock
3672 #: ../src/guestfs.pod:1645
3673 msgid "You could call it like this:"
3674 msgstr ""
3675
3676 # type: verbatim
3677 #. type: verbatim
3678 #: ../src/guestfs.pod:1647
3679 #, no-wrap
3680 msgid ""
3681 " struct guestfs_add_drive_opts_argv optargs = {\n"
3682 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3683 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3684 "   .readonly = 1,\n"
3685 "   .format = \"qcow2\"\n"
3686 " };\n"
3687 " \n"
3688 msgstr ""
3689
3690 # type: verbatim
3691 #. type: verbatim
3692 #: ../src/guestfs.pod:1654
3693 #, no-wrap
3694 msgid ""
3695 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3696 "\n"
3697 msgstr ""
3698
3699 # type: textblock
3700 #. type: textblock
3701 #: ../src/guestfs.pod:1656 ../src/guestfs-actions.pod:11
3702 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:9
3703 #: ../fish/guestfish-actions.pod:1260 ../tools/virt-win-reg.pl:532
3704 msgid "Notes:"
3705 msgstr ""
3706
3707 # type: textblock
3708 #. type: textblock
3709 #: ../src/guestfs.pod:1662
3710 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3711 msgstr ""
3712
3713 # type: textblock
3714 #. type: textblock
3715 #: ../src/guestfs.pod:1667
3716 msgid "You do not need to fill in all fields of the structure."
3717 msgstr ""
3718
3719 # type: textblock
3720 #. type: textblock
3721 #: ../src/guestfs.pod:1671
3722 msgid ""
3723 "There must be a one-to-one correspondence between fields of the structure "
3724 "that are filled in, and bits set in the bitmask."
3725 msgstr ""
3726
3727 # type: =head2
3728 #. type: =head2
3729 #: ../src/guestfs.pod:1676
3730 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3731 msgstr ""
3732
3733 # type: textblock
3734 #. type: textblock
3735 #: ../src/guestfs.pod:1678
3736 msgid ""
3737 "In other languages, optional arguments are expressed in the way that is "
3738 "natural for that language.  We refer you to the language-specific "
3739 "documentation for more details on that."
3740 msgstr ""
3741
3742 # type: textblock
3743 #. type: textblock
3744 #: ../src/guestfs.pod:1682
3745 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3746 msgstr ""
3747
3748 # type: =head2
3749 #. type: =head2
3750 #: ../src/guestfs.pod:1684
3751 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3752 msgstr ""
3753
3754 #. type: textblock
3755 #: ../src/guestfs.pod:1686
3756 msgid ""
3757 "B<Note:> This section documents the generic event mechanism introduced in "
3758 "libguestfs 1.10, which you should use in new code if possible.  The old "
3759 "functions C<guestfs_set_log_message_callback>, "
3760 "C<guestfs_set_subprocess_quit_callback>, "
3761 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3762 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3763 "page."
3764 msgstr ""
3765
3766 #. type: textblock
3767 #: ../src/guestfs.pod:1694
3768 msgid ""
3769 "Handles generate events when certain things happen, such as log messages "
3770 "being generated, progress messages during long-running operations, or the "
3771 "handle being closed.  The API calls described below let you register a "
3772 "callback to be called when events happen.  You can register multiple "
3773 "callbacks (for the same, different or overlapping sets of events), and "
3774 "individually remove callbacks.  If callbacks are not removed, then they "
3775 "remain in force until the handle is closed."
3776 msgstr ""
3777
3778 #. type: textblock
3779 #: ../src/guestfs.pod:1702
3780 msgid ""
3781 "In the current implementation, events are only generated synchronously: that "
3782 "means that events (and hence callbacks) can only happen while you are in the "
3783 "middle of making another libguestfs call.  The callback is called in the "
3784 "same thread."
3785 msgstr ""
3786
3787 #. type: textblock
3788 #: ../src/guestfs.pod:1707
3789 msgid ""
3790 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3791 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3792 msgstr ""
3793
3794 #. type: =head3
3795 #: ../src/guestfs.pod:1711
3796 msgid "CLASSES OF EVENTS"
3797 msgstr ""
3798
3799 #. type: =item
3800 #: ../src/guestfs.pod:1715
3801 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3802 msgstr ""
3803
3804 #. type: textblock
3805 #: ../src/guestfs.pod:1718
3806 msgid ""
3807 "The callback function will be called while the handle is being closed "
3808 "(synchronously from L</guestfs_close>)."
3809 msgstr ""
3810
3811 # type: textblock
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1721
3814 msgid ""
3815 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3816 "handles that are open when the program exits.  This means that this callback "
3817 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3818 "problems in higher-level languages (eg. if your HLL interpreter has already "
3819 "been cleaned up by the time this is called, and if your callback then jumps "
3820 "into some HLL function)."
3821 msgstr ""
3822
3823 #. type: textblock
3824 #: ../src/guestfs.pod:1728
3825 msgid ""
3826 "If no callback is registered: the handle is closed without any callback "
3827 "being invoked."
3828 msgstr ""
3829
3830 #. type: =item
3831 #: ../src/guestfs.pod:1731
3832 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3833 msgstr ""
3834
3835 #. type: textblock
3836 #: ../src/guestfs.pod:1734
3837 msgid ""
3838 "The callback function will be called when the child process quits, either "
3839 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3840 "corresponds to a transition from any state to the CONFIG state)."
3841 msgstr ""
3842
3843 #. type: textblock
3844 #: ../src/guestfs.pod:1738 ../src/guestfs.pod:1747
3845 msgid "If no callback is registered: the event is ignored."
3846 msgstr ""
3847
3848 #. type: =item
3849 #: ../src/guestfs.pod:1740
3850 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3851 msgstr ""
3852
3853 #. type: textblock
3854 #: ../src/guestfs.pod:1743
3855 msgid ""
3856 "The callback function will be called when the child process becomes ready "
3857 "first time after it has been launched.  (This corresponds to a transition "
3858 "from LAUNCHING to the READY state)."
3859 msgstr ""
3860
3861 #. type: =item
3862 #: ../src/guestfs.pod:1749
3863 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3864 msgstr ""
3865
3866 # type: textblock
3867 #. type: textblock
3868 #: ../src/guestfs.pod:1752
3869 msgid ""
3870 "Some long-running operations can generate progress messages.  If this "
3871 "callback is registered, then it will be called each time a progress message "
3872 "is generated (usually two seconds after the operation started, and three "
3873 "times per second thereafter until it completes, although the frequency may "
3874 "change in future versions)."
3875 msgstr ""
3876
3877 #. type: textblock
3878 #: ../src/guestfs.pod:1758
3879 msgid ""
3880 "The callback receives in the payload four unsigned 64 bit numbers which are "
3881 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3882 msgstr ""
3883
3884 #. type: textblock
3885 #: ../src/guestfs.pod:1761
3886 msgid ""
3887 "The units of C<total> are not defined, although for some operations C<total> "
3888 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3889 "or megabytes), and C<position> may be the portion which has been transferred."
3890 msgstr ""
3891
3892 # type: textblock
3893 #. type: textblock
3894 #: ../src/guestfs.pod:1766
3895 msgid "The only defined and stable parts of the API are:"
3896 msgstr ""
3897
3898 # type: textblock
3899 #. type: textblock
3900 #: ../src/guestfs.pod:1772
3901 msgid ""
3902 "The callback can display to the user some type of progress bar or indicator "
3903 "which shows the ratio of C<position>:C<total>."
3904 msgstr ""
3905
3906 # type: textblock
3907 #. type: textblock
3908 #: ../src/guestfs.pod:1777
3909 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3910 msgstr ""
3911
3912 #. type: textblock
3913 #: ../src/guestfs.pod:1781
3914 msgid ""
3915 "If any progress notification is sent during a call, then a final progress "
3916 "notification is always sent when C<position> = C<total> (I<unless> the call "
3917 "fails with an error)."
3918 msgstr ""
3919
3920 # type: textblock
3921 #. type: textblock
3922 #: ../src/guestfs.pod:1785
3923 msgid ""
3924 "This is to simplify caller code, so callers can easily set the progress "
3925 "indicator to \"100%\" at the end of the operation, without requiring special "
3926 "code to detect this case."
3927 msgstr ""
3928
3929 #. type: textblock
3930 #: ../src/guestfs.pod:1791
3931 msgid ""
3932 "For some calls we are unable to estimate the progress of the call, but we "
3933 "can still generate progress messages to indicate activity.  This is known as "
3934 "\"pulse mode\", and is directly supported by certain progress bar "
3935 "implementations (eg. GtkProgressBar)."
3936 msgstr ""
3937
3938 #. type: textblock
3939 #: ../src/guestfs.pod:1796
3940 msgid ""
3941 "For these calls, zero or more progress messages are generated with "
3942 "C<position = 0> and C<total = 1>, followed by a final message with "
3943 "C<position = total = 1>."
3944 msgstr ""
3945
3946 #. type: textblock
3947 #: ../src/guestfs.pod:1800
3948 msgid ""
3949 "As noted above, if the call fails with an error then the final message may "
3950 "not be generated."
3951 msgstr ""
3952
3953 #. type: textblock
3954 #: ../src/guestfs.pod:1805
3955 msgid ""
3956 "The callback also receives the procedure number (C<proc_nr>) and serial "
3957 "number (C<serial>) of the call.  These are only useful for debugging "
3958 "protocol issues, and the callback can normally ignore them.  The callback "
3959 "may want to print these numbers in error messages or debugging messages."
3960 msgstr ""
3961
3962 #. type: textblock
3963 #: ../src/guestfs.pod:1811
3964 msgid "If no callback is registered: progress messages are discarded."
3965 msgstr ""
3966
3967 #. type: =item
3968 #: ../src/guestfs.pod:1813
3969 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3970 msgstr ""
3971
3972 #. type: textblock
3973 #: ../src/guestfs.pod:1816
3974 msgid ""
3975 "The callback function is called whenever a log message is generated by qemu, "
3976 "the appliance kernel, guestfsd (daemon), or utility programs."
3977 msgstr ""
3978
3979 #. type: textblock
3980 #: ../src/guestfs.pod:1819
3981 msgid ""
3982 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3983 "guestfs_launch>) then additional debug messages are generated."
3984 msgstr ""
3985
3986 #. type: textblock
3987 #: ../src/guestfs.pod:1822 ../src/guestfs.pod:1836
3988 msgid ""
3989 "If no callback is registered: the messages are discarded unless the verbose "
3990 "flag is set in which case they are sent to stderr.  You can override the "
3991 "printing of verbose messages to stderr by setting up a callback."
3992 msgstr ""
3993
3994 #. type: =item
3995 #: ../src/guestfs.pod:1827
3996 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3997 msgstr ""
3998
3999 #. type: textblock
4000 #: ../src/guestfs.pod:1830
4001 msgid ""
4002 "The callback function is called whenever a log message is generated by the "
4003 "library part of libguestfs."
4004 msgstr ""
4005
4006 #. type: textblock
4007 #: ../src/guestfs.pod:1833
4008 msgid ""
4009 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
4010 "messages are generated."
4011 msgstr ""
4012
4013 #. type: =item
4014 #: ../src/guestfs.pod:1841
4015 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
4016 msgstr ""
4017
4018 #. type: textblock
4019 #: ../src/guestfs.pod:1844
4020 msgid ""
4021 "The callback function is called whenever a trace message is generated.  This "
4022 "only applies if the trace flag (L</guestfs_set_trace>) is set."
4023 msgstr ""
4024
4025 #. type: textblock
4026 #: ../src/guestfs.pod:1847
4027 msgid ""
4028 "If no callback is registered: the messages are sent to stderr.  You can "
4029 "override the printing of trace messages to stderr by setting up a callback."
4030 msgstr ""
4031
4032 #. type: =head3
4033 #: ../src/guestfs.pod:1853
4034 msgid "guestfs_set_event_callback"
4035 msgstr ""
4036
4037 #. type: verbatim
4038 #: ../src/guestfs.pod:1855
4039 #, no-wrap
4040 msgid ""
4041 " int guestfs_set_event_callback (guestfs_h *g,\n"
4042 "                                 guestfs_event_callback cb,\n"
4043 "                                 uint64_t event_bitmask,\n"
4044 "                                 int flags,\n"
4045 "                                 void *opaque);\n"
4046 "\n"
4047 msgstr ""
4048
4049 #. type: textblock
4050 #: ../src/guestfs.pod:1861
4051 msgid ""
4052 "This function registers a callback (C<cb>) for all event classes in the "
4053 "C<event_bitmask>."
4054 msgstr ""
4055
4056 #. type: textblock
4057 #: ../src/guestfs.pod:1864
4058 msgid ""
4059 "For example, to register for all log message events, you could call this "
4060 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
4061 "To register a single callback for all possible classes of events, use "
4062 "C<GUESTFS_EVENT_ALL>."
4063 msgstr ""
4064
4065 #. type: textblock
4066 #: ../src/guestfs.pod:1870
4067 msgid "C<flags> should always be passed as 0."
4068 msgstr ""
4069
4070 #. type: textblock
4071 #: ../src/guestfs.pod:1872
4072 msgid ""
4073 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
4074 "it for any purpose."
4075 msgstr ""
4076
4077 #. type: textblock
4078 #: ../src/guestfs.pod:1875
4079 msgid ""
4080 "The return value is the event handle (an integer) which you can use to "
4081 "delete the callback (see below)."
4082 msgstr ""
4083
4084 #. type: textblock
4085 #: ../src/guestfs.pod:1878
4086 msgid ""
4087 "If there is an error, this function returns C<-1>, and sets the error in the "
4088 "handle in the usual way (see L</guestfs_last_error> etc.)"
4089 msgstr ""
4090
4091 #. type: textblock
4092 #: ../src/guestfs.pod:1881
4093 msgid ""
4094 "Callbacks remain in effect until they are deleted, or until the handle is "
4095 "closed."
4096 msgstr ""
4097
4098 #. type: textblock
4099 #: ../src/guestfs.pod:1884
4100 msgid ""
4101 "In the case where multiple callbacks are registered for a particular event "
4102 "class, all of the callbacks are called.  The order in which multiple "
4103 "callbacks are called is not defined."
4104 msgstr ""
4105
4106 #. type: =head3
4107 #: ../src/guestfs.pod:1888
4108 msgid "guestfs_delete_event_callback"
4109 msgstr ""
4110
4111 #. type: verbatim
4112 #: ../src/guestfs.pod:1890
4113 #, no-wrap
4114 msgid ""
4115 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
4116 "\n"
4117 msgstr ""
4118
4119 #. type: textblock
4120 #: ../src/guestfs.pod:1892
4121 msgid ""
4122 "Delete a callback that was previously registered.  C<event_handle> should be "
4123 "the integer that was returned by a previous call to "
4124 "C<guestfs_set_event_callback> on the same handle."
4125 msgstr ""
4126
4127 #. type: =head3
4128 #: ../src/guestfs.pod:1896
4129 msgid "guestfs_event_callback"
4130 msgstr ""
4131
4132 #. type: verbatim
4133 #: ../src/guestfs.pod:1898
4134 #, no-wrap
4135 msgid ""
4136 " typedef void (*guestfs_event_callback) (\n"
4137 "                  guestfs_h *g,\n"
4138 "                  void *opaque,\n"
4139 "                  uint64_t event,\n"
4140 "                  int event_handle,\n"
4141 "                  int flags,\n"
4142 "                  const char *buf, size_t buf_len,\n"
4143 "                  const uint64_t *array, size_t array_len);\n"
4144 "\n"
4145 msgstr ""
4146
4147 #. type: textblock
4148 #: ../src/guestfs.pod:1907
4149 msgid ""
4150 "This is the type of the event callback function that you have to provide."
4151 msgstr ""
4152
4153 #. type: textblock
4154 #: ../src/guestfs.pod:1910
4155 msgid ""
4156 "The basic parameters are: the handle (C<g>), the opaque user pointer "
4157 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
4158 "handle, and C<flags> which in the current API you should ignore."
4159 msgstr ""
4160
4161 #. type: textblock
4162 #: ../src/guestfs.pod:1914
4163 msgid ""
4164 "The remaining parameters contain the event payload (if any).  Each event may "
4165 "contain a payload, which usually relates to the event class, but for future "
4166 "proofing your code should be written to handle any payload for any event "
4167 "class."
4168 msgstr ""
4169
4170 #. type: textblock
4171 #: ../src/guestfs.pod:1919
4172 msgid ""
4173 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
4174 "there is no message buffer).  Note that this message buffer can contain "
4175 "arbitrary 8 bit data, including NUL bytes."
4176 msgstr ""
4177
4178 #. type: textblock
4179 #: ../src/guestfs.pod:1923
4180 msgid ""
4181 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
4182 "moment this is only used for progress messages."
4183 msgstr ""
4184
4185 #. type: =head3
4186 #: ../src/guestfs.pod:1926
4187 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
4188 msgstr ""
4189
4190 #. type: textblock
4191 #: ../src/guestfs.pod:1928
4192 msgid ""
4193 "One motivation for the generic event API was to allow GUI programs to "
4194 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
4195 "unconditionally to C<stderr>."
4196 msgstr ""
4197
4198 #. type: textblock
4199 #: ../src/guestfs.pod:1932
4200 msgid ""
4201 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
4202 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
4203 "messages are not events; you must capture error messages separately)."
4204 msgstr ""
4205
4206 #. type: textblock
4207 #: ../src/guestfs.pod:1937
4208 msgid ""
4209 "Programs have to set up a callback to capture the classes of events of "
4210 "interest:"
4211 msgstr ""
4212
4213 #. type: verbatim
4214 #: ../src/guestfs.pod:1940
4215 #, no-wrap
4216 msgid ""
4217 " int eh =\n"
4218 "   guestfs_set_event_callback\n"
4219 "     (g, message_callback,\n"
4220 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
4221 "      GUESTFS_EVENT_TRACE,\n"
4222 "      0, NULL) == -1)\n"
4223 " if (eh == -1) {\n"
4224 "   // handle error in the usual way\n"
4225 " }\n"
4226 "\n"
4227 msgstr ""
4228
4229 #. type: textblock
4230 #: ../src/guestfs.pod:1950
4231 msgid ""
4232 "The callback can then direct messages to the appropriate place.  In this "
4233 "example, messages are directed to syslog:"
4234 msgstr ""
4235
4236 #. type: verbatim
4237 #: ../src/guestfs.pod:1953
4238 #, no-wrap
4239 msgid ""
4240 " static void\n"
4241 " message_callback (\n"
4242 "         guestfs_h *g,\n"
4243 "         void *opaque,\n"
4244 "         uint64_t event,\n"
4245 "         int event_handle,\n"
4246 "         int flags,\n"
4247 "         const char *buf, size_t buf_len,\n"
4248 "         const uint64_t *array, size_t array_len)\n"
4249 " {\n"
4250 "   const int priority = LOG_USER|LOG_INFO;\n"
4251 "   if (buf_len > 0)\n"
4252 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
4253 " }\n"
4254 "\n"
4255 msgstr ""
4256
4257 # type: =head1
4258 #. type: =head1
4259 #: ../src/guestfs.pod:1968
4260 msgid "PRIVATE DATA AREA"
4261 msgstr ""
4262
4263 #. type: textblock
4264 #: ../src/guestfs.pod:1970
4265 msgid ""
4266 "You can attach named pieces of private data to the libguestfs handle, fetch "
4267 "them by name, and walk over them, for the lifetime of the handle.  This is "
4268 "called the private data area and is only available from the C API."
4269 msgstr ""
4270
4271 # type: textblock
4272 #. type: textblock
4273 #: ../src/guestfs.pod:1975
4274 msgid "To attach a named piece of data, use the following call:"
4275 msgstr ""
4276
4277 # type: verbatim
4278 #. type: verbatim
4279 #: ../src/guestfs.pod:1977
4280 #, no-wrap
4281 msgid ""
4282 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
4283 "\n"
4284 msgstr ""
4285
4286 # type: textblock
4287 #. type: textblock
4288 #: ../src/guestfs.pod:1979
4289 msgid ""
4290 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
4291 "pointer (which can be C<NULL>).  Any previous item with the same name is "
4292 "overwritten."
4293 msgstr ""
4294
4295 # type: textblock
4296 #. type: textblock
4297 #: ../src/guestfs.pod:1983
4298 msgid ""
4299 "You can use any C<key> you want, but names beginning with an underscore "
4300 "character are reserved for internal libguestfs purposes (for implementing "
4301 "language bindings).  It is recommended to prefix the name with some unique "
4302 "string to avoid collisions with other users."
4303 msgstr ""
4304
4305 # type: textblock
4306 #. type: textblock
4307 #: ../src/guestfs.pod:1988
4308 msgid "To retrieve the pointer, use:"
4309 msgstr ""
4310
4311 # type: verbatim
4312 #. type: verbatim
4313 #: ../src/guestfs.pod:1990
4314 #, no-wrap
4315 msgid ""
4316 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
4317 "\n"
4318 msgstr ""
4319
4320 # type: textblock
4321 #. type: textblock
4322 #: ../src/guestfs.pod:1992
4323 msgid ""
4324 "This function returns C<NULL> if either no data is found associated with "
4325 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
4326 "C<NULL>."
4327 msgstr ""
4328
4329 #. type: textblock
4330 #: ../src/guestfs.pod:1996
4331 msgid ""
4332 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4333 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
4334 "all.  In particular, libguestfs does I<not> try to free the data when the "
4335 "handle is closed.  If the data must be freed, then the caller must either "
4336 "free it before calling L</guestfs_close> or must set up a close callback to "
4337 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4338 msgstr ""
4339
4340 #. type: textblock
4341 #: ../src/guestfs.pod:2003
4342 msgid "To walk over all entries, use these two functions:"
4343 msgstr ""
4344
4345 #. type: verbatim
4346 #: ../src/guestfs.pod:2005
4347 #, no-wrap
4348 msgid ""
4349 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4350 "\n"
4351 msgstr ""
4352
4353 #. type: verbatim
4354 #: ../src/guestfs.pod:2007
4355 #, no-wrap
4356 msgid ""
4357 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4358 "\n"
4359 msgstr ""
4360
4361 #. type: textblock
4362 #: ../src/guestfs.pod:2009
4363 msgid ""
4364 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4365 "not have any particular meaning -- keys are not returned in any defined "
4366 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4367 "corresponding data pointer is returned from the function.  C<NULL> is "
4368 "returned if there are no keys stored in the handle."
4369 msgstr ""
4370
4371 #. type: textblock
4372 #: ../src/guestfs.pod:2015
4373 msgid ""
4374 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4375 "value of this function is also C<NULL> is there are no further entries to "
4376 "return."
4377 msgstr ""
4378
4379 #. type: textblock
4380 #: ../src/guestfs.pod:2019
4381 msgid "Notes about walking over entries:"
4382 msgstr ""
4383
4384 #. type: textblock
4385 #: ../src/guestfs.pod:2025
4386 msgid ""
4387 "You must not call C<guestfs_set_private> while walking over the entries."
4388 msgstr ""
4389
4390 #. type: textblock
4391 #: ../src/guestfs.pod:2030
4392 msgid ""
4393 "The handle maintains an internal iterator which is reset when you call "
4394 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4395 "call C<guestfs_set_private>."
4396 msgstr ""
4397
4398 #. type: textblock
4399 #: ../src/guestfs.pod:2036
4400 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4401 msgstr ""
4402
4403 #. type: verbatim
4404 #: ../src/guestfs.pod:2038
4405 #, no-wrap
4406 msgid ""
4407 " guestfs_set_private (g, key, NULL);\n"
4408 "\n"
4409 msgstr ""
4410
4411 #. type: textblock
4412 #: ../src/guestfs.pod:2040
4413 msgid "then that C<key> is not returned when walking."
4414 msgstr ""
4415
4416 #. type: textblock
4417 #: ../src/guestfs.pod:2044
4418 msgid ""
4419 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4420 "C<guestfs_next_private> or C<guestfs_set_private>."
4421 msgstr ""
4422
4423 #. type: textblock
4424 #: ../src/guestfs.pod:2050
4425 msgid ""
4426 "The following example code shows how to print all keys and data pointers "
4427 "that are associated with the handle C<g>:"
4428 msgstr ""
4429
4430 #. type: verbatim
4431 #: ../src/guestfs.pod:2053
4432 #, no-wrap
4433 msgid ""
4434 " const char *key;\n"
4435 " void *data = guestfs_first_private (g, &key);\n"
4436 " while (data != NULL)\n"
4437 "   {\n"
4438 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4439 "     data = guestfs_next_private (g, &key);\n"
4440 "   }\n"
4441 "\n"
4442 msgstr ""
4443
4444 #. type: textblock
4445 #: ../src/guestfs.pod:2061
4446 msgid ""
4447 "More commonly you are only interested in keys that begin with an application-"
4448 "specific prefix C<foo_>.  Modify the loop like so:"
4449 msgstr ""
4450
4451 #. type: verbatim
4452 #: ../src/guestfs.pod:2064
4453 #, no-wrap
4454 msgid ""
4455 " const char *key;\n"
4456 " void *data = guestfs_first_private (g, &key);\n"
4457 " while (data != NULL)\n"
4458 "   {\n"
4459 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4460 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4461 "     data = guestfs_next_private (g, &key);\n"
4462 "   }\n"
4463 "\n"
4464 msgstr ""
4465
4466 #. type: textblock
4467 #: ../src/guestfs.pod:2073
4468 msgid ""
4469 "If you need to modify keys while walking, then you have to jump back to the "
4470 "beginning of the loop.  For example, to delete all keys prefixed with "
4471 "C<foo_>:"
4472 msgstr ""
4473
4474 #. type: verbatim
4475 #: ../src/guestfs.pod:2077
4476 #, no-wrap
4477 msgid ""
4478 "  const char *key;\n"
4479 "  void *data;\n"
4480 " again:\n"
4481 "  data = guestfs_first_private (g, &key);\n"
4482 "  while (data != NULL)\n"
4483 "    {\n"
4484 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4485 "        {\n"
4486 "          guestfs_set_private (g, key, NULL);\n"
4487 "          /* note that 'key' pointer is now invalid, and so is\n"
4488 "             the internal iterator */\n"
4489 "          goto again;\n"
4490 "        }\n"
4491 "      data = guestfs_next_private (g, &key);\n"
4492 "    }\n"
4493 "\n"
4494 msgstr ""
4495
4496 #. type: textblock
4497 #: ../src/guestfs.pod:2093
4498 msgid ""
4499 "Note that the above loop is guaranteed to terminate because the keys are "
4500 "being deleted, but other manipulations of keys within the loop might not "
4501 "terminate unless you also maintain an indication of which keys have been "
4502 "visited."
4503 msgstr ""
4504
4505 # type: =end
4506 #. type: =end
4507 #: ../src/guestfs.pod:2098 ../src/guestfs.pod:2103
4508 msgid "html"
4509 msgstr ""
4510
4511 # type: textblock
4512 #. type: textblock
4513 #: ../src/guestfs.pod:2100
4514 msgid ""
4515 "<!-- old anchor for the next section --> <a name="
4516 "\"state_machine_and_low_level_event_api\"/>"
4517 msgstr ""
4518
4519 # type: =head1
4520 #. type: =head1
4521 #: ../src/guestfs.pod:2105
4522 msgid "ARCHITECTURE"
4523 msgstr ""
4524
4525 # type: textblock
4526 #. type: textblock
4527 #: ../src/guestfs.pod:2107
4528 msgid ""
4529 "Internally, libguestfs is implemented by running an appliance (a special "
4530 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4531 "process of the main program."
4532 msgstr ""
4533
4534 # type: verbatim
4535 #. type: verbatim
4536 #: ../src/guestfs.pod:2111
4537 #, no-wrap
4538 msgid ""
4539 "  ___________________\n"
4540 " /                   \\\n"
4541 " | main program      |\n"
4542 " |                   |\n"
4543 " |                   |           child process / appliance\n"
4544 " |                   |           __________________________\n"
4545 " |                   |          / qemu                     \\\n"
4546 " +-------------------+   RPC    |      +-----------------+ |\n"
4547 " | libguestfs     <--------------------> guestfsd        | |\n"
4548 " |                   |          |      +-----------------+ |\n"
4549 " \\___________________/          |      | Linux kernel    | |\n"
4550 "                                |      +--^--------------+ |\n"
4551 "                                \\_________|________________/\n"
4552 "                                          |\n"
4553 "                                   _______v______\n"
4554 "                                  /              \\\n"
4555 "                                  | Device or    |\n"
4556 "                                  | disk image   |\n"
4557 "                                  \\______________/\n"
4558 "\n"
4559 msgstr ""
4560
4561 # type: textblock
4562 #. type: textblock
4563 #: ../src/guestfs.pod:2131
4564 msgid ""
4565 "The library, linked to the main program, creates the child process and hence "
4566 "the appliance in the L</guestfs_launch> function."
4567 msgstr ""
4568
4569 # type: textblock
4570 #. type: textblock
4571 #: ../src/guestfs.pod:2134
4572 msgid ""
4573 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4574 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4575 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4576 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4577 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4578 "attached to the qemu process which translates device access by the "
4579 "appliance's Linux kernel into accesses to the image."
4580 msgstr ""
4581
4582 # type: textblock
4583 #. type: textblock
4584 #: ../src/guestfs.pod:2143
4585 msgid ""
4586 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4587 "Although the disk image you are attached to might also be used by some "
4588 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4589 "care if both libguestfs's qemu process and your virtual machine are trying "
4590 "to update the disk image at the same time, since these usually results in "
4591 "massive disk corruption)."
4592 msgstr ""
4593
4594 # type: =head1
4595 #. type: =head1
4596 #: ../src/guestfs.pod:2150
4597 msgid "STATE MACHINE"
4598 msgstr ""
4599
4600 # type: textblock
4601 #. type: textblock
4602 #: ../src/guestfs.pod:2152
4603 msgid "libguestfs uses a state machine to model the child process:"
4604 msgstr ""
4605
4606 # type: verbatim
4607 #. type: verbatim
4608 #: ../src/guestfs.pod:2154
4609 #, no-wrap
4610 msgid ""
4611 "                         |\n"
4612 "                    guestfs_create\n"
4613 "                         |\n"
4614 "                         |\n"
4615 "                     ____V_____\n"
4616 "                    /          \\\n"
4617 "                    |  CONFIG  |\n"
4618 "                    \\__________/\n"
4619 "                     ^ ^   ^  \\\n"
4620 "                    /  |    \\  \\ guestfs_launch\n"
4621 "                   /   |    _\\__V______\n"
4622 "                  /    |   /           \\\n"
4623 "                 /     |   | LAUNCHING |\n"
4624 "                /      |   \\___________/\n"
4625 "               /       |       /\n"
4626 "              /        |  guestfs_launch\n"
4627 "             /         |     /\n"
4628 "    ______  /        __|____V\n"
4629 "   /      \\ ------> /        \\\n"
4630 "   | BUSY |         | READY  |\n"
4631 "   \\______/ <------ \\________/\n"
4632 "\n"
4633 msgstr ""
4634
4635 # type: textblock
4636 #. type: textblock
4637 #: ../src/guestfs.pod:2176
4638 msgid ""
4639 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4640 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4641 "(3) alternating between READY and BUSY as commands are issued to, and "
4642 "carried out by, the child process."
4643 msgstr ""
4644
4645 # type: textblock
4646 #. type: textblock
4647 #: ../src/guestfs.pod:2181
4648 msgid ""
4649 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4650 "asynchronously at any time (eg. due to some internal error), and that causes "
4651 "the state to transition back to CONFIG."
4652 msgstr ""
4653
4654 # type: textblock
4655 #. type: textblock
4656 #: ../src/guestfs.pod:2185
4657 msgid ""
4658 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4659 "issued when in the CONFIG state."
4660 msgstr ""
4661
4662 # type: textblock
4663 #. type: textblock
4664 #: ../src/guestfs.pod:2188
4665 msgid ""
4666 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4667 "L</guestfs_launch> blocks until the child process is READY to accept "
4668 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4669 "moves the state from CONFIG to LAUNCHING while it is running."
4670 msgstr ""
4671
4672 # type: textblock
4673 #. type: textblock
4674 #: ../src/guestfs.pod:2194
4675 msgid ""
4676 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4677 "state.  These API calls block waiting for the command to be carried out (ie. "
4678 "the state to transition to BUSY and then back to READY).  There are no non-"
4679 "blocking versions, and no way to issue more than one command per handle at "
4680 "the same time."
4681 msgstr ""
4682
4683 # type: textblock
4684 #. type: textblock
4685 #: ../src/guestfs.pod:2200
4686 msgid ""
4687 "Finally, the child process sends asynchronous messages back to the main "
4688 "program, such as kernel log messages.  You can register a callback to "
4689 "receive these messages."
4690 msgstr ""
4691
4692 # type: =head1
4693 #. type: =head1
4694 #: ../src/guestfs.pod:2204
4695 msgid "INTERNALS"
4696 msgstr ""
4697
4698 # type: =head2
4699 #. type: =head2
4700 #: ../src/guestfs.pod:2206
4701 msgid "COMMUNICATION PROTOCOL"
4702 msgstr ""
4703
4704 # type: textblock
4705 #. type: textblock
4706 #: ../src/guestfs.pod:2208
4707 msgid ""
4708 "Don't rely on using this protocol directly.  This section documents how it "
4709 "currently works, but it may change at any time."
4710 msgstr ""
4711
4712 # type: textblock
4713 #. type: textblock
4714 #: ../src/guestfs.pod:2211
4715 msgid ""
4716 "The protocol used to talk between the library and the daemon running inside "
4717 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4718 "1014, RFC 1832, RFC 4506)."
4719 msgstr ""
4720
4721 # type: textblock
4722 #. type: textblock
4723 #: ../src/guestfs.pod:2215
4724 msgid ""
4725 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4726 "this file is automatically generated)."
4727 msgstr ""
4728
4729 # type: textblock
4730 #. type: textblock
4731 #: ../src/guestfs.pod:2218
4732 msgid ""
4733 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4734 "and C<FileOut> parameters, which are handled with very simple request/reply "
4735 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4736 "parameters, which use the same request and reply messages, but they may also "
4737 "be followed by files sent using a chunked encoding."
4738 msgstr ""
4739
4740 # type: =head3
4741 #. type: =head3
4742 #: ../src/guestfs.pod:2225
4743 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4744 msgstr ""
4745
4746 # type: textblock
4747 #. type: textblock
4748 #: ../src/guestfs.pod:2227
4749 msgid "For ordinary functions, the request message is:"
4750 msgstr ""
4751
4752 # type: verbatim
4753 #. type: verbatim
4754 #: ../src/guestfs.pod:2229
4755 #, no-wrap
4756 msgid ""
4757 " total length (header + arguments,\n"
4758 "      but not including the length word itself)\n"
4759 " struct guestfs_message_header (encoded as XDR)\n"
4760 " struct guestfs_<foo>_args (encoded as XDR)\n"
4761 "\n"
4762 msgstr ""
4763
4764 # type: textblock
4765 #. type: textblock
4766 #: ../src/guestfs.pod:2234
4767 msgid ""
4768 "The total length field allows the daemon to allocate a fixed size buffer "
4769 "into which it slurps the rest of the message.  As a result, the total length "
4770 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4771 "effective size of any request is limited to somewhere under this size."
4772 msgstr ""
4773
4774 # type: textblock
4775 #. type: textblock
4776 #: ../src/guestfs.pod:2240
4777 msgid ""
4778 "Note also that many functions don't take any arguments, in which case the "
4779 "C<guestfs_I<foo>_args> is completely omitted."
4780 msgstr ""
4781
4782 # type: textblock
4783 #. type: textblock
4784 #: ../src/guestfs.pod:2243
4785 msgid ""
4786 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4787 "receiver knows what type of args structure to expect, or none at all."
4788 msgstr ""
4789
4790 # type: textblock
4791 #. type: textblock
4792 #: ../src/guestfs.pod:2247
4793 msgid ""
4794 "For functions that take optional arguments, the optional arguments are "
4795 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4796 "arguments.  A bitmask in the header indicates which optional arguments are "
4797 "meaningful.  The bitmask is also checked to see if it contains bits set "
4798 "which the daemon does not know about (eg. if more optional arguments were "
4799 "added in a later version of the library), and this causes the call to be "
4800 "rejected."
4801 msgstr ""
4802
4803 # type: textblock
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2255
4806 msgid "The reply message for ordinary functions is:"
4807 msgstr ""
4808
4809 # type: verbatim
4810 #. type: verbatim
4811 #: ../src/guestfs.pod:2257
4812 #, no-wrap
4813 msgid ""
4814 " total length (header + ret,\n"
4815 "      but not including the length word itself)\n"
4816 " struct guestfs_message_header (encoded as XDR)\n"
4817 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4818 "\n"
4819 msgstr ""
4820
4821 # type: textblock
4822 #. type: textblock
4823 #: ../src/guestfs.pod:2262
4824 msgid ""
4825 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4826 "functions that return no formal return values."
4827 msgstr ""
4828
4829 # type: textblock
4830 #. type: textblock
4831 #: ../src/guestfs.pod:2265
4832 msgid ""
4833 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4834 msgstr ""
4835
4836 # type: textblock
4837 #. type: textblock
4838 #: ../src/guestfs.pod:2268
4839 msgid ""
4840 "In the case of an error, a flag is set in the header, and the reply message "
4841 "is slightly changed:"
4842 msgstr ""
4843
4844 # type: verbatim
4845 #. type: verbatim
4846 #: ../src/guestfs.pod:2271
4847 #, no-wrap
4848 msgid ""
4849 " total length (header + error,\n"
4850 "      but not including the length word itself)\n"
4851 " struct guestfs_message_header (encoded as XDR)\n"
4852 " struct guestfs_message_error (encoded as XDR)\n"
4853 "\n"
4854 msgstr ""
4855
4856 # type: textblock
4857 #. type: textblock
4858 #: ../src/guestfs.pod:2276
4859 msgid ""
4860 "The C<guestfs_message_error> structure contains the error message as a "
4861 "string."
4862 msgstr ""
4863
4864 # type: =head3
4865 #. type: =head3
4866 #: ../src/guestfs.pod:2279
4867 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4868 msgstr ""
4869
4870 # type: textblock
4871 #. type: textblock
4872 #: ../src/guestfs.pod:2281
4873 msgid ""
4874 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4875 "The normal request message is sent (see above).  However this is followed by "
4876 "a sequence of file chunks."
4877 msgstr ""
4878
4879 # type: verbatim
4880 #. type: verbatim
4881 #: ../src/guestfs.pod:2285
4882 #, no-wrap
4883 msgid ""
4884 " total length (header + arguments,\n"
4885 "      but not including the length word itself,\n"
4886 "      and not including the chunks)\n"
4887 " struct guestfs_message_header (encoded as XDR)\n"
4888 " struct guestfs_<foo>_args (encoded as XDR)\n"
4889 " sequence of chunks for FileIn param #0\n"
4890 " sequence of chunks for FileIn param #1 etc.\n"
4891 "\n"
4892 msgstr ""
4893
4894 # type: textblock
4895 #. type: textblock
4896 #: ../src/guestfs.pod:2293
4897 msgid "The \"sequence of chunks\" is:"
4898 msgstr ""
4899
4900 # type: verbatim
4901 #. type: verbatim
4902 #: ../src/guestfs.pod:2295
4903 #, no-wrap
4904 msgid ""
4905 " length of chunk (not including length word itself)\n"
4906 " struct guestfs_chunk (encoded as XDR)\n"
4907 " length of chunk\n"
4908 " struct guestfs_chunk (encoded as XDR)\n"
4909 "   ...\n"
4910 " length of chunk\n"
4911 " struct guestfs_chunk (with data.data_len == 0)\n"
4912 "\n"
4913 msgstr ""
4914
4915 # type: textblock
4916 #. type: textblock
4917 #: ../src/guestfs.pod:2303
4918 msgid ""
4919 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4920 "is set in the final chunk to indicate either successful completion or early "
4921 "cancellation."
4922 msgstr ""
4923
4924 # type: textblock
4925 #. type: textblock
4926 #: ../src/guestfs.pod:2307
4927 msgid ""
4928 "At time of writing there are no functions that have more than one FileIn "
4929 "parameter.  However this is (theoretically) supported, by sending the "
4930 "sequence of chunks for each FileIn parameter one after another (from left to "
4931 "right)."
4932 msgstr ""
4933
4934 # type: textblock
4935 #. type: textblock
4936 #: ../src/guestfs.pod:2312
4937 msgid ""
4938 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4939 "transfer.  The library does this by sending a chunk with a special flag set "
4940 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4941 "RPC, does I<not> send any reply, and goes back to reading the next request."
4942 msgstr ""
4943
4944 # type: textblock
4945 #. type: textblock
4946 #: ../src/guestfs.pod:2318
4947 msgid ""
4948 "The daemon may also cancel.  It does this by writing a special word "
4949 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4950 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4951 "cancel chunk).  The special word is chosen so that even if cancellation "
4952 "happens right at the end of the transfer (after the library has finished "
4953 "writing and has started listening for the reply), the \"spurious\" cancel "
4954 "flag will not be confused with the reply message."
4955 msgstr ""
4956
4957 # type: textblock
4958 #. type: textblock
4959 #: ../src/guestfs.pod:2327
4960 msgid ""
4961 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4962 "limit), and also files where the size is not known in advance (eg. from "
4963 "pipes or sockets).  However the chunks are rather small "
4964 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4965 "to keep much in memory."
4966 msgstr ""
4967
4968 # type: =head3
4969 #. type: =head3
4970 #: ../src/guestfs.pod:2333
4971 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4972 msgstr ""
4973
4974 # type: textblock
4975 #. type: textblock
4976 #: ../src/guestfs.pod:2335
4977 msgid ""
4978 "The protocol for FileOut parameters is exactly the same as for FileIn "
4979 "parameters, but with the roles of daemon and library reversed."
4980 msgstr ""
4981
4982 # type: verbatim
4983 #. type: verbatim
4984 #: ../src/guestfs.pod:2338
4985 #, no-wrap
4986 msgid ""
4987 " total length (header + ret,\n"
4988 "      but not including the length word itself,\n"
4989 "      and not including the chunks)\n"
4990 " struct guestfs_message_header (encoded as XDR)\n"
4991 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4992 " sequence of chunks for FileOut param #0\n"
4993 " sequence of chunks for FileOut param #1 etc.\n"
4994 "\n"
4995 msgstr ""
4996
4997 # type: =head3
4998 #. type: =head3
4999 #: ../src/guestfs.pod:2346
5000 msgid "INITIAL MESSAGE"
5001 msgstr ""
5002
5003 # type: textblock
5004 #. type: textblock
5005 #: ../src/guestfs.pod:2348
5006 msgid ""
5007 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
5008 "which indicates that the guest and daemon is alive.  This is what L</"
5009 "guestfs_launch> waits for."
5010 msgstr ""
5011
5012 # type: =head3
5013 #. type: =head3
5014 #: ../src/guestfs.pod:2352
5015 msgid "PROGRESS NOTIFICATION MESSAGES"
5016 msgstr ""
5017
5018 # type: textblock
5019 #. type: textblock
5020 #: ../src/guestfs.pod:2354
5021 msgid ""
5022 "The daemon may send progress notification messages at any time.  These are "
5023 "distinguished by the normal length word being replaced by "
5024 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
5025 msgstr ""
5026
5027 #. type: textblock
5028 #: ../src/guestfs.pod:2358
5029 msgid ""
5030 "The library turns them into progress callbacks (see L</"
5031 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
5032 "if not."
5033 msgstr ""
5034
5035 # type: textblock
5036 #. type: textblock
5037 #: ../src/guestfs.pod:2362
5038 msgid ""
5039 "The daemon self-limits the frequency of progress messages it sends (see "
5040 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
5041 "messages."
5042 msgstr ""
5043
5044 # type: =head1
5045 #. type: =head1
5046 #: ../src/guestfs.pod:2366
5047 msgid "LIBGUESTFS VERSION NUMBERS"
5048 msgstr ""
5049
5050 # type: textblock
5051 #. type: textblock
5052 #: ../src/guestfs.pod:2368
5053 msgid ""
5054 "Since April 2010, libguestfs has started to make separate development and "
5055 "stable releases, along with corresponding branches in our git repository.  "
5056 "These separate releases can be identified by version number:"
5057 msgstr ""
5058
5059 # type: verbatim
5060 #. type: verbatim
5061 #: ../src/guestfs.pod:2373
5062 #, no-wrap
5063 msgid ""
5064 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
5065 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
5066 "       |\n"
5067 "       v\n"
5068 " 1  .  3  .  5\n"
5069 " ^           ^\n"
5070 " |           |\n"
5071 " |           `-------- sub-version\n"
5072 " |\n"
5073 " `------ always '1' because we don't change the ABI\n"
5074 "\n"
5075 msgstr ""
5076
5077 # type: textblock
5078 #. type: textblock
5079 #: ../src/guestfs.pod:2384
5080 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
5081 msgstr ""
5082
5083 # type: textblock
5084 #. type: textblock
5085 #: ../src/guestfs.pod:2386
5086 msgid ""
5087 "As time passes we cherry pick fixes from the development branch and backport "
5088 "those into the stable branch, the effect being that the stable branch should "
5089 "get more stable and less buggy over time.  So the stable releases are ideal "
5090 "for people who don't need new features but would just like the software to "
5091 "work."
5092 msgstr ""
5093
5094 # type: textblock
5095 #. type: textblock
5096 #: ../src/guestfs.pod:2392
5097 msgid "Our criteria for backporting changes are:"
5098 msgstr ""
5099
5100 # type: textblock
5101 #. type: textblock
5102 #: ../src/guestfs.pod:2398
5103 msgid ""
5104 "Documentation changes which don't affect any code are backported unless the "
5105 "documentation refers to a future feature which is not in stable."
5106 msgstr ""
5107
5108 # type: textblock
5109 #. type: textblock
5110 #: ../src/guestfs.pod:2404
5111 msgid ""
5112 "Bug fixes which are not controversial, fix obvious problems, and have been "
5113 "well tested are backported."
5114 msgstr ""
5115
5116 # type: textblock
5117 #. type: textblock
5118 #: ../src/guestfs.pod:2409
5119 msgid ""
5120 "Simple rearrangements of code which shouldn't affect how it works get "
5121 "backported.  This is so that the code in the two branches doesn't get too "
5122 "far out of step, allowing us to backport future fixes more easily."
5123 msgstr ""
5124
5125 # type: textblock
5126 #. type: textblock
5127 #: ../src/guestfs.pod:2415
5128 msgid ""
5129 "We I<don't> backport new features, new APIs, new tools etc, except in one "
5130 "exceptional case: the new feature is required in order to implement an "
5131 "important bug fix."
5132 msgstr ""
5133
5134 # type: textblock
5135 #. type: textblock
5136 #: ../src/guestfs.pod:2421
5137 msgid ""
5138 "A new stable branch starts when we think the new features in development are "
5139 "substantial and compelling enough over the current stable branch to warrant "
5140 "it.  When that happens we create new stable and development versions 1.N.0 "
5141 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
5142 "stable at this point, but by backporting fixes from development, that branch "
5143 "will stabilize over time."
5144 msgstr ""
5145
5146 #. type: =head1
5147 #: ../src/guestfs.pod:2429
5148 msgid "EXTENDING LIBGUESTFS"
5149 msgstr ""
5150
5151 #. type: =head2
5152 #: ../src/guestfs.pod:2431
5153 msgid "ADDING A NEW API ACTION"
5154 msgstr ""
5155
5156 #. type: textblock
5157 #: ../src/guestfs.pod:2433
5158 msgid ""
5159 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
5160 "documentation) are generated, and this makes it easy to extend the "
5161 "libguestfs API."
5162 msgstr ""
5163
5164 #. type: textblock
5165 #: ../src/guestfs.pod:2437
5166 msgid "To add a new API action there are two changes:"
5167 msgstr ""
5168
5169 #. type: textblock
5170 #: ../src/guestfs.pod:2443
5171 msgid ""
5172 "You need to add a description of the call (name, parameters, return type, "
5173 "tests, documentation) to C<generator/generator_actions.ml>."
5174 msgstr ""
5175
5176 #. type: textblock
5177 #: ../src/guestfs.pod:2446
5178 msgid ""
5179 "There are two sorts of API action, depending on whether the call goes "
5180 "through to the daemon in the appliance, or is serviced entirely by the "
5181 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
5182 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
5183 "an example of the latter, since a trace flag is maintained in the handle and "
5184 "all tracing is done on the library side."
5185 msgstr ""
5186
5187 #. type: textblock
5188 #: ../src/guestfs.pod:2454
5189 msgid ""
5190 "Most new actions are of the first type, and get added to the "
5191 "C<daemon_functions> list.  Each function has a unique procedure number used "
5192 "in the RPC protocol which is assigned to that action when we publish "
5193 "libguestfs and cannot be reused.  Take the latest procedure number and "
5194 "increment it."
5195 msgstr ""
5196
5197 #. type: textblock
5198 #: ../src/guestfs.pod:2460
5199 msgid ""
5200 "For library-only actions of the second type, add to the "
5201 "C<non_daemon_functions> list.  Since these functions are serviced by the "
5202 "library and do not travel over the RPC mechanism to the daemon, these "
5203 "functions do not need a procedure number, and so the procedure number is set "
5204 "to C<-1>."
5205 msgstr ""
5206
5207 #. type: textblock
5208 #: ../src/guestfs.pod:2468
5209 msgid "Implement the action (in C):"
5210 msgstr ""
5211
5212 #. type: textblock
5213 #: ../src/guestfs.pod:2470
5214 msgid ""
5215 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
5216 "C<daemon/> directory."
5217 msgstr ""
5218
5219 #. type: textblock
5220 #: ../src/guestfs.pod:2473
5221 msgid ""
5222 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
5223 "(note: double underscore) in the C<src/> directory."
5224 msgstr ""
5225
5226 #. type: textblock
5227 #: ../src/guestfs.pod:2476
5228 msgid "In either case, use another function as an example of what to do."
5229 msgstr ""
5230
5231 #. type: textblock
5232 #: ../src/guestfs.pod:2480
5233 msgid "After making these changes, use C<make> to compile."
5234 msgstr ""
5235
5236 #. type: textblock
5237 #: ../src/guestfs.pod:2482
5238 msgid ""
5239 "Note that you don't need to implement the RPC, language bindings, manual "
5240 "pages or anything else.  It's all automatically generated from the OCaml "
5241 "description."
5242 msgstr ""
5243
5244 #. type: =head2
5245 #: ../src/guestfs.pod:2486
5246 msgid "ADDING TESTS FOR AN API ACTION"
5247 msgstr ""
5248
5249 #. type: textblock
5250 #: ../src/guestfs.pod:2488
5251 msgid ""
5252 "You can supply zero or as many tests as you want per API call.  The tests "
5253 "can either be added as part of the API description (C<generator/"
5254 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
5255 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
5256 "slower, so if possible use the first method."
5257 msgstr ""
5258
5259 #. type: textblock
5260 #: ../src/guestfs.pod:2494
5261 msgid ""
5262 "The following describes the test environment used when you add an API test "
5263 "in C<generator_actions.ml>."
5264 msgstr ""
5265
5266 #. type: textblock
5267 #: ../src/guestfs.pod:2497
5268 msgid "The test environment has 4 block devices:"
5269 msgstr ""
5270
5271 #. type: =item
5272 #: ../src/guestfs.pod:2501
5273 msgid "C</dev/sda> 500MB"
5274 msgstr ""
5275
5276 #. type: textblock
5277 #: ../src/guestfs.pod:2503
5278 msgid "General block device for testing."
5279 msgstr ""
5280
5281 #. type: =item
5282 #: ../src/guestfs.pod:2505
5283 msgid "C</dev/sdb> 50MB"
5284 msgstr ""
5285
5286 #. type: textblock
5287 #: ../src/guestfs.pod:2507
5288 msgid ""
5289 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
5290 "operations."
5291 msgstr ""
5292
5293 #. type: =item
5294 #: ../src/guestfs.pod:2510
5295 msgid "C</dev/sdc> 10MB"
5296 msgstr ""
5297
5298 #. type: textblock
5299 #: ../src/guestfs.pod:2512
5300 msgid "Used in a few tests where two block devices are needed."
5301 msgstr ""
5302
5303 #. type: =item
5304 #: ../src/guestfs.pod:2514
5305 msgid "C</dev/sdd>"
5306 msgstr ""
5307
5308 #. type: textblock
5309 #: ../src/guestfs.pod:2516
5310 msgid "ISO with fixed content (see C<images/test.iso>)."
5311 msgstr ""
5312
5313 #. type: textblock
5314 #: ../src/guestfs.pod:2520
5315 msgid ""
5316 "To be able to run the tests in a reasonable amount of time, the libguestfs "
5317 "appliance and block devices are reused between tests.  So don't try testing "
5318 "L</guestfs_kill_subprocess> :-x"
5319 msgstr ""
5320
5321 #. type: textblock
5322 #: ../src/guestfs.pod:2524
5323 msgid ""
5324 "Each test starts with an initial scenario, selected using one of the "
5325 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
5326 "initialize the disks mentioned above in a particular way as documented in "
5327 "C<generator_types.ml>.  You should not assume anything about the previous "
5328 "contents of other disks that are not initialized."
5329 msgstr ""
5330
5331 #. type: textblock
5332 #: ../src/guestfs.pod:2530
5333 msgid ""
5334 "You can add a prerequisite clause to any individual test.  This is a run-"
5335 "time check, which, if it fails, causes the test to be skipped.  Useful if "
5336 "testing a command which might not work on all variations of libguestfs "
5337 "builds.  A test that has prerequisite of C<Always> means to run "
5338 "unconditionally."
5339 msgstr ""
5340
5341 #. type: textblock
5342 #: ../src/guestfs.pod:2536
5343 msgid ""
5344 "In addition, packagers can skip individual tests by setting environment "
5345 "variables before running C<make check>."
5346 msgstr ""
5347
5348 #. type: verbatim
5349 #: ../src/guestfs.pod:2539
5350 #, no-wrap
5351 msgid ""
5352 " SKIP_TEST_<CMD>_<NUM>=1\n"
5353 "\n"
5354 msgstr ""
5355
5356 #. type: textblock
5357 #: ../src/guestfs.pod:2541
5358 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
5359 msgstr ""
5360
5361 #. type: textblock
5362 #: ../src/guestfs.pod:2543
5363 msgid "or:"
5364 msgstr ""
5365
5366 #. type: verbatim
5367 #: ../src/guestfs.pod:2545
5368 #, no-wrap
5369 msgid ""
5370 " SKIP_TEST_<CMD>=1\n"
5371 "\n"
5372 msgstr ""
5373
5374 #. type: textblock
5375 #: ../src/guestfs.pod:2547
5376 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
5377 msgstr ""
5378
5379 #. type: textblock
5380 #: ../src/guestfs.pod:2549
5381 msgid "Packagers can run only certain tests by setting for example:"
5382 msgstr ""
5383
5384 #. type: verbatim
5385 #: ../src/guestfs.pod:2551
5386 #, no-wrap
5387 msgid ""
5388 " TEST_ONLY=\"vfs_type zerofree\"\n"
5389 "\n"
5390 msgstr ""
5391
5392 #. type: textblock
5393 #: ../src/guestfs.pod:2553
5394 msgid ""
5395 "See C<capitests/tests.c> for more details of how these environment variables "
5396 "work."
5397 msgstr ""
5398
5399 #. type: =head2
5400 #: ../src/guestfs.pod:2556
5401 msgid "DEBUGGING NEW API ACTIONS"
5402 msgstr ""
5403
5404 #. type: textblock
5405 #: ../src/guestfs.pod:2558
5406 msgid "Test new actions work before submitting them."
5407 msgstr ""
5408
5409 #. type: textblock
5410 #: ../src/guestfs.pod:2560
5411 msgid "You can use guestfish to try out new commands."
5412 msgstr ""
5413
5414 #. type: textblock
5415 #: ../src/guestfs.pod:2562
5416 msgid ""
5417 "Debugging the daemon is a problem because it runs inside a minimal "
5418 "environment.  However you can fprintf messages in the daemon to stderr, and "
5419 "they will show up if you use C<guestfish -v>."
5420 msgstr ""
5421
5422 #. type: =head2
5423 #: ../src/guestfs.pod:2566
5424 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5425 msgstr ""
5426
5427 #. type: textblock
5428 #: ../src/guestfs.pod:2568
5429 msgid ""
5430 "Our C source code generally adheres to some basic code-formatting "
5431 "conventions.  The existing code base is not totally consistent on this "
5432 "front, but we do prefer that contributed code be formatted similarly.  In "
5433 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5434 "indentation level, and other than that, follow the K&R style."
5435 msgstr ""
5436
5437 #. type: textblock
5438 #: ../src/guestfs.pod:2574
5439 msgid ""
5440 "If you use Emacs, add the following to one of one of your start-up files (e."
5441 "g., ~/.emacs), to help ensure that you get indentation right:"
5442 msgstr ""
5443
5444 #. type: verbatim
5445 #: ../src/guestfs.pod:2577
5446 #, no-wrap
5447 msgid ""
5448 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5449 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5450 " (add-hook 'find-file-hook\n"
5451 "     '(lambda () (if (and buffer-file-name\n"
5452 "                          (string-match \"/libguestfs\\\\>\"\n"
5453 "                              (buffer-file-name))\n"
5454 "                          (not (string-equal mode-name \"Change Log\"))\n"
5455 "                          (not (string-equal mode-name \"Makefile\")))\n"
5456 "                     (setq indent-tabs-mode nil))))\n"
5457 " \n"
5458 msgstr ""
5459
5460 #. type: verbatim
5461 #: ../src/guestfs.pod:2587
5462 #, no-wrap
5463 msgid ""
5464 " ;;; When editing C sources in libguestfs, use this style.\n"
5465 " (defun libguestfs-c-mode ()\n"
5466 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5467 "   (interactive)\n"
5468 "   (c-set-style \"K&R\")\n"
5469 "   (setq c-indent-level 2)\n"
5470 "   (setq c-basic-offset 2))\n"
5471 " (add-hook 'c-mode-hook\n"
5472 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5473 "                               (buffer-file-name))\n"
5474 "                           (libguestfs-c-mode))))\n"
5475 "\n"
5476 msgstr ""
5477
5478 #. type: textblock
5479 #: ../src/guestfs.pod:2599
5480 msgid "Enable warnings when compiling (and fix any problems this finds):"
5481 msgstr ""
5482
5483 #. type: verbatim
5484 #: ../src/guestfs.pod:2602
5485 #, no-wrap
5486 msgid ""
5487 " ./configure --enable-gcc-warnings\n"
5488 "\n"
5489 msgstr ""
5490
5491 #. type: textblock
5492 #: ../src/guestfs.pod:2604
5493 msgid "Useful targets are:"
5494 msgstr ""
5495
5496 #. type: verbatim
5497 #: ../src/guestfs.pod:2606
5498 #, no-wrap
5499 msgid ""
5500 " make syntax-check  # checks the syntax of the C code\n"
5501 " make check         # runs the test suite\n"
5502 "\n"
5503 msgstr ""
5504
5505 #. type: =head2
5506 #: ../src/guestfs.pod:2609
5507 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5508 msgstr ""
5509
5510 #. type: textblock
5511 #: ../src/guestfs.pod:2611
5512 msgid ""
5513 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5514 "which are used to do shell quoting."
5515 msgstr ""
5516
5517 #. type: =item
5518 #: ../src/guestfs.pod:2616
5519 msgid "%Q"
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs.pod:2618
5524 msgid ""
5525 "Simple shell quoted string.  Any spaces or other shell characters are "
5526 "escaped for you."
5527 msgstr ""
5528
5529 #. type: =item
5530 #: ../src/guestfs.pod:2621
5531 msgid "%R"
5532 msgstr ""
5533
5534 #. type: textblock
5535 #: ../src/guestfs.pod:2623
5536 msgid ""
5537 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5538 "the sysroot."
5539 msgstr ""
5540
5541 # type: textblock
5542 #. type: textblock
5543 #: ../src/guestfs.pod:2628 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5544 msgid "For example:"
5545 msgstr ""
5546
5547 #. type: verbatim
5548 #: ../src/guestfs.pod:2630
5549 #, no-wrap
5550 msgid ""
5551 " asprintf (&cmd, \"cat %R\", path);\n"
5552 "\n"
5553 msgstr ""
5554
5555 #. type: textblock
5556 #: ../src/guestfs.pod:2632
5557 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5558 msgstr ""
5559
5560 #. type: textblock
5561 #: ../src/guestfs.pod:2634
5562 msgid ""
5563 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5564 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5565 "they are not passed via the shell (instead, straight to exec).  You probably "
5566 "want to use the C<sysroot_path()> function however."
5567 msgstr ""
5568
5569 #. type: =head2
5570 #: ../src/guestfs.pod:2640
5571 msgid "SUBMITTING YOUR NEW API ACTIONS"
5572 msgstr ""
5573
5574 #. type: textblock
5575 #: ../src/guestfs.pod:2642
5576 msgid ""
5577 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5578 "libguestfs> and CC to L<rjones@redhat.com>."
5579 msgstr ""
5580
5581 #. type: =head2
5582 #: ../src/guestfs.pod:2646
5583 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5584 msgstr ""
5585
5586 #. type: textblock
5587 #: ../src/guestfs.pod:2648
5588 msgid "We support i18n (gettext anyhow) in the library."
5589 msgstr ""
5590
5591 #. type: textblock
5592 #: ../src/guestfs.pod:2650
5593 msgid ""
5594 "However many messages come from the daemon, and we don't translate those at "
5595 "the moment.  One reason is that the appliance generally has all locale files "
5596 "removed from it, because they take up a lot of space.  So we'd have to readd "
5597 "some of those, as well as copying our PO files into the appliance."
5598 msgstr ""
5599
5600 #. type: textblock
5601 #: ../src/guestfs.pod:2656
5602 msgid ""
5603 "Debugging messages are never translated, since they are intended for the "
5604 "programmers."
5605 msgstr ""
5606
5607 #. type: =head2
5608 #: ../src/guestfs.pod:2659
5609 msgid "SOURCE CODE SUBDIRECTORIES"
5610 msgstr ""
5611
5612 #. type: =item
5613 #: ../src/guestfs.pod:2663 ../src/guestfs-actions.pod:5806
5614 #: ../fish/guestfish-actions.pod:3900
5615 msgid "C<appliance>"
5616 msgstr ""
5617
5618 #. type: textblock
5619 #: ../src/guestfs.pod:2665
5620 msgid "The libguestfs appliance, build scripts and so on."
5621 msgstr ""
5622
5623 #. type: =item
5624 #: ../src/guestfs.pod:2667
5625 msgid "C<capitests>"
5626 msgstr ""
5627
5628 #. type: textblock
5629 #: ../src/guestfs.pod:2669
5630 msgid "Automated tests of the C API."
5631 msgstr ""
5632
5633 #. type: =item
5634 #: ../src/guestfs.pod:2671
5635 msgid "C<cat>"
5636 msgstr ""
5637
5638 #. type: textblock
5639 #: ../src/guestfs.pod:2673
5640 msgid ""
5641 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5642 "documentation."
5643 msgstr ""
5644
5645 #. type: =item
5646 #: ../src/guestfs.pod:2676
5647 msgid "C<contrib>"
5648 msgstr ""
5649
5650 #. type: textblock
5651 #: ../src/guestfs.pod:2678
5652 msgid "Outside contributions, experimental parts."
5653 msgstr ""
5654
5655 #. type: =item
5656 #: ../src/guestfs.pod:2680
5657 msgid "C<daemon>"
5658 msgstr ""
5659
5660 #. type: textblock
5661 #: ../src/guestfs.pod:2682
5662 msgid ""
5663 "The daemon that runs inside the libguestfs appliance and carries out actions."
5664 msgstr ""
5665
5666 #. type: =item
5667 #: ../src/guestfs.pod:2685
5668 msgid "C<df>"
5669 msgstr ""
5670
5671 #. type: textblock
5672 #: ../src/guestfs.pod:2687
5673 msgid "L<virt-df(1)> command and documentation."
5674 msgstr ""
5675
5676 #. type: =item
5677 #: ../src/guestfs.pod:2689
5678 msgid "C<examples>"
5679 msgstr ""
5680
5681 #. type: textblock
5682 #: ../src/guestfs.pod:2691
5683 msgid "C API example code."
5684 msgstr ""
5685
5686 #. type: =item
5687 #: ../src/guestfs.pod:2693
5688 msgid "C<fish>"
5689 msgstr ""
5690
5691 #. type: textblock
5692 #: ../src/guestfs.pod:2695
5693 msgid ""
5694 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5695 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5696 "L<virt-tar-out(1)>."
5697 msgstr ""
5698
5699 #. type: =item
5700 #: ../src/guestfs.pod:2699
5701 msgid "C<fuse>"
5702 msgstr ""
5703
5704 #. type: textblock
5705 #: ../src/guestfs.pod:2701
5706 msgid ""
5707 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5708 msgstr ""
5709
5710 #. type: =item
5711 #: ../src/guestfs.pod:2703
5712 msgid "C<generator>"
5713 msgstr ""
5714
5715 #. type: textblock
5716 #: ../src/guestfs.pod:2705
5717 msgid ""
5718 "The crucially important generator, used to automatically generate large "
5719 "amounts of boilerplate C code for things like RPC and bindings."
5720 msgstr ""
5721
5722 #. type: =item
5723 #: ../src/guestfs.pod:2708
5724 msgid "C<images>"
5725 msgstr ""
5726
5727 #. type: textblock
5728 #: ../src/guestfs.pod:2710
5729 msgid "Files used by the test suite."
5730 msgstr ""
5731
5732 #. type: textblock
5733 #: ../src/guestfs.pod:2712
5734 msgid "Some \"phony\" guest images which we test against."
5735 msgstr ""
5736
5737 #. type: =item
5738 #: ../src/guestfs.pod:2714
5739 msgid "C<inspector>"
5740 msgstr ""
5741
5742 #. type: textblock
5743 #: ../src/guestfs.pod:2716
5744 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5745 msgstr ""
5746
5747 #. type: =item
5748 #: ../src/guestfs.pod:2718
5749 msgid "C<logo>"
5750 msgstr ""
5751
5752 #. type: textblock
5753 #: ../src/guestfs.pod:2720
5754 msgid "Logo used on the website.  The fish is called Arthur by the way."
5755 msgstr ""
5756
5757 #. type: =item
5758 #: ../src/guestfs.pod:2722
5759 msgid "C<m4>"
5760 msgstr ""
5761
5762 #. type: textblock
5763 #: ../src/guestfs.pod:2724
5764 msgid "M4 macros used by autoconf."
5765 msgstr ""
5766
5767 #. type: =item
5768 #: ../src/guestfs.pod:2726
5769 msgid "C<po>"
5770 msgstr ""
5771
5772 #. type: textblock
5773 #: ../src/guestfs.pod:2728
5774 msgid "Translations of simple gettext strings."
5775 msgstr ""
5776
5777 #. type: =item
5778 #: ../src/guestfs.pod:2730
5779 msgid "C<po-docs>"
5780 msgstr ""
5781
5782 #. type: textblock
5783 #: ../src/guestfs.pod:2732
5784 msgid ""
5785 "The build infrastructure and PO files for translations of manpages and POD "
5786 "files.  Eventually this will be combined with the C<po> directory, but that "
5787 "is rather complicated."
5788 msgstr ""
5789
5790 #. type: =item
5791 #: ../src/guestfs.pod:2736
5792 msgid "C<regressions>"
5793 msgstr ""
5794
5795 #. type: textblock
5796 #: ../src/guestfs.pod:2738
5797 msgid "Regression tests."
5798 msgstr ""
5799
5800 #. type: =item
5801 #: ../src/guestfs.pod:2740
5802 msgid "C<rescue>"
5803 msgstr ""
5804
5805 #. type: textblock
5806 #: ../src/guestfs.pod:2742
5807 msgid "L<virt-rescue(1)> command and documentation."
5808 msgstr ""
5809
5810 #. type: =item
5811 #: ../src/guestfs.pod:2744
5812 msgid "C<src>"
5813 msgstr ""
5814
5815 #. type: textblock
5816 #: ../src/guestfs.pod:2746
5817 msgid "Source code to the C library."
5818 msgstr ""
5819
5820 #. type: =item
5821 #: ../src/guestfs.pod:2748
5822 msgid "C<tools>"
5823 msgstr ""
5824
5825 #. type: textblock
5826 #: ../src/guestfs.pod:2750
5827 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5828 msgstr ""
5829
5830 #. type: =item
5831 #: ../src/guestfs.pod:2752
5832 msgid "C<test-tool>"
5833 msgstr ""
5834
5835 #. type: textblock
5836 #: ../src/guestfs.pod:2754
5837 msgid ""
5838 "Test tool for end users to test if their qemu/kernel combination will work "
5839 "with libguestfs."
5840 msgstr ""
5841
5842 #. type: =item
5843 #: ../src/guestfs.pod:2757
5844 msgid "C<csharp>"
5845 msgstr ""
5846
5847 #. type: =item
5848 #: ../src/guestfs.pod:2759
5849 msgid "C<haskell>"
5850 msgstr ""
5851
5852 #. type: =item
5853 #: ../src/guestfs.pod:2761
5854 msgid "C<java>"
5855 msgstr ""
5856
5857 #. type: =item
5858 #: ../src/guestfs.pod:2763
5859 msgid "C<ocaml>"
5860 msgstr ""
5861
5862 #. type: =item
5863 #: ../src/guestfs.pod:2765
5864 msgid "C<php>"
5865 msgstr ""
5866
5867 #. type: =item
5868 #: ../src/guestfs.pod:2767
5869 msgid "C<perl>"
5870 msgstr ""
5871
5872 #. type: =item
5873 #: ../src/guestfs.pod:2769
5874 msgid "C<python>"
5875 msgstr ""
5876
5877 #. type: =item
5878 #: ../src/guestfs.pod:2771
5879 msgid "C<ruby>"
5880 msgstr ""
5881
5882 #. type: textblock
5883 #: ../src/guestfs.pod:2773
5884 msgid "Language bindings."
5885 msgstr ""
5886
5887 # type: =head1
5888 #. type: =head1
5889 #: ../src/guestfs.pod:2777 ../fish/guestfish.pod:1010
5890 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
5891 msgid "ENVIRONMENT VARIABLES"
5892 msgstr ""
5893
5894 # type: =item
5895 #. type: =item
5896 #: ../src/guestfs.pod:2781 ../fish/guestfish.pod:1036
5897 msgid "LIBGUESTFS_APPEND"
5898 msgstr ""
5899
5900 # type: textblock
5901 #. type: textblock
5902 #: ../src/guestfs.pod:2783 ../fish/guestfish.pod:1038
5903 msgid "Pass additional options to the guest kernel."
5904 msgstr ""
5905
5906 # type: =item
5907 #. type: =item
5908 #: ../src/guestfs.pod:2785 ../fish/guestfish.pod:1040
5909 msgid "LIBGUESTFS_DEBUG"
5910 msgstr ""
5911
5912 # type: textblock
5913 #. type: textblock
5914 #: ../src/guestfs.pod:2787
5915 msgid ""
5916 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5917 "effect as calling C<guestfs_set_verbose (g, 1)>."
5918 msgstr ""
5919
5920 # type: =item
5921 #. type: =item
5922 #: ../src/guestfs.pod:2790 ../fish/guestfish.pod:1045
5923 msgid "LIBGUESTFS_MEMSIZE"
5924 msgstr ""
5925
5926 # type: textblock
5927 #. type: textblock
5928 #: ../src/guestfs.pod:2792 ../fish/guestfish.pod:1047
5929 msgid ""
5930 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5931 msgstr ""
5932
5933 # type: verbatim
5934 #. type: verbatim
5935 #: ../src/guestfs.pod:2795 ../fish/guestfish.pod:1050
5936 #, no-wrap
5937 msgid ""
5938 " LIBGUESTFS_MEMSIZE=700\n"
5939 "\n"
5940 msgstr ""
5941
5942 # type: =item
5943 #. type: =item
5944 #: ../src/guestfs.pod:2797 ../fish/guestfish.pod:1052
5945 msgid "LIBGUESTFS_PATH"
5946 msgstr ""
5947
5948 #. type: textblock
5949 #: ../src/guestfs.pod:2799
5950 msgid ""
5951 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5952 "the discussion of paths in section L</PATH> above."
5953 msgstr ""
5954
5955 # type: =item
5956 #. type: =item
5957 #: ../src/guestfs.pod:2802 ../fish/guestfish.pod:1057
5958 msgid "LIBGUESTFS_QEMU"
5959 msgstr ""
5960
5961 # type: textblock
5962 #. type: textblock
5963 #: ../src/guestfs.pod:2804 ../fish/guestfish.pod:1059
5964 msgid ""
5965 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5966 "which was found at compile time by the configure script is used."
5967 msgstr ""
5968
5969 # type: textblock
5970 #. type: textblock
5971 #: ../src/guestfs.pod:2808
5972 msgid "See also L</QEMU WRAPPERS> above."
5973 msgstr ""
5974
5975 # type: =item
5976 #. type: =item
5977 #: ../src/guestfs.pod:2810 ../fish/guestfish.pod:1063
5978 msgid "LIBGUESTFS_TRACE"
5979 msgstr ""
5980
5981 # type: textblock
5982 #. type: textblock
5983 #: ../src/guestfs.pod:2812
5984 msgid ""
5985 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5986 "effect as calling C<guestfs_set_trace (g, 1)>."
5987 msgstr ""
5988
5989 # type: =item
5990 #. type: =item
5991 #: ../src/guestfs.pod:2815 ../fish/guestfish.pod:1072
5992 msgid "TMPDIR"
5993 msgstr ""
5994
5995 #. type: textblock
5996 #: ../src/guestfs.pod:2817 ../fish/guestfish.pod:1074
5997 msgid ""
5998 "Location of temporary directory, defaults to C</tmp> except for the cached "
5999 "supermin appliance which defaults to C</var/tmp>."
6000 msgstr ""
6001
6002 #. type: textblock
6003 #: ../src/guestfs.pod:2820 ../fish/guestfish.pod:1077
6004 msgid ""
6005 "If libguestfs was compiled to use the supermin appliance then the real "
6006 "appliance is cached in this directory, shared between all handles belonging "
6007 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
6008 "use in case C</var/tmp> is not large enough."
6009 msgstr ""
6010
6011 # type: =head1
6012 #. type: =head1
6013 #: ../src/guestfs.pod:2828 ../fish/guestfish.pod:1144
6014 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:267
6015 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
6016 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
6017 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
6018 msgid "SEE ALSO"
6019 msgstr ""
6020
6021 #. type: textblock
6022 #: ../src/guestfs.pod:2830
6023 msgid ""
6024 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
6025 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
6026 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
6027 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
6028 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
6029 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
6030 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
6031 msgstr ""
6032
6033 # type: textblock
6034 #. type: textblock
6035 #: ../src/guestfs.pod:2857
6036 msgid ""
6037 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
6038 "(8)>, L<disktype(1)>."
6039 msgstr ""
6040
6041 # type: =head1
6042 #. type: =head1
6043 #: ../src/guestfs.pod:2864 ../tools/virt-win-reg.pl:587
6044 #: ../tools/virt-make-fs.pl:553
6045 msgid "BUGS"
6046 msgstr ""
6047
6048 # type: textblock
6049 #. type: textblock
6050 #: ../src/guestfs.pod:2866
6051 msgid "To get a list of bugs against libguestfs use this link:"
6052 msgstr ""
6053
6054 # type: textblock
6055 #. type: textblock
6056 #: ../src/guestfs.pod:2868
6057 msgid ""
6058 "L<https://bugzilla.redhat.com/buglist.cgi?"
6059 "component=libguestfs&product=Virtualization+Tools>"
6060 msgstr ""
6061
6062 # type: textblock
6063 #. type: textblock
6064 #: ../src/guestfs.pod:2870
6065 msgid "To report a new bug against libguestfs use this link:"
6066 msgstr ""
6067
6068 # type: textblock
6069 #. type: textblock
6070 #: ../src/guestfs.pod:2872
6071 msgid ""
6072 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
6073 "component=libguestfs&product=Virtualization+Tools>"
6074 msgstr ""
6075
6076 # type: textblock
6077 #. type: textblock
6078 #: ../src/guestfs.pod:2874
6079 msgid "When reporting a bug, please check:"
6080 msgstr ""
6081
6082 # type: textblock
6083 #. type: textblock
6084 #: ../src/guestfs.pod:2880
6085 msgid "That the bug hasn't been reported already."
6086 msgstr ""
6087
6088 # type: textblock
6089 #. type: textblock
6090 #: ../src/guestfs.pod:2884
6091 msgid "That you are testing a recent version."
6092 msgstr ""
6093
6094 # type: textblock
6095 #. type: textblock
6096 #: ../src/guestfs.pod:2888
6097 msgid "Describe the bug accurately, and give a way to reproduce it."
6098 msgstr ""
6099
6100 # type: textblock
6101 #. type: textblock
6102 #: ../src/guestfs.pod:2892
6103 msgid ""
6104 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
6105 "bug report."
6106 msgstr ""
6107
6108 # type: =head1
6109 #. type: =head1
6110 #: ../src/guestfs.pod:2897 ../fish/guestfish.pod:1167
6111 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:278
6112 msgid "AUTHORS"
6113 msgstr ""
6114
6115 # type: textblock
6116 #. type: textblock
6117 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1169
6118 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:280
6119 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
6120 msgstr ""
6121
6122 # type: =head1
6123 #. type: =head1
6124 #: ../src/guestfs.pod:2901 ../fish/guestfish.pod:1171
6125 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:282
6126 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
6127 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
6128 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
6129 msgid "COPYRIGHT"
6130 msgstr ""
6131
6132 #. type: textblock
6133 #: ../src/guestfs.pod:2903 ../fish/guestfish.pod:1173
6134 #: ../test-tool/libguestfs-test-tool.pod:99
6135 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
6136 msgstr ""
6137
6138 # type: textblock
6139 #. type: textblock
6140 #: ../src/guestfs.pod:2906
6141 msgid ""
6142 "This library is free software; you can redistribute it and/or modify it "
6143 "under the terms of the GNU Lesser General Public License as published by the "
6144 "Free Software Foundation; either version 2 of the License, or (at your "
6145 "option) any later version."
6146 msgstr ""
6147
6148 # type: textblock
6149 #. type: textblock
6150 #: ../src/guestfs.pod:2911
6151 msgid ""
6152 "This library is distributed in the hope that it will be useful, but WITHOUT "
6153 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
6154 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
6155 "for more details."
6156 msgstr ""
6157
6158 # type: textblock
6159 #. type: textblock
6160 #: ../src/guestfs.pod:2916
6161 msgid ""
6162 "You should have received a copy of the GNU Lesser General Public License "
6163 "along with this library; if not, write to the Free Software Foundation, "
6164 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
6165 msgstr ""
6166
6167 # type: =head2
6168 #. type: =head2
6169 #: ../src/guestfs-actions.pod:1
6170 msgid "guestfs_add_cdrom"
6171 msgstr ""
6172
6173 # type: verbatim
6174 #. type: verbatim
6175 #: ../src/guestfs-actions.pod:3
6176 #, no-wrap
6177 msgid ""
6178 " int\n"
6179 " guestfs_add_cdrom (guestfs_h *g,\n"
6180 "                    const char *filename);\n"
6181 "\n"
6182 msgstr ""
6183
6184 # type: textblock
6185 #. type: textblock
6186 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
6187 msgid "This function adds a virtual CD-ROM disk image to the guest."
6188 msgstr ""
6189
6190 # type: textblock
6191 #. type: textblock
6192 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
6193 msgid "This is equivalent to the qemu parameter C<-cdrom filename>."
6194 msgstr ""
6195
6196 # type: textblock
6197 #. type: textblock
6198 #: ../src/guestfs-actions.pod:17
6199 msgid ""
6200 "This call checks for the existence of C<filename>.  This stops you from "
6201 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6202 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
6203 "instead."
6204 msgstr ""
6205
6206 # type: textblock
6207 #. type: textblock
6208 #: ../src/guestfs-actions.pod:24
6209 msgid ""
6210 "If you just want to add an ISO file (often you use this as an efficient way "
6211 "to transfer large files into the guest), then you should probably use "
6212 "C<guestfs_add_drive_ro> instead."
6213 msgstr ""
6214
6215 # type: textblock
6216 #. type: textblock
6217 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
6218 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
6219 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
6220 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
6221 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
6222 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
6223 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
6224 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
6225 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
6226 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
6227 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
6228 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
6229 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
6230 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
6231 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
6232 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
6233 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
6234 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
6235 #: ../src/guestfs-actions.pod:1695 ../src/guestfs-actions.pod:1717
6236 #: ../src/guestfs-actions.pod:1804 ../src/guestfs-actions.pod:2266
6237 #: ../src/guestfs-actions.pod:2410 ../src/guestfs-actions.pod:2471
6238 #: ../src/guestfs-actions.pod:2506 ../src/guestfs-actions.pod:3451
6239 #: ../src/guestfs-actions.pod:3466 ../src/guestfs-actions.pod:3491
6240 #: ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3660
6241 #: ../src/guestfs-actions.pod:3673 ../src/guestfs-actions.pod:3687
6242 #: ../src/guestfs-actions.pod:3702 ../src/guestfs-actions.pod:3738
6243 #: ../src/guestfs-actions.pod:3810 ../src/guestfs-actions.pod:3830
6244 #: ../src/guestfs-actions.pod:3847 ../src/guestfs-actions.pod:3870
6245 #: ../src/guestfs-actions.pod:3893 ../src/guestfs-actions.pod:3925
6246 #: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3963
6247 #: ../src/guestfs-actions.pod:3998 ../src/guestfs-actions.pod:4010
6248 #: ../src/guestfs-actions.pod:4046 ../src/guestfs-actions.pod:4062
6249 #: ../src/guestfs-actions.pod:4075 ../src/guestfs-actions.pod:4090
6250 #: ../src/guestfs-actions.pod:4107 ../src/guestfs-actions.pod:4200
6251 #: ../src/guestfs-actions.pod:4220 ../src/guestfs-actions.pod:4233
6252 #: ../src/guestfs-actions.pod:4284 ../src/guestfs-actions.pod:4302
6253 #: ../src/guestfs-actions.pod:4320 ../src/guestfs-actions.pod:4336
6254 #: ../src/guestfs-actions.pod:4350 ../src/guestfs-actions.pod:4364
6255 #: ../src/guestfs-actions.pod:4381 ../src/guestfs-actions.pod:4396
6256 #: ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:4474
6257 #: ../src/guestfs-actions.pod:4547 ../src/guestfs-actions.pod:4578
6258 #: ../src/guestfs-actions.pod:4597 ../src/guestfs-actions.pod:4616
6259 #: ../src/guestfs-actions.pod:4628 ../src/guestfs-actions.pod:4645
6260 #: ../src/guestfs-actions.pod:4658 ../src/guestfs-actions.pod:4673
6261 #: ../src/guestfs-actions.pod:4688 ../src/guestfs-actions.pod:4723
6262 #: ../src/guestfs-actions.pod:4738 ../src/guestfs-actions.pod:4758
6263 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4789
6264 #: ../src/guestfs-actions.pod:4838 ../src/guestfs-actions.pod:4875
6265 #: ../src/guestfs-actions.pod:4889 ../src/guestfs-actions.pod:4917
6266 #: ../src/guestfs-actions.pod:4934 ../src/guestfs-actions.pod:4952
6267 #: ../src/guestfs-actions.pod:5086 ../src/guestfs-actions.pod:5143
6268 #: ../src/guestfs-actions.pod:5165 ../src/guestfs-actions.pod:5183
6269 #: ../src/guestfs-actions.pod:5215 ../src/guestfs-actions.pod:5281
6270 #: ../src/guestfs-actions.pod:5298 ../src/guestfs-actions.pod:5311
6271 #: ../src/guestfs-actions.pod:5325 ../src/guestfs-actions.pod:5614
6272 #: ../src/guestfs-actions.pod:5633 ../src/guestfs-actions.pod:5652
6273 #: ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:5676
6274 #: ../src/guestfs-actions.pod:5690 ../src/guestfs-actions.pod:5702
6275 #: ../src/guestfs-actions.pod:5716 ../src/guestfs-actions.pod:5732
6276 #: ../src/guestfs-actions.pod:5753 ../src/guestfs-actions.pod:5772
6277 #: ../src/guestfs-actions.pod:5791 ../src/guestfs-actions.pod:5821
6278 #: ../src/guestfs-actions.pod:5837 ../src/guestfs-actions.pod:5860
6279 #: ../src/guestfs-actions.pod:5878 ../src/guestfs-actions.pod:5897
6280 #: ../src/guestfs-actions.pod:5918 ../src/guestfs-actions.pod:5937
6281 #: ../src/guestfs-actions.pod:5954 ../src/guestfs-actions.pod:5982
6282 #: ../src/guestfs-actions.pod:6006 ../src/guestfs-actions.pod:6025
6283 #: ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6068
6284 #: ../src/guestfs-actions.pod:6083 ../src/guestfs-actions.pod:6102
6285 #: ../src/guestfs-actions.pod:6139 ../src/guestfs-actions.pod:6162
6286 #: ../src/guestfs-actions.pod:6188 ../src/guestfs-actions.pod:6296
6287 #: ../src/guestfs-actions.pod:6417 ../src/guestfs-actions.pod:6429
6288 #: ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6455
6289 #: ../src/guestfs-actions.pod:6477 ../src/guestfs-actions.pod:6490
6290 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-actions.pod:6516
6291 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6590
6292 #: ../src/guestfs-actions.pod:6607 ../src/guestfs-actions.pod:6623
6293 #: ../src/guestfs-actions.pod:6639 ../src/guestfs-actions.pod:6656
6294 #: ../src/guestfs-actions.pod:6669 ../src/guestfs-actions.pod:6689
6295 #: ../src/guestfs-actions.pod:6725 ../src/guestfs-actions.pod:6739
6296 #: ../src/guestfs-actions.pod:6780 ../src/guestfs-actions.pod:6793
6297 #: ../src/guestfs-actions.pod:6811 ../src/guestfs-actions.pod:6845
6298 #: ../src/guestfs-actions.pod:6881 ../src/guestfs-actions.pod:7000
6299 #: ../src/guestfs-actions.pod:7018 ../src/guestfs-actions.pod:7032
6300 #: ../src/guestfs-actions.pod:7087 ../src/guestfs-actions.pod:7100
6301 #: ../src/guestfs-actions.pod:7145 ../src/guestfs-actions.pod:7178
6302 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7258
6303 #: ../src/guestfs-actions.pod:7324 ../src/guestfs-actions.pod:7343
6304 #: ../src/guestfs-actions.pod:7372
6305 msgid "This function returns 0 on success or -1 on error."
6306 msgstr ""
6307
6308 # type: textblock
6309 #. type: textblock
6310 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6311 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6312 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6313 msgid ""
6314 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6315 "instead."
6316 msgstr ""
6317
6318 # type: textblock
6319 #. type: textblock
6320 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6321 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6322 #: ../src/guestfs-actions.pod:1944 ../src/guestfs-actions.pod:1965
6323 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:7266
6324 #: ../src/guestfs-actions.pod:7435 ../fish/guestfish-actions.pod:31
6325 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6326 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1319
6327 #: ../fish/guestfish-actions.pod:1333 ../fish/guestfish-actions.pod:3000
6328 #: ../fish/guestfish-actions.pod:4858 ../fish/guestfish-actions.pod:4955
6329 msgid ""
6330 "Deprecated functions will not be removed from the API, but the fact that "
6331 "they are deprecated indicates that there are problems with correct use of "
6332 "these functions."
6333 msgstr ""
6334
6335 # type: textblock
6336 #. type: textblock
6337 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6338 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1916
6339 #: ../src/guestfs-actions.pod:2014 ../src/guestfs-actions.pod:2117
6340 #: ../src/guestfs-actions.pod:3453 ../src/guestfs-actions.pod:3473
6341 #: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:5839
6342 #: ../src/guestfs-actions.pod:5956 ../src/guestfs-actions.pod:6070
6343 #: ../src/guestfs-actions.pod:6533 ../src/guestfs-actions.pod:6658
6344 #: ../src/guestfs-actions.pod:7180
6345 msgid "(Added in 0.3)"
6346 msgstr ""
6347
6348 # type: =head2
6349 #. type: =head2
6350 #: ../src/guestfs-actions.pod:41
6351 msgid "guestfs_add_domain"
6352 msgstr ""
6353
6354 # type: verbatim
6355 #. type: verbatim
6356 #: ../src/guestfs-actions.pod:43
6357 #, no-wrap
6358 msgid ""
6359 " int\n"
6360 " guestfs_add_domain (guestfs_h *g,\n"
6361 "                     const char *dom,\n"
6362 "                     ...);\n"
6363 "\n"
6364 msgstr ""
6365
6366 # type: textblock
6367 #. type: textblock
6368 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6369 #: ../src/guestfs-actions.pod:4435
6370 msgid ""
6371 "You may supply a list of optional arguments to this call.  Use zero or more "
6372 "of the following pairs of parameters, and terminate the list with C<-1> on "
6373 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6374 msgstr ""
6375
6376 #. type: verbatim
6377 #: ../src/guestfs-actions.pod:53
6378 #, no-wrap
6379 msgid ""
6380 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6381 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6382 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6383 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6384 "\n"
6385 msgstr ""
6386
6387 # type: textblock
6388 #. type: textblock
6389 #: ../src/guestfs-actions.pod:58
6390 msgid ""
6391 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6392 "It works by connecting to libvirt, requesting the domain and domain XML from "
6393 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6394 "one."
6395 msgstr ""
6396
6397 # type: textblock
6398 #. type: textblock
6399 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6400 msgid ""
6401 "The number of disks added is returned.  This operation is atomic: if an "
6402 "error is returned, then no disks are added."
6403 msgstr ""
6404
6405 # type: textblock
6406 #. type: textblock
6407 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6408 msgid ""
6409 "This function does some minimal checks to make sure the libvirt domain is "
6410 "not running (unless C<readonly> is true).  In a future version we will try "
6411 "to acquire the libvirt lock on each disk."
6412 msgstr ""
6413
6414 # type: textblock
6415 #. type: textblock
6416 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6417 msgid ""
6418 "Disks must be accessible locally.  This often means that adding disks from a "
6419 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6420 "unless those disks are accessible via the same device path locally too."
6421 msgstr ""
6422
6423 #. type: textblock
6424 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6425 msgid ""
6426 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6427 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6428 "libvirt URI (or one set through an environment variable, see the libvirt "
6429 "documentation for full details)."
6430 msgstr ""
6431
6432 #. type: textblock
6433 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6434 msgid ""
6435 "The optional C<live> flag controls whether this call will try to connect to "
6436 "a running virtual machine C<guestfsd> process if it sees a suitable "
6437 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6438 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6439 "DAEMONS> for more information."
6440 msgstr ""
6441
6442 # type: textblock
6443 #. type: textblock
6444 #: ../src/guestfs-actions.pod:88
6445 msgid ""
6446 "The other optional parameters are passed directly through to "
6447 "C<guestfs_add_drive_opts>."
6448 msgstr ""
6449
6450 # type: textblock
6451 #. type: textblock
6452 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6453 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6454 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6455 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6456 #: ../src/guestfs-actions.pod:1674 ../src/guestfs-actions.pod:1877
6457 #: ../src/guestfs-actions.pod:1986 ../src/guestfs-actions.pod:2026
6458 #: ../src/guestfs-actions.pod:2081 ../src/guestfs-actions.pod:2104
6459 #: ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2772
6460 #: ../src/guestfs-actions.pod:2793 ../src/guestfs-actions.pod:4861
6461 #: ../src/guestfs-actions.pod:4989 ../src/guestfs-actions.pod:5395
6462 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:6766
6463 #: ../src/guestfs-actions.pod:7191 ../src/guestfs-actions.pod:7204
6464 #: ../src/guestfs-actions.pod:7217
6465 msgid "On error this function returns -1."
6466 msgstr ""
6467
6468 # type: textblock
6469 #. type: textblock
6470 #: ../src/guestfs-actions.pod:93
6471 msgid "(Added in 1.7.4)"
6472 msgstr ""
6473
6474 # type: =head2
6475 #. type: =head2
6476 #: ../src/guestfs-actions.pod:95
6477 msgid "guestfs_add_domain_va"
6478 msgstr ""
6479
6480 # type: verbatim
6481 #. type: verbatim
6482 #: ../src/guestfs-actions.pod:97
6483 #, no-wrap
6484 msgid ""
6485 " int\n"
6486 " guestfs_add_domain_va (guestfs_h *g,\n"
6487 "                        const char *dom,\n"
6488 "                        va_list args);\n"
6489 "\n"
6490 msgstr ""
6491
6492 # type: textblock
6493 #. type: textblock
6494 #: ../src/guestfs-actions.pod:102
6495 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6496 msgstr ""
6497
6498 # type: textblock
6499 #. type: textblock
6500 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6501 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6502 #: ../src/guestfs-actions.pod:4488 ../src/guestfs-actions.pod:4500
6503 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6504 msgstr ""
6505
6506 # type: =head2
6507 #. type: =head2
6508 #: ../src/guestfs-actions.pod:106
6509 msgid "guestfs_add_domain_argv"
6510 msgstr ""
6511
6512 # type: verbatim
6513 #. type: verbatim
6514 #: ../src/guestfs-actions.pod:108
6515 #, no-wrap
6516 msgid ""
6517 " int\n"
6518 " guestfs_add_domain_argv (guestfs_h *g,\n"
6519 "                          const char *dom,\n"
6520 "                          const struct guestfs_add_domain_argv *optargs);\n"
6521 "\n"
6522 msgstr ""
6523
6524 # type: textblock
6525 #. type: textblock
6526 #: ../src/guestfs-actions.pod:113
6527 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6528 msgstr ""
6529
6530 # type: =head2
6531 #. type: =head2
6532 #: ../src/guestfs-actions.pod:117
6533 msgid "guestfs_add_drive"
6534 msgstr ""
6535
6536 # type: verbatim
6537 #. type: verbatim
6538 #: ../src/guestfs-actions.pod:119
6539 #, no-wrap
6540 msgid ""
6541 " int\n"
6542 " guestfs_add_drive (guestfs_h *g,\n"
6543 "                    const char *filename);\n"
6544 "\n"
6545 msgstr ""
6546
6547 # type: textblock
6548 #. type: textblock
6549 #: ../src/guestfs-actions.pod:123
6550 msgid ""
6551 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6552 "optional parameters, so the disk is added writable, with the format being "
6553 "detected automatically."
6554 msgstr ""
6555
6556 # type: textblock
6557 #. type: textblock
6558 #: ../src/guestfs-actions.pod:127
6559 msgid ""
6560 "Automatic detection of the format opens you up to a potential security hole "
6561 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6562 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6563 "you should think about replacing calls to this function with calls to "
6564 "C<guestfs_add_drive_opts>, and specifying the format."
6565 msgstr ""
6566
6567 # type: =head2
6568 #. type: =head2
6569 #: ../src/guestfs-actions.pod:138
6570 msgid "guestfs_add_drive_opts"
6571 msgstr ""
6572
6573 # type: verbatim
6574 #. type: verbatim
6575 #: ../src/guestfs-actions.pod:140
6576 #, no-wrap
6577 msgid ""
6578 " int\n"
6579 " guestfs_add_drive_opts (guestfs_h *g,\n"
6580 "                         const char *filename,\n"
6581 "                         ...);\n"
6582 "\n"
6583 msgstr ""
6584
6585 # type: verbatim
6586 #. type: verbatim
6587 #: ../src/guestfs-actions.pod:150
6588 #, no-wrap
6589 msgid ""
6590 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6591 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6592 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6593 "\n"
6594 msgstr ""
6595
6596 # type: textblock
6597 #. type: textblock
6598 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6599 msgid ""
6600 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6601 "The first time you call this function, the disk appears as C</dev/sda>, the "
6602 "second time as C</dev/sdb>, and so on."
6603 msgstr ""
6604
6605 # type: textblock
6606 #. type: textblock
6607 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6608 msgid ""
6609 "You don't necessarily need to be root when using libguestfs.  However you "
6610 "obviously do need sufficient permissions to access the filename for whatever "
6611 "operations you want to perform (ie. read access if you just want to read the "
6612 "image or write access if you want to modify the image)."
6613 msgstr ""
6614
6615 # type: textblock
6616 #. type: textblock
6617 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6618 msgid "This call checks that C<filename> exists."
6619 msgstr ""
6620
6621 # type: textblock
6622 #. type: textblock
6623 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4446
6624 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3011
6625 msgid "The optional arguments are:"
6626 msgstr ""
6627
6628 # type: =item
6629 #. type: =item
6630 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6631 msgid "C<readonly>"
6632 msgstr ""
6633
6634 # type: textblock
6635 #. type: textblock
6636 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6637 msgid ""
6638 "If true then the image is treated as read-only.  Writes are still allowed, "
6639 "but they are stored in a temporary snapshot overlay which is discarded at "
6640 "the end.  The disk that you add is not modified."
6641 msgstr ""
6642
6643 # type: =item
6644 #. type: =item
6645 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6646 msgid "C<format>"
6647 msgstr ""
6648
6649 # type: textblock
6650 #. type: textblock
6651 #: ../src/guestfs-actions.pod:179
6652 msgid ""
6653 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6654 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6655 "Possible formats include C<raw> and C<qcow2>."
6656 msgstr ""
6657
6658 # type: textblock
6659 #. type: textblock
6660 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6661 msgid ""
6662 "Automatic detection of the format opens you up to a potential security hole "
6663 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6664 "RHBZ#642934.  Specifying the format closes this security hole."
6665 msgstr ""
6666
6667 # type: =item
6668 #. type: =item
6669 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6670 msgid "C<iface>"
6671 msgstr ""
6672
6673 # type: textblock
6674 #. type: textblock
6675 #: ../src/guestfs-actions.pod:190
6676 msgid ""
6677 "This rarely-used option lets you emulate the behaviour of the deprecated "
6678 "C<guestfs_add_drive_with_if> call (q.v.)"
6679 msgstr ""
6680
6681 # type: textblock
6682 #. type: textblock
6683 #: ../src/guestfs-actions.pod:197
6684 msgid "(Added in 1.5.23)"
6685 msgstr ""
6686
6687 # type: =head2
6688 #. type: =head2
6689 #: ../src/guestfs-actions.pod:199
6690 msgid "guestfs_add_drive_opts_va"
6691 msgstr ""
6692
6693 # type: verbatim
6694 #. type: verbatim
6695 #: ../src/guestfs-actions.pod:201
6696 #, no-wrap
6697 msgid ""
6698 " int\n"
6699 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6700 "                            const char *filename,\n"
6701 "                            va_list args);\n"
6702 "\n"
6703 msgstr ""
6704
6705 # type: textblock
6706 #. type: textblock
6707 #: ../src/guestfs-actions.pod:206
6708 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6709 msgstr ""
6710
6711 # type: =head2
6712 #. type: =head2
6713 #: ../src/guestfs-actions.pod:210
6714 msgid "guestfs_add_drive_opts_argv"
6715 msgstr ""
6716
6717 # type: verbatim
6718 #. type: verbatim
6719 #: ../src/guestfs-actions.pod:212
6720 #, no-wrap
6721 msgid ""
6722 " int\n"
6723 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6724 "                              const char *filename,\n"
6725 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6726 "\n"
6727 msgstr ""
6728
6729 # type: textblock
6730 #. type: textblock
6731 #: ../src/guestfs-actions.pod:217
6732 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6733 msgstr ""
6734
6735 # type: =head2
6736 #. type: =head2
6737 #: ../src/guestfs-actions.pod:221
6738 msgid "guestfs_add_drive_ro"
6739 msgstr ""
6740
6741 # type: verbatim
6742 #. type: verbatim
6743 #: ../src/guestfs-actions.pod:223
6744 #, no-wrap
6745 msgid ""
6746 " int\n"
6747 " guestfs_add_drive_ro (guestfs_h *g,\n"
6748 "                       const char *filename);\n"
6749 "\n"
6750 msgstr ""
6751
6752 # type: textblock
6753 #. type: textblock
6754 #: ../src/guestfs-actions.pod:227
6755 msgid ""
6756 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6757 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6758 "disk is added read-only, with the format being detected automatically."
6759 msgstr ""
6760
6761 # type: textblock
6762 #. type: textblock
6763 #: ../src/guestfs-actions.pod:234
6764 msgid "(Added in 1.0.38)"
6765 msgstr ""
6766
6767 # type: =head2
6768 #. type: =head2
6769 #: ../src/guestfs-actions.pod:236
6770 msgid "guestfs_add_drive_ro_with_if"
6771 msgstr ""
6772
6773 # type: verbatim
6774 #. type: verbatim
6775 #: ../src/guestfs-actions.pod:238
6776 #, no-wrap
6777 msgid ""
6778 " int\n"
6779 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6780 "                               const char *filename,\n"
6781 "                               const char *iface);\n"
6782 "\n"
6783 msgstr ""
6784
6785 # type: textblock
6786 #. type: textblock
6787 #: ../src/guestfs-actions.pod:243
6788 msgid ""
6789 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6790 "QEMU interface emulation to use at run time."
6791 msgstr ""
6792
6793 # type: textblock
6794 #. type: textblock
6795 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6796 #: ../src/guestfs-actions.pod:2356
6797 msgid "(Added in 1.0.84)"
6798 msgstr ""
6799
6800 # type: =head2
6801 #. type: =head2
6802 #: ../src/guestfs-actions.pod:257
6803 msgid "guestfs_add_drive_with_if"
6804 msgstr ""
6805
6806 # type: verbatim
6807 #. type: verbatim
6808 #: ../src/guestfs-actions.pod:259
6809 #, no-wrap
6810 msgid ""
6811 " int\n"
6812 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6813 "                            const char *filename,\n"
6814 "                            const char *iface);\n"
6815 "\n"
6816 msgstr ""
6817
6818 # type: textblock
6819 #. type: textblock
6820 #: ../src/guestfs-actions.pod:264
6821 msgid ""
6822 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6823 "QEMU interface emulation to use at run time."
6824 msgstr ""
6825
6826 # type: =head2
6827 #. type: =head2
6828 #: ../src/guestfs-actions.pod:278
6829 msgid "guestfs_aug_clear"
6830 msgstr ""
6831
6832 # type: verbatim
6833 #. type: verbatim
6834 #: ../src/guestfs-actions.pod:280
6835 #, no-wrap
6836 msgid ""
6837 " int\n"
6838 " guestfs_aug_clear (guestfs_h *g,\n"
6839 "                    const char *augpath);\n"
6840 "\n"
6841 msgstr ""
6842
6843 # type: textblock
6844 #. type: textblock
6845 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
6846 msgid ""
6847 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6848 "L<augtool(1)> C<clear> command."
6849 msgstr ""
6850
6851 # type: textblock
6852 #. type: textblock
6853 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2106
6854 msgid "(Added in 1.3.4)"
6855 msgstr ""
6856
6857 # type: =head2
6858 #. type: =head2
6859 #: ../src/guestfs-actions.pod:291
6860 msgid "guestfs_aug_close"
6861 msgstr ""
6862
6863 # type: verbatim
6864 #. type: verbatim
6865 #: ../src/guestfs-actions.pod:293
6866 #, no-wrap
6867 msgid ""
6868 " int\n"
6869 " guestfs_aug_close (guestfs_h *g);\n"
6870 "\n"
6871 msgstr ""
6872
6873 # type: textblock
6874 #. type: textblock
6875 #: ../src/guestfs-actions.pod:296
6876 msgid ""
6877 "Close the current Augeas handle and free up any resources used by it.  After "
6878 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6879 "any other Augeas functions."
6880 msgstr ""
6881
6882 # type: textblock
6883 #. type: textblock
6884 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
6885 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
6886 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
6887 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
6888 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
6889 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
6890 #: ../src/guestfs-actions.pod:5472
6891 msgid "(Added in 0.7)"
6892 msgstr ""
6893
6894 # type: =head2
6895 #. type: =head2
6896 #: ../src/guestfs-actions.pod:305
6897 msgid "guestfs_aug_defnode"
6898 msgstr ""
6899
6900 # type: verbatim
6901 #. type: verbatim
6902 #: ../src/guestfs-actions.pod:307
6903 #, no-wrap
6904 msgid ""
6905 " struct guestfs_int_bool *\n"
6906 " guestfs_aug_defnode (guestfs_h *g,\n"
6907 "                      const char *name,\n"
6908 "                      const char *expr,\n"
6909 "                      const char *val);\n"
6910 "\n"
6911 msgstr ""
6912
6913 # type: textblock
6914 #. type: textblock
6915 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
6916 msgid ""
6917 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6918 msgstr ""
6919
6920 # type: textblock
6921 #. type: textblock
6922 #: ../src/guestfs-actions.pod:316
6923 msgid ""
6924 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6925 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6926 "containing that single node."
6927 msgstr ""
6928
6929 # type: textblock
6930 #. type: textblock
6931 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
6932 msgid ""
6933 "On success this returns a pair containing the number of nodes in the "
6934 "nodeset, and a boolean flag if a node was created."
6935 msgstr ""
6936
6937 # type: textblock
6938 #. type: textblock
6939 #: ../src/guestfs-actions.pod:324
6940 msgid ""
6941 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6942 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6943 msgstr ""
6944
6945 # type: =head2
6946 #. type: =head2
6947 #: ../src/guestfs-actions.pod:330
6948 msgid "guestfs_aug_defvar"
6949 msgstr ""
6950
6951 # type: verbatim
6952 #. type: verbatim
6953 #: ../src/guestfs-actions.pod:332
6954 #, no-wrap
6955 msgid ""
6956 " int\n"
6957 " guestfs_aug_defvar (guestfs_h *g,\n"
6958 "                     const char *name,\n"
6959 "                     const char *expr);\n"
6960 "\n"
6961 msgstr ""
6962
6963 # type: textblock
6964 #. type: textblock
6965 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
6966 msgid ""
6967 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6968 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6969 msgstr ""
6970
6971 # type: textblock
6972 #. type: textblock
6973 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
6974 msgid ""
6975 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6976 "evaluates to something which is not a nodeset."
6977 msgstr ""
6978
6979 # type: =head2
6980 #. type: =head2
6981 #: ../src/guestfs-actions.pod:348
6982 msgid "guestfs_aug_get"
6983 msgstr ""
6984
6985 # type: verbatim
6986 #. type: verbatim
6987 #: ../src/guestfs-actions.pod:350
6988 #, no-wrap
6989 msgid ""
6990 " char *\n"
6991 " guestfs_aug_get (guestfs_h *g,\n"
6992 "                  const char *augpath);\n"
6993 "\n"
6994 msgstr ""
6995
6996 # type: textblock
6997 #. type: textblock
6998 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
6999 msgid ""
7000 "Look up the value associated with C<path>.  If C<path> matches exactly one "
7001 "node, the C<value> is returned."
7002 msgstr ""
7003
7004 # type: textblock
7005 #. type: textblock
7006 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
7007 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
7008 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
7009 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
7010 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
7011 #: ../src/guestfs-actions.pod:1545 ../src/guestfs-actions.pod:1657
7012 #: ../src/guestfs-actions.pod:1820 ../src/guestfs-actions.pod:1837
7013 #: ../src/guestfs-actions.pod:1904 ../src/guestfs-actions.pod:1938
7014 #: ../src/guestfs-actions.pod:1959 ../src/guestfs-actions.pod:2129
7015 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2528
7016 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
7017 #: ../src/guestfs-actions.pod:2744 ../src/guestfs-actions.pod:2864
7018 #: ../src/guestfs-actions.pod:2895 ../src/guestfs-actions.pod:2919
7019 #: ../src/guestfs-actions.pod:2956 ../src/guestfs-actions.pod:3016
7020 #: ../src/guestfs-actions.pod:3039 ../src/guestfs-actions.pod:3060
7021 #: ../src/guestfs-actions.pod:3632 ../src/guestfs-actions.pod:3982
7022 #: ../src/guestfs-actions.pod:4152 ../src/guestfs-actions.pod:4262
7023 #: ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5200
7024 #: ../src/guestfs-actions.pod:5370 ../src/guestfs-actions.pod:5548
7025 #: ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:6209
7026 #: ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:6242
7027 #: ../src/guestfs-actions.pod:6266 ../src/guestfs-actions.pod:6940
7028 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:6977
7029 #: ../src/guestfs-actions.pod:7157 ../src/guestfs-actions.pod:7429
7030 msgid ""
7031 "This function returns a string, or NULL on error.  I<The caller must free "
7032 "the returned string after use>."
7033 msgstr ""
7034
7035 # type: =head2
7036 #. type: =head2
7037 #: ../src/guestfs-actions.pod:362
7038 msgid "guestfs_aug_init"
7039 msgstr ""
7040
7041 # type: verbatim
7042 #. type: verbatim
7043 #: ../src/guestfs-actions.pod:364
7044 #, no-wrap
7045 msgid ""
7046 " int\n"
7047 " guestfs_aug_init (guestfs_h *g,\n"
7048 "                   const char *root,\n"
7049 "                   int flags);\n"
7050 "\n"
7051 msgstr ""
7052
7053 # type: textblock
7054 #. type: textblock
7055 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
7056 msgid ""
7057 "Create a new Augeas handle for editing configuration files.  If there was "
7058 "any previous Augeas handle associated with this guestfs session, then it is "
7059 "closed."
7060 msgstr ""
7061
7062 # type: textblock
7063 #. type: textblock
7064 #: ../src/guestfs-actions.pod:373
7065 msgid "You must call this before using any other C<guestfs_aug_*> commands."
7066 msgstr ""
7067
7068 # type: textblock
7069 #. type: textblock
7070 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
7071 msgid ""
7072 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
7073 msgstr ""
7074
7075 # type: textblock
7076 #. type: textblock
7077 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
7078 msgid ""
7079 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
7080 "logical I<or> of the following integers:"
7081 msgstr ""
7082
7083 # type: =item
7084 #. type: =item
7085 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
7086 msgid "C<AUG_SAVE_BACKUP> = 1"
7087 msgstr ""
7088
7089 # type: textblock
7090 #. type: textblock
7091 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
7092 msgid "Keep the original file with a C<.augsave> extension."
7093 msgstr ""
7094
7095 # type: =item
7096 #. type: =item
7097 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
7098 msgid "C<AUG_SAVE_NEWFILE> = 2"
7099 msgstr ""
7100
7101 # type: textblock
7102 #. type: textblock
7103 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
7104 msgid ""
7105 "Save changes into a file with extension C<.augnew>, and do not overwrite "
7106 "original.  Overrides C<AUG_SAVE_BACKUP>."
7107 msgstr ""
7108
7109 # type: =item
7110 #. type: =item
7111 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
7112 msgid "C<AUG_TYPE_CHECK> = 4"
7113 msgstr ""
7114
7115 # type: textblock
7116 #. type: textblock
7117 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
7118 msgid "Typecheck lenses (can be expensive)."
7119 msgstr ""
7120
7121 # type: =item
7122 #. type: =item
7123 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
7124 msgid "C<AUG_NO_STDINC> = 8"
7125 msgstr ""
7126
7127 # type: textblock
7128 #. type: textblock
7129 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
7130 msgid "Do not use standard load path for modules."
7131 msgstr ""
7132
7133 # type: =item
7134 #. type: =item
7135 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
7136 msgid "C<AUG_SAVE_NOOP> = 16"
7137 msgstr ""
7138
7139 # type: textblock
7140 #. type: textblock
7141 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
7142 msgid "Make save a no-op, just record what would have been changed."
7143 msgstr ""
7144
7145 # type: =item
7146 #. type: =item
7147 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
7148 msgid "C<AUG_NO_LOAD> = 32"
7149 msgstr ""
7150
7151 # type: textblock
7152 #. type: textblock
7153 #: ../src/guestfs-actions.pod:408
7154 msgid "Do not load the tree in C<guestfs_aug_init>."
7155 msgstr ""
7156
7157 # type: textblock
7158 #. type: textblock
7159 #: ../src/guestfs-actions.pod:412
7160 msgid "To close the handle, you can call C<guestfs_aug_close>."
7161 msgstr ""
7162
7163 # type: textblock
7164 #. type: textblock
7165 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
7166 msgid "To find out more about Augeas, see L<http://augeas.net/>."
7167 msgstr ""
7168
7169 # type: =head2
7170 #. type: =head2
7171 #: ../src/guestfs-actions.pod:420
7172 msgid "guestfs_aug_insert"
7173 msgstr ""
7174
7175 # type: verbatim
7176 #. type: verbatim
7177 #: ../src/guestfs-actions.pod:422
7178 #, no-wrap
7179 msgid ""
7180 " int\n"
7181 " guestfs_aug_insert (guestfs_h *g,\n"
7182 "                     const char *augpath,\n"
7183 "                     const char *label,\n"
7184 "                     int before);\n"
7185 "\n"
7186 msgstr ""
7187
7188 # type: textblock
7189 #. type: textblock
7190 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
7191 msgid ""
7192 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
7193 "or after C<path> (depending on the boolean flag C<before>)."
7194 msgstr ""
7195
7196 # type: textblock
7197 #. type: textblock
7198 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
7199 msgid ""
7200 "C<path> must match exactly one existing node in the tree, and C<label> must "
7201 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
7202 msgstr ""
7203
7204 # type: =head2
7205 #. type: =head2
7206 #: ../src/guestfs-actions.pod:440
7207 msgid "guestfs_aug_load"
7208 msgstr ""
7209
7210 # type: verbatim
7211 #. type: verbatim
7212 #: ../src/guestfs-actions.pod:442
7213 #, no-wrap
7214 msgid ""
7215 " int\n"
7216 " guestfs_aug_load (guestfs_h *g);\n"
7217 "\n"
7218 msgstr ""
7219
7220 # type: textblock
7221 #. type: textblock
7222 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
7223 msgid "Load files into the tree."
7224 msgstr ""
7225
7226 # type: textblock
7227 #. type: textblock
7228 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
7229 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
7230 msgstr ""
7231
7232 # type: =head2
7233 #. type: =head2
7234 #: ../src/guestfs-actions.pod:454
7235 msgid "guestfs_aug_ls"
7236 msgstr ""
7237
7238 # type: verbatim
7239 #. type: verbatim
7240 #: ../src/guestfs-actions.pod:456
7241 #, no-wrap
7242 msgid ""
7243 " char **\n"
7244 " guestfs_aug_ls (guestfs_h *g,\n"
7245 "                 const char *augpath);\n"
7246 "\n"
7247 msgstr ""
7248
7249 # type: textblock
7250 #. type: textblock
7251 #: ../src/guestfs-actions.pod:460
7252 msgid ""
7253 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
7254 "sorting the resulting nodes into alphabetical order."
7255 msgstr ""
7256
7257 # type: textblock
7258 #. type: textblock
7259 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
7260 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
7261 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
7262 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
7263 #: ../src/guestfs-actions.pod:1759 ../src/guestfs-actions.pod:2201
7264 #: ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2236
7265 #: ../src/guestfs-actions.pod:2279 ../src/guestfs-actions.pod:2303
7266 #: ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:2423
7267 #: ../src/guestfs-actions.pod:2682 ../src/guestfs-actions.pod:2973
7268 #: ../src/guestfs-actions.pod:3262 ../src/guestfs-actions.pod:3552
7269 #: ../src/guestfs-actions.pod:3614 ../src/guestfs-actions.pod:3719
7270 #: ../src/guestfs-actions.pod:4124 ../src/guestfs-actions.pod:4822
7271 #: ../src/guestfs-actions.pod:5342 ../src/guestfs-actions.pod:5468
7272 #: ../src/guestfs-actions.pod:5582 ../src/guestfs-actions.pod:6282
7273 #: ../src/guestfs-actions.pod:6343 ../src/guestfs-actions.pod:6398
7274 #: ../src/guestfs-actions.pod:6544 ../src/guestfs-actions.pod:6568
7275 #: ../src/guestfs-actions.pod:7050 ../src/guestfs-actions.pod:7070
7276 #: ../src/guestfs-actions.pod:7117 ../src/guestfs-actions.pod:7282
7277 #: ../src/guestfs-actions.pod:7301 ../src/guestfs-actions.pod:7386
7278 #: ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7451
7279 #: ../src/guestfs-actions.pod:7470
7280 msgid ""
7281 "This function returns a NULL-terminated array of strings (like L<environ(3)"
7282 ">), or NULL if there was an error.  I<The caller must free the strings and "
7283 "the array after use>."
7284 msgstr ""
7285
7286 # type: textblock
7287 #. type: textblock
7288 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
7289 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
7290 #: ../src/guestfs-actions.pod:3340 ../src/guestfs-actions.pod:3371
7291 #: ../src/guestfs-actions.pod:3965 ../src/guestfs-actions.pod:4015
7292 #: ../src/guestfs-actions.pod:4202 ../src/guestfs-actions.pod:4235
7293 #: ../src/guestfs-actions.pod:4398 ../src/guestfs-actions.pod:4826
7294 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5678
7295 #: ../src/guestfs-actions.pod:5692 ../src/guestfs-actions.pod:5704
7296 #: ../src/guestfs-actions.pod:6144 ../src/guestfs-actions.pod:6782
7297 #: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7034
7298 #: ../src/guestfs-actions.pod:7270
7299 msgid "(Added in 0.8)"
7300 msgstr ""
7301
7302 # type: =head2
7303 #. type: =head2
7304 #: ../src/guestfs-actions.pod:469
7305 msgid "guestfs_aug_match"
7306 msgstr ""
7307
7308 # type: verbatim
7309 #. type: verbatim
7310 #: ../src/guestfs-actions.pod:471
7311 #, no-wrap
7312 msgid ""
7313 " char **\n"
7314 " guestfs_aug_match (guestfs_h *g,\n"
7315 "                    const char *augpath);\n"
7316 "\n"
7317 msgstr ""
7318
7319 # type: textblock
7320 #. type: textblock
7321 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
7322 msgid ""
7323 "Returns a list of paths which match the path expression C<path>.  The "
7324 "returned paths are sufficiently qualified so that they match exactly one "
7325 "node in the current tree."
7326 msgstr ""
7327
7328 # type: =head2
7329 #. type: =head2
7330 #: ../src/guestfs-actions.pod:485
7331 msgid "guestfs_aug_mv"
7332 msgstr ""
7333
7334 # type: verbatim
7335 #. type: verbatim
7336 #: ../src/guestfs-actions.pod:487
7337 #, no-wrap
7338 msgid ""
7339 " int\n"
7340 " guestfs_aug_mv (guestfs_h *g,\n"
7341 "                 const char *src,\n"
7342 "                 const char *dest);\n"
7343 "\n"
7344 msgstr ""
7345
7346 # type: textblock
7347 #. type: textblock
7348 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
7349 msgid ""
7350 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7351 "C<dest> is overwritten if it exists."
7352 msgstr ""
7353
7354 # type: =head2
7355 #. type: =head2
7356 #: ../src/guestfs-actions.pod:499
7357 msgid "guestfs_aug_rm"
7358 msgstr ""
7359
7360 # type: verbatim
7361 #. type: verbatim
7362 #: ../src/guestfs-actions.pod:501
7363 #, no-wrap
7364 msgid ""
7365 " int\n"
7366 " guestfs_aug_rm (guestfs_h *g,\n"
7367 "                 const char *augpath);\n"
7368 "\n"
7369 msgstr ""
7370
7371 # type: textblock
7372 #. type: textblock
7373 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
7374 msgid "Remove C<path> and all of its children."
7375 msgstr ""
7376
7377 # type: textblock
7378 #. type: textblock
7379 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
7380 msgid "On success this returns the number of entries which were removed."
7381 msgstr ""
7382
7383 # type: =head2
7384 #. type: =head2
7385 #: ../src/guestfs-actions.pod:513
7386 msgid "guestfs_aug_save"
7387 msgstr ""
7388
7389 # type: verbatim
7390 #. type: verbatim
7391 #: ../src/guestfs-actions.pod:515
7392 #, no-wrap
7393 msgid ""
7394 " int\n"
7395 " guestfs_aug_save (guestfs_h *g);\n"
7396 "\n"
7397 msgstr ""
7398
7399 # type: textblock
7400 #. type: textblock
7401 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
7402 msgid "This writes all pending changes to disk."
7403 msgstr ""
7404
7405 # type: textblock
7406 #. type: textblock
7407 #: ../src/guestfs-actions.pod:520
7408 msgid ""
7409 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7410 "are saved."
7411 msgstr ""
7412
7413 # type: =head2
7414 #. type: =head2
7415 #: ../src/guestfs-actions.pod:527
7416 msgid "guestfs_aug_set"
7417 msgstr ""
7418
7419 # type: verbatim
7420 #. type: verbatim
7421 #: ../src/guestfs-actions.pod:529
7422 #, no-wrap
7423 msgid ""
7424 " int\n"
7425 " guestfs_aug_set (guestfs_h *g,\n"
7426 "                  const char *augpath,\n"
7427 "                  const char *val);\n"
7428 "\n"
7429 msgstr ""
7430
7431 # type: textblock
7432 #. type: textblock
7433 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7434 msgid "Set the value associated with C<path> to C<val>."
7435 msgstr ""
7436
7437 # type: textblock
7438 #. type: textblock
7439 #: ../src/guestfs-actions.pod:536
7440 msgid ""
7441 "In the Augeas API, it is possible to clear a node by setting the value to "
7442 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7443 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7444 msgstr ""
7445
7446 # type: =head2
7447 #. type: =head2
7448 #: ../src/guestfs-actions.pod:545
7449 msgid "guestfs_available"
7450 msgstr ""
7451
7452 # type: verbatim
7453 #. type: verbatim
7454 #: ../src/guestfs-actions.pod:547
7455 #, no-wrap
7456 msgid ""
7457 " int\n"
7458 " guestfs_available (guestfs_h *g,\n"
7459 "                    char *const *groups);\n"
7460 "\n"
7461 msgstr ""
7462
7463 # type: textblock
7464 #. type: textblock
7465 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7466 msgid ""
7467 "This command is used to check the availability of some groups of "
7468 "functionality in the appliance, which not all builds of the libguestfs "
7469 "appliance will be able to provide."
7470 msgstr ""
7471
7472 # type: textblock
7473 #. type: textblock
7474 #: ../src/guestfs-actions.pod:555
7475 msgid ""
7476 "The libguestfs groups, and the functions that those groups correspond to, "
7477 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7478 "runtime by calling C<guestfs_available_all_groups>."
7479 msgstr ""
7480
7481 # type: textblock
7482 #. type: textblock
7483 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7484 msgid ""
7485 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7486 "\"]> would check for the availability of the Linux inotify functions and "
7487 "Augeas (configuration file editing) functions."
7488 msgstr ""
7489
7490 # type: textblock
7491 #. type: textblock
7492 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7493 msgid "The command returns no error if I<all> requested groups are available."
7494 msgstr ""
7495
7496 # type: textblock
7497 #. type: textblock
7498 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7499 msgid ""
7500 "It fails with an error if one or more of the requested groups is unavailable "
7501 "in the appliance."
7502 msgstr ""
7503
7504 # type: textblock
7505 #. type: textblock
7506 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7507 msgid ""
7508 "If an unknown group name is included in the list of groups then an error is "
7509 "always returned."
7510 msgstr ""
7511
7512 # type: textblock
7513 #. type: textblock
7514 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7515 msgid "I<Notes:>"
7516 msgstr ""
7517
7518 # type: textblock
7519 #. type: textblock
7520 #: ../src/guestfs-actions.pod:579
7521 msgid "You must call C<guestfs_launch> before calling this function."
7522 msgstr ""
7523
7524 # type: textblock
7525 #. type: textblock
7526 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7527 msgid ""
7528 "The reason is because we don't know what groups are supported by the "
7529 "appliance/daemon until it is running and can be queried."
7530 msgstr ""
7531
7532 # type: textblock
7533 #. type: textblock
7534 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7535 msgid ""
7536 "If a group of functions is available, this does not necessarily mean that "
7537 "they will work.  You still have to check for errors when calling individual "
7538 "API functions even if they are available."
7539 msgstr ""
7540
7541 # type: textblock
7542 #. type: textblock
7543 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7544 msgid ""
7545 "It is usually the job of distro packagers to build complete functionality "
7546 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7547 "with all requirements satisfied, will support everything."
7548 msgstr ""
7549
7550 # type: textblock
7551 #. type: textblock
7552 #: ../src/guestfs-actions.pod:601
7553 msgid ""
7554 "This call was added in version C<1.0.80>.  In previous versions of "
7555 "libguestfs all you could do would be to speculatively execute a command to "
7556 "find out if the daemon implemented it.  See also C<guestfs_version>."
7557 msgstr ""
7558
7559 # type: textblock
7560 #. type: textblock
7561 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7562 msgid "(Added in 1.0.80)"
7563 msgstr ""
7564
7565 # type: =head2
7566 #. type: =head2
7567 #: ../src/guestfs-actions.pod:612
7568 msgid "guestfs_available_all_groups"
7569 msgstr ""
7570
7571 # type: verbatim
7572 #. type: verbatim
7573 #: ../src/guestfs-actions.pod:614
7574 #, no-wrap
7575 msgid ""
7576 " char **\n"
7577 " guestfs_available_all_groups (guestfs_h *g);\n"
7578 "\n"
7579 msgstr ""
7580
7581 # type: textblock
7582 #. type: textblock
7583 #: ../src/guestfs-actions.pod:617
7584 msgid ""
7585 "This command returns a list of all optional groups that this daemon knows "
7586 "about.  Note this returns both supported and unsupported groups.  To find "
7587 "out which ones the daemon can actually support you have to call "
7588 "C<guestfs_available> on each member of the returned list."
7589 msgstr ""
7590
7591 # type: textblock
7592 #. type: textblock
7593 #: ../src/guestfs-actions.pod:623
7594 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7595 msgstr ""
7596
7597 # type: textblock
7598 #. type: textblock
7599 #: ../src/guestfs-actions.pod:629
7600 msgid "(Added in 1.3.15)"
7601 msgstr ""
7602
7603 # type: =head2
7604 #. type: =head2
7605 #: ../src/guestfs-actions.pod:631
7606 msgid "guestfs_base64_in"
7607 msgstr ""
7608
7609 # type: verbatim
7610 #. type: verbatim
7611 #: ../src/guestfs-actions.pod:633
7612 #, no-wrap
7613 msgid ""
7614 " int\n"
7615 " guestfs_base64_in (guestfs_h *g,\n"
7616 "                    const char *base64file,\n"
7617 "                    const char *filename);\n"
7618 "\n"
7619 msgstr ""
7620
7621 # type: textblock
7622 #. type: textblock
7623 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7624 msgid ""
7625 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7626 msgstr ""
7627
7628 # type: textblock
7629 #. type: textblock
7630 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7631 msgid "(Added in 1.3.5)"
7632 msgstr ""
7633
7634 # type: =head2
7635 #. type: =head2
7636 #: ../src/guestfs-actions.pod:645
7637 msgid "guestfs_base64_out"
7638 msgstr ""
7639
7640 # type: verbatim
7641 #. type: verbatim
7642 #: ../src/guestfs-actions.pod:647
7643 #, no-wrap
7644 msgid ""
7645 " int\n"
7646 " guestfs_base64_out (guestfs_h *g,\n"
7647 "                     const char *filename,\n"
7648 "                     const char *base64file);\n"
7649 "\n"
7650 msgstr ""
7651
7652 # type: textblock
7653 #. type: textblock
7654 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7655 msgid ""
7656 "This command downloads the contents of C<filename>, writing it out to local "
7657 "file C<base64file> encoded as base64."
7658 msgstr ""
7659
7660 # type: =head2
7661 #. type: =head2
7662 #: ../src/guestfs-actions.pod:659
7663 msgid "guestfs_blockdev_flushbufs"
7664 msgstr ""
7665
7666 # type: verbatim
7667 #. type: verbatim
7668 #: ../src/guestfs-actions.pod:661
7669 #, no-wrap
7670 msgid ""
7671 " int\n"
7672 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7673 "                             const char *device);\n"
7674 "\n"
7675 msgstr ""
7676
7677 # type: textblock
7678 #. type: textblock
7679 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7680 msgid ""
7681 "This tells the kernel to flush internal buffers associated with C<device>."
7682 msgstr ""
7683
7684 # type: textblock
7685 #. type: textblock
7686 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7687 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7688 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7689 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7690 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7691 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7692 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7693 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7694 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7695 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7696 msgid "This uses the L<blockdev(8)> command."
7697 msgstr ""
7698
7699 # type: textblock
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7702 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7703 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7704 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7705 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7706 msgid "(Added in 0.9.3)"
7707 msgstr ""
7708
7709 # type: =head2
7710 #. type: =head2
7711 #: ../src/guestfs-actions.pod:674
7712 msgid "guestfs_blockdev_getbsz"
7713 msgstr ""
7714
7715 # type: verbatim
7716 #. type: verbatim
7717 #: ../src/guestfs-actions.pod:676
7718 #, no-wrap
7719 msgid ""
7720 " int\n"
7721 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7722 "                          const char *device);\n"
7723 "\n"
7724 msgstr ""
7725
7726 # type: textblock
7727 #. type: textblock
7728 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7729 msgid "This returns the block size of a device."
7730 msgstr ""
7731
7732 # type: textblock
7733 #. type: textblock
7734 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7735 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7736 msgid ""
7737 "(Note this is different from both I<size in blocks> and I<filesystem block "
7738 "size>)."
7739 msgstr ""
7740
7741 # type: =head2
7742 #. type: =head2
7743 #: ../src/guestfs-actions.pod:691
7744 msgid "guestfs_blockdev_getro"
7745 msgstr ""
7746
7747 # type: verbatim
7748 #. type: verbatim
7749 #: ../src/guestfs-actions.pod:693
7750 #, no-wrap
7751 msgid ""
7752 " int\n"
7753 " guestfs_blockdev_getro (guestfs_h *g,\n"
7754 "                         const char *device);\n"
7755 "\n"
7756 msgstr ""
7757
7758 # type: textblock
7759 #. type: textblock
7760 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7761 msgid ""
7762 "Returns a boolean indicating if the block device is read-only (true if read-"
7763 "only, false if not)."
7764 msgstr ""
7765
7766 # type: textblock
7767 #. type: textblock
7768 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7769 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1914
7770 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1997
7771 #: ../src/guestfs-actions.pod:2052 ../src/guestfs-actions.pod:2067
7772 #: ../src/guestfs-actions.pod:2092 ../src/guestfs-actions.pod:2115
7773 #: ../src/guestfs-actions.pod:3080 ../src/guestfs-actions.pod:3097
7774 #: ../src/guestfs-actions.pod:3116 ../src/guestfs-actions.pod:3279
7775 #: ../src/guestfs-actions.pod:3293 ../src/guestfs-actions.pod:3308
7776 #: ../src/guestfs-actions.pod:3322 ../src/guestfs-actions.pod:3338
7777 #: ../src/guestfs-actions.pod:3353 ../src/guestfs-actions.pod:3369
7778 #: ../src/guestfs-actions.pod:3383 ../src/guestfs-actions.pod:3396
7779 #: ../src/guestfs-actions.pod:3410 ../src/guestfs-actions.pod:3425
7780 #: ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:4971
7781 msgid "This function returns a C truth value on success or -1 on error."
7782 msgstr ""
7783
7784 # type: =head2
7785 #. type: =head2
7786 #: ../src/guestfs-actions.pod:706
7787 msgid "guestfs_blockdev_getsize64"
7788 msgstr ""
7789
7790 # type: verbatim
7791 #. type: verbatim
7792 #: ../src/guestfs-actions.pod:708
7793 #, no-wrap
7794 msgid ""
7795 " int64_t\n"
7796 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7797 "                             const char *device);\n"
7798 "\n"
7799 msgstr ""
7800
7801 # type: textblock
7802 #. type: textblock
7803 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7804 msgid "This returns the size of the device in bytes."
7805 msgstr ""
7806
7807 # type: textblock
7808 #. type: textblock
7809 #: ../src/guestfs-actions.pod:714
7810 msgid "See also C<guestfs_blockdev_getsz>."
7811 msgstr ""
7812
7813 # type: =head2
7814 #. type: =head2
7815 #: ../src/guestfs-actions.pod:722
7816 msgid "guestfs_blockdev_getss"
7817 msgstr ""
7818
7819 # type: verbatim
7820 #. type: verbatim
7821 #: ../src/guestfs-actions.pod:724
7822 #, no-wrap
7823 msgid ""
7824 " int\n"
7825 " guestfs_blockdev_getss (guestfs_h *g,\n"
7826 "                         const char *device);\n"
7827 "\n"
7828 msgstr ""
7829
7830 # type: textblock
7831 #. type: textblock
7832 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
7833 msgid ""
7834 "This returns the size of sectors on a block device.  Usually 512, but can be "
7835 "larger for modern devices."
7836 msgstr ""
7837
7838 # type: textblock
7839 #. type: textblock
7840 #: ../src/guestfs-actions.pod:731
7841 msgid ""
7842 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7843 "that)."
7844 msgstr ""
7845
7846 # type: =head2
7847 #. type: =head2
7848 #: ../src/guestfs-actions.pod:740
7849 msgid "guestfs_blockdev_getsz"
7850 msgstr ""
7851
7852 # type: verbatim
7853 #. type: verbatim
7854 #: ../src/guestfs-actions.pod:742
7855 #, no-wrap
7856 msgid ""
7857 " int64_t\n"
7858 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7859 "                         const char *device);\n"
7860 "\n"
7861 msgstr ""
7862
7863 # type: textblock
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
7866 msgid ""
7867 "This returns the size of the device in units of 512-byte sectors (even if "
7868 "the sectorsize isn't 512 bytes ... weird)."
7869 msgstr ""
7870
7871 # type: textblock
7872 #. type: textblock
7873 #: ../src/guestfs-actions.pod:749
7874 msgid ""
7875 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7876 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7877 msgstr ""
7878
7879 # type: =head2
7880 #. type: =head2
7881 #: ../src/guestfs-actions.pod:759
7882 msgid "guestfs_blockdev_rereadpt"
7883 msgstr ""
7884
7885 # type: verbatim
7886 #. type: verbatim
7887 #: ../src/guestfs-actions.pod:761
7888 #, no-wrap
7889 msgid ""
7890 " int\n"
7891 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7892 "                            const char *device);\n"
7893 "\n"
7894 msgstr ""
7895
7896 # type: textblock
7897 #. type: textblock
7898 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
7899 msgid "Reread the partition table on C<device>."
7900 msgstr ""
7901
7902 # type: =head2
7903 #. type: =head2
7904 #: ../src/guestfs-actions.pod:773
7905 msgid "guestfs_blockdev_setbsz"
7906 msgstr ""
7907
7908 # type: verbatim
7909 #. type: verbatim
7910 #: ../src/guestfs-actions.pod:775
7911 #, no-wrap
7912 msgid ""
7913 " int\n"
7914 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7915 "                          const char *device,\n"
7916 "                          int blocksize);\n"
7917 "\n"
7918 msgstr ""
7919
7920 # type: textblock
7921 #. type: textblock
7922 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
7923 msgid "This sets the block size of a device."
7924 msgstr ""
7925
7926 # type: =head2
7927 #. type: =head2
7928 #: ../src/guestfs-actions.pod:791
7929 msgid "guestfs_blockdev_setro"
7930 msgstr ""
7931
7932 # type: verbatim
7933 #. type: verbatim
7934 #: ../src/guestfs-actions.pod:793
7935 #, no-wrap
7936 msgid ""
7937 " int\n"
7938 " guestfs_blockdev_setro (guestfs_h *g,\n"
7939 "                         const char *device);\n"
7940 "\n"
7941 msgstr ""
7942
7943 # type: textblock
7944 #. type: textblock
7945 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
7946 msgid "Sets the block device named C<device> to read-only."
7947 msgstr ""
7948
7949 # type: =head2
7950 #. type: =head2
7951 #: ../src/guestfs-actions.pod:805
7952 msgid "guestfs_blockdev_setrw"
7953 msgstr ""
7954
7955 # type: verbatim
7956 #. type: verbatim
7957 #: ../src/guestfs-actions.pod:807
7958 #, no-wrap
7959 msgid ""
7960 " int\n"
7961 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7962 "                         const char *device);\n"
7963 "\n"
7964 msgstr ""
7965
7966 # type: textblock
7967 #. type: textblock
7968 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
7969 msgid "Sets the block device named C<device> to read-write."
7970 msgstr ""
7971
7972 # type: =head2
7973 #. type: =head2
7974 #: ../src/guestfs-actions.pod:819
7975 msgid "guestfs_case_sensitive_path"
7976 msgstr ""
7977
7978 # type: verbatim
7979 #. type: verbatim
7980 #: ../src/guestfs-actions.pod:821
7981 #, no-wrap
7982 msgid ""
7983 " char *\n"
7984 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7985 "                              const char *path);\n"
7986 "\n"
7987 msgstr ""
7988
7989 # type: textblock
7990 #. type: textblock
7991 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
7992 msgid ""
7993 "This can be used to resolve case insensitive paths on a filesystem which is "
7994 "case sensitive.  The use case is to resolve paths which you have read from "
7995 "Windows configuration files or the Windows Registry, to the true path."
7996 msgstr ""
7997
7998 # type: textblock
7999 #. type: textblock
8000 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
8001 msgid ""
8002 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
8003 "(and probably others), which is that although the underlying filesystem is "
8004 "case-insensitive, the driver exports the filesystem to Linux as case-"
8005 "sensitive."
8006 msgstr ""
8007
8008 # type: textblock
8009 #. type: textblock
8010 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
8011 msgid ""
8012 "One consequence of this is that special directories such as C<c:\\windows> "
8013 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
8014 "precise details of how they were created.  In Windows itself this would not "
8015 "be a problem."
8016 msgstr ""
8017
8018 # type: textblock
8019 #. type: textblock
8020 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
8021 msgid ""
8022 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
8023 "#posixfilenames1>"
8024 msgstr ""
8025
8026 # type: textblock
8027 #. type: textblock
8028 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
8029 msgid ""
8030 "This function resolves the true case of each element in the path and returns "
8031 "the case-sensitive path."
8032 msgstr ""
8033
8034 # type: textblock
8035 #. type: textblock
8036 #: ../src/guestfs-actions.pod:847
8037 msgid ""
8038 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
8039 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
8040 "how the directories were originally created under Windows)."
8041 msgstr ""
8042
8043 # type: textblock
8044 #. type: textblock
8045 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
8046 msgid "I<Note>: This function does not handle drive names, backslashes etc."
8047 msgstr ""
8048
8049 # type: textblock
8050 #. type: textblock
8051 #: ../src/guestfs-actions.pod:855
8052 msgid "See also C<guestfs_realpath>."
8053 msgstr ""
8054
8055 # type: textblock
8056 #. type: textblock
8057 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:6962
8058 msgid "(Added in 1.0.75)"
8059 msgstr ""
8060
8061 # type: =head2
8062 #. type: =head2
8063 #: ../src/guestfs-actions.pod:862
8064 msgid "guestfs_cat"
8065 msgstr ""
8066
8067 # type: verbatim
8068 #. type: verbatim
8069 #: ../src/guestfs-actions.pod:864
8070 #, no-wrap
8071 msgid ""
8072 " char *\n"
8073 " guestfs_cat (guestfs_h *g,\n"
8074 "              const char *path);\n"
8075 "\n"
8076 msgstr ""
8077
8078 # type: textblock
8079 #. type: textblock
8080 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5458
8081 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3659
8082 msgid "Return the contents of the file named C<path>."
8083 msgstr ""
8084
8085 # type: textblock
8086 #. type: textblock
8087 #: ../src/guestfs-actions.pod:870
8088 msgid ""
8089 "Note that this function cannot correctly handle binary files (specifically, "
8090 "files containing C<\\0> character which is treated as end of string).  For "
8091 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
8092 "functions which have a more complex interface."
8093 msgstr ""
8094
8095 # type: textblock
8096 #. type: textblock
8097 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
8098 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
8099 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
8100 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1763
8101 #: ../src/guestfs-actions.pod:2221 ../src/guestfs-actions.pod:2240
8102 #: ../src/guestfs-actions.pod:2283 ../src/guestfs-actions.pod:2307
8103 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:2353
8104 #: ../src/guestfs-actions.pod:5240 ../src/guestfs-actions.pod:5266
8105 #: ../src/guestfs-actions.pod:5397 ../src/guestfs-actions.pod:5423
8106 #: ../src/guestfs-actions.pod:5447 ../src/guestfs-actions.pod:6347
8107 #: ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:6548
8108 #: ../src/guestfs-actions.pod:6572 ../src/guestfs-actions.pod:7234
8109 #: ../src/guestfs-actions.pod:7260 ../src/guestfs-actions.pod:7286
8110 #: ../src/guestfs-actions.pod:7305 ../src/guestfs-actions.pod:7390
8111 #: ../src/guestfs-actions.pod:7409 ../src/guestfs-actions.pod:7455
8112 #: ../src/guestfs-actions.pod:7474 ../fish/guestfish-actions.pod:587
8113 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
8114 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
8115 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
8116 #: ../fish/guestfish-actions.pod:1192 ../fish/guestfish-actions.pod:1493
8117 #: ../fish/guestfish-actions.pod:1503 ../fish/guestfish-actions.pod:1531
8118 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:1556
8119 #: ../fish/guestfish-actions.pod:1575 ../fish/guestfish-actions.pod:3529
8120 #: ../fish/guestfish-actions.pod:3544 ../fish/guestfish-actions.pod:3620
8121 #: ../fish/guestfish-actions.pod:3637 ../fish/guestfish-actions.pod:3652
8122 #: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:4324
8123 #: ../fish/guestfish-actions.pod:4409 ../fish/guestfish-actions.pod:4424
8124 #: ../fish/guestfish-actions.pod:4834 ../fish/guestfish-actions.pod:4852
8125 #: ../fish/guestfish-actions.pod:4869 ../fish/guestfish-actions.pod:4879
8126 #: ../fish/guestfish-actions.pod:4927 ../fish/guestfish-actions.pod:4937
8127 #: ../fish/guestfish-actions.pod:4966 ../fish/guestfish-actions.pod:4976
8128 msgid ""
8129 "Because of the message protocol, there is a transfer limit of somewhere "
8130 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
8131 msgstr ""
8132
8133 # type: textblock
8134 #. type: textblock
8135 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3556
8136 #: ../src/guestfs-actions.pod:3618 ../src/guestfs-actions.pod:3635
8137 #: ../src/guestfs-actions.pod:3723 ../src/guestfs-actions.pod:4128
8138 #: ../src/guestfs-actions.pod:4142 ../src/guestfs-actions.pod:5346
8139 #: ../src/guestfs-actions.pod:5360 ../src/guestfs-actions.pod:7121
8140 #: ../src/guestfs-actions.pod:7135
8141 msgid "(Added in 0.4)"
8142 msgstr ""
8143
8144 # type: =head2
8145 #. type: =head2
8146 #: ../src/guestfs-actions.pod:883
8147 msgid "guestfs_checksum"
8148 msgstr ""
8149
8150 # type: verbatim
8151 #. type: verbatim
8152 #: ../src/guestfs-actions.pod:885
8153 #, no-wrap
8154 msgid ""
8155 " char *\n"
8156 " guestfs_checksum (guestfs_h *g,\n"
8157 "                   const char *csumtype,\n"
8158 "                   const char *path);\n"
8159 "\n"
8160 msgstr ""
8161
8162 # type: textblock
8163 #. type: textblock
8164 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
8165 msgid ""
8166 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
8167 msgstr ""
8168
8169 # type: textblock
8170 #. type: textblock
8171 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
8172 msgid ""
8173 "The type of checksum to compute is given by the C<csumtype> parameter which "
8174 "must have one of the following values:"
8175 msgstr ""
8176
8177 # type: =item
8178 #. type: =item
8179 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
8180 msgid "C<crc>"
8181 msgstr ""
8182
8183 # type: textblock
8184 #. type: textblock
8185 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
8186 msgid ""
8187 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
8188 "C<cksum> command."
8189 msgstr ""
8190
8191 # type: =item
8192 #. type: =item
8193 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
8194 msgid "C<md5>"
8195 msgstr ""
8196
8197 # type: textblock
8198 #. type: textblock
8199 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
8200 msgid "Compute the MD5 hash (using the C<md5sum> program)."
8201 msgstr ""
8202
8203 # type: =item
8204 #. type: =item
8205 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
8206 msgid "C<sha1>"
8207 msgstr ""
8208
8209 # type: textblock
8210 #. type: textblock
8211 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
8212 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
8213 msgstr ""
8214
8215 # type: =item
8216 #. type: =item
8217 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
8218 msgid "C<sha224>"
8219 msgstr ""
8220
8221 # type: textblock
8222 #. type: textblock
8223 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
8224 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
8225 msgstr ""
8226
8227 # type: =item
8228 #. type: =item
8229 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
8230 msgid "C<sha256>"
8231 msgstr ""
8232
8233 # type: textblock
8234 #. type: textblock
8235 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
8236 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
8237 msgstr ""
8238
8239 # type: =item
8240 #. type: =item
8241 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
8242 msgid "C<sha384>"
8243 msgstr ""
8244
8245 # type: textblock
8246 #. type: textblock
8247 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
8248 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
8249 msgstr ""
8250
8251 # type: =item
8252 #. type: =item
8253 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
8254 msgid "C<sha512>"
8255 msgstr ""
8256
8257 # type: textblock
8258 #. type: textblock
8259 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
8260 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
8261 msgstr ""
8262
8263 # type: textblock
8264 #. type: textblock
8265 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
8266 msgid "The checksum is returned as a printable string."
8267 msgstr ""
8268
8269 # type: textblock
8270 #. type: textblock
8271 #: ../src/guestfs-actions.pod:931
8272 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
8273 msgstr ""
8274
8275 # type: textblock
8276 #. type: textblock
8277 #: ../src/guestfs-actions.pod:933
8278 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
8279 msgstr ""
8280
8281 # type: textblock
8282 #. type: textblock
8283 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
8284 #: ../src/guestfs-actions.pod:2083 ../src/guestfs-actions.pod:3295
8285 #: ../src/guestfs-actions.pod:3324 ../src/guestfs-actions.pod:3385
8286 #: ../src/guestfs-actions.pod:3412 ../src/guestfs-actions.pod:6818
8287 msgid "(Added in 1.0.2)"
8288 msgstr ""
8289
8290 # type: =head2
8291 #. type: =head2
8292 #: ../src/guestfs-actions.pod:940
8293 msgid "guestfs_checksum_device"
8294 msgstr ""
8295
8296 # type: verbatim
8297 #. type: verbatim
8298 #: ../src/guestfs-actions.pod:942
8299 #, no-wrap
8300 msgid ""
8301 " char *\n"
8302 " guestfs_checksum_device (guestfs_h *g,\n"
8303 "                          const char *csumtype,\n"
8304 "                          const char *device);\n"
8305 "\n"
8306 msgstr ""
8307
8308 # type: textblock
8309 #. type: textblock
8310 #: ../src/guestfs-actions.pod:947
8311 msgid ""
8312 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8313 "device named C<device>.  For the types of checksums supported see the "
8314 "C<guestfs_checksum> command."
8315 msgstr ""
8316
8317 # type: textblock
8318 #. type: textblock
8319 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4877
8320 #: ../src/guestfs-actions.pod:4936 ../src/guestfs-actions.pod:4973
8321 #: ../src/guestfs-actions.pod:4991 ../src/guestfs-actions.pod:5167
8322 #: ../src/guestfs-actions.pod:6727 ../src/guestfs-actions.pod:6741
8323 #: ../src/guestfs-actions.pod:7147
8324 msgid "(Added in 1.3.2)"
8325 msgstr ""
8326
8327 # type: =head2
8328 #. type: =head2
8329 #: ../src/guestfs-actions.pod:956
8330 msgid "guestfs_checksums_out"
8331 msgstr ""
8332
8333 # type: verbatim
8334 #. type: verbatim
8335 #: ../src/guestfs-actions.pod:958
8336 #, no-wrap
8337 msgid ""
8338 " int\n"
8339 " guestfs_checksums_out (guestfs_h *g,\n"
8340 "                        const char *csumtype,\n"
8341 "                        const char *directory,\n"
8342 "                        const char *sumsfile);\n"
8343 "\n"
8344 msgstr ""
8345
8346 # type: textblock
8347 #. type: textblock
8348 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
8349 msgid ""
8350 "This command computes the checksums of all regular files in C<directory> and "
8351 "then emits a list of those checksums to the local output file C<sumsfile>."
8352 msgstr ""
8353
8354 # type: textblock
8355 #. type: textblock
8356 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
8357 msgid ""
8358 "This can be used for verifying the integrity of a virtual machine.  However "
8359 "to be properly secure you should pay attention to the output of the checksum "
8360 "command (it uses the ones from GNU coreutils).  In particular when the "
8361 "filename is not printable, coreutils uses a special backslash syntax.  For "
8362 "more information, see the GNU coreutils info file."
8363 msgstr ""
8364
8365 # type: textblock
8366 #. type: textblock
8367 #: ../src/guestfs-actions.pod:978
8368 msgid "(Added in 1.3.7)"
8369 msgstr ""
8370
8371 # type: =head2
8372 #. type: =head2
8373 #: ../src/guestfs-actions.pod:980
8374 msgid "guestfs_chmod"
8375 msgstr ""
8376
8377 # type: verbatim
8378 #. type: verbatim
8379 #: ../src/guestfs-actions.pod:982
8380 #, no-wrap
8381 msgid ""
8382 " int\n"
8383 " guestfs_chmod (guestfs_h *g,\n"
8384 "                int mode,\n"
8385 "                const char *path);\n"
8386 "\n"
8387 msgstr ""
8388
8389 # type: textblock
8390 #. type: textblock
8391 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
8392 msgid ""
8393 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8394 "supported."
8395 msgstr ""
8396
8397 # type: textblock
8398 #. type: textblock
8399 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
8400 msgid ""
8401 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8402 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8403 "C<700>."
8404 msgstr ""
8405
8406 # type: textblock
8407 #. type: textblock
8408 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4379
8409 #: ../src/guestfs-actions.pod:4576 ../src/guestfs-actions.pod:4595
8410 #: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:676
8411 #: ../fish/guestfish-actions.pod:2975 ../fish/guestfish-actions.pod:3104
8412 #: ../fish/guestfish-actions.pod:3114 ../fish/guestfish-actions.pod:3124
8413 msgid "The mode actually set is affected by the umask."
8414 msgstr ""
8415
8416 # type: =head2
8417 #. type: =head2
8418 #: ../src/guestfs-actions.pod:1000
8419 msgid "guestfs_chown"
8420 msgstr ""
8421
8422 # type: verbatim
8423 #. type: verbatim
8424 #: ../src/guestfs-actions.pod:1002
8425 #, no-wrap
8426 msgid ""
8427 " int\n"
8428 " guestfs_chown (guestfs_h *g,\n"
8429 "                int owner,\n"
8430 "                int group,\n"
8431 "                const char *path);\n"
8432 "\n"
8433 msgstr ""
8434
8435 # type: textblock
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
8438 msgid "Change the file owner to C<owner> and group to C<group>."
8439 msgstr ""
8440
8441 # type: textblock
8442 #. type: textblock
8443 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3487
8444 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2433
8445 msgid ""
8446 "Only numeric uid and gid are supported.  If you want to use names, you will "
8447 "need to locate and parse the password file yourself (Augeas support makes "
8448 "this relatively easy)."
8449 msgstr ""
8450
8451 # type: =head2
8452 #. type: =head2
8453 #: ../src/guestfs-actions.pod:1018
8454 msgid "guestfs_command"
8455 msgstr ""
8456
8457 # type: verbatim
8458 #. type: verbatim
8459 #: ../src/guestfs-actions.pod:1020
8460 #, no-wrap
8461 msgid ""
8462 " char *\n"
8463 " guestfs_command (guestfs_h *g,\n"
8464 "                  char *const *arguments);\n"
8465 "\n"
8466 msgstr ""
8467
8468 # type: textblock
8469 #. type: textblock
8470 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
8471 msgid ""
8472 "This call runs a command from the guest filesystem.  The filesystem must be "
8473 "mounted, and must contain a compatible operating system (ie. something "
8474 "Linux, with the same or compatible processor architecture)."
8475 msgstr ""
8476
8477 # type: textblock
8478 #. type: textblock
8479 #: ../src/guestfs-actions.pod:1029
8480 msgid ""
8481 "The single parameter is an argv-style list of arguments.  The first element "
8482 "is the name of the program to run.  Subsequent elements are parameters.  The "
8483 "list must be non-empty (ie. must contain a program name).  Note that the "
8484 "command runs directly, and is I<not> invoked via the shell (see "
8485 "C<guestfs_sh>)."
8486 msgstr ""
8487
8488 # type: textblock
8489 #. type: textblock
8490 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
8491 msgid "The return value is anything printed to I<stdout> by the command."
8492 msgstr ""
8493
8494 # type: textblock
8495 #. type: textblock
8496 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
8497 msgid ""
8498 "If the command returns a non-zero exit status, then this function returns an "
8499 "error message.  The error message string is the content of I<stderr> from "
8500 "the command."
8501 msgstr ""
8502
8503 # type: textblock
8504 #. type: textblock
8505 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
8506 msgid ""
8507 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8508 "bin>.  If you require a program from another location, you should provide "
8509 "the full path in the first parameter."
8510 msgstr ""
8511
8512 # type: textblock
8513 #. type: textblock
8514 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
8515 msgid ""
8516 "Shared libraries and data files required by the program must be available on "
8517 "filesystems which are mounted in the correct places.  It is the caller's "
8518 "responsibility to ensure all filesystems that are needed are mounted at the "
8519 "right locations."
8520 msgstr ""
8521
8522 # type: textblock
8523 #. type: textblock
8524 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
8525 #: ../src/guestfs-actions.pod:1548
8526 msgid "(Added in 0.9.1)"
8527 msgstr ""
8528
8529 # type: =head2
8530 #. type: =head2
8531 #: ../src/guestfs-actions.pod:1062
8532 msgid "guestfs_command_lines"
8533 msgstr ""
8534
8535 # type: verbatim
8536 #. type: verbatim
8537 #: ../src/guestfs-actions.pod:1064
8538 #, no-wrap
8539 msgid ""
8540 " char **\n"
8541 " guestfs_command_lines (guestfs_h *g,\n"
8542 "                        char *const *arguments);\n"
8543 "\n"
8544 msgstr ""
8545
8546 # type: textblock
8547 #. type: textblock
8548 #: ../src/guestfs-actions.pod:1068
8549 msgid ""
8550 "This is the same as C<guestfs_command>, but splits the result into a list of "
8551 "lines."
8552 msgstr ""
8553
8554 # type: textblock
8555 #. type: textblock
8556 #: ../src/guestfs-actions.pod:1071
8557 msgid "See also: C<guestfs_sh_lines>"
8558 msgstr ""
8559
8560 # type: =head2
8561 #. type: =head2
8562 #: ../src/guestfs-actions.pod:1082
8563 msgid "guestfs_config"
8564 msgstr ""
8565
8566 # type: verbatim
8567 #. type: verbatim
8568 #: ../src/guestfs-actions.pod:1084
8569 #, no-wrap
8570 msgid ""
8571 " int\n"
8572 " guestfs_config (guestfs_h *g,\n"
8573 "                 const char *qemuparam,\n"
8574 "                 const char *qemuvalue);\n"
8575 "\n"
8576 msgstr ""
8577
8578 # type: textblock
8579 #. type: textblock
8580 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8581 msgid ""
8582 "This can be used to add arbitrary qemu command line parameters of the form "
8583 "C<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8584 "setting some parameters which would interfere with parameters that we use."
8585 msgstr ""
8586
8587 # type: textblock
8588 #. type: textblock
8589 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8590 msgid "The first character of C<param> string must be a C<-> (dash)."
8591 msgstr ""
8592
8593 # type: textblock
8594 #. type: textblock
8595 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8596 msgid "C<value> can be NULL."
8597 msgstr ""
8598
8599 # type: =head2
8600 #. type: =head2
8601 #: ../src/guestfs-actions.pod:1102
8602 msgid "guestfs_copy_size"
8603 msgstr ""
8604
8605 # type: verbatim
8606 #. type: verbatim
8607 #: ../src/guestfs-actions.pod:1104
8608 #, no-wrap
8609 msgid ""
8610 " int\n"
8611 " guestfs_copy_size (guestfs_h *g,\n"
8612 "                    const char *src,\n"
8613 "                    const char *dest,\n"
8614 "                    int64_t size);\n"
8615 "\n"
8616 msgstr ""
8617
8618 # type: textblock
8619 #. type: textblock
8620 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8621 msgid ""
8622 "This command copies exactly C<size> bytes from one source device or file "
8623 "C<src> to another destination device or file C<dest>."
8624 msgstr ""
8625
8626 # type: textblock
8627 #. type: textblock
8628 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8629 msgid ""
8630 "Note this will fail if the source is too short or if the destination is not "
8631 "large enough."
8632 msgstr ""
8633
8634 #. type: textblock
8635 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8636 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8637 #: ../src/guestfs-actions.pod:1697 ../src/guestfs-actions.pod:1719
8638 #: ../src/guestfs-actions.pod:3468 ../src/guestfs-actions.pod:6813
8639 #: ../src/guestfs-actions.pod:6847 ../src/guestfs-actions.pod:7326
8640 #: ../src/guestfs-actions.pod:7345
8641 msgid ""
8642 "This long-running command can generate progress notification messages so "
8643 "that the caller can display a progress bar or indicator.  To receive these "
8644 "messages, the caller must register a progress event callback.  See L<guestfs"
8645 "(3)/GUESTFS_EVENT_PROGRESS>."
8646 msgstr ""
8647
8648 # type: textblock
8649 #. type: textblock
8650 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4155
8651 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:7054
8652 #: ../src/guestfs-actions.pod:7074 ../src/guestfs-actions.pod:7160
8653 msgid "(Added in 1.0.87)"
8654 msgstr ""
8655
8656 # type: =head2
8657 #. type: =head2
8658 #: ../src/guestfs-actions.pod:1125
8659 msgid "guestfs_cp"
8660 msgstr ""
8661
8662 # type: verbatim
8663 #. type: verbatim
8664 #: ../src/guestfs-actions.pod:1127
8665 #, no-wrap
8666 msgid ""
8667 " int\n"
8668 " guestfs_cp (guestfs_h *g,\n"
8669 "             const char *src,\n"
8670 "             const char *dest);\n"
8671 "\n"
8672 msgstr ""
8673
8674 # type: textblock
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8677 msgid ""
8678 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8679 "destination filename or destination directory."
8680 msgstr ""
8681
8682 # type: textblock
8683 #. type: textblock
8684 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8685 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8686 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4840
8687 #: ../src/guestfs-actions.pod:5217
8688 msgid "(Added in 1.0.18)"
8689 msgstr ""
8690
8691 # type: =head2
8692 #. type: =head2
8693 #: ../src/guestfs-actions.pod:1139
8694 msgid "guestfs_cp_a"
8695 msgstr ""
8696
8697 # type: verbatim
8698 #. type: verbatim
8699 #: ../src/guestfs-actions.pod:1141
8700 #, no-wrap
8701 msgid ""
8702 " int\n"
8703 " guestfs_cp_a (guestfs_h *g,\n"
8704 "               const char *src,\n"
8705 "               const char *dest);\n"
8706 "\n"
8707 msgstr ""
8708
8709 # type: textblock
8710 #. type: textblock
8711 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8712 msgid ""
8713 "This copies a file or directory from C<src> to C<dest> recursively using the "
8714 "C<cp -a> command."
8715 msgstr ""
8716
8717 # type: =head2
8718 #. type: =head2
8719 #: ../src/guestfs-actions.pod:1153
8720 msgid "guestfs_dd"
8721 msgstr ""
8722
8723 # type: verbatim
8724 #. type: verbatim
8725 #: ../src/guestfs-actions.pod:1155
8726 #, no-wrap
8727 msgid ""
8728 " int\n"
8729 " guestfs_dd (guestfs_h *g,\n"
8730 "             const char *src,\n"
8731 "             const char *dest);\n"
8732 "\n"
8733 msgstr ""
8734
8735 # type: textblock
8736 #. type: textblock
8737 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8738 msgid ""
8739 "This command copies from one source device or file C<src> to another "
8740 "destination device or file C<dest>.  Normally you would use this to copy to "
8741 "or from a device or partition, for example to duplicate a filesystem."
8742 msgstr ""
8743
8744 # type: textblock
8745 #. type: textblock
8746 #: ../src/guestfs-actions.pod:1165
8747 msgid ""
8748 "If the destination is a device, it must be as large or larger than the "
8749 "source file or device, otherwise the copy will fail.  This command cannot do "
8750 "partial copies (see C<guestfs_copy_size>)."
8751 msgstr ""
8752
8753 # type: =head2
8754 #. type: =head2
8755 #: ../src/guestfs-actions.pod:1173
8756 msgid "guestfs_df"
8757 msgstr ""
8758
8759 # type: verbatim
8760 #. type: verbatim
8761 #: ../src/guestfs-actions.pod:1175
8762 #, no-wrap
8763 msgid ""
8764 " char *\n"
8765 " guestfs_df (guestfs_h *g);\n"
8766 "\n"
8767 msgstr ""
8768
8769 # type: textblock
8770 #. type: textblock
8771 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8772 msgid "This command runs the C<df> command to report disk space used."
8773 msgstr ""
8774
8775 # type: textblock
8776 #. type: textblock
8777 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8778 msgid ""
8779 "This command is mostly useful for interactive sessions.  It is I<not> "
8780 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8781 "from programs."
8782 msgstr ""
8783
8784 # type: textblock
8785 #. type: textblock
8786 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8787 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2286
8788 #: ../src/guestfs-actions.pod:2310 ../src/guestfs-actions.pod:2378
8789 #: ../src/guestfs-actions.pod:4265 ../src/guestfs-actions.pod:4740
8790 #: ../src/guestfs-actions.pod:6551 ../src/guestfs-actions.pod:6575
8791 #: ../src/guestfs-actions.pod:7193 ../src/guestfs-actions.pod:7206
8792 #: ../src/guestfs-actions.pod:7219
8793 msgid "(Added in 1.0.54)"
8794 msgstr ""
8795
8796 # type: =head2
8797 #. type: =head2
8798 #: ../src/guestfs-actions.pod:1189
8799 msgid "guestfs_df_h"
8800 msgstr ""
8801
8802 # type: verbatim
8803 #. type: verbatim
8804 #: ../src/guestfs-actions.pod:1191
8805 #, no-wrap
8806 msgid ""
8807 " char *\n"
8808 " guestfs_df_h (guestfs_h *g);\n"
8809 "\n"
8810 msgstr ""
8811
8812 # type: textblock
8813 #. type: textblock
8814 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8815 msgid ""
8816 "This command runs the C<df -h> command to report disk space used in human-"
8817 "readable format."
8818 msgstr ""
8819
8820 # type: =head2
8821 #. type: =head2
8822 #: ../src/guestfs-actions.pod:1206
8823 msgid "guestfs_dmesg"
8824 msgstr ""
8825
8826 # type: verbatim
8827 #. type: verbatim
8828 #: ../src/guestfs-actions.pod:1208
8829 #, no-wrap
8830 msgid ""
8831 " char *\n"
8832 " guestfs_dmesg (guestfs_h *g);\n"
8833 "\n"
8834 msgstr ""
8835
8836 # type: textblock
8837 #. type: textblock
8838 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
8839 msgid ""
8840 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8841 "This is sometimes useful for extended debugging of problems."
8842 msgstr ""
8843
8844 # type: textblock
8845 #. type: textblock
8846 #: ../src/guestfs-actions.pod:1215
8847 msgid ""
8848 "Another way to get the same information is to enable verbose messages with "
8849 "C<guestfs_set_verbose> or by setting the environment variable "
8850 "C<LIBGUESTFS_DEBUG=1> before running the program."
8851 msgstr ""
8852
8853 # type: =head2
8854 #. type: =head2
8855 #: ../src/guestfs-actions.pod:1225
8856 msgid "guestfs_download"
8857 msgstr ""
8858
8859 # type: verbatim
8860 #. type: verbatim
8861 #: ../src/guestfs-actions.pod:1227
8862 #, no-wrap
8863 msgid ""
8864 " int\n"
8865 " guestfs_download (guestfs_h *g,\n"
8866 "                   const char *remotefilename,\n"
8867 "                   const char *filename);\n"
8868 "\n"
8869 msgstr ""
8870
8871 # type: textblock
8872 #. type: textblock
8873 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
8874 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
8875 msgid ""
8876 "Download file C<remotefilename> and save it as C<filename> on the local "
8877 "machine."
8878 msgstr ""
8879
8880 # type: textblock
8881 #. type: textblock
8882 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6807
8883 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4582
8884 msgid "C<filename> can also be a named pipe."
8885 msgstr ""
8886
8887 # type: textblock
8888 #. type: textblock
8889 #: ../src/guestfs-actions.pod:1237
8890 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8891 msgstr ""
8892
8893 # type: =head2
8894 #. type: =head2
8895 #: ../src/guestfs-actions.pod:1248
8896 msgid "guestfs_download_offset"
8897 msgstr ""
8898
8899 # type: verbatim
8900 #. type: verbatim
8901 #: ../src/guestfs-actions.pod:1250
8902 #, no-wrap
8903 msgid ""
8904 " int\n"
8905 " guestfs_download_offset (guestfs_h *g,\n"
8906 "                          const char *remotefilename,\n"
8907 "                          const char *filename,\n"
8908 "                          int64_t offset,\n"
8909 "                          int64_t size);\n"
8910 "\n"
8911 msgstr ""
8912
8913 # type: textblock
8914 #. type: textblock
8915 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
8916 msgid ""
8917 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8918 "region must be within the file or device)."
8919 msgstr ""
8920
8921 # type: textblock
8922 #. type: textblock
8923 #: ../src/guestfs-actions.pod:1263
8924 msgid ""
8925 "Note that there is no limit on the amount of data that can be downloaded "
8926 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8927 "full amount unless an error occurs."
8928 msgstr ""
8929
8930 # type: textblock
8931 #. type: textblock
8932 #: ../src/guestfs-actions.pod:1268
8933 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8934 msgstr ""
8935
8936 # type: textblock
8937 #. type: textblock
8938 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6852
8939 msgid "(Added in 1.5.17)"
8940 msgstr ""
8941
8942 # type: =head2
8943 #. type: =head2
8944 #: ../src/guestfs-actions.pod:1279
8945 msgid "guestfs_drop_caches"
8946 msgstr ""
8947
8948 # type: verbatim
8949 #. type: verbatim
8950 #: ../src/guestfs-actions.pod:1281
8951 #, no-wrap
8952 msgid ""
8953 " int\n"
8954 " guestfs_drop_caches (guestfs_h *g,\n"
8955 "                      int whattodrop);\n"
8956 "\n"
8957 msgstr ""
8958
8959 # type: textblock
8960 #. type: textblock
8961 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
8962 msgid ""
8963 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8964 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8965 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8966 msgstr ""
8967
8968 # type: textblock
8969 #. type: textblock
8970 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
8971 msgid "Setting C<whattodrop> to 3 should drop everything."
8972 msgstr ""
8973
8974 # type: textblock
8975 #. type: textblock
8976 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
8977 msgid ""
8978 "This automatically calls L<sync(2)> before the operation, so that the "
8979 "maximum guest memory is freed."
8980 msgstr ""
8981
8982 # type: =head2
8983 #. type: =head2
8984 #: ../src/guestfs-actions.pod:1299
8985 msgid "guestfs_du"
8986 msgstr ""
8987
8988 # type: verbatim
8989 #. type: verbatim
8990 #: ../src/guestfs-actions.pod:1301
8991 #, no-wrap
8992 msgid ""
8993 " int64_t\n"
8994 " guestfs_du (guestfs_h *g,\n"
8995 "             const char *path);\n"
8996 "\n"
8997 msgstr ""
8998
8999 # type: textblock
9000 #. type: textblock
9001 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
9002 msgid ""
9003 "This command runs the C<du -s> command to estimate file space usage for "
9004 "C<path>."
9005 msgstr ""
9006
9007 # type: textblock
9008 #. type: textblock
9009 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
9010 msgid ""
9011 "C<path> can be a file or a directory.  If C<path> is a directory then the "
9012 "estimate includes the contents of the directory and all subdirectories "
9013 "(recursively)."
9014 msgstr ""
9015
9016 # type: textblock
9017 #. type: textblock
9018 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
9019 msgid ""
9020 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
9021 msgstr ""
9022
9023 # type: =head2
9024 #. type: =head2
9025 #: ../src/guestfs-actions.pod:1324
9026 msgid "guestfs_e2fsck_f"
9027 msgstr ""
9028
9029 # type: verbatim
9030 #. type: verbatim
9031 #: ../src/guestfs-actions.pod:1326
9032 #, no-wrap
9033 msgid ""
9034 " int\n"
9035 " guestfs_e2fsck_f (guestfs_h *g,\n"
9036 "                   const char *device);\n"
9037 "\n"
9038 msgstr ""
9039
9040 # type: textblock
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
9043 msgid ""
9044 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
9045 "on C<device>, noninteractively (C<-p>), even if the filesystem appears to be "
9046 "clean (C<-f>)."
9047 msgstr ""
9048
9049 # type: textblock
9050 #. type: textblock
9051 #: ../src/guestfs-actions.pod:1334
9052 msgid ""
9053 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
9054 "Normally you should use C<guestfs_fsck>."
9055 msgstr ""
9056
9057 # type: textblock
9058 #. type: textblock
9059 #: ../src/guestfs-actions.pod:1339
9060 msgid "(Added in 1.0.29)"
9061 msgstr ""
9062
9063 # type: =head2
9064 #. type: =head2
9065 #: ../src/guestfs-actions.pod:1341
9066 msgid "guestfs_echo_daemon"
9067 msgstr ""
9068
9069 # type: verbatim
9070 #. type: verbatim
9071 #: ../src/guestfs-actions.pod:1343
9072 #, no-wrap
9073 msgid ""
9074 " char *\n"
9075 " guestfs_echo_daemon (guestfs_h *g,\n"
9076 "                      char *const *words);\n"
9077 "\n"
9078 msgstr ""
9079
9080 # type: textblock
9081 #. type: textblock
9082 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
9083 msgid ""
9084 "This command concatenates the list of C<words> passed with single spaces "
9085 "between them and returns the resulting string."
9086 msgstr ""
9087
9088 # type: textblock
9089 #. type: textblock
9090 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
9091 msgid "You can use this command to test the connection through to the daemon."
9092 msgstr ""
9093
9094 # type: textblock
9095 #. type: textblock
9096 #: ../src/guestfs-actions.pod:1352
9097 msgid "See also C<guestfs_ping_daemon>."
9098 msgstr ""
9099
9100 # type: textblock
9101 #. type: textblock
9102 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2094
9103 #: ../src/guestfs-actions.pod:6051
9104 msgid "(Added in 1.0.69)"
9105 msgstr ""
9106
9107 # type: =head2
9108 #. type: =head2
9109 #: ../src/guestfs-actions.pod:1359
9110 msgid "guestfs_egrep"
9111 msgstr ""
9112
9113 # type: verbatim
9114 #. type: verbatim
9115 #: ../src/guestfs-actions.pod:1361
9116 #, no-wrap
9117 msgid ""
9118 " char **\n"
9119 " guestfs_egrep (guestfs_h *g,\n"
9120 "                const char *regex,\n"
9121 "                const char *path);\n"
9122 "\n"
9123 msgstr ""
9124
9125 # type: textblock
9126 #. type: textblock
9127 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
9128 msgid ""
9129 "This calls the external C<egrep> program and returns the matching lines."
9130 msgstr ""
9131
9132 # type: textblock
9133 #. type: textblock
9134 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
9135 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
9136 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2224
9137 #: ../src/guestfs-actions.pod:2243 ../src/guestfs-actions.pod:2399
9138 #: ../src/guestfs-actions.pod:2412 ../src/guestfs-actions.pod:2427
9139 #: ../src/guestfs-actions.pod:2473 ../src/guestfs-actions.pod:2495
9140 #: ../src/guestfs-actions.pod:2508 ../src/guestfs-actions.pod:3648
9141 #: ../src/guestfs-actions.pod:3662 ../src/guestfs-actions.pod:3675
9142 #: ../src/guestfs-actions.pod:3689 ../src/guestfs-actions.pod:4675
9143 #: ../src/guestfs-actions.pod:5551 ../src/guestfs-actions.pod:5600
9144 #: ../src/guestfs-actions.pod:6419 ../src/guestfs-actions.pod:6431
9145 #: ../src/guestfs-actions.pod:6444 ../src/guestfs-actions.pod:6457
9146 #: ../src/guestfs-actions.pod:6479 ../src/guestfs-actions.pod:6492
9147 #: ../src/guestfs-actions.pod:6505 ../src/guestfs-actions.pod:6518
9148 #: ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7308
9149 #: ../src/guestfs-actions.pod:7393 ../src/guestfs-actions.pod:7412
9150 #: ../src/guestfs-actions.pod:7458 ../src/guestfs-actions.pod:7477
9151 msgid "(Added in 1.0.66)"
9152 msgstr ""
9153
9154 # type: =head2
9155 #. type: =head2
9156 #: ../src/guestfs-actions.pod:1378
9157 msgid "guestfs_egrepi"
9158 msgstr ""
9159
9160 # type: verbatim
9161 #. type: verbatim
9162 #: ../src/guestfs-actions.pod:1380
9163 #, no-wrap
9164 msgid ""
9165 " char **\n"
9166 " guestfs_egrepi (guestfs_h *g,\n"
9167 "                 const char *regex,\n"
9168 "                 const char *path);\n"
9169 "\n"
9170 msgstr ""
9171
9172 # type: textblock
9173 #. type: textblock
9174 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
9175 msgid ""
9176 "This calls the external C<egrep -i> program and returns the matching lines."
9177 msgstr ""
9178
9179 # type: =head2
9180 #. type: =head2
9181 #: ../src/guestfs-actions.pod:1397
9182 msgid "guestfs_equal"
9183 msgstr ""
9184
9185 # type: verbatim
9186 #. type: verbatim
9187 #: ../src/guestfs-actions.pod:1399
9188 #, no-wrap
9189 msgid ""
9190 " int\n"
9191 " guestfs_equal (guestfs_h *g,\n"
9192 "                const char *file1,\n"
9193 "                const char *file2);\n"
9194 "\n"
9195 msgstr ""
9196
9197 # type: textblock
9198 #. type: textblock
9199 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
9200 msgid ""
9201 "This compares the two files C<file1> and C<file2> and returns true if their "
9202 "content is exactly equal, or false otherwise."
9203 msgstr ""
9204
9205 # type: textblock
9206 #. type: textblock
9207 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
9208 msgid "The external L<cmp(1)> program is used for the comparison."
9209 msgstr ""
9210
9211 # type: =head2
9212 #. type: =head2
9213 #: ../src/guestfs-actions.pod:1413
9214 msgid "guestfs_exists"
9215 msgstr ""
9216
9217 # type: verbatim
9218 #. type: verbatim
9219 #: ../src/guestfs-actions.pod:1415
9220 #, no-wrap
9221 msgid ""
9222 " int\n"
9223 " guestfs_exists (guestfs_h *g,\n"
9224 "                 const char *path);\n"
9225 "\n"
9226 msgstr ""
9227
9228 # type: textblock
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
9231 msgid ""
9232 "This returns C<true> if and only if there is a file, directory (or anything) "
9233 "with the given C<path> name."
9234 msgstr ""
9235
9236 # type: textblock
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1422
9239 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
9240 msgstr ""
9241
9242 # type: =head2
9243 #. type: =head2
9244 #: ../src/guestfs-actions.pod:1428
9245 msgid "guestfs_fallocate"
9246 msgstr ""
9247
9248 # type: verbatim
9249 #. type: verbatim
9250 #: ../src/guestfs-actions.pod:1430
9251 #, no-wrap
9252 msgid ""
9253 " int\n"
9254 " guestfs_fallocate (guestfs_h *g,\n"
9255 "                    const char *path,\n"
9256 "                    int len);\n"
9257 "\n"
9258 msgstr ""
9259
9260 # type: textblock
9261 #. type: textblock
9262 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
9263 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
9264 msgid ""
9265 "This command preallocates a file (containing zero bytes) named C<path> of "
9266 "size C<len> bytes.  If the file exists already, it is overwritten."
9267 msgstr ""
9268
9269 # type: textblock
9270 #. type: textblock
9271 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
9272 msgid ""
9273 "Do not confuse this with the guestfish-specific C<alloc> command which "
9274 "allocates a file in the host and attaches it as a device."
9275 msgstr ""
9276
9277 # type: textblock
9278 #. type: textblock
9279 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
9280 msgid ""
9281 "This function is deprecated.  In new code, use the C<fallocate64> call "
9282 "instead."
9283 msgstr ""
9284
9285 # type: =head2
9286 #. type: =head2
9287 #: ../src/guestfs-actions.pod:1454
9288 msgid "guestfs_fallocate64"
9289 msgstr ""
9290
9291 # type: verbatim
9292 #. type: verbatim
9293 #: ../src/guestfs-actions.pod:1456
9294 #, no-wrap
9295 msgid ""
9296 " int\n"
9297 " guestfs_fallocate64 (guestfs_h *g,\n"
9298 "                      const char *path,\n"
9299 "                      int64_t len);\n"
9300 "\n"
9301 msgstr ""
9302
9303 # type: textblock
9304 #. type: textblock
9305 #: ../src/guestfs-actions.pod:1465
9306 msgid ""
9307 "Note that this call allocates disk blocks for the file.  To create a sparse "
9308 "file use C<guestfs_truncate_size> instead."
9309 msgstr ""
9310
9311 # type: textblock
9312 #. type: textblock
9313 #: ../src/guestfs-actions.pod:1468
9314 msgid ""
9315 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
9316 "oversight it only allowed 30 bit lengths to be specified, effectively "
9317 "limiting the maximum size of files created through that call to 1GB."
9318 msgstr ""
9319
9320 # type: textblock
9321 #. type: textblock
9322 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
9323 msgid ""
9324 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
9325 "commands which create a file in the host and attach it as a device."
9326 msgstr ""
9327
9328 # type: textblock
9329 #. type: textblock
9330 #: ../src/guestfs-actions.pod:1479
9331 msgid "(Added in 1.3.17)"
9332 msgstr ""
9333
9334 # type: =head2
9335 #. type: =head2
9336 #: ../src/guestfs-actions.pod:1481
9337 msgid "guestfs_fgrep"
9338 msgstr ""
9339
9340 # type: verbatim
9341 #. type: verbatim
9342 #: ../src/guestfs-actions.pod:1483
9343 #, no-wrap
9344 msgid ""
9345 " char **\n"
9346 " guestfs_fgrep (guestfs_h *g,\n"
9347 "                const char *pattern,\n"
9348 "                const char *path);\n"
9349 "\n"
9350 msgstr ""
9351
9352 # type: textblock
9353 #. type: textblock
9354 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
9355 msgid ""
9356 "This calls the external C<fgrep> program and returns the matching lines."
9357 msgstr ""
9358
9359 # type: =head2
9360 #. type: =head2
9361 #: ../src/guestfs-actions.pod:1500
9362 msgid "guestfs_fgrepi"
9363 msgstr ""
9364
9365 # type: verbatim
9366 #. type: verbatim
9367 #: ../src/guestfs-actions.pod:1502
9368 #, no-wrap
9369 msgid ""
9370 " char **\n"
9371 " guestfs_fgrepi (guestfs_h *g,\n"
9372 "                 const char *pattern,\n"
9373 "                 const char *path);\n"
9374 "\n"
9375 msgstr ""
9376
9377 # type: textblock
9378 #. type: textblock
9379 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
9380 msgid ""
9381 "This calls the external C<fgrep -i> program and returns the matching lines."
9382 msgstr ""
9383
9384 # type: =head2
9385 #. type: =head2
9386 #: ../src/guestfs-actions.pod:1519
9387 msgid "guestfs_file"
9388 msgstr ""
9389
9390 # type: verbatim
9391 #. type: verbatim
9392 #: ../src/guestfs-actions.pod:1521
9393 #, no-wrap
9394 msgid ""
9395 " char *\n"
9396 " guestfs_file (guestfs_h *g,\n"
9397 "               const char *path);\n"
9398 "\n"
9399 msgstr ""
9400
9401 # type: textblock
9402 #. type: textblock
9403 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
9404 msgid ""
9405 "This call uses the standard L<file(1)> command to determine the type or "
9406 "contents of the file."
9407 msgstr ""
9408
9409 # type: textblock
9410 #. type: textblock
9411 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
9412 msgid ""
9413 "This call will also transparently look inside various types of compressed "
9414 "file."
9415 msgstr ""
9416
9417 # type: textblock
9418 #. type: textblock
9419 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
9420 msgid ""
9421 "The exact command which runs is C<file -zb path>.  Note in particular that "
9422 "the filename is not prepended to the output (the C<-b> option)."
9423 msgstr ""
9424
9425 # type: textblock
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:1535
9428 msgid ""
9429 "This command can also be used on C</dev/> devices (and partitions, LV "
9430 "names).  You can for example use this to determine if a device contains a "
9431 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
9432 msgstr ""
9433
9434 # type: textblock
9435 #. type: textblock
9436 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1019
9437 msgid ""
9438 "If the C<path> does not begin with C</dev/> then this command only works for "
9439 "the content of regular files.  For other file types (directory, symbolic "
9440 "link etc) it will just return the string C<directory> etc."
9441 msgstr ""
9442
9443 # type: =head2
9444 #. type: =head2
9445 #: ../src/guestfs-actions.pod:1550
9446 msgid "guestfs_file_architecture"
9447 msgstr ""
9448
9449 # type: verbatim
9450 #. type: verbatim
9451 #: ../src/guestfs-actions.pod:1552
9452 #, no-wrap
9453 msgid ""
9454 " char *\n"
9455 " guestfs_file_architecture (guestfs_h *g,\n"
9456 "                            const char *filename);\n"
9457 "\n"
9458 msgstr ""
9459
9460 # type: textblock
9461 #. type: textblock
9462 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
9463 msgid ""
9464 "This detects the architecture of the binary C<filename>, and returns it if "
9465 "known."
9466 msgstr ""
9467
9468 # type: textblock
9469 #. type: textblock
9470 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1031
9471 msgid "Currently defined architectures are:"
9472 msgstr ""
9473
9474 # type: =item
9475 #. type: =item
9476 #: ../src/guestfs-actions.pod:1563 ../fish/guestfish-actions.pod:1035
9477 msgid "\"i386\""
9478 msgstr ""
9479
9480 # type: textblock
9481 #. type: textblock
9482 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
9483 msgid ""
9484 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9485 "irrespective of the precise processor requirements of the binary."
9486 msgstr ""
9487
9488 # type: =item
9489 #. type: =item
9490 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1040
9491 msgid "\"x86_64\""
9492 msgstr ""
9493
9494 # type: textblock
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1042
9497 msgid "64 bit x86-64."
9498 msgstr ""
9499
9500 # type: =item
9501 #. type: =item
9502 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1044
9503 msgid "\"sparc\""
9504 msgstr ""
9505
9506 # type: textblock
9507 #. type: textblock
9508 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1046
9509 msgid "32 bit SPARC."
9510 msgstr ""
9511
9512 # type: =item
9513 #. type: =item
9514 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1048
9515 msgid "\"sparc64\""
9516 msgstr ""
9517
9518 # type: textblock
9519 #. type: textblock
9520 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1050
9521 msgid "64 bit SPARC V9 and above."
9522 msgstr ""
9523
9524 # type: =item
9525 #. type: =item
9526 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1052
9527 msgid "\"ia64\""
9528 msgstr ""
9529
9530 # type: textblock
9531 #. type: textblock
9532 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1054
9533 msgid "Intel Itanium."
9534 msgstr ""
9535
9536 # type: =item
9537 #. type: =item
9538 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1056
9539 msgid "\"ppc\""
9540 msgstr ""
9541
9542 # type: textblock
9543 #. type: textblock
9544 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1058
9545 msgid "32 bit Power PC."
9546 msgstr ""
9547
9548 # type: =item
9549 #. type: =item
9550 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1060
9551 msgid "\"ppc64\""
9552 msgstr ""
9553
9554 # type: textblock
9555 #. type: textblock
9556 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1062
9557 msgid "64 bit Power PC."
9558 msgstr ""
9559
9560 # type: textblock
9561 #. type: textblock
9562 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1066
9563 msgid "Libguestfs may return other architecture strings in future."
9564 msgstr ""
9565
9566 # type: textblock
9567 #. type: textblock
9568 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1068
9569 msgid "The function works on at least the following types of files:"
9570 msgstr ""
9571
9572 # type: textblock
9573 #. type: textblock
9574 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1074
9575 msgid "many types of Un*x and Linux binary"
9576 msgstr ""
9577
9578 # type: textblock
9579 #. type: textblock
9580 #: ../src/guestfs-actions.pod:1606 ../fish/guestfish-actions.pod:1078
9581 msgid "many types of Un*x and Linux shared library"
9582 msgstr ""
9583
9584 # type: textblock
9585 #. type: textblock
9586 #: ../src/guestfs-actions.pod:1610 ../fish/guestfish-actions.pod:1082
9587 msgid "Windows Win32 and Win64 binaries"
9588 msgstr ""
9589
9590 # type: textblock
9591 #. type: textblock
9592 #: ../src/guestfs-actions.pod:1614 ../fish/guestfish-actions.pod:1086
9593 msgid "Windows Win32 and Win64 DLLs"
9594 msgstr ""
9595
9596 # type: textblock
9597 #. type: textblock
9598 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1088
9599 msgid "Win32 binaries and DLLs return C<i386>."
9600 msgstr ""
9601
9602 # type: textblock
9603 #. type: textblock
9604 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1090
9605 msgid "Win64 binaries and DLLs return C<x86_64>."
9606 msgstr ""
9607
9608 # type: textblock
9609 #. type: textblock
9610 #: ../src/guestfs-actions.pod:1622 ../fish/guestfish-actions.pod:1094
9611 msgid "Linux kernel modules"
9612 msgstr ""
9613
9614 # type: textblock
9615 #. type: textblock
9616 #: ../src/guestfs-actions.pod:1626 ../fish/guestfish-actions.pod:1098
9617 msgid "Linux new-style initrd images"
9618 msgstr ""
9619
9620 # type: textblock
9621 #. type: textblock
9622 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1102
9623 msgid "some non-x86 Linux vmlinuz kernels"
9624 msgstr ""
9625
9626 # type: textblock
9627 #. type: textblock
9628 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1106
9629 msgid "What it can't do currently:"
9630 msgstr ""
9631
9632 # type: textblock
9633 #. type: textblock
9634 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1112
9635 msgid "static libraries (libfoo.a)"
9636 msgstr ""
9637
9638 # type: textblock
9639 #. type: textblock
9640 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1116
9641 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9642 msgstr ""
9643
9644 # type: textblock
9645 #. type: textblock
9646 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1120
9647 msgid "x86 Linux vmlinuz kernels"
9648 msgstr ""
9649
9650 # type: textblock
9651 #. type: textblock
9652 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1122
9653 msgid ""
9654 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9655 "compressed code, and are horribly hard to unpack.  If you want to find the "
9656 "architecture of a kernel, use the architecture of the associated initrd or "
9657 "kernel module(s) instead."
9658 msgstr ""
9659
9660 # type: textblock
9661 #. type: textblock
9662 #: ../src/guestfs-actions.pod:1660 ../src/guestfs-actions.pod:1823
9663 #: ../src/guestfs-actions.pod:1840 ../src/guestfs-actions.pod:2531
9664 #: ../src/guestfs-actions.pod:2616 ../src/guestfs-actions.pod:2686
9665 #: ../src/guestfs-actions.pod:2774 ../src/guestfs-actions.pod:2795
9666 #: ../src/guestfs-actions.pod:2838 ../src/guestfs-actions.pod:2922
9667 #: ../src/guestfs-actions.pod:3019 ../src/guestfs-actions.pod:3266
9668 #: ../src/guestfs-actions.pod:3398
9669 msgid "(Added in 1.5.3)"
9670 msgstr ""
9671
9672 # type: =head2
9673 #. type: =head2
9674 #: ../src/guestfs-actions.pod:1662
9675 msgid "guestfs_filesize"
9676 msgstr ""
9677
9678 # type: verbatim
9679 #. type: verbatim
9680 #: ../src/guestfs-actions.pod:1664
9681 #, no-wrap
9682 msgid ""
9683 " int64_t\n"
9684 " guestfs_filesize (guestfs_h *g,\n"
9685 "                   const char *file);\n"
9686 "\n"
9687 msgstr ""
9688
9689 # type: textblock
9690 #. type: textblock
9691 #: ../src/guestfs-actions.pod:1668 ../fish/guestfish-actions.pod:1133
9692 msgid "This command returns the size of C<file> in bytes."
9693 msgstr ""
9694
9695 # type: textblock
9696 #. type: textblock
9697 #: ../src/guestfs-actions.pod:1670
9698 msgid ""
9699 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9700 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9701 "devices, use C<guestfs_blockdev_getsize64>."
9702 msgstr ""
9703
9704 # type: textblock
9705 #. type: textblock
9706 #: ../src/guestfs-actions.pod:1676
9707 msgid "(Added in 1.0.82)"
9708 msgstr ""
9709
9710 # type: =head2
9711 #. type: =head2
9712 #: ../src/guestfs-actions.pod:1678
9713 msgid "guestfs_fill"
9714 msgstr ""
9715
9716 # type: verbatim
9717 #. type: verbatim
9718 #: ../src/guestfs-actions.pod:1680
9719 #, no-wrap
9720 msgid ""
9721 " int\n"
9722 " guestfs_fill (guestfs_h *g,\n"
9723 "               int c,\n"
9724 "               int len,\n"
9725 "               const char *path);\n"
9726 "\n"
9727 msgstr ""
9728
9729 # type: textblock
9730 #. type: textblock
9731 #: ../src/guestfs-actions.pod:1686 ../fish/guestfish-actions.pod:1143
9732 msgid ""
9733 "This command creates a new file called C<path>.  The initial content of the "
9734 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9735 "[0..255]>."
9736 msgstr ""
9737
9738 # type: textblock
9739 #. type: textblock
9740 #: ../src/guestfs-actions.pod:1690
9741 msgid ""
9742 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9743 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9744 "bytes use C<guestfs_fill_pattern>."
9745 msgstr ""
9746
9747 # type: textblock
9748 #. type: textblock
9749 #: ../src/guestfs-actions.pod:1702
9750 msgid "(Added in 1.0.79)"
9751 msgstr ""
9752
9753 # type: =head2
9754 #. type: =head2
9755 #: ../src/guestfs-actions.pod:1704
9756 msgid "guestfs_fill_pattern"
9757 msgstr ""
9758
9759 # type: verbatim
9760 #. type: verbatim
9761 #: ../src/guestfs-actions.pod:1706
9762 #, no-wrap
9763 msgid ""
9764 " int\n"
9765 " guestfs_fill_pattern (guestfs_h *g,\n"
9766 "                       const char *pattern,\n"
9767 "                       int len,\n"
9768 "                       const char *path);\n"
9769 "\n"
9770 msgstr ""
9771
9772 # type: textblock
9773 #. type: textblock
9774 #: ../src/guestfs-actions.pod:1712
9775 msgid ""
9776 "This function is like C<guestfs_fill> except that it creates a new file of "
9777 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9778 "pattern is truncated if necessary to ensure the length of the file is "
9779 "exactly C<len> bytes."
9780 msgstr ""
9781
9782 # type: textblock
9783 #. type: textblock
9784 #: ../src/guestfs-actions.pod:1724
9785 msgid "(Added in 1.3.12)"
9786 msgstr ""
9787
9788 # type: =head2
9789 #. type: =head2
9790 #: ../src/guestfs-actions.pod:1726
9791 msgid "guestfs_find"
9792 msgstr ""
9793
9794 # type: verbatim
9795 #. type: verbatim
9796 #: ../src/guestfs-actions.pod:1728
9797 #, no-wrap
9798 msgid ""
9799 " char **\n"
9800 " guestfs_find (guestfs_h *g,\n"
9801 "               const char *directory);\n"
9802 "\n"
9803 msgstr ""
9804
9805 # type: textblock
9806 #. type: textblock
9807 #: ../src/guestfs-actions.pod:1732 ../fish/guestfish-actions.pod:1165
9808 msgid ""
9809 "This command lists out all files and directories, recursively, starting at "
9810 "C<directory>.  It is essentially equivalent to running the shell command "
9811 "C<find directory -print> but some post-processing happens on the output, "
9812 "described below."
9813 msgstr ""
9814
9815 # type: textblock
9816 #. type: textblock
9817 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
9818 msgid ""
9819 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9820 "structure was:"
9821 msgstr ""
9822
9823 # type: verbatim
9824 #. type: verbatim
9825 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1173
9826 #, no-wrap
9827 msgid ""
9828 " /tmp/a\n"
9829 " /tmp/b\n"
9830 " /tmp/c/d\n"
9831 "\n"
9832 msgstr ""
9833
9834 # type: textblock
9835 #. type: textblock
9836 #: ../src/guestfs-actions.pod:1744
9837 msgid ""
9838 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9839 msgstr ""
9840
9841 # type: verbatim
9842 #. type: verbatim
9843 #: ../src/guestfs-actions.pod:1747 ../fish/guestfish-actions.pod:1180
9844 #, no-wrap
9845 msgid ""
9846 " a\n"
9847 " b\n"
9848 " c\n"
9849 " c/d\n"
9850 "\n"
9851 msgstr ""
9852
9853 # type: textblock
9854 #. type: textblock
9855 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
9856 msgid "If C<directory> is not a directory, then this command returns an error."
9857 msgstr ""
9858
9859 # type: textblock
9860 #. type: textblock
9861 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1188
9862 msgid "The returned list is sorted."
9863 msgstr ""
9864
9865 # type: textblock
9866 #. type: textblock
9867 #: ../src/guestfs-actions.pod:1757
9868 msgid "See also C<guestfs_find0>."
9869 msgstr ""
9870
9871 # type: textblock
9872 #. type: textblock
9873 #: ../src/guestfs-actions.pod:1766 ../src/guestfs-actions.pod:4092
9874 #: ../src/guestfs-actions.pod:5635
9875 msgid "(Added in 1.0.27)"
9876 msgstr ""
9877
9878 # type: =head2
9879 #. type: =head2
9880 #: ../src/guestfs-actions.pod:1768
9881 msgid "guestfs_find0"
9882 msgstr ""
9883
9884 # type: verbatim
9885 #. type: verbatim
9886 #: ../src/guestfs-actions.pod:1770
9887 #, no-wrap
9888 msgid ""
9889 " int\n"
9890 " guestfs_find0 (guestfs_h *g,\n"
9891 "                const char *directory,\n"
9892 "                const char *files);\n"
9893 "\n"
9894 msgstr ""
9895
9896 # type: textblock
9897 #. type: textblock
9898 #: ../src/guestfs-actions.pod:1775 ../fish/guestfish-actions.pod:1199
9899 msgid ""
9900 "This command lists out all files and directories, recursively, starting at "
9901 "C<directory>, placing the resulting list in the external file called "
9902 "C<files>."
9903 msgstr ""
9904
9905 # type: textblock
9906 #. type: textblock
9907 #: ../src/guestfs-actions.pod:1779
9908 msgid ""
9909 "This command works the same way as C<guestfs_find> with the following "
9910 "exceptions:"
9911 msgstr ""
9912
9913 # type: textblock
9914 #. type: textblock
9915 #: ../src/guestfs-actions.pod:1786 ../fish/guestfish-actions.pod:1210
9916 msgid "The resulting list is written to an external file."
9917 msgstr ""
9918
9919 # type: textblock
9920 #. type: textblock
9921 #: ../src/guestfs-actions.pod:1790 ../fish/guestfish-actions.pod:1214
9922 msgid ""
9923 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9924 "L<find(1)> option I<-print0>."
9925 msgstr ""
9926
9927 # type: textblock
9928 #. type: textblock
9929 #: ../src/guestfs-actions.pod:1795 ../fish/guestfish-actions.pod:1219
9930 msgid "This command is not limited in the number of names that it can return."
9931 msgstr ""
9932
9933 # type: textblock
9934 #. type: textblock
9935 #: ../src/guestfs-actions.pod:1800 ../fish/guestfish-actions.pod:1224
9936 msgid "The result list is not sorted."
9937 msgstr ""
9938
9939 # type: textblock
9940 #. type: textblock
9941 #: ../src/guestfs-actions.pod:1806
9942 msgid "(Added in 1.0.74)"
9943 msgstr ""
9944
9945 # type: =head2
9946 #. type: =head2
9947 #: ../src/guestfs-actions.pod:1808
9948 msgid "guestfs_findfs_label"
9949 msgstr ""
9950
9951 # type: verbatim
9952 #. type: verbatim
9953 #: ../src/guestfs-actions.pod:1810
9954 #, no-wrap
9955 msgid ""
9956 " char *\n"
9957 " guestfs_findfs_label (guestfs_h *g,\n"
9958 "                       const char *label);\n"
9959 "\n"
9960 msgstr ""
9961
9962 # type: textblock
9963 #. type: textblock
9964 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1234
9965 msgid ""
9966 "This command searches the filesystems and returns the one which has the "
9967 "given label.  An error is returned if no such filesystem can be found."
9968 msgstr ""
9969
9970 # type: textblock
9971 #. type: textblock
9972 #: ../src/guestfs-actions.pod:1818
9973 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9974 msgstr ""
9975
9976 # type: =head2
9977 #. type: =head2
9978 #: ../src/guestfs-actions.pod:1825
9979 msgid "guestfs_findfs_uuid"
9980 msgstr ""
9981
9982 # type: verbatim
9983 #. type: verbatim
9984 #: ../src/guestfs-actions.pod:1827
9985 #, no-wrap
9986 msgid ""
9987 " char *\n"
9988 " guestfs_findfs_uuid (guestfs_h *g,\n"
9989 "                      const char *uuid);\n"
9990 "\n"
9991 msgstr ""
9992
9993 # type: textblock
9994 #. type: textblock
9995 #: ../src/guestfs-actions.pod:1831 ../fish/guestfish-actions.pod:1244
9996 msgid ""
9997 "This command searches the filesystems and returns the one which has the "
9998 "given UUID.  An error is returned if no such filesystem can be found."
9999 msgstr ""
10000
10001 # type: textblock
10002 #. type: textblock
10003 #: ../src/guestfs-actions.pod:1835
10004 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
10005 msgstr ""
10006
10007 # type: =head2
10008 #. type: =head2
10009 #: ../src/guestfs-actions.pod:1842
10010 msgid "guestfs_fsck"
10011 msgstr ""
10012
10013 # type: verbatim
10014 #. type: verbatim
10015 #: ../src/guestfs-actions.pod:1844
10016 #, no-wrap
10017 msgid ""
10018 " int\n"
10019 " guestfs_fsck (guestfs_h *g,\n"
10020 "               const char *fstype,\n"
10021 "               const char *device);\n"
10022 "\n"
10023 msgstr ""
10024
10025 # type: textblock
10026 #. type: textblock
10027 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
10028 msgid ""
10029 "This runs the filesystem checker (fsck) on C<device> which should have "
10030 "filesystem type C<fstype>."
10031 msgstr ""
10032
10033 # type: textblock
10034 #. type: textblock
10035 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1257
10036 msgid ""
10037 "The returned integer is the status.  See L<fsck(8)> for the list of status "
10038 "codes from C<fsck>."
10039 msgstr ""
10040
10041 # type: textblock
10042 #. type: textblock
10043 #: ../src/guestfs-actions.pod:1861 ../fish/guestfish-actions.pod:1266
10044 msgid "Multiple status codes can be summed together."
10045 msgstr ""
10046
10047 # type: textblock
10048 #. type: textblock
10049 #: ../src/guestfs-actions.pod:1865 ../fish/guestfish-actions.pod:1270
10050 msgid ""
10051 "A non-zero return code can mean \"success\", for example if errors have been "
10052 "corrected on the filesystem."
10053 msgstr ""
10054
10055 # type: textblock
10056 #. type: textblock
10057 #: ../src/guestfs-actions.pod:1870 ../fish/guestfish-actions.pod:1275
10058 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
10059 msgstr ""
10060
10061 # type: textblock
10062 #. type: textblock
10063 #: ../src/guestfs-actions.pod:1875 ../fish/guestfish-actions.pod:1280
10064 msgid ""
10065 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
10066 msgstr ""
10067
10068 # type: textblock
10069 #. type: textblock
10070 #: ../src/guestfs-actions.pod:1879 ../src/guestfs-actions.pod:7331
10071 msgid "(Added in 1.0.16)"
10072 msgstr ""
10073
10074 # type: =head2
10075 #. type: =head2
10076 #: ../src/guestfs-actions.pod:1881
10077 msgid "guestfs_get_append"
10078 msgstr ""
10079
10080 # type: verbatim
10081 #. type: verbatim
10082 #: ../src/guestfs-actions.pod:1883
10083 #, no-wrap
10084 msgid ""
10085 " const char *\n"
10086 " guestfs_get_append (guestfs_h *g);\n"
10087 "\n"
10088 msgstr ""
10089
10090 # type: textblock
10091 #. type: textblock
10092 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
10093 msgid ""
10094 "Return the additional kernel options which are added to the guest kernel "
10095 "command line."
10096 msgstr ""
10097
10098 # type: textblock
10099 #. type: textblock
10100 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1289
10101 msgid "If C<NULL> then no options are added."
10102 msgstr ""
10103
10104 # type: textblock
10105 #. type: textblock
10106 #: ../src/guestfs-actions.pod:1891
10107 msgid ""
10108 "This function returns a string which may be NULL.  There is no way to return "
10109 "an error from this function.  The string is owned by the guest handle and "
10110 "must I<not> be freed."
10111 msgstr ""
10112
10113 # type: textblock
10114 #. type: textblock
10115 #: ../src/guestfs-actions.pod:1895 ../src/guestfs-actions.pod:5313
10116 #: ../src/guestfs-actions.pod:5793 ../src/guestfs-actions.pod:6193
10117 #: ../src/guestfs-actions.pod:6212 ../src/guestfs-actions.pod:6228
10118 #: ../src/guestfs-actions.pod:6245 ../src/guestfs-actions.pod:7002
10119 #: ../src/guestfs-actions.pod:7020 ../src/guestfs-actions.pod:7374
10120 msgid "(Added in 1.0.26)"
10121 msgstr ""
10122
10123 #. type: =head2
10124 #: ../src/guestfs-actions.pod:1897
10125 msgid "guestfs_get_attach_method"
10126 msgstr ""
10127
10128 #. type: verbatim
10129 #: ../src/guestfs-actions.pod:1899
10130 #, no-wrap
10131 msgid ""
10132 " char *\n"
10133 " guestfs_get_attach_method (guestfs_h *g);\n"
10134 "\n"
10135 msgstr ""
10136
10137 #. type: textblock
10138 #: ../src/guestfs-actions.pod:1902
10139 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
10140 msgstr ""
10141
10142 # type: =head2
10143 #. type: =head2
10144 #: ../src/guestfs-actions.pod:1907
10145 msgid "guestfs_get_autosync"
10146 msgstr ""
10147
10148 # type: verbatim
10149 #. type: verbatim
10150 #: ../src/guestfs-actions.pod:1909
10151 #, no-wrap
10152 msgid ""
10153 " int\n"
10154 " guestfs_get_autosync (guestfs_h *g);\n"
10155 "\n"
10156 msgstr ""
10157
10158 # type: textblock
10159 #. type: textblock
10160 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1301
10161 msgid "Get the autosync flag."
10162 msgstr ""
10163
10164 # type: =head2
10165 #. type: =head2
10166 #: ../src/guestfs-actions.pod:1918
10167 msgid "guestfs_get_direct"
10168 msgstr ""
10169
10170 # type: verbatim
10171 #. type: verbatim
10172 #: ../src/guestfs-actions.pod:1920
10173 #, no-wrap
10174 msgid ""
10175 " int\n"
10176 " guestfs_get_direct (guestfs_h *g);\n"
10177 "\n"
10178 msgstr ""
10179
10180 # type: textblock
10181 #. type: textblock
10182 #: ../src/guestfs-actions.pod:1923 ../fish/guestfish-actions.pod:1307
10183 msgid "Return the direct appliance mode flag."
10184 msgstr ""
10185
10186 # type: textblock
10187 #. type: textblock
10188 #: ../src/guestfs-actions.pod:1927 ../src/guestfs-actions.pod:5862
10189 msgid "(Added in 1.0.72)"
10190 msgstr ""
10191
10192 # type: =head2
10193 #. type: =head2
10194 #: ../src/guestfs-actions.pod:1929
10195 msgid "guestfs_get_e2label"
10196 msgstr ""
10197
10198 # type: verbatim
10199 #. type: verbatim
10200 #: ../src/guestfs-actions.pod:1931
10201 #, no-wrap
10202 msgid ""
10203 " char *\n"
10204 " guestfs_get_e2label (guestfs_h *g,\n"
10205 "                      const char *device);\n"
10206 "\n"
10207 msgstr ""
10208
10209 # type: textblock
10210 #. type: textblock
10211 #: ../src/guestfs-actions.pod:1935 ../fish/guestfish-actions.pod:1313
10212 msgid ""
10213 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
10214 msgstr ""
10215
10216 # type: textblock
10217 #. type: textblock
10218 #: ../src/guestfs-actions.pod:1941 ../fish/guestfish-actions.pod:1316
10219 msgid ""
10220 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
10221 msgstr ""
10222
10223 # type: textblock
10224 #. type: textblock
10225 #: ../src/guestfs-actions.pod:1948 ../src/guestfs-actions.pod:1969
10226 #: ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:5899
10227 msgid "(Added in 1.0.15)"
10228 msgstr ""
10229
10230 # type: =head2
10231 #. type: =head2
10232 #: ../src/guestfs-actions.pod:1950
10233 msgid "guestfs_get_e2uuid"
10234 msgstr ""
10235
10236 # type: verbatim
10237 #. type: verbatim
10238 #: ../src/guestfs-actions.pod:1952
10239 #, no-wrap
10240 msgid ""
10241 " char *\n"
10242 " guestfs_get_e2uuid (guestfs_h *g,\n"
10243 "                     const char *device);\n"
10244 "\n"
10245 msgstr ""
10246
10247 # type: textblock
10248 #. type: textblock
10249 #: ../src/guestfs-actions.pod:1956 ../fish/guestfish-actions.pod:1327
10250 msgid ""
10251 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
10252 msgstr ""
10253
10254 # type: textblock
10255 #. type: textblock
10256 #: ../src/guestfs-actions.pod:1962 ../fish/guestfish-actions.pod:1330
10257 msgid ""
10258 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
10259 msgstr ""
10260
10261 # type: =head2
10262 #. type: =head2
10263 #: ../src/guestfs-actions.pod:1971
10264 msgid "guestfs_get_memsize"
10265 msgstr ""
10266
10267 # type: verbatim
10268 #. type: verbatim
10269 #: ../src/guestfs-actions.pod:1973
10270 #, no-wrap
10271 msgid ""
10272 " int\n"
10273 " guestfs_get_memsize (guestfs_h *g);\n"
10274 "\n"
10275 msgstr ""
10276
10277 # type: textblock
10278 #. type: textblock
10279 #: ../src/guestfs-actions.pod:1976 ../fish/guestfish-actions.pod:1341
10280 msgid ""
10281 "This gets the memory size in megabytes allocated to the qemu subprocess."
10282 msgstr ""
10283
10284 # type: textblock
10285 #. type: textblock
10286 #: ../src/guestfs-actions.pod:1979
10287 msgid ""
10288 "If C<guestfs_set_memsize> was not called on this handle, and if "
10289 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
10290 "value for memsize."
10291 msgstr ""
10292
10293 # type: textblock
10294 #. type: textblock
10295 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2064
10296 #: ../src/guestfs-actions.pod:5915 ../src/guestfs-actions.pod:6022
10297 #: ../fish/guestfish-actions.pod:1348 ../fish/guestfish-actions.pod:1399
10298 #: ../fish/guestfish-actions.pod:3985 ../fish/guestfish-actions.pod:4072
10299 msgid ""
10300 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
10301 msgstr ""
10302
10303 # type: textblock
10304 #. type: textblock
10305 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:4383
10306 #: ../src/guestfs-actions.pod:4580 ../src/guestfs-actions.pod:4599
10307 #: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4630
10308 #: ../src/guestfs-actions.pod:4647 ../src/guestfs-actions.pod:4660
10309 #: ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5920
10310 #: ../src/guestfs-actions.pod:6167 ../src/guestfs-actions.pod:6768
10311 msgid "(Added in 1.0.55)"
10312 msgstr ""
10313
10314 # type: =head2
10315 #. type: =head2
10316 #: ../src/guestfs-actions.pod:1990
10317 msgid "guestfs_get_network"
10318 msgstr ""
10319
10320 # type: verbatim
10321 #. type: verbatim
10322 #: ../src/guestfs-actions.pod:1992
10323 #, no-wrap
10324 msgid ""
10325 " int\n"
10326 " guestfs_get_network (guestfs_h *g);\n"
10327 "\n"
10328 msgstr ""
10329
10330 # type: textblock
10331 #. type: textblock
10332 #: ../src/guestfs-actions.pod:1995 ../fish/guestfish-actions.pod:1355
10333 msgid "This returns the enable network flag."
10334 msgstr ""
10335
10336 # type: textblock
10337 #. type: textblock
10338 #: ../src/guestfs-actions.pod:1999 ../src/guestfs-actions.pod:5939
10339 msgid "(Added in 1.5.4)"
10340 msgstr ""
10341
10342 # type: =head2
10343 #. type: =head2
10344 #: ../src/guestfs-actions.pod:2001
10345 msgid "guestfs_get_path"
10346 msgstr ""
10347
10348 # type: verbatim
10349 #. type: verbatim
10350 #: ../src/guestfs-actions.pod:2003
10351 #, no-wrap
10352 msgid ""
10353 " const char *\n"
10354 " guestfs_get_path (guestfs_h *g);\n"
10355 "\n"
10356 msgstr ""
10357
10358 # type: textblock
10359 #. type: textblock
10360 #: ../src/guestfs-actions.pod:2006 ../fish/guestfish-actions.pod:1361
10361 msgid "Return the current search path."
10362 msgstr ""
10363
10364 # type: textblock
10365 #. type: textblock
10366 #: ../src/guestfs-actions.pod:2008 ../fish/guestfish-actions.pod:1363
10367 msgid ""
10368 "This is always non-NULL.  If it wasn't set already, then this will return "
10369 "the default path."
10370 msgstr ""
10371
10372 # type: textblock
10373 #. type: textblock
10374 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2040
10375 msgid ""
10376 "This function returns a string, or NULL on error.  The string is owned by "
10377 "the guest handle and must I<not> be freed."
10378 msgstr ""
10379
10380 # type: =head2
10381 #. type: =head2
10382 #: ../src/guestfs-actions.pod:2016
10383 msgid "guestfs_get_pid"
10384 msgstr ""
10385
10386 # type: verbatim
10387 #. type: verbatim
10388 #: ../src/guestfs-actions.pod:2018
10389 #, no-wrap
10390 msgid ""
10391 " int\n"
10392 " guestfs_get_pid (guestfs_h *g);\n"
10393 "\n"
10394 msgstr ""
10395
10396 # type: textblock
10397 #. type: textblock
10398 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
10399 msgid ""
10400 "Return the process ID of the qemu subprocess.  If there is no qemu "
10401 "subprocess, then this will return an error."
10402 msgstr ""
10403
10404 # type: textblock
10405 #. type: textblock
10406 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1375
10407 msgid "This is an internal call used for debugging and testing."
10408 msgstr ""
10409
10410 # type: textblock
10411 #. type: textblock
10412 #: ../src/guestfs-actions.pod:2028
10413 msgid "(Added in 1.0.56)"
10414 msgstr ""
10415
10416 # type: =head2
10417 #. type: =head2
10418 #: ../src/guestfs-actions.pod:2030
10419 msgid "guestfs_get_qemu"
10420 msgstr ""
10421
10422 # type: verbatim
10423 #. type: verbatim
10424 #: ../src/guestfs-actions.pod:2032
10425 #, no-wrap
10426 msgid ""
10427 " const char *\n"
10428 " guestfs_get_qemu (guestfs_h *g);\n"
10429 "\n"
10430 msgstr ""
10431
10432 # type: textblock
10433 #. type: textblock
10434 #: ../src/guestfs-actions.pod:2035 ../fish/guestfish-actions.pod:1381
10435 msgid "Return the current qemu binary."
10436 msgstr ""
10437
10438 # type: textblock
10439 #. type: textblock
10440 #: ../src/guestfs-actions.pod:2037 ../fish/guestfish-actions.pod:1383
10441 msgid ""
10442 "This is always non-NULL.  If it wasn't set already, then this will return "
10443 "the default qemu binary name."
10444 msgstr ""
10445
10446 # type: textblock
10447 #. type: textblock
10448 #: ../src/guestfs-actions.pod:2043 ../src/guestfs-actions.pod:5984
10449 msgid "(Added in 1.0.6)"
10450 msgstr ""
10451
10452 # type: =head2
10453 #. type: =head2
10454 #: ../src/guestfs-actions.pod:2045
10455 msgid "guestfs_get_recovery_proc"
10456 msgstr ""
10457
10458 # type: verbatim
10459 #. type: verbatim
10460 #: ../src/guestfs-actions.pod:2047
10461 #, no-wrap
10462 msgid ""
10463 " int\n"
10464 " guestfs_get_recovery_proc (guestfs_h *g);\n"
10465 "\n"
10466 msgstr ""
10467
10468 # type: textblock
10469 #. type: textblock
10470 #: ../src/guestfs-actions.pod:2050 ../fish/guestfish-actions.pod:1390
10471 msgid "Return the recovery process enabled flag."
10472 msgstr ""
10473
10474 # type: textblock
10475 #. type: textblock
10476 #: ../src/guestfs-actions.pod:2054 ../src/guestfs-actions.pod:3493
10477 #: ../src/guestfs-actions.pod:3790 ../src/guestfs-actions.pod:4190
10478 #: ../src/guestfs-actions.pod:4222 ../src/guestfs-actions.pod:5243
10479 #: ../src/guestfs-actions.pod:5586 ../src/guestfs-actions.pod:6008
10480 #: ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6691
10481 #: ../src/guestfs-actions.pod:6883
10482 msgid "(Added in 1.0.77)"
10483 msgstr ""
10484
10485 # type: =head2
10486 #. type: =head2
10487 #: ../src/guestfs-actions.pod:2056
10488 msgid "guestfs_get_selinux"
10489 msgstr ""
10490
10491 # type: verbatim
10492 #. type: verbatim
10493 #: ../src/guestfs-actions.pod:2058
10494 #, no-wrap
10495 msgid ""
10496 " int\n"
10497 " guestfs_get_selinux (guestfs_h *g);\n"
10498 "\n"
10499 msgstr ""
10500
10501 # type: textblock
10502 #. type: textblock
10503 #: ../src/guestfs-actions.pod:2061
10504 msgid ""
10505 "This returns the current setting of the selinux flag which is passed to the "
10506 "appliance at boot time.  See C<guestfs_set_selinux>."
10507 msgstr ""
10508
10509 # type: textblock
10510 #. type: textblock
10511 #: ../src/guestfs-actions.pod:2069 ../src/guestfs-actions.pod:2132
10512 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6085
10513 msgid "(Added in 1.0.67)"
10514 msgstr ""
10515
10516 # type: =head2
10517 #. type: =head2
10518 #: ../src/guestfs-actions.pod:2071
10519 msgid "guestfs_get_state"
10520 msgstr ""
10521
10522 # type: verbatim
10523 #. type: verbatim
10524 #: ../src/guestfs-actions.pod:2073
10525 #, no-wrap
10526 msgid ""
10527 " int\n"
10528 " guestfs_get_state (guestfs_h *g);\n"
10529 "\n"
10530 msgstr ""
10531
10532 # type: textblock
10533 #. type: textblock
10534 #: ../src/guestfs-actions.pod:2076 ../fish/guestfish-actions.pod:1406
10535 msgid ""
10536 "This returns the current state as an opaque integer.  This is only useful "
10537 "for printing debug and internal error messages."
10538 msgstr ""
10539
10540 # type: textblock
10541 #. type: textblock
10542 #: ../src/guestfs-actions.pod:2079 ../src/guestfs-actions.pod:3291
10543 #: ../src/guestfs-actions.pod:3320 ../src/guestfs-actions.pod:3381
10544 #: ../src/guestfs-actions.pod:3408 ../fish/guestfish-actions.pod:1409
10545 #: ../fish/guestfish-actions.pod:2315 ../fish/guestfish-actions.pod:2333
10546 #: ../fish/guestfish-actions.pod:2371 ../fish/guestfish-actions.pod:2387
10547 msgid "For more information on states, see L<guestfs(3)>."
10548 msgstr ""
10549
10550 # type: =head2
10551 #. type: =head2
10552 #: ../src/guestfs-actions.pod:2085
10553 msgid "guestfs_get_trace"
10554 msgstr ""
10555
10556 # type: verbatim
10557 #. type: verbatim
10558 #: ../src/guestfs-actions.pod:2087
10559 #, no-wrap
10560 msgid ""
10561 " int\n"
10562 " guestfs_get_trace (guestfs_h *g);\n"
10563 "\n"
10564 msgstr ""
10565
10566 # type: textblock
10567 #. type: textblock
10568 #: ../src/guestfs-actions.pod:2090 ../fish/guestfish-actions.pod:1415
10569 msgid "Return the command trace flag."
10570 msgstr ""
10571
10572 # type: =head2
10573 #. type: =head2
10574 #: ../src/guestfs-actions.pod:2096
10575 msgid "guestfs_get_umask"
10576 msgstr ""
10577
10578 # type: verbatim
10579 #. type: verbatim
10580 #: ../src/guestfs-actions.pod:2098
10581 #, no-wrap
10582 msgid ""
10583 " int\n"
10584 " guestfs_get_umask (guestfs_h *g);\n"
10585 "\n"
10586 msgstr ""
10587
10588 # type: textblock
10589 #. type: textblock
10590 #: ../src/guestfs-actions.pod:2101
10591 msgid ""
10592 "Return the current umask.  By default the umask is C<022> unless it has been "
10593 "set by calling C<guestfs_umask>."
10594 msgstr ""
10595
10596 # type: =head2
10597 #. type: =head2
10598 #: ../src/guestfs-actions.pod:2108
10599 msgid "guestfs_get_verbose"
10600 msgstr ""
10601
10602 # type: verbatim
10603 #. type: verbatim
10604 #: ../src/guestfs-actions.pod:2110
10605 #, no-wrap
10606 msgid ""
10607 " int\n"
10608 " guestfs_get_verbose (guestfs_h *g);\n"
10609 "\n"
10610 msgstr ""
10611
10612 # type: textblock
10613 #. type: textblock
10614 #: ../src/guestfs-actions.pod:2113 ../fish/guestfish-actions.pod:1428
10615 msgid "This returns the verbose messages flag."
10616 msgstr ""
10617
10618 # type: =head2
10619 #. type: =head2
10620 #: ../src/guestfs-actions.pod:2119
10621 msgid "guestfs_getcon"
10622 msgstr ""
10623
10624 # type: verbatim
10625 #. type: verbatim
10626 #: ../src/guestfs-actions.pod:2121
10627 #, no-wrap
10628 msgid ""
10629 " char *\n"
10630 " guestfs_getcon (guestfs_h *g);\n"
10631 "\n"
10632 msgstr ""
10633
10634 # type: textblock
10635 #. type: textblock
10636 #: ../src/guestfs-actions.pod:2124 ../fish/guestfish-actions.pod:1434
10637 msgid "This gets the SELinux security context of the daemon."
10638 msgstr ""
10639
10640 # type: textblock
10641 #. type: textblock
10642 #: ../src/guestfs-actions.pod:2126
10643 msgid ""
10644 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10645 msgstr ""
10646
10647 # type: =head2
10648 #. type: =head2
10649 #: ../src/guestfs-actions.pod:2134
10650 msgid "guestfs_getxattr"
10651 msgstr ""
10652
10653 # type: verbatim
10654 #. type: verbatim
10655 #: ../src/guestfs-actions.pod:2136
10656 #, no-wrap
10657 msgid ""
10658 " char *\n"
10659 " guestfs_getxattr (guestfs_h *g,\n"
10660 "                   const char *path,\n"
10661 "                   const char *name,\n"
10662 "                   size_t *size_r);\n"
10663 "\n"
10664 msgstr ""
10665
10666 # type: textblock
10667 #. type: textblock
10668 #: ../src/guestfs-actions.pod:2142
10669 msgid ""
10670 "Get a single extended attribute from file C<path> named C<name>.  This call "
10671 "follows symlinks.  If you want to lookup an extended attribute for the "
10672 "symlink itself, use C<guestfs_lgetxattr>."
10673 msgstr ""
10674
10675 # type: textblock
10676 #. type: textblock
10677 #: ../src/guestfs-actions.pod:2146 ../src/guestfs-actions.pod:3507
10678 msgid ""
10679 "Normally it is better to get all extended attributes from a file in one go "
10680 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10681 "implementations are buggy and do not provide a way to list out attributes.  "
10682 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10683 "extended attributes you want in advance and call this function."
10684 msgstr ""
10685
10686 # type: textblock
10687 #. type: textblock
10688 #: ../src/guestfs-actions.pod:2153 ../src/guestfs-actions.pod:3514
10689 #: ../fish/guestfish-actions.pod:1454 ../fish/guestfish-actions.pod:2452
10690 msgid ""
10691 "Extended attribute values are blobs of binary data.  If there is no extended "
10692 "attribute named C<name>, this returns an error."
10693 msgstr ""
10694
10695 # type: textblock
10696 #. type: textblock
10697 #: ../src/guestfs-actions.pod:2156
10698 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10699 msgstr ""
10700
10701 # type: textblock
10702 #. type: textblock
10703 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:2349
10704 #: ../src/guestfs-actions.pod:3519 ../src/guestfs-actions.pod:5236
10705 #: ../src/guestfs-actions.pod:5262 ../src/guestfs-actions.pod:5443
10706 msgid ""
10707 "This function returns a buffer, or NULL on error.  The size of the returned "
10708 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10709 "after use>."
10710 msgstr ""
10711
10712 #. type: textblock
10713 #: ../src/guestfs-actions.pod:2162 ../src/guestfs-actions.pod:3523
10714 msgid "(Added in 1.7.24)"
10715 msgstr ""
10716
10717 # type: =head2
10718 #. type: =head2
10719 #: ../src/guestfs-actions.pod:2164
10720 msgid "guestfs_getxattrs"
10721 msgstr ""
10722
10723 # type: verbatim
10724 #. type: verbatim
10725 #: ../src/guestfs-actions.pod:2166
10726 #, no-wrap
10727 msgid ""
10728 " struct guestfs_xattr_list *\n"
10729 " guestfs_getxattrs (guestfs_h *g,\n"
10730 "                    const char *path);\n"
10731 "\n"
10732 msgstr ""
10733
10734 # type: textblock
10735 #. type: textblock
10736 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
10737 msgid ""
10738 "This call lists the extended attributes of the file or directory C<path>."
10739 msgstr ""
10740
10741 # type: textblock
10742 #. type: textblock
10743 #: ../src/guestfs-actions.pod:2173 ../fish/guestfish-actions.pod:1466
10744 msgid ""
10745 "At the system call level, this is a combination of the L<listxattr(2)> and "
10746 "L<getxattr(2)> calls."
10747 msgstr ""
10748
10749 # type: textblock
10750 #. type: textblock
10751 #: ../src/guestfs-actions.pod:2176
10752 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10753 msgstr ""
10754
10755 # type: textblock
10756 #. type: textblock
10757 #: ../src/guestfs-actions.pod:2178 ../src/guestfs-actions.pod:3535
10758 #: ../src/guestfs-actions.pod:4186
10759 msgid ""
10760 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10761 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10762 msgstr ""
10763
10764 # type: textblock
10765 #. type: textblock
10766 #: ../src/guestfs-actions.pod:2182 ../src/guestfs-actions.pod:3539
10767 #: ../src/guestfs-actions.pod:3704 ../src/guestfs-actions.pod:3740
10768 #: ../src/guestfs-actions.pod:5616 ../src/guestfs-actions.pod:6104
10769 #: ../src/guestfs-actions.pod:7439
10770 msgid "(Added in 1.0.59)"
10771 msgstr ""
10772
10773 # type: =head2
10774 #. type: =head2
10775 #: ../src/guestfs-actions.pod:2184
10776 msgid "guestfs_glob_expand"
10777 msgstr ""
10778
10779 # type: verbatim
10780 #. type: verbatim
10781 #: ../src/guestfs-actions.pod:2186
10782 #, no-wrap
10783 msgid ""
10784 " char **\n"
10785 " guestfs_glob_expand (guestfs_h *g,\n"
10786 "                      const char *pattern);\n"
10787 "\n"
10788 msgstr ""
10789
10790 # type: textblock
10791 #. type: textblock
10792 #: ../src/guestfs-actions.pod:2190 ../fish/guestfish-actions.pod:1475
10793 msgid ""
10794 "This command searches for all the pathnames matching C<pattern> according to "
10795 "the wildcard expansion rules used by the shell."
10796 msgstr ""
10797
10798 # type: textblock
10799 #. type: textblock
10800 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
10801 msgid ""
10802 "If no paths match, then this returns an empty list (note: not an error)."
10803 msgstr ""
10804
10805 # type: textblock
10806 #. type: textblock
10807 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1482
10808 msgid ""
10809 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10810 "GLOB_BRACE>.  See that manual page for more details."
10811 msgstr ""
10812
10813 # type: textblock
10814 #. type: textblock
10815 #: ../src/guestfs-actions.pod:2205 ../src/guestfs-actions.pod:6269
10816 #: ../src/guestfs-actions.pod:6286
10817 msgid "(Added in 1.0.50)"
10818 msgstr ""
10819
10820 # type: =head2
10821 #. type: =head2
10822 #: ../src/guestfs-actions.pod:2207
10823 msgid "guestfs_grep"
10824 msgstr ""
10825
10826 # type: verbatim
10827 #. type: verbatim
10828 #: ../src/guestfs-actions.pod:2209
10829 #, no-wrap
10830 msgid ""
10831 " char **\n"
10832 " guestfs_grep (guestfs_h *g,\n"
10833 "               const char *regex,\n"
10834 "               const char *path);\n"
10835 "\n"
10836 msgstr ""
10837
10838 # type: textblock
10839 #. type: textblock
10840 #: ../src/guestfs-actions.pod:2214 ../fish/guestfish-actions.pod:1490
10841 msgid "This calls the external C<grep> program and returns the matching lines."
10842 msgstr ""
10843
10844 # type: =head2
10845 #. type: =head2
10846 #: ../src/guestfs-actions.pod:2226
10847 msgid "guestfs_grepi"
10848 msgstr ""
10849
10850 # type: verbatim
10851 #. type: verbatim
10852 #: ../src/guestfs-actions.pod:2228
10853 #, no-wrap
10854 msgid ""
10855 " char **\n"
10856 " guestfs_grepi (guestfs_h *g,\n"
10857 "                const char *regex,\n"
10858 "                const char *path);\n"
10859 "\n"
10860 msgstr ""
10861
10862 # type: textblock
10863 #. type: textblock
10864 #: ../src/guestfs-actions.pod:2233 ../fish/guestfish-actions.pod:1500
10865 msgid ""
10866 "This calls the external C<grep -i> program and returns the matching lines."
10867 msgstr ""
10868
10869 # type: =head2
10870 #. type: =head2
10871 #: ../src/guestfs-actions.pod:2245
10872 msgid "guestfs_grub_install"
10873 msgstr ""
10874
10875 # type: verbatim
10876 #. type: verbatim
10877 #: ../src/guestfs-actions.pod:2247
10878 #, no-wrap
10879 msgid ""
10880 " int\n"
10881 " guestfs_grub_install (guestfs_h *g,\n"
10882 "                       const char *root,\n"
10883 "                       const char *device);\n"
10884 "\n"
10885 msgstr ""
10886
10887 # type: textblock
10888 #. type: textblock
10889 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
10890 msgid ""
10891 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10892 "the root directory being C<root>."
10893 msgstr ""
10894
10895 # type: textblock
10896 #. type: textblock
10897 #: ../src/guestfs-actions.pod:2255 ../fish/guestfish-actions.pod:1513
10898 msgid ""
10899 "Note: If grub-install reports the error \"No suitable drive was found in the "
10900 "generated device map.\" it may be that you need to create a C</boot/grub/"
10901 "device.map> file first that contains the mapping between grub device names "
10902 "and Linux device names.  It is usually sufficient to create a file "
10903 "containing:"
10904 msgstr ""
10905
10906 # type: verbatim
10907 #. type: verbatim
10908 #: ../src/guestfs-actions.pod:2262 ../fish/guestfish-actions.pod:1520
10909 #, no-wrap
10910 msgid ""
10911 " (hd0) /dev/vda\n"
10912 "\n"
10913 msgstr ""
10914
10915 # type: textblock
10916 #. type: textblock
10917 #: ../src/guestfs-actions.pod:2264 ../fish/guestfish-actions.pod:1522
10918 msgid "replacing C</dev/vda> with the name of the installation device."
10919 msgstr ""
10920
10921 # type: textblock
10922 #. type: textblock
10923 #: ../src/guestfs-actions.pod:2268
10924 msgid "(Added in 1.0.17)"
10925 msgstr ""
10926
10927 # type: =head2
10928 #. type: =head2
10929 #: ../src/guestfs-actions.pod:2270
10930 msgid "guestfs_head"
10931 msgstr ""
10932
10933 # type: verbatim
10934 #. type: verbatim
10935 #: ../src/guestfs-actions.pod:2272
10936 #, no-wrap
10937 msgid ""
10938 " char **\n"
10939 " guestfs_head (guestfs_h *g,\n"
10940 "               const char *path);\n"
10941 "\n"
10942 msgstr ""
10943
10944 # type: textblock
10945 #. type: textblock
10946 #: ../src/guestfs-actions.pod:2276 ../fish/guestfish-actions.pod:1528
10947 msgid ""
10948 "This command returns up to the first 10 lines of a file as a list of strings."
10949 msgstr ""
10950
10951 # type: =head2
10952 #. type: =head2
10953 #: ../src/guestfs-actions.pod:2288
10954 msgid "guestfs_head_n"
10955 msgstr ""
10956
10957 # type: verbatim
10958 #. type: verbatim
10959 #: ../src/guestfs-actions.pod:2290
10960 #, no-wrap
10961 msgid ""
10962 " char **\n"
10963 " guestfs_head_n (guestfs_h *g,\n"
10964 "                 int nrlines,\n"
10965 "                 const char *path);\n"
10966 "\n"
10967 msgstr ""
10968
10969 # type: textblock
10970 #. type: textblock
10971 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
10972 msgid ""
10973 "If the parameter C<nrlines> is a positive number, this returns the first "
10974 "C<nrlines> lines of the file C<path>."
10975 msgstr ""
10976
10977 # type: textblock
10978 #. type: textblock
10979 #: ../src/guestfs-actions.pod:2298 ../fish/guestfish-actions.pod:1541
10980 msgid ""
10981 "If the parameter C<nrlines> is a negative number, this returns lines from "
10982 "the file C<path>, excluding the last C<nrlines> lines."
10983 msgstr ""
10984
10985 # type: textblock
10986 #. type: textblock
10987 #: ../src/guestfs-actions.pod:2301 ../src/guestfs-actions.pod:6566
10988 #: ../fish/guestfish-actions.pod:1544 ../fish/guestfish-actions.pod:4422
10989 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10990 msgstr ""
10991
10992 # type: =head2
10993 #. type: =head2
10994 #: ../src/guestfs-actions.pod:2312
10995 msgid "guestfs_hexdump"
10996 msgstr ""
10997
10998 # type: verbatim
10999 #. type: verbatim
11000 #: ../src/guestfs-actions.pod:2314
11001 #, no-wrap
11002 msgid ""
11003 " char *\n"
11004 " guestfs_hexdump (guestfs_h *g,\n"
11005 "                  const char *path);\n"
11006 "\n"
11007 msgstr ""
11008
11009 # type: textblock
11010 #. type: textblock
11011 #: ../src/guestfs-actions.pod:2318 ../fish/guestfish-actions.pod:1553
11012 msgid ""
11013 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
11014 "readable, canonical hex dump of the file."
11015 msgstr ""
11016
11017 # type: textblock
11018 #. type: textblock
11019 #: ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:6350
11020 #: ../src/guestfs-actions.pod:6405
11021 msgid "(Added in 1.0.22)"
11022 msgstr ""
11023
11024 # type: =head2
11025 #. type: =head2
11026 #: ../src/guestfs-actions.pod:2329
11027 msgid "guestfs_initrd_cat"
11028 msgstr ""
11029
11030 # type: verbatim
11031 #. type: verbatim
11032 #: ../src/guestfs-actions.pod:2331
11033 #, no-wrap
11034 msgid ""
11035 " char *\n"
11036 " guestfs_initrd_cat (guestfs_h *g,\n"
11037 "                     const char *initrdpath,\n"
11038 "                     const char *filename,\n"
11039 "                     size_t *size_r);\n"
11040 "\n"
11041 msgstr ""
11042
11043 # type: textblock
11044 #. type: textblock
11045 #: ../src/guestfs-actions.pod:2337 ../fish/guestfish-actions.pod:1563
11046 msgid ""
11047 "This command unpacks the file C<filename> from the initrd file called "
11048 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
11049 "character."
11050 msgstr ""
11051
11052 # type: textblock
11053 #. type: textblock
11054 #: ../src/guestfs-actions.pod:2341 ../fish/guestfish-actions.pod:1567
11055 msgid ""
11056 "For example, in guestfish you could use the following command to examine the "
11057 "boot script (usually called C</init>)  contained in a Linux initrd or "
11058 "initramfs image:"
11059 msgstr ""
11060
11061 # type: verbatim
11062 #. type: verbatim
11063 #: ../src/guestfs-actions.pod:2345 ../fish/guestfish-actions.pod:1571
11064 #, no-wrap
11065 msgid ""
11066 " initrd-cat /boot/initrd-<version>.img init\n"
11067 "\n"
11068 msgstr ""
11069
11070 # type: textblock
11071 #. type: textblock
11072 #: ../src/guestfs-actions.pod:2347
11073 msgid "See also C<guestfs_initrd_list>."
11074 msgstr ""
11075
11076 # type: =head2
11077 #. type: =head2
11078 #: ../src/guestfs-actions.pod:2358
11079 msgid "guestfs_initrd_list"
11080 msgstr ""
11081
11082 # type: verbatim
11083 #. type: verbatim
11084 #: ../src/guestfs-actions.pod:2360
11085 #, no-wrap
11086 msgid ""
11087 " char **\n"
11088 " guestfs_initrd_list (guestfs_h *g,\n"
11089 "                      const char *path);\n"
11090 "\n"
11091 msgstr ""
11092
11093 # type: textblock
11094 #. type: textblock
11095 #: ../src/guestfs-actions.pod:2364 ../fish/guestfish-actions.pod:1582
11096 msgid "This command lists out files contained in an initrd."
11097 msgstr ""
11098
11099 # type: textblock
11100 #. type: textblock
11101 #: ../src/guestfs-actions.pod:2366 ../fish/guestfish-actions.pod:1584
11102 msgid ""
11103 "The files are listed without any initial C</> character.  The files are "
11104 "listed in the order they appear (not necessarily alphabetical).  Directory "
11105 "names are listed as separate items."
11106 msgstr ""
11107
11108 # type: textblock
11109 #. type: textblock
11110 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1588
11111 msgid ""
11112 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
11113 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
11114 "files)."
11115 msgstr ""
11116
11117 # type: =head2
11118 #. type: =head2
11119 #: ../src/guestfs-actions.pod:2380
11120 msgid "guestfs_inotify_add_watch"
11121 msgstr ""
11122
11123 # type: verbatim
11124 #. type: verbatim
11125 #: ../src/guestfs-actions.pod:2382
11126 #, no-wrap
11127 msgid ""
11128 " int64_t\n"
11129 " guestfs_inotify_add_watch (guestfs_h *g,\n"
11130 "                            const char *path,\n"
11131 "                            int mask);\n"
11132 "\n"
11133 msgstr ""
11134
11135 # type: textblock
11136 #. type: textblock
11137 #: ../src/guestfs-actions.pod:2387 ../fish/guestfish-actions.pod:1596
11138 msgid "Watch C<path> for the events listed in C<mask>."
11139 msgstr ""
11140
11141 # type: textblock
11142 #. type: textblock
11143 #: ../src/guestfs-actions.pod:2389 ../fish/guestfish-actions.pod:1598
11144 msgid ""
11145 "Note that if C<path> is a directory then events within that directory are "
11146 "watched, but this does I<not> happen recursively (in subdirectories)."
11147 msgstr ""
11148
11149 # type: textblock
11150 #. type: textblock
11151 #: ../src/guestfs-actions.pod:2393 ../fish/guestfish-actions.pod:1602
11152 msgid ""
11153 "Note for non-C or non-Linux callers: the inotify events are defined by the "
11154 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
11155 msgstr ""
11156
11157 # type: =head2
11158 #. type: =head2
11159 #: ../src/guestfs-actions.pod:2401
11160 msgid "guestfs_inotify_close"
11161 msgstr ""
11162
11163 # type: verbatim
11164 #. type: verbatim
11165 #: ../src/guestfs-actions.pod:2403
11166 #, no-wrap
11167 msgid ""
11168 " int\n"
11169 " guestfs_inotify_close (guestfs_h *g);\n"
11170 "\n"
11171 msgstr ""
11172
11173 # type: textblock
11174 #. type: textblock
11175 #: ../src/guestfs-actions.pod:2406 ../fish/guestfish-actions.pod:1610
11176 msgid ""
11177 "This closes the inotify handle which was previously opened by inotify_init.  "
11178 "It removes all watches, throws away any pending events, and deallocates all "
11179 "resources."
11180 msgstr ""
11181
11182 # type: =head2
11183 #. type: =head2
11184 #: ../src/guestfs-actions.pod:2414
11185 msgid "guestfs_inotify_files"
11186 msgstr ""
11187
11188 # type: verbatim
11189 #. type: verbatim
11190 #: ../src/guestfs-actions.pod:2416
11191 #, no-wrap
11192 msgid ""
11193 " char **\n"
11194 " guestfs_inotify_files (guestfs_h *g);\n"
11195 "\n"
11196 msgstr ""
11197
11198 # type: textblock
11199 #. type: textblock
11200 #: ../src/guestfs-actions.pod:2419
11201 msgid ""
11202 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
11203 "returns a list of pathnames of objects that were touched.  The returned "
11204 "pathnames are sorted and deduplicated."
11205 msgstr ""
11206
11207 # type: =head2
11208 #. type: =head2
11209 #: ../src/guestfs-actions.pod:2429
11210 msgid "guestfs_inotify_init"
11211 msgstr ""
11212
11213 # type: verbatim
11214 #. type: verbatim
11215 #: ../src/guestfs-actions.pod:2431
11216 #, no-wrap
11217 msgid ""
11218 " int\n"
11219 " guestfs_inotify_init (guestfs_h *g,\n"
11220 "                       int maxevents);\n"
11221 "\n"
11222 msgstr ""
11223
11224 # type: textblock
11225 #. type: textblock
11226 #: ../src/guestfs-actions.pod:2435 ../fish/guestfish-actions.pod:1626
11227 msgid ""
11228 "This command creates a new inotify handle.  The inotify subsystem can be "
11229 "used to notify events which happen to objects in the guest filesystem."
11230 msgstr ""
11231
11232 # type: textblock
11233 #. type: textblock
11234 #: ../src/guestfs-actions.pod:2439
11235 msgid ""
11236 "C<maxevents> is the maximum number of events which will be queued up between "
11237 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
11238 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
11239 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
11240 "throws away events, but records the fact that it threw them away by setting "
11241 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
11242 "C<guestfs_inotify_read>)."
11243 msgstr ""
11244
11245 # type: textblock
11246 #. type: textblock
11247 #: ../src/guestfs-actions.pod:2449
11248 msgid ""
11249 "Before any events are generated, you have to add some watches to the "
11250 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
11251 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
11252 msgstr ""
11253
11254 # type: textblock
11255 #. type: textblock
11256 #: ../src/guestfs-actions.pod:2455
11257 msgid ""
11258 "Queued up events should be read periodically by calling "
11259 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
11260 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
11261 "often enough then you risk the internal queue overflowing."
11262 msgstr ""
11263
11264 # type: textblock
11265 #. type: textblock
11266 #: ../src/guestfs-actions.pod:2462
11267 msgid ""
11268 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
11269 "This also removes any watches automatically."
11270 msgstr ""
11271
11272 # type: textblock
11273 #. type: textblock
11274 #: ../src/guestfs-actions.pod:2466 ../fish/guestfish-actions.pod:1657
11275 msgid ""
11276 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
11277 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
11278 "that there is one global inotify handle per libguestfs instance."
11279 msgstr ""
11280
11281 # type: =head2
11282 #. type: =head2
11283 #: ../src/guestfs-actions.pod:2475
11284 msgid "guestfs_inotify_read"
11285 msgstr ""
11286
11287 # type: verbatim
11288 #. type: verbatim
11289 #: ../src/guestfs-actions.pod:2477
11290 #, no-wrap
11291 msgid ""
11292 " struct guestfs_inotify_event_list *\n"
11293 " guestfs_inotify_read (guestfs_h *g);\n"
11294 "\n"
11295 msgstr ""
11296
11297 # type: textblock
11298 #. type: textblock
11299 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
11300 msgid ""
11301 "Return the complete queue of events that have happened since the previous "
11302 "read call."
11303 msgstr ""
11304
11305 # type: textblock
11306 #. type: textblock
11307 #: ../src/guestfs-actions.pod:2483 ../fish/guestfish-actions.pod:1669
11308 msgid "If no events have happened, this returns an empty list."
11309 msgstr ""
11310
11311 # type: textblock
11312 #. type: textblock
11313 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1671
11314 msgid ""
11315 "I<Note>: In order to make sure that all events have been read, you must call "
11316 "this function repeatedly until it returns an empty list.  The reason is that "
11317 "the call will read events up to the maximum appliance-to-host message size "
11318 "and leave remaining events in the queue."
11319 msgstr ""
11320
11321 # type: textblock
11322 #. type: textblock
11323 #: ../src/guestfs-actions.pod:2491
11324 msgid ""
11325 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
11326 "there was an error.  I<The caller must call "
11327 "C<guestfs_free_inotify_event_list> after use>."
11328 msgstr ""
11329
11330 # type: =head2
11331 #. type: =head2
11332 #: ../src/guestfs-actions.pod:2497
11333 msgid "guestfs_inotify_rm_watch"
11334 msgstr ""
11335
11336 # type: verbatim
11337 #. type: verbatim
11338 #: ../src/guestfs-actions.pod:2499
11339 #, no-wrap
11340 msgid ""
11341 " int\n"
11342 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
11343 "                           int wd);\n"
11344 "\n"
11345 msgstr ""
11346
11347 # type: textblock
11348 #. type: textblock
11349 #: ../src/guestfs-actions.pod:2503
11350 msgid ""
11351 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
11352 msgstr ""
11353
11354 # type: =head2
11355 #. type: =head2
11356 #: ../src/guestfs-actions.pod:2510
11357 msgid "guestfs_inspect_get_arch"
11358 msgstr ""
11359
11360 # type: verbatim
11361 #. type: verbatim
11362 #: ../src/guestfs-actions.pod:2512
11363 #, no-wrap
11364 msgid ""
11365 " char *\n"
11366 " guestfs_inspect_get_arch (guestfs_h *g,\n"
11367 "                           const char *root);\n"
11368 "\n"
11369 msgstr ""
11370
11371 # type: textblock
11372 #. type: textblock
11373 #: ../src/guestfs-actions.pod:2516 ../src/guestfs-actions.pod:2539
11374 #: ../src/guestfs-actions.pod:2624 ../src/guestfs-actions.pod:2668
11375 #: ../src/guestfs-actions.pod:2694 ../src/guestfs-actions.pod:2733
11376 #: ../src/guestfs-actions.pod:2755 ../src/guestfs-actions.pod:2782
11377 #: ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2846
11378 #: ../src/guestfs-actions.pod:2875 ../src/guestfs-actions.pod:2906
11379 #: ../src/guestfs-actions.pod:2930 ../src/guestfs-actions.pod:2985
11380 #: ../src/guestfs-actions.pod:3027 ../src/guestfs-actions.pod:3048
11381 #: ../src/guestfs-actions.pod:3071 ../src/guestfs-actions.pod:3088
11382 #: ../src/guestfs-actions.pod:3105 ../src/guestfs-actions.pod:3124
11383 msgid ""
11384 "This function should only be called with a root device string as returned by "
11385 "C<guestfs_inspect_os>."
11386 msgstr ""
11387
11388 # type: textblock
11389 #. type: textblock
11390 #: ../src/guestfs-actions.pod:2519
11391 msgid ""
11392 "This returns the architecture of the inspected operating system.  The "
11393 "possible return values are listed under C<guestfs_file_architecture>."
11394 msgstr ""
11395
11396 # type: textblock
11397 #. type: textblock
11398 #: ../src/guestfs-actions.pod:2523 ../fish/guestfish-actions.pod:1695
11399 msgid ""
11400 "If the architecture could not be determined, then the string C<unknown> is "
11401 "returned."
11402 msgstr ""
11403
11404 # type: textblock
11405 #. type: textblock
11406 #: ../src/guestfs-actions.pod:2526 ../src/guestfs-actions.pod:2611
11407 #: ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2742
11408 #: ../src/guestfs-actions.pod:2770 ../src/guestfs-actions.pod:2862
11409 #: ../src/guestfs-actions.pod:2893 ../src/guestfs-actions.pod:2917
11410 #: ../src/guestfs-actions.pod:2971 ../src/guestfs-actions.pod:3014
11411 #: ../src/guestfs-actions.pod:3037 ../src/guestfs-actions.pod:3058
11412 #: ../src/guestfs-actions.pod:3078 ../src/guestfs-actions.pod:3095
11413 #: ../src/guestfs-actions.pod:3114 ../src/guestfs-actions.pod:3217
11414 #: ../src/guestfs-actions.pod:3258 ../fish/guestfish-actions.pod:1698
11415 #: ../fish/guestfish-actions.pod:1776 ../fish/guestfish-actions.pod:1864
11416 #: ../fish/guestfish-actions.pod:1879 ../fish/guestfish-actions.pod:1900
11417 #: ../fish/guestfish-actions.pod:1970 ../fish/guestfish-actions.pod:1994
11418 #: ../fish/guestfish-actions.pod:2011 ../fish/guestfish-actions.pod:2054
11419 #: ../fish/guestfish-actions.pod:2089 ../fish/guestfish-actions.pod:2105
11420 #: ../fish/guestfish-actions.pod:2121 ../fish/guestfish-actions.pod:2134
11421 #: ../fish/guestfish-actions.pod:2147 ../fish/guestfish-actions.pod:2162
11422 #: ../fish/guestfish-actions.pod:2261 ../fish/guestfish-actions.pod:2295
11423 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
11424 msgstr ""
11425
11426 # type: =head2
11427 #. type: =head2
11428 #: ../src/guestfs-actions.pod:2533
11429 msgid "guestfs_inspect_get_distro"
11430 msgstr ""
11431
11432 # type: verbatim
11433 #. type: verbatim
11434 #: ../src/guestfs-actions.pod:2535
11435 #, no-wrap
11436 msgid ""
11437 " char *\n"
11438 " guestfs_inspect_get_distro (guestfs_h *g,\n"
11439 "                             const char *root);\n"
11440 "\n"
11441 msgstr ""
11442
11443 # type: textblock
11444 #. type: textblock
11445 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
11446 msgid ""
11447 "This returns the distro (distribution) of the inspected operating system."
11448 msgstr ""
11449
11450 # type: textblock
11451 #. type: textblock
11452 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1710
11453 msgid "Currently defined distros are:"
11454 msgstr ""
11455
11456 # type: =item
11457 #. type: =item
11458 #: ../src/guestfs-actions.pod:2549 ../fish/guestfish-actions.pod:1714
11459 msgid "\"archlinux\""
11460 msgstr ""
11461
11462 # type: textblock
11463 #. type: textblock
11464 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1716
11465 msgid "Arch Linux."
11466 msgstr ""
11467
11468 # type: =item
11469 #. type: =item
11470 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1718
11471 msgid "\"debian\""
11472 msgstr ""
11473
11474 # type: textblock
11475 #. type: textblock
11476 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1720
11477 msgid "Debian."
11478 msgstr ""
11479
11480 # type: =item
11481 #. type: =item
11482 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1722
11483 msgid "\"fedora\""
11484 msgstr ""
11485
11486 # type: textblock
11487 #. type: textblock
11488 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1724
11489 msgid "Fedora."
11490 msgstr ""
11491
11492 # type: =item
11493 #. type: =item
11494 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1726
11495 msgid "\"gentoo\""
11496 msgstr ""
11497
11498 # type: textblock
11499 #. type: textblock
11500 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1728
11501 msgid "Gentoo."
11502 msgstr ""
11503
11504 # type: =item
11505 #. type: =item
11506 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1730
11507 msgid "\"linuxmint\""
11508 msgstr ""
11509
11510 # type: textblock
11511 #. type: textblock
11512 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1732
11513 msgid "Linux Mint."
11514 msgstr ""
11515
11516 # type: =item
11517 #. type: =item
11518 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1734
11519 msgid "\"mandriva\""
11520 msgstr ""
11521
11522 # type: textblock
11523 #. type: textblock
11524 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1736
11525 msgid "Mandriva."
11526 msgstr ""
11527
11528 # type: =item
11529 #. type: =item
11530 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1738
11531 msgid "\"meego\""
11532 msgstr ""
11533
11534 # type: textblock
11535 #. type: textblock
11536 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1740
11537 msgid "MeeGo."
11538 msgstr ""
11539
11540 # type: =item
11541 #. type: =item
11542 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1742
11543 msgid "\"pardus\""
11544 msgstr ""
11545
11546 # type: textblock
11547 #. type: textblock
11548 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1744
11549 msgid "Pardus."
11550 msgstr ""
11551
11552 # type: =item
11553 #. type: =item
11554 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1746
11555 msgid "\"redhat-based\""
11556 msgstr ""
11557
11558 # type: textblock
11559 #. type: textblock
11560 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1748
11561 msgid "Some Red Hat-derived distro."
11562 msgstr ""
11563
11564 # type: =item
11565 #. type: =item
11566 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1750
11567 msgid "\"rhel\""
11568 msgstr ""
11569
11570 # type: textblock
11571 #. type: textblock
11572 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1752
11573 msgid "Red Hat Enterprise Linux and some derivatives."
11574 msgstr ""
11575
11576 #. type: =item
11577 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1754
11578 msgid "\"slackware\""
11579 msgstr ""
11580
11581 #. type: textblock
11582 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1756
11583 msgid "Slackware."
11584 msgstr ""
11585
11586 # type: =item
11587 #. type: =item
11588 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1758
11589 msgid "\"ubuntu\""
11590 msgstr ""
11591
11592 # type: textblock
11593 #. type: textblock
11594 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1760
11595 msgid "Ubuntu."
11596 msgstr ""
11597
11598 # type: =item
11599 #. type: =item
11600 #: ../src/guestfs-actions.pod:2597 ../src/guestfs-actions.pod:2713
11601 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:1762
11602 #: ../fish/guestfish-actions.pod:1855 ../fish/guestfish-actions.pod:2080
11603 msgid "\"unknown\""
11604 msgstr ""
11605
11606 # type: textblock
11607 #. type: textblock
11608 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1764
11609 msgid "The distro could not be determined."
11610 msgstr ""
11611
11612 # type: =item
11613 #. type: =item
11614 #: ../src/guestfs-actions.pod:2601 ../src/guestfs-actions.pod:2997
11615 #: ../fish/guestfish-actions.pod:1766 ../fish/guestfish-actions.pod:2072
11616 msgid "\"windows\""
11617 msgstr ""
11618
11619 # type: textblock
11620 #. type: textblock
11621 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1768
11622 msgid ""
11623 "Windows does not have distributions.  This string is returned if the OS type "
11624 "is Windows."
11625 msgstr ""
11626
11627 # type: textblock
11628 #. type: textblock
11629 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:2719
11630 #: ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:1773
11631 #: ../fish/guestfish-actions.pod:1861 ../fish/guestfish-actions.pod:2086
11632 msgid ""
11633 "Future versions of libguestfs may return other strings here.  The caller "
11634 "should be prepared to handle any string."
11635 msgstr ""
11636
11637 #. type: =head2
11638 #: ../src/guestfs-actions.pod:2618
11639 msgid "guestfs_inspect_get_drive_mappings"
11640 msgstr ""
11641
11642 #. type: verbatim
11643 #: ../src/guestfs-actions.pod:2620
11644 #, no-wrap
11645 msgid ""
11646 " char **\n"
11647 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
11648 "                                     const char *root);\n"
11649 "\n"
11650 msgstr ""
11651
11652 #. type: textblock
11653 #: ../src/guestfs-actions.pod:2627 ../fish/guestfish-actions.pod:1785
11654 msgid ""
11655 "This call is useful for Windows which uses a primitive system of assigning "
11656 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
11657 "Windows Registry to find out how disks/partitions are mapped to drive "
11658 "letters, and returns a hash table as in the example below:"
11659 msgstr ""
11660
11661 #. type: verbatim
11662 #: ../src/guestfs-actions.pod:2633 ../fish/guestfish-actions.pod:1791
11663 #, no-wrap
11664 msgid ""
11665 " C      =>     /dev/vda2\n"
11666 " E      =>     /dev/vdb1\n"
11667 " F      =>     /dev/vdc1\n"
11668 "\n"
11669 msgstr ""
11670
11671 #. type: textblock
11672 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1795
11673 msgid ""
11674 "Note that keys are drive letters.  For Windows, the key is case insensitive "
11675 "and just contains the drive letter, without the customary colon separator "
11676 "character."
11677 msgstr ""
11678
11679 #. type: textblock
11680 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1799
11681 msgid ""
11682 "In future we may support other operating systems that also used drive "
11683 "letters, but the keys for those might not be case insensitive and might be "
11684 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
11685 "C<h1> etc."
11686 msgstr ""
11687
11688 #. type: textblock
11689 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
11690 msgid ""
11691 "For Windows guests, currently only hard drive mappings are returned.  "
11692 "Removable disks (eg. DVD-ROMs) are ignored."
11693 msgstr ""
11694
11695 #. type: textblock
11696 #: ../src/guestfs-actions.pod:2649 ../fish/guestfish-actions.pod:1807
11697 msgid ""
11698 "For guests that do not use drive mappings, or if the drive mappings could "
11699 "not be determined, this returns an empty hash table."
11700 msgstr ""
11701
11702 #. type: textblock
11703 #: ../src/guestfs-actions.pod:2652
11704 msgid ""
11705 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11706 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11707 msgstr ""
11708
11709 # type: textblock
11710 #. type: textblock
11711 #: ../src/guestfs-actions.pod:2656 ../src/guestfs-actions.pod:2832
11712 #: ../src/guestfs-actions.pod:3592 ../src/guestfs-actions.pod:4802
11713 #: ../src/guestfs-actions.pod:6707
11714 msgid ""
11715 "This function returns a NULL-terminated array of strings, or NULL if there "
11716 "was an error.  The array of strings will always have length C<2n+1>, where "
11717 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11718 "caller must free the strings and the array after use>."
11719 msgstr ""
11720
11721 # type: =head2
11722 #. type: =head2
11723 #: ../src/guestfs-actions.pod:2662
11724 msgid "guestfs_inspect_get_filesystems"
11725 msgstr ""
11726
11727 # type: verbatim
11728 #. type: verbatim
11729 #: ../src/guestfs-actions.pod:2664
11730 #, no-wrap
11731 msgid ""
11732 " char **\n"
11733 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11734 "                                  const char *root);\n"
11735 "\n"
11736 msgstr ""
11737
11738 # type: textblock
11739 #. type: textblock
11740 #: ../src/guestfs-actions.pod:2671 ../fish/guestfish-actions.pod:1821
11741 msgid ""
11742 "This returns a list of all the filesystems that we think are associated with "
11743 "this operating system.  This includes the root filesystem, other ordinary "
11744 "filesystems, and non-mounted devices like swap partitions."
11745 msgstr ""
11746
11747 # type: textblock
11748 #. type: textblock
11749 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
11750 msgid ""
11751 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11752 "to be shared between operating systems."
11753 msgstr ""
11754
11755 # type: textblock
11756 #. type: textblock
11757 #: ../src/guestfs-actions.pod:2679
11758 msgid ""
11759 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11760 "C<guestfs_inspect_get_mountpoints>."
11761 msgstr ""
11762
11763 #. type: =head2
11764 #: ../src/guestfs-actions.pod:2688
11765 msgid "guestfs_inspect_get_format"
11766 msgstr ""
11767
11768 #. type: verbatim
11769 #: ../src/guestfs-actions.pod:2690
11770 #, no-wrap
11771 msgid ""
11772 " char *\n"
11773 " guestfs_inspect_get_format (guestfs_h *g,\n"
11774 "                             const char *root);\n"
11775 "\n"
11776 msgstr ""
11777
11778 #. type: textblock
11779 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1839
11780 msgid ""
11781 "This returns the format of the inspected operating system.  You can use it "
11782 "to detect install images, live CDs and similar."
11783 msgstr ""
11784
11785 #. type: textblock
11786 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1842
11787 msgid "Currently defined formats are:"
11788 msgstr ""
11789
11790 #. type: =item
11791 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1846
11792 msgid "\"installed\""
11793 msgstr ""
11794
11795 #. type: textblock
11796 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1848
11797 msgid "This is an installed operating system."
11798 msgstr ""
11799
11800 #. type: =item
11801 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1850
11802 msgid "\"installer\""
11803 msgstr ""
11804
11805 #. type: textblock
11806 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1852
11807 msgid ""
11808 "The disk image being inspected is not an installed operating system, but a "
11809 "I<bootable> install disk, live CD, or similar."
11810 msgstr ""
11811
11812 #. type: textblock
11813 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
11814 msgid "The format of this disk image is not known."
11815 msgstr ""
11816
11817 # type: =head2
11818 #. type: =head2
11819 #: ../src/guestfs-actions.pod:2727
11820 msgid "guestfs_inspect_get_hostname"
11821 msgstr ""
11822
11823 # type: verbatim
11824 #. type: verbatim
11825 #: ../src/guestfs-actions.pod:2729
11826 #, no-wrap
11827 msgid ""
11828 " char *\n"
11829 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
11830 "                               const char *root);\n"
11831 "\n"
11832 msgstr ""
11833
11834 # type: textblock
11835 #. type: textblock
11836 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1873
11837 msgid ""
11838 "This function returns the hostname of the operating system as found by "
11839 "inspection of the guest's configuration files."
11840 msgstr ""
11841
11842 # type: textblock
11843 #. type: textblock
11844 #: ../src/guestfs-actions.pod:2739 ../fish/guestfish-actions.pod:1876
11845 msgid ""
11846 "If the hostname could not be determined, then the string C<unknown> is "
11847 "returned."
11848 msgstr ""
11849
11850 # type: textblock
11851 #. type: textblock
11852 #: ../src/guestfs-actions.pod:2747
11853 msgid "(Added in 1.7.9)"
11854 msgstr ""
11855
11856 # type: =head2
11857 #. type: =head2
11858 #: ../src/guestfs-actions.pod:2749
11859 msgid "guestfs_inspect_get_major_version"
11860 msgstr ""
11861
11862 # type: verbatim
11863 #. type: verbatim
11864 #: ../src/guestfs-actions.pod:2751
11865 #, no-wrap
11866 msgid ""
11867 " int\n"
11868 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11869 "                                    const char *root);\n"
11870 "\n"
11871 msgstr ""
11872
11873 # type: textblock
11874 #. type: textblock
11875 #: ../src/guestfs-actions.pod:2758 ../fish/guestfish-actions.pod:1888
11876 msgid ""
11877 "This returns the major version number of the inspected operating system."
11878 msgstr ""
11879
11880 # type: textblock
11881 #. type: textblock
11882 #: ../src/guestfs-actions.pod:2761 ../fish/guestfish-actions.pod:1891
11883 msgid ""
11884 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11885 "popular public names used by the operating system.  Notably the operating "
11886 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11887 "1).  You can find out the real versions corresponding to releases of Windows "
11888 "by consulting Wikipedia or MSDN."
11889 msgstr ""
11890
11891 # type: textblock
11892 #. type: textblock
11893 #: ../src/guestfs-actions.pod:2768 ../src/guestfs-actions.pod:2788
11894 #: ../fish/guestfish-actions.pod:1898 ../fish/guestfish-actions.pod:1912
11895 msgid "If the version could not be determined, then C<0> is returned."
11896 msgstr ""
11897
11898 # type: =head2
11899 #. type: =head2
11900 #: ../src/guestfs-actions.pod:2776
11901 msgid "guestfs_inspect_get_minor_version"
11902 msgstr ""
11903
11904 # type: verbatim
11905 #. type: verbatim
11906 #: ../src/guestfs-actions.pod:2778
11907 #, no-wrap
11908 msgid ""
11909 " int\n"
11910 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11911 "                                    const char *root);\n"
11912 "\n"
11913 msgstr ""
11914
11915 # type: textblock
11916 #. type: textblock
11917 #: ../src/guestfs-actions.pod:2785 ../fish/guestfish-actions.pod:1909
11918 msgid ""
11919 "This returns the minor version number of the inspected operating system."
11920 msgstr ""
11921
11922 # type: textblock
11923 #. type: textblock
11924 #: ../src/guestfs-actions.pod:2790
11925 msgid ""
11926 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11927 "C<guestfs_inspect_get_major_version>."
11928 msgstr ""
11929
11930 # type: =head2
11931 #. type: =head2
11932 #: ../src/guestfs-actions.pod:2797
11933 msgid "guestfs_inspect_get_mountpoints"
11934 msgstr ""
11935
11936 # type: verbatim
11937 #. type: verbatim
11938 #: ../src/guestfs-actions.pod:2799
11939 #, no-wrap
11940 msgid ""
11941 " char **\n"
11942 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11943 "                                  const char *root);\n"
11944 "\n"
11945 msgstr ""
11946
11947 #. type: textblock
11948 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1924
11949 msgid ""
11950 "This returns a hash of where we think the filesystems associated with this "
11951 "operating system should be mounted.  Callers should note that this is at "
11952 "best an educated guess made by reading configuration files such as C</etc/"
11953 "fstab>.  I<In particular note> that this may return filesystems which are "
11954 "non-existent or not mountable and callers should be prepared to handle or "
11955 "ignore failures if they try to mount them."
11956 msgstr ""
11957
11958 # type: textblock
11959 #. type: textblock
11960 #: ../src/guestfs-actions.pod:2815 ../fish/guestfish-actions.pod:1933
11961 msgid ""
11962 "Each element in the returned hashtable has a key which is the path of the "
11963 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11964 "mounted there (eg. C</dev/sda1>)."
11965 msgstr ""
11966
11967 # type: textblock
11968 #. type: textblock
11969 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
11970 msgid ""
11971 "Non-mounted devices such as swap devices are I<not> returned in this list."
11972 msgstr ""
11973
11974 #. type: textblock
11975 #: ../src/guestfs-actions.pod:2823
11976 msgid ""
11977 "For operating systems like Windows which still use drive letters, this call "
11978 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11979 "information about the mapping of drive letters to partitions, see "
11980 "C<guestfs_inspect_get_drive_mappings>."
11981 msgstr ""
11982
11983 # type: textblock
11984 #. type: textblock
11985 #: ../src/guestfs-actions.pod:2829
11986 msgid ""
11987 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11988 "C<guestfs_inspect_get_filesystems>."
11989 msgstr ""
11990
11991 # type: =head2
11992 #. type: =head2
11993 #: ../src/guestfs-actions.pod:2840
11994 msgid "guestfs_inspect_get_package_format"
11995 msgstr ""
11996
11997 # type: verbatim
11998 #. type: verbatim
11999 #: ../src/guestfs-actions.pod:2842
12000 #, no-wrap
12001 msgid ""
12002 " char *\n"
12003 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
12004 "                                     const char *root);\n"
12005 "\n"
12006 msgstr ""
12007
12008 # type: textblock
12009 #. type: textblock
12010 #: ../src/guestfs-actions.pod:2849
12011 msgid ""
12012 "This function and C<guestfs_inspect_get_package_management> return the "
12013 "package format and package management tool used by the inspected operating "
12014 "system.  For example for Fedora these functions would return C<rpm> (package "
12015 "format) and C<yum> (package management)."
12016 msgstr ""
12017
12018 # type: textblock
12019 #. type: textblock
12020 #: ../src/guestfs-actions.pod:2855 ../fish/guestfish-actions.pod:1963
12021 msgid ""
12022 "This returns the string C<unknown> if we could not determine the package "
12023 "format I<or> if the operating system does not have a real packaging system "
12024 "(eg. Windows)."
12025 msgstr ""
12026
12027 # type: textblock
12028 #. type: textblock
12029 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1967
12030 msgid ""
12031 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
12032 "Future versions of libguestfs may return other strings."
12033 msgstr ""
12034
12035 # type: textblock
12036 #. type: textblock
12037 #: ../src/guestfs-actions.pod:2867 ../src/guestfs-actions.pod:2898
12038 msgid "(Added in 1.7.5)"
12039 msgstr ""
12040
12041 # type: =head2
12042 #. type: =head2
12043 #: ../src/guestfs-actions.pod:2869
12044 msgid "guestfs_inspect_get_package_management"
12045 msgstr ""
12046
12047 # type: verbatim
12048 #. type: verbatim
12049 #: ../src/guestfs-actions.pod:2871
12050 #, no-wrap
12051 msgid ""
12052 " char *\n"
12053 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
12054 "                                         const char *root);\n"
12055 "\n"
12056 msgstr ""
12057
12058 # type: textblock
12059 #. type: textblock
12060 #: ../src/guestfs-actions.pod:2878
12061 msgid ""
12062 "C<guestfs_inspect_get_package_format> and this function return the package "
12063 "format and package management tool used by the inspected operating system.  "
12064 "For example for Fedora these functions would return C<rpm> (package format) "
12065 "and C<yum> (package management)."
12066 msgstr ""
12067
12068 # type: textblock
12069 #. type: textblock
12070 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1985
12071 msgid ""
12072 "This returns the string C<unknown> if we could not determine the package "
12073 "management tool I<or> if the operating system does not have a real packaging "
12074 "system (eg. Windows)."
12075 msgstr ""
12076
12077 # type: textblock
12078 #. type: textblock
12079 #: ../src/guestfs-actions.pod:2888 ../fish/guestfish-actions.pod:1989
12080 msgid ""
12081 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
12082 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
12083 "libguestfs may return other strings."
12084 msgstr ""
12085
12086 # type: =head2
12087 #. type: =head2
12088 #: ../src/guestfs-actions.pod:2900
12089 msgid "guestfs_inspect_get_product_name"
12090 msgstr ""
12091
12092 # type: verbatim
12093 #. type: verbatim
12094 #: ../src/guestfs-actions.pod:2902
12095 #, no-wrap
12096 msgid ""
12097 " char *\n"
12098 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
12099 "                                   const char *root);\n"
12100 "\n"
12101 msgstr ""
12102
12103 # type: textblock
12104 #. type: textblock
12105 #: ../src/guestfs-actions.pod:2909 ../fish/guestfish-actions.pod:2003
12106 msgid ""
12107 "This returns the product name of the inspected operating system.  The "
12108 "product name is generally some freeform string which can be displayed to the "
12109 "user, but should not be parsed by programs."
12110 msgstr ""
12111
12112 # type: textblock
12113 #. type: textblock
12114 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
12115 msgid ""
12116 "If the product name could not be determined, then the string C<unknown> is "
12117 "returned."
12118 msgstr ""
12119
12120 #. type: =head2
12121 #: ../src/guestfs-actions.pod:2924
12122 msgid "guestfs_inspect_get_product_variant"
12123 msgstr ""
12124
12125 #. type: verbatim
12126 #: ../src/guestfs-actions.pod:2926
12127 #, no-wrap
12128 msgid ""
12129 " char *\n"
12130 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
12131 "                                      const char *root);\n"
12132 "\n"
12133 msgstr ""
12134
12135 #. type: textblock
12136 #: ../src/guestfs-actions.pod:2933 ../fish/guestfish-actions.pod:2020
12137 msgid "This returns the product variant of the inspected operating system."
12138 msgstr ""
12139
12140 #. type: textblock
12141 #: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2023
12142 msgid ""
12143 "For Windows guests, this returns the contents of the Registry key C<HKLM"
12144 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
12145 "is usually a string such as C<Client> or C<Server> (other values are "
12146 "possible).  This can be used to distinguish consumer and enterprise versions "
12147 "of Windows that have the same version number (for example, Windows 7 and "
12148 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
12149 "the latter is C<Server>)."
12150 msgstr ""
12151
12152 #. type: textblock
12153 #: ../src/guestfs-actions.pod:2945 ../fish/guestfish-actions.pod:2032
12154 msgid ""
12155 "For enterprise Linux guests, in future we intend this to return the product "
12156 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
12157 "implemented at present."
12158 msgstr ""
12159
12160 #. type: textblock
12161 #: ../src/guestfs-actions.pod:2949 ../fish/guestfish-actions.pod:2036
12162 msgid ""
12163 "If the product variant could not be determined, then the string C<unknown> "
12164 "is returned."
12165 msgstr ""
12166
12167 #. type: textblock
12168 #: ../src/guestfs-actions.pod:2952
12169 msgid ""
12170 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
12171 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
12172 msgstr ""
12173
12174 # type: =head2
12175 #. type: =head2
12176 #: ../src/guestfs-actions.pod:2959
12177 msgid "guestfs_inspect_get_roots"
12178 msgstr ""
12179
12180 # type: verbatim
12181 #. type: verbatim
12182 #: ../src/guestfs-actions.pod:2961
12183 #, no-wrap
12184 msgid ""
12185 " char **\n"
12186 " guestfs_inspect_get_roots (guestfs_h *g);\n"
12187 "\n"
12188 msgstr ""
12189
12190 # type: textblock
12191 #. type: textblock
12192 #: ../src/guestfs-actions.pod:2964
12193 msgid ""
12194 "This function is a convenient way to get the list of root devices, as "
12195 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
12196 "the whole inspection process."
12197 msgstr ""
12198
12199 # type: textblock
12200 #. type: textblock
12201 #: ../src/guestfs-actions.pod:2968
12202 msgid ""
12203 "This returns an empty list if either no root devices were found or the "
12204 "caller has not called C<guestfs_inspect_os>."
12205 msgstr ""
12206
12207 # type: textblock
12208 #. type: textblock
12209 #: ../src/guestfs-actions.pod:2977
12210 msgid "(Added in 1.7.3)"
12211 msgstr ""
12212
12213 # type: =head2
12214 #. type: =head2
12215 #: ../src/guestfs-actions.pod:2979
12216 msgid "guestfs_inspect_get_type"
12217 msgstr ""
12218
12219 # type: verbatim
12220 #. type: verbatim
12221 #: ../src/guestfs-actions.pod:2981
12222 #, no-wrap
12223 msgid ""
12224 " char *\n"
12225 " guestfs_inspect_get_type (guestfs_h *g,\n"
12226 "                           const char *root);\n"
12227 "\n"
12228 msgstr ""
12229
12230 # type: textblock
12231 #. type: textblock
12232 #: ../src/guestfs-actions.pod:2988 ../fish/guestfish-actions.pod:2063
12233 msgid ""
12234 "This returns the type of the inspected operating system.  Currently defined "
12235 "types are:"
12236 msgstr ""
12237
12238 # type: =item
12239 #. type: =item
12240 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
12241 msgid "\"linux\""
12242 msgstr ""
12243
12244 # type: textblock
12245 #. type: textblock
12246 #: ../src/guestfs-actions.pod:2995 ../fish/guestfish-actions.pod:2070
12247 msgid "Any Linux-based operating system."
12248 msgstr ""
12249
12250 # type: textblock
12251 #. type: textblock
12252 #: ../src/guestfs-actions.pod:2999 ../fish/guestfish-actions.pod:2074
12253 msgid "Any Microsoft Windows operating system."
12254 msgstr ""
12255
12256 # type: =item
12257 #. type: =item
12258 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2076
12259 msgid "\"freebsd\""
12260 msgstr ""
12261
12262 # type: textblock
12263 #. type: textblock
12264 #: ../src/guestfs-actions.pod:3003 ../fish/guestfish-actions.pod:2078
12265 msgid "FreeBSD."
12266 msgstr ""
12267
12268 # type: textblock
12269 #. type: textblock
12270 #: ../src/guestfs-actions.pod:3007 ../fish/guestfish-actions.pod:2082
12271 msgid "The operating system type could not be determined."
12272 msgstr ""
12273
12274 #. type: =head2
12275 #: ../src/guestfs-actions.pod:3021
12276 msgid "guestfs_inspect_get_windows_current_control_set"
12277 msgstr ""
12278
12279 #. type: verbatim
12280 #: ../src/guestfs-actions.pod:3023
12281 #, no-wrap
12282 msgid ""
12283 " char *\n"
12284 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
12285 "                                                  const char *root);\n"
12286 "\n"
12287 msgstr ""
12288
12289 #. type: textblock
12290 #: ../src/guestfs-actions.pod:3030 ../fish/guestfish-actions.pod:2098
12291 msgid ""
12292 "This returns the Windows CurrentControlSet of the inspected guest.  The "
12293 "CurrentControlSet is a registry key name such as C<ControlSet001>."
12294 msgstr ""
12295
12296 #. type: textblock
12297 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2101
12298 msgid ""
12299 "This call assumes that the guest is Windows and that the Registry could be "
12300 "examined by inspection.  If this is not the case then an error is returned."
12301 msgstr ""
12302
12303 # type: =head2
12304 #. type: =head2
12305 #: ../src/guestfs-actions.pod:3042
12306 msgid "guestfs_inspect_get_windows_systemroot"
12307 msgstr ""
12308
12309 # type: verbatim
12310 #. type: verbatim
12311 #: ../src/guestfs-actions.pod:3044
12312 #, no-wrap
12313 msgid ""
12314 " char *\n"
12315 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
12316 "                                         const char *root);\n"
12317 "\n"
12318 msgstr ""
12319
12320 # type: textblock
12321 #. type: textblock
12322 #: ../src/guestfs-actions.pod:3051 ../fish/guestfish-actions.pod:2114
12323 msgid ""
12324 "This returns the Windows systemroot of the inspected guest.  The systemroot "
12325 "is a directory path such as C</WINDOWS>."
12326 msgstr ""
12327
12328 # type: textblock
12329 #. type: textblock
12330 #: ../src/guestfs-actions.pod:3054 ../fish/guestfish-actions.pod:2117
12331 msgid ""
12332 "This call assumes that the guest is Windows and that the systemroot could be "
12333 "determined by inspection.  If this is not the case then an error is returned."
12334 msgstr ""
12335
12336 # type: textblock
12337 #. type: textblock
12338 #: ../src/guestfs-actions.pod:3063
12339 msgid "(Added in 1.5.25)"
12340 msgstr ""
12341
12342 #. type: =head2
12343 #: ../src/guestfs-actions.pod:3065
12344 msgid "guestfs_inspect_is_live"
12345 msgstr ""
12346
12347 #. type: verbatim
12348 #: ../src/guestfs-actions.pod:3067
12349 #, no-wrap
12350 msgid ""
12351 " int\n"
12352 " guestfs_inspect_is_live (guestfs_h *g,\n"
12353 "                          const char *root);\n"
12354 "\n"
12355 msgstr ""
12356
12357 #. type: textblock
12358 #: ../src/guestfs-actions.pod:3074
12359 msgid ""
12360 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12361 "disk), then this returns true if a live image was detected on the disk."
12362 msgstr ""
12363
12364 #. type: =head2
12365 #: ../src/guestfs-actions.pod:3082
12366 msgid "guestfs_inspect_is_multipart"
12367 msgstr ""
12368
12369 #. type: verbatim
12370 #: ../src/guestfs-actions.pod:3084
12371 #, no-wrap
12372 msgid ""
12373 " int\n"
12374 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
12375 "                               const char *root);\n"
12376 "\n"
12377 msgstr ""
12378
12379 #. type: textblock
12380 #: ../src/guestfs-actions.pod:3091
12381 msgid ""
12382 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12383 "disk), then this returns true if the disk is part of a set."
12384 msgstr ""
12385
12386 #. type: =head2
12387 #: ../src/guestfs-actions.pod:3099
12388 msgid "guestfs_inspect_is_netinst"
12389 msgstr ""
12390
12391 #. type: verbatim
12392 #: ../src/guestfs-actions.pod:3101
12393 #, no-wrap
12394 msgid ""
12395 " int\n"
12396 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
12397 "                             const char *root);\n"
12398 "\n"
12399 msgstr ""
12400
12401 #. type: textblock
12402 #: ../src/guestfs-actions.pod:3108
12403 msgid ""
12404 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
12405 "disk), then this returns true if the disk is a network installer, ie. not a "
12406 "self-contained install CD but one which is likely to require network access "
12407 "to complete the install."
12408 msgstr ""
12409
12410 # type: =head2
12411 #. type: =head2
12412 #: ../src/guestfs-actions.pod:3118
12413 msgid "guestfs_inspect_list_applications"
12414 msgstr ""
12415
12416 # type: verbatim
12417 #. type: verbatim
12418 #: ../src/guestfs-actions.pod:3120
12419 #, no-wrap
12420 msgid ""
12421 " struct guestfs_application_list *\n"
12422 " guestfs_inspect_list_applications (guestfs_h *g,\n"
12423 "                                    const char *root);\n"
12424 "\n"
12425 msgstr ""
12426
12427 # type: textblock
12428 #. type: textblock
12429 #: ../src/guestfs-actions.pod:3127 ../fish/guestfish-actions.pod:2171
12430 msgid "Return the list of applications installed in the operating system."
12431 msgstr ""
12432
12433 # type: textblock
12434 #. type: textblock
12435 #: ../src/guestfs-actions.pod:3129
12436 msgid ""
12437 "I<Note:> This call works differently from other parts of the inspection "
12438 "API.  You have to call C<guestfs_inspect_os>, then "
12439 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
12440 "this.  Listing applications is a significantly more difficult operation "
12441 "which requires access to the full filesystem.  Also note that unlike the "
12442 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
12443 "the libguestfs handle, this call actually reads parts of the mounted "
12444 "filesystems during the call."
12445 msgstr ""
12446
12447 # type: textblock
12448 #. type: textblock
12449 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2183
12450 msgid ""
12451 "This returns an empty list if the inspection code was not able to determine "
12452 "the list of applications."
12453 msgstr ""
12454
12455 # type: textblock
12456 #. type: textblock
12457 #: ../src/guestfs-actions.pod:3142 ../fish/guestfish-actions.pod:2186
12458 msgid "The application structure contains the following fields:"
12459 msgstr ""
12460
12461 # type: =item
12462 #. type: =item
12463 #: ../src/guestfs-actions.pod:3146 ../fish/guestfish-actions.pod:2190
12464 msgid "C<app_name>"
12465 msgstr ""
12466
12467 # type: textblock
12468 #. type: textblock
12469 #: ../src/guestfs-actions.pod:3148 ../fish/guestfish-actions.pod:2192
12470 msgid ""
12471 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
12472 "guests, this is the package name."
12473 msgstr ""
12474
12475 # type: =item
12476 #. type: =item
12477 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
12478 msgid "C<app_display_name>"
12479 msgstr ""
12480
12481 # type: textblock
12482 #. type: textblock
12483 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
12484 msgid ""
12485 "The display name of the application, sometimes localized to the install "
12486 "language of the guest operating system."
12487 msgstr ""
12488
12489 # type: textblock
12490 #. type: textblock
12491 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
12492 msgid ""
12493 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
12494 "to display something can use C<app_name> instead."
12495 msgstr ""
12496
12497 # type: =item
12498 #. type: =item
12499 #: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2203
12500 msgid "C<app_epoch>"
12501 msgstr ""
12502
12503 # type: textblock
12504 #. type: textblock
12505 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
12506 msgid ""
12507 "For package managers which use epochs, this contains the epoch of the "
12508 "package (an integer).  If unavailable, this is returned as C<0>."
12509 msgstr ""
12510
12511 # type: =item
12512 #. type: =item
12513 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
12514 msgid "C<app_version>"
12515 msgstr ""
12516
12517 # type: textblock
12518 #. type: textblock
12519 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
12520 msgid ""
12521 "The version string of the application or package.  If unavailable this is "
12522 "returned as an empty string C<\"\">."
12523 msgstr ""
12524
12525 # type: =item
12526 #. type: =item
12527 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
12528 msgid "C<app_release>"
12529 msgstr ""
12530
12531 # type: textblock
12532 #. type: textblock
12533 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
12534 msgid ""
12535 "The release string of the application or package, for package managers that "
12536 "use this.  If unavailable this is returned as an empty string C<\"\">."
12537 msgstr ""
12538
12539 # type: =item
12540 #. type: =item
12541 #: ../src/guestfs-actions.pod:3175 ../fish/guestfish-actions.pod:2219
12542 msgid "C<app_install_path>"
12543 msgstr ""
12544
12545 # type: textblock
12546 #. type: textblock
12547 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2221
12548 msgid ""
12549 "The installation path of the application (on operating systems such as "
12550 "Windows which use installation paths).  This path is in the format used by "
12551 "the guest operating system, it is not a libguestfs path."
12552 msgstr ""
12553
12554 # type: textblock
12555 #. type: textblock
12556 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
12557 msgid "If unavailable this is returned as an empty string C<\"\">."
12558 msgstr ""
12559
12560 # type: =item
12561 #. type: =item
12562 #: ../src/guestfs-actions.pod:3184 ../fish/guestfish-actions.pod:2228
12563 msgid "C<app_trans_path>"
12564 msgstr ""
12565
12566 # type: textblock
12567 #. type: textblock
12568 #: ../src/guestfs-actions.pod:3186 ../fish/guestfish-actions.pod:2230
12569 msgid ""
12570 "The install path translated into a libguestfs path.  If unavailable this is "
12571 "returned as an empty string C<\"\">."
12572 msgstr ""
12573
12574 # type: =item
12575 #. type: =item
12576 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
12577 msgid "C<app_publisher>"
12578 msgstr ""
12579
12580 # type: textblock
12581 #. type: textblock
12582 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
12583 msgid ""
12584 "The name of the publisher of the application, for package managers that use "
12585 "this.  If unavailable this is returned as an empty string C<\"\">."
12586 msgstr ""
12587
12588 # type: =item
12589 #. type: =item
12590 #: ../src/guestfs-actions.pod:3195 ../fish/guestfish-actions.pod:2239
12591 msgid "C<app_url>"
12592 msgstr ""
12593
12594 # type: textblock
12595 #. type: textblock
12596 #: ../src/guestfs-actions.pod:3197 ../fish/guestfish-actions.pod:2241
12597 msgid ""
12598 "The URL (eg. upstream URL) of the application.  If unavailable this is "
12599 "returned as an empty string C<\"\">."
12600 msgstr ""
12601
12602 # type: =item
12603 #. type: =item
12604 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
12605 msgid "C<app_source_package>"
12606 msgstr ""
12607
12608 # type: textblock
12609 #. type: textblock
12610 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
12611 msgid ""
12612 "For packaging systems which support this, the name of the source package.  "
12613 "If unavailable this is returned as an empty string C<\"\">."
12614 msgstr ""
12615
12616 # type: =item
12617 #. type: =item
12618 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
12619 msgid "C<app_summary>"
12620 msgstr ""
12621
12622 # type: textblock
12623 #. type: textblock
12624 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
12625 msgid ""
12626 "A short (usually one line) description of the application or package.  If "
12627 "unavailable this is returned as an empty string C<\"\">."
12628 msgstr ""
12629
12630 # type: =item
12631 #. type: =item
12632 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
12633 msgid "C<app_description>"
12634 msgstr ""
12635
12636 # type: textblock
12637 #. type: textblock
12638 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
12639 msgid ""
12640 "A longer description of the application or package.  If unavailable this is "
12641 "returned as an empty string C<\"\">."
12642 msgstr ""
12643
12644 # type: textblock
12645 #. type: textblock
12646 #: ../src/guestfs-actions.pod:3219
12647 msgid ""
12648 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12649 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
12650 "after use>."
12651 msgstr ""
12652
12653 # type: textblock
12654 #. type: textblock
12655 #: ../src/guestfs-actions.pod:3223
12656 msgid "(Added in 1.7.8)"
12657 msgstr ""
12658
12659 # type: =head2
12660 #. type: =head2
12661 #: ../src/guestfs-actions.pod:3225
12662 msgid "guestfs_inspect_os"
12663 msgstr ""
12664
12665 # type: verbatim
12666 #. type: verbatim
12667 #: ../src/guestfs-actions.pod:3227
12668 #, no-wrap
12669 msgid ""
12670 " char **\n"
12671 " guestfs_inspect_os (guestfs_h *g);\n"
12672 "\n"
12673 msgstr ""
12674
12675 # type: textblock
12676 #. type: textblock
12677 #: ../src/guestfs-actions.pod:3230 ../fish/guestfish-actions.pod:2267
12678 msgid ""
12679 "This function uses other libguestfs functions and certain heuristics to "
12680 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12681 "for operating systems."
12682 msgstr ""
12683
12684 # type: textblock
12685 #. type: textblock
12686 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2271
12687 msgid "The list returned is empty if no operating systems were found."
12688 msgstr ""
12689
12690 # type: textblock
12691 #. type: textblock
12692 #: ../src/guestfs-actions.pod:3236 ../fish/guestfish-actions.pod:2273
12693 msgid ""
12694 "If one operating system was found, then this returns a list with a single "
12695 "element, which is the name of the root filesystem of this operating system.  "
12696 "It is also possible for this function to return a list containing more than "
12697 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12698 "element being the root filesystem of one of the operating systems."
12699 msgstr ""
12700
12701 # type: textblock
12702 #. type: textblock
12703 #: ../src/guestfs-actions.pod:3243
12704 msgid ""
12705 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12706 "functions in order to query further information about each operating system, "
12707 "such as the name and version."
12708 msgstr ""
12709
12710 # type: textblock
12711 #. type: textblock
12712 #: ../src/guestfs-actions.pod:3248
12713 msgid ""
12714 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12715 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12716 "the contents.  This should be called with no disks currently mounted.  The "
12717 "function may also use Augeas, so any existing Augeas handle will be closed."
12718 msgstr ""
12719
12720 # type: textblock
12721 #. type: textblock
12722 #: ../src/guestfs-actions.pod:3254 ../fish/guestfish-actions.pod:2291
12723 msgid ""
12724 "This function cannot decrypt encrypted disks.  The caller must do that first "
12725 "(supplying the necessary keys) if the disk is encrypted."
12726 msgstr ""
12727
12728 # type: textblock
12729 #. type: textblock
12730 #: ../src/guestfs-actions.pod:3260 ../src/guestfs-actions.pod:3550
12731 #: ../src/guestfs-actions.pod:3612
12732 msgid "See also C<guestfs_list_filesystems>."
12733 msgstr ""
12734
12735 # type: =head2
12736 #. type: =head2
12737 #: ../src/guestfs-actions.pod:3268
12738 msgid "guestfs_is_blockdev"
12739 msgstr ""
12740
12741 # type: verbatim
12742 #. type: verbatim
12743 #: ../src/guestfs-actions.pod:3270
12744 #, no-wrap
12745 msgid ""
12746 " int\n"
12747 " guestfs_is_blockdev (guestfs_h *g,\n"
12748 "                      const char *path);\n"
12749 "\n"
12750 msgstr ""
12751
12752 # type: textblock
12753 #. type: textblock
12754 #: ../src/guestfs-actions.pod:3274 ../fish/guestfish-actions.pod:2303
12755 msgid ""
12756 "This returns C<true> if and only if there is a block device with the given "
12757 "C<path> name."
12758 msgstr ""
12759
12760 # type: textblock
12761 #. type: textblock
12762 #: ../src/guestfs-actions.pod:3277 ../src/guestfs-actions.pod:3306
12763 #: ../src/guestfs-actions.pod:3336 ../src/guestfs-actions.pod:3351
12764 #: ../src/guestfs-actions.pod:3367 ../src/guestfs-actions.pod:3423
12765 #: ../src/guestfs-actions.pod:3438
12766 msgid "See also C<guestfs_stat>."
12767 msgstr ""
12768
12769 # type: textblock
12770 #. type: textblock
12771 #: ../src/guestfs-actions.pod:3281 ../src/guestfs-actions.pod:3310
12772 #: ../src/guestfs-actions.pod:3355 ../src/guestfs-actions.pod:3427
12773 #: ../src/guestfs-actions.pod:3442
12774 msgid "(Added in 1.5.10)"
12775 msgstr ""
12776
12777 # type: =head2
12778 #. type: =head2
12779 #: ../src/guestfs-actions.pod:3283
12780 msgid "guestfs_is_busy"
12781 msgstr ""
12782
12783 # type: verbatim
12784 #. type: verbatim
12785 #: ../src/guestfs-actions.pod:3285
12786 #, no-wrap
12787 msgid ""
12788 " int\n"
12789 " guestfs_is_busy (guestfs_h *g);\n"
12790 "\n"
12791 msgstr ""
12792
12793 # type: textblock
12794 #. type: textblock
12795 #: ../src/guestfs-actions.pod:3288 ../fish/guestfish-actions.pod:2312
12796 msgid ""
12797 "This returns true iff this handle is busy processing a command (in the "
12798 "C<BUSY> state)."
12799 msgstr ""
12800
12801 # type: =head2
12802 #. type: =head2
12803 #: ../src/guestfs-actions.pod:3297
12804 msgid "guestfs_is_chardev"
12805 msgstr ""
12806
12807 # type: verbatim
12808 #. type: verbatim
12809 #: ../src/guestfs-actions.pod:3299
12810 #, no-wrap
12811 msgid ""
12812 " int\n"
12813 " guestfs_is_chardev (guestfs_h *g,\n"
12814 "                     const char *path);\n"
12815 "\n"
12816 msgstr ""
12817
12818 # type: textblock
12819 #. type: textblock
12820 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2321
12821 msgid ""
12822 "This returns C<true> if and only if there is a character device with the "
12823 "given C<path> name."
12824 msgstr ""
12825
12826 # type: =head2
12827 #. type: =head2
12828 #: ../src/guestfs-actions.pod:3312
12829 msgid "guestfs_is_config"
12830 msgstr ""
12831
12832 # type: verbatim
12833 #. type: verbatim
12834 #: ../src/guestfs-actions.pod:3314
12835 #, no-wrap
12836 msgid ""
12837 " int\n"
12838 " guestfs_is_config (guestfs_h *g);\n"
12839 "\n"
12840 msgstr ""
12841
12842 # type: textblock
12843 #. type: textblock
12844 #: ../src/guestfs-actions.pod:3317 ../fish/guestfish-actions.pod:2330
12845 msgid ""
12846 "This returns true iff this handle is being configured (in the C<CONFIG> "
12847 "state)."
12848 msgstr ""
12849
12850 # type: =head2
12851 #. type: =head2
12852 #: ../src/guestfs-actions.pod:3326
12853 msgid "guestfs_is_dir"
12854 msgstr ""
12855
12856 # type: verbatim
12857 #. type: verbatim
12858 #: ../src/guestfs-actions.pod:3328
12859 #, no-wrap
12860 msgid ""
12861 " int\n"
12862 " guestfs_is_dir (guestfs_h *g,\n"
12863 "                 const char *path);\n"
12864 "\n"
12865 msgstr ""
12866
12867 # type: textblock
12868 #. type: textblock
12869 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2339
12870 msgid ""
12871 "This returns C<true> if and only if there is a directory with the given "
12872 "C<path> name.  Note that it returns false for other objects like files."
12873 msgstr ""
12874
12875 # type: =head2
12876 #. type: =head2
12877 #: ../src/guestfs-actions.pod:3342
12878 msgid "guestfs_is_fifo"
12879 msgstr ""
12880
12881 # type: verbatim
12882 #. type: verbatim
12883 #: ../src/guestfs-actions.pod:3344
12884 #, no-wrap
12885 msgid ""
12886 " int\n"
12887 " guestfs_is_fifo (guestfs_h *g,\n"
12888 "                  const char *path);\n"
12889 "\n"
12890 msgstr ""
12891
12892 # type: textblock
12893 #. type: textblock
12894 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2349
12895 msgid ""
12896 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12897 "given C<path> name."
12898 msgstr ""
12899
12900 # type: =head2
12901 #. type: =head2
12902 #: ../src/guestfs-actions.pod:3357
12903 msgid "guestfs_is_file"
12904 msgstr ""
12905
12906 # type: verbatim
12907 #. type: verbatim
12908 #: ../src/guestfs-actions.pod:3359
12909 #, no-wrap
12910 msgid ""
12911 " int\n"
12912 " guestfs_is_file (guestfs_h *g,\n"
12913 "                  const char *path);\n"
12914 "\n"
12915 msgstr ""
12916
12917 # type: textblock
12918 #. type: textblock
12919 #: ../src/guestfs-actions.pod:3363 ../fish/guestfish-actions.pod:2358
12920 msgid ""
12921 "This returns C<true> if and only if there is a regular file with the given "
12922 "C<path> name.  Note that it returns false for other objects like directories."
12923 msgstr ""
12924
12925 # type: =head2
12926 #. type: =head2
12927 #: ../src/guestfs-actions.pod:3373
12928 msgid "guestfs_is_launching"
12929 msgstr ""
12930
12931 # type: verbatim
12932 #. type: verbatim
12933 #: ../src/guestfs-actions.pod:3375
12934 #, no-wrap
12935 msgid ""
12936 " int\n"
12937 " guestfs_is_launching (guestfs_h *g);\n"
12938 "\n"
12939 msgstr ""
12940
12941 # type: textblock
12942 #. type: textblock
12943 #: ../src/guestfs-actions.pod:3378 ../fish/guestfish-actions.pod:2368
12944 msgid ""
12945 "This returns true iff this handle is launching the subprocess (in the "
12946 "C<LAUNCHING> state)."
12947 msgstr ""
12948
12949 # type: =head2
12950 #. type: =head2
12951 #: ../src/guestfs-actions.pod:3387
12952 msgid "guestfs_is_lv"
12953 msgstr ""
12954
12955 # type: verbatim
12956 #. type: verbatim
12957 #: ../src/guestfs-actions.pod:3389
12958 #, no-wrap
12959 msgid ""
12960 " int\n"
12961 " guestfs_is_lv (guestfs_h *g,\n"
12962 "                const char *device);\n"
12963 "\n"
12964 msgstr ""
12965
12966 # type: textblock
12967 #. type: textblock
12968 #: ../src/guestfs-actions.pod:3393 ../fish/guestfish-actions.pod:2377
12969 msgid ""
12970 "This command tests whether C<device> is a logical volume, and returns true "
12971 "iff this is the case."
12972 msgstr ""
12973
12974 # type: =head2
12975 #. type: =head2
12976 #: ../src/guestfs-actions.pod:3400
12977 msgid "guestfs_is_ready"
12978 msgstr ""
12979
12980 # type: verbatim
12981 #. type: verbatim
12982 #: ../src/guestfs-actions.pod:3402
12983 #, no-wrap
12984 msgid ""
12985 " int\n"
12986 " guestfs_is_ready (guestfs_h *g);\n"
12987 "\n"
12988 msgstr ""
12989
12990 # type: textblock
12991 #. type: textblock
12992 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2384
12993 msgid ""
12994 "This returns true iff this handle is ready to accept commands (in the "
12995 "C<READY> state)."
12996 msgstr ""
12997
12998 # type: =head2
12999 #. type: =head2
13000 #: ../src/guestfs-actions.pod:3414
13001 msgid "guestfs_is_socket"
13002 msgstr ""
13003
13004 # type: verbatim
13005 #. type: verbatim
13006 #: ../src/guestfs-actions.pod:3416
13007 #, no-wrap
13008 msgid ""
13009 " int\n"
13010 " guestfs_is_socket (guestfs_h *g,\n"
13011 "                    const char *path);\n"
13012 "\n"
13013 msgstr ""
13014
13015 # type: textblock
13016 #. type: textblock
13017 #: ../src/guestfs-actions.pod:3420 ../fish/guestfish-actions.pod:2393
13018 msgid ""
13019 "This returns C<true> if and only if there is a Unix domain socket with the "
13020 "given C<path> name."
13021 msgstr ""
13022
13023 # type: =head2
13024 #. type: =head2
13025 #: ../src/guestfs-actions.pod:3429
13026 msgid "guestfs_is_symlink"
13027 msgstr ""
13028
13029 # type: verbatim
13030 #. type: verbatim
13031 #: ../src/guestfs-actions.pod:3431
13032 #, no-wrap
13033 msgid ""
13034 " int\n"
13035 " guestfs_is_symlink (guestfs_h *g,\n"
13036 "                     const char *path);\n"
13037 "\n"
13038 msgstr ""
13039
13040 # type: textblock
13041 #. type: textblock
13042 #: ../src/guestfs-actions.pod:3435 ../fish/guestfish-actions.pod:2402
13043 msgid ""
13044 "This returns C<true> if and only if there is a symbolic link with the given "
13045 "C<path> name."
13046 msgstr ""
13047
13048 # type: =head2
13049 #. type: =head2
13050 #: ../src/guestfs-actions.pod:3444
13051 msgid "guestfs_kill_subprocess"
13052 msgstr ""
13053
13054 # type: verbatim
13055 #. type: verbatim
13056 #: ../src/guestfs-actions.pod:3446
13057 #, no-wrap
13058 msgid ""
13059 " int\n"
13060 " guestfs_kill_subprocess (guestfs_h *g);\n"
13061 "\n"
13062 msgstr ""
13063
13064 # type: textblock
13065 #. type: textblock
13066 #: ../src/guestfs-actions.pod:3449 ../fish/guestfish-actions.pod:2411
13067 msgid "This kills the qemu subprocess.  You should never need to call this."
13068 msgstr ""
13069
13070 # type: =head2
13071 #. type: =head2
13072 #: ../src/guestfs-actions.pod:3455
13073 msgid "guestfs_launch"
13074 msgstr ""
13075
13076 # type: verbatim
13077 #. type: verbatim
13078 #: ../src/guestfs-actions.pod:3457
13079 #, no-wrap
13080 msgid ""
13081 " int\n"
13082 " guestfs_launch (guestfs_h *g);\n"
13083 "\n"
13084 msgstr ""
13085
13086 # type: textblock
13087 #. type: textblock
13088 #: ../src/guestfs-actions.pod:3460 ../fish/guestfish-actions.pod:2419
13089 msgid ""
13090 "Internally libguestfs is implemented by running a virtual machine using "
13091 "L<qemu(1)>."
13092 msgstr ""
13093
13094 # type: textblock
13095 #. type: textblock
13096 #: ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:2422
13097 msgid ""
13098 "You should call this after configuring the handle (eg. adding drives) but "
13099 "before performing any actions."
13100 msgstr ""
13101
13102 # type: =head2
13103 #. type: =head2
13104 #: ../src/guestfs-actions.pod:3475
13105 msgid "guestfs_lchown"
13106 msgstr ""
13107
13108 # type: verbatim
13109 #. type: verbatim
13110 #: ../src/guestfs-actions.pod:3477
13111 #, no-wrap
13112 msgid ""
13113 " int\n"
13114 " guestfs_lchown (guestfs_h *g,\n"
13115 "                 int owner,\n"
13116 "                 int group,\n"
13117 "                 const char *path);\n"
13118 "\n"
13119 msgstr ""
13120
13121 # type: textblock
13122 #. type: textblock
13123 #: ../src/guestfs-actions.pod:3483
13124 msgid ""
13125 "Change the file owner to C<owner> and group to C<group>.  This is like "
13126 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
13127 "changed, not the target."
13128 msgstr ""
13129
13130 # type: =head2
13131 #. type: =head2
13132 #: ../src/guestfs-actions.pod:3495
13133 msgid "guestfs_lgetxattr"
13134 msgstr ""
13135
13136 # type: verbatim
13137 #. type: verbatim
13138 #: ../src/guestfs-actions.pod:3497
13139 #, no-wrap
13140 msgid ""
13141 " char *\n"
13142 " guestfs_lgetxattr (guestfs_h *g,\n"
13143 "                    const char *path,\n"
13144 "                    const char *name,\n"
13145 "                    size_t *size_r);\n"
13146 "\n"
13147 msgstr ""
13148
13149 # type: textblock
13150 #. type: textblock
13151 #: ../src/guestfs-actions.pod:3503 ../fish/guestfish-actions.pod:2441
13152 msgid ""
13153 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
13154 "is a symlink, then this call returns an extended attribute from the symlink."
13155 msgstr ""
13156
13157 # type: textblock
13158 #. type: textblock
13159 #: ../src/guestfs-actions.pod:3517
13160 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
13161 msgstr ""
13162
13163 # type: =head2
13164 #. type: =head2
13165 #: ../src/guestfs-actions.pod:3525
13166 msgid "guestfs_lgetxattrs"
13167 msgstr ""
13168
13169 # type: verbatim
13170 #. type: verbatim
13171 #: ../src/guestfs-actions.pod:3527
13172 #, no-wrap
13173 msgid ""
13174 " struct guestfs_xattr_list *\n"
13175 " guestfs_lgetxattrs (guestfs_h *g,\n"
13176 "                     const char *path);\n"
13177 "\n"
13178 msgstr ""
13179
13180 # type: textblock
13181 #. type: textblock
13182 #: ../src/guestfs-actions.pod:3531
13183 msgid ""
13184 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
13185 "then it returns the extended attributes of the link itself."
13186 msgstr ""
13187
13188 # type: =head2
13189 #. type: =head2
13190 #: ../src/guestfs-actions.pod:3541
13191 msgid "guestfs_list_devices"
13192 msgstr ""
13193
13194 # type: verbatim
13195 #. type: verbatim
13196 #: ../src/guestfs-actions.pod:3543
13197 #, no-wrap
13198 msgid ""
13199 " char **\n"
13200 " guestfs_list_devices (guestfs_h *g);\n"
13201 "\n"
13202 msgstr ""
13203
13204 # type: textblock
13205 #. type: textblock
13206 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2469
13207 msgid "List all the block devices."
13208 msgstr ""
13209
13210 # type: textblock
13211 #. type: textblock
13212 #: ../src/guestfs-actions.pod:3548 ../fish/guestfish-actions.pod:2471
13213 msgid "The full block device names are returned, eg. C</dev/sda>."
13214 msgstr ""
13215
13216 # type: =head2
13217 #. type: =head2
13218 #: ../src/guestfs-actions.pod:3558
13219 msgid "guestfs_list_filesystems"
13220 msgstr ""
13221
13222 # type: verbatim
13223 #. type: verbatim
13224 #: ../src/guestfs-actions.pod:3560
13225 #, no-wrap
13226 msgid ""
13227 " char **\n"
13228 " guestfs_list_filesystems (guestfs_h *g);\n"
13229 "\n"
13230 msgstr ""
13231
13232 # type: textblock
13233 #. type: textblock
13234 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2479
13235 msgid ""
13236 "This inspection command looks for filesystems on partitions, block devices "
13237 "and logical volumes, returning a list of devices containing filesystems and "
13238 "their type."
13239 msgstr ""
13240
13241 # type: textblock
13242 #. type: textblock
13243 #: ../src/guestfs-actions.pod:3567 ../fish/guestfish-actions.pod:2483
13244 msgid ""
13245 "The return value is a hash, where the keys are the devices containing "
13246 "filesystems, and the values are the filesystem types.  For example:"
13247 msgstr ""
13248
13249 # type: verbatim
13250 #. type: verbatim
13251 #: ../src/guestfs-actions.pod:3571 ../fish/guestfish-actions.pod:2487
13252 #, no-wrap
13253 msgid ""
13254 " \"/dev/sda1\" => \"ntfs\"\n"
13255 " \"/dev/sda2\" => \"ext2\"\n"
13256 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
13257 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
13258 "\n"
13259 msgstr ""
13260
13261 # type: textblock
13262 #. type: textblock
13263 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
13264 msgid ""
13265 "The value can have the special value \"unknown\", meaning the content of the "
13266 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
13267 msgstr ""
13268
13269 # type: textblock
13270 #. type: textblock
13271 #: ../src/guestfs-actions.pod:3580
13272 msgid ""
13273 "This command runs other libguestfs commands, which might include "
13274 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
13275 "soon after launch and only when nothing is mounted."
13276 msgstr ""
13277
13278 # type: textblock
13279 #. type: textblock
13280 #: ../src/guestfs-actions.pod:3584
13281 msgid ""
13282 "Not all of the filesystems returned will be mountable.  In particular, swap "
13283 "partitions are returned in the list.  Also this command does not check that "
13284 "each filesystem found is valid and mountable, and some filesystems might be "
13285 "mountable but require special options.  Filesystems may not all belong to a "
13286 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
13287 msgstr ""
13288
13289 # type: textblock
13290 #. type: textblock
13291 #: ../src/guestfs-actions.pod:3598 ../src/guestfs-actions.pod:5203
13292 msgid "(Added in 1.5.15)"
13293 msgstr ""
13294
13295 # type: =head2
13296 #. type: =head2
13297 #: ../src/guestfs-actions.pod:3600
13298 msgid "guestfs_list_partitions"
13299 msgstr ""
13300
13301 # type: verbatim
13302 #. type: verbatim
13303 #: ../src/guestfs-actions.pod:3602
13304 #, no-wrap
13305 msgid ""
13306 " char **\n"
13307 " guestfs_list_partitions (guestfs_h *g);\n"
13308 "\n"
13309 msgstr ""
13310
13311 # type: textblock
13312 #. type: textblock
13313 #: ../src/guestfs-actions.pod:3605 ../fish/guestfish-actions.pod:2512
13314 msgid "List all the partitions detected on all block devices."
13315 msgstr ""
13316
13317 # type: textblock
13318 #. type: textblock
13319 #: ../src/guestfs-actions.pod:3607 ../fish/guestfish-actions.pod:2514
13320 msgid "The full partition device names are returned, eg. C</dev/sda1>"
13321 msgstr ""
13322
13323 # type: textblock
13324 #. type: textblock
13325 #: ../src/guestfs-actions.pod:3609
13326 msgid ""
13327 "This does not return logical volumes.  For that you will need to call "
13328 "C<guestfs_lvs>."
13329 msgstr ""
13330
13331 # type: =head2
13332 #. type: =head2
13333 #: ../src/guestfs-actions.pod:3620
13334 msgid "guestfs_ll"
13335 msgstr ""
13336
13337 # type: verbatim
13338 #. type: verbatim
13339 #: ../src/guestfs-actions.pod:3622
13340 #, no-wrap
13341 msgid ""
13342 " char *\n"
13343 " guestfs_ll (guestfs_h *g,\n"
13344 "             const char *directory);\n"
13345 "\n"
13346 msgstr ""
13347
13348 # type: textblock
13349 #. type: textblock
13350 #: ../src/guestfs-actions.pod:3626 ../fish/guestfish-actions.pod:2525
13351 msgid ""
13352 "List the files in C<directory> (relative to the root directory, there is no "
13353 "cwd) in the format of 'ls -la'."
13354 msgstr ""
13355
13356 # type: textblock
13357 #. type: textblock
13358 #: ../src/guestfs-actions.pod:3629 ../fish/guestfish-actions.pod:2528
13359 msgid ""
13360 "This command is mostly useful for interactive sessions.  It is I<not> "
13361 "intended that you try to parse the output string."
13362 msgstr ""
13363
13364 # type: =head2
13365 #. type: =head2
13366 #: ../src/guestfs-actions.pod:3637
13367 msgid "guestfs_ln"
13368 msgstr ""
13369
13370 # type: verbatim
13371 #. type: verbatim
13372 #: ../src/guestfs-actions.pod:3639
13373 #, no-wrap
13374 msgid ""
13375 " int\n"
13376 " guestfs_ln (guestfs_h *g,\n"
13377 "             const char *target,\n"
13378 "             const char *linkname);\n"
13379 "\n"
13380 msgstr ""
13381
13382 # type: textblock
13383 #. type: textblock
13384 #: ../src/guestfs-actions.pod:3644 ../fish/guestfish-actions.pod:2535
13385 msgid "This command creates a hard link using the C<ln> command."
13386 msgstr ""
13387
13388 # type: =head2
13389 #. type: =head2
13390 #: ../src/guestfs-actions.pod:3650
13391 msgid "guestfs_ln_f"
13392 msgstr ""
13393
13394 # type: verbatim
13395 #. type: verbatim
13396 #: ../src/guestfs-actions.pod:3652
13397 #, no-wrap
13398 msgid ""
13399 " int\n"
13400 " guestfs_ln_f (guestfs_h *g,\n"
13401 "               const char *target,\n"
13402 "               const char *linkname);\n"
13403 "\n"
13404 msgstr ""
13405
13406 # type: textblock
13407 #. type: textblock
13408 #: ../src/guestfs-actions.pod:3657 ../fish/guestfish-actions.pod:2541
13409 msgid ""
13410 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
13411 "option removes the link (C<linkname>) if it exists already."
13412 msgstr ""
13413
13414 # type: =head2
13415 #. type: =head2
13416 #: ../src/guestfs-actions.pod:3664
13417 msgid "guestfs_ln_s"
13418 msgstr ""
13419
13420 # type: verbatim
13421 #. type: verbatim
13422 #: ../src/guestfs-actions.pod:3666
13423 #, no-wrap
13424 msgid ""
13425 " int\n"
13426 " guestfs_ln_s (guestfs_h *g,\n"
13427 "               const char *target,\n"
13428 "               const char *linkname);\n"
13429 "\n"
13430 msgstr ""
13431
13432 # type: textblock
13433 #. type: textblock
13434 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2548
13435 msgid "This command creates a symbolic link using the C<ln -s> command."
13436 msgstr ""
13437
13438 # type: =head2
13439 #. type: =head2
13440 #: ../src/guestfs-actions.pod:3677
13441 msgid "guestfs_ln_sf"
13442 msgstr ""
13443
13444 # type: verbatim
13445 #. type: verbatim
13446 #: ../src/guestfs-actions.pod:3679
13447 #, no-wrap
13448 msgid ""
13449 " int\n"
13450 " guestfs_ln_sf (guestfs_h *g,\n"
13451 "                const char *target,\n"
13452 "                const char *linkname);\n"
13453 "\n"
13454 msgstr ""
13455
13456 # type: textblock
13457 #. type: textblock
13458 #: ../src/guestfs-actions.pod:3684 ../fish/guestfish-actions.pod:2554
13459 msgid ""
13460 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
13461 "option removes the link (C<linkname>) if it exists already."
13462 msgstr ""
13463
13464 # type: =head2
13465 #. type: =head2
13466 #: ../src/guestfs-actions.pod:3691
13467 msgid "guestfs_lremovexattr"
13468 msgstr ""
13469
13470 # type: verbatim
13471 #. type: verbatim
13472 #: ../src/guestfs-actions.pod:3693
13473 #, no-wrap
13474 msgid ""
13475 " int\n"
13476 " guestfs_lremovexattr (guestfs_h *g,\n"
13477 "                       const char *xattr,\n"
13478 "                       const char *path);\n"
13479 "\n"
13480 msgstr ""
13481
13482 # type: textblock
13483 #. type: textblock
13484 #: ../src/guestfs-actions.pod:3698
13485 msgid ""
13486 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
13487 "link, then it removes an extended attribute of the link itself."
13488 msgstr ""
13489
13490 # type: =head2
13491 #. type: =head2
13492 #: ../src/guestfs-actions.pod:3706
13493 msgid "guestfs_ls"
13494 msgstr ""
13495
13496 # type: verbatim
13497 #. type: verbatim
13498 #: ../src/guestfs-actions.pod:3708
13499 #, no-wrap
13500 msgid ""
13501 " char **\n"
13502 " guestfs_ls (guestfs_h *g,\n"
13503 "             const char *directory);\n"
13504 "\n"
13505 msgstr ""
13506
13507 # type: textblock
13508 #. type: textblock
13509 #: ../src/guestfs-actions.pod:3712 ../fish/guestfish-actions.pod:2569
13510 msgid ""
13511 "List the files in C<directory> (relative to the root directory, there is no "
13512 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
13513 msgstr ""
13514
13515 # type: textblock
13516 #. type: textblock
13517 #: ../src/guestfs-actions.pod:3716
13518 msgid ""
13519 "This command is mostly useful for interactive sessions.  Programs should "
13520 "probably use C<guestfs_readdir> instead."
13521 msgstr ""
13522
13523 # type: =head2
13524 #. type: =head2
13525 #: ../src/guestfs-actions.pod:3725
13526 msgid "guestfs_lsetxattr"
13527 msgstr ""
13528
13529 # type: verbatim
13530 #. type: verbatim
13531 #: ../src/guestfs-actions.pod:3727
13532 #, no-wrap
13533 msgid ""
13534 " int\n"
13535 " guestfs_lsetxattr (guestfs_h *g,\n"
13536 "                    const char *xattr,\n"
13537 "                    const char *val,\n"
13538 "                    int vallen,\n"
13539 "                    const char *path);\n"
13540 "\n"
13541 msgstr ""
13542
13543 # type: textblock
13544 #. type: textblock
13545 #: ../src/guestfs-actions.pod:3734
13546 msgid ""
13547 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
13548 "then it sets an extended attribute of the link itself."
13549 msgstr ""
13550
13551 # type: =head2
13552 #. type: =head2
13553 #: ../src/guestfs-actions.pod:3742
13554 msgid "guestfs_lstat"
13555 msgstr ""
13556
13557 # type: verbatim
13558 #. type: verbatim
13559 #: ../src/guestfs-actions.pod:3744
13560 #, no-wrap
13561 msgid ""
13562 " struct guestfs_stat *\n"
13563 " guestfs_lstat (guestfs_h *g,\n"
13564 "                const char *path);\n"
13565 "\n"
13566 msgstr ""
13567
13568 # type: textblock
13569 #. type: textblock
13570 #: ../src/guestfs-actions.pod:3748 ../src/guestfs-actions.pod:6306
13571 #: ../fish/guestfish-actions.pod:2588 ../fish/guestfish-actions.pod:4257
13572 msgid "Returns file information for the given C<path>."
13573 msgstr ""
13574
13575 # type: textblock
13576 #. type: textblock
13577 #: ../src/guestfs-actions.pod:3750
13578 msgid ""
13579 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
13580 "link, then the link is stat-ed, not the file it refers to."
13581 msgstr ""
13582
13583 # type: textblock
13584 #. type: textblock
13585 #: ../src/guestfs-actions.pod:3754 ../fish/guestfish-actions.pod:2594
13586 msgid "This is the same as the C<lstat(2)> system call."
13587 msgstr ""
13588
13589 # type: textblock
13590 #. type: textblock
13591 #: ../src/guestfs-actions.pod:3756 ../src/guestfs-actions.pod:6310
13592 msgid ""
13593 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13594 "error.  I<The caller must call C<guestfs_free_stat> after use>."
13595 msgstr ""
13596
13597 # type: textblock
13598 #. type: textblock
13599 #: ../src/guestfs-actions.pod:3760 ../src/guestfs-actions.pod:6314
13600 #: ../src/guestfs-actions.pod:6332 ../src/guestfs-actions.pod:6713
13601 msgid "(Added in 0.9.2)"
13602 msgstr ""
13603
13604 # type: =head2
13605 #. type: =head2
13606 #: ../src/guestfs-actions.pod:3762
13607 msgid "guestfs_lstatlist"
13608 msgstr ""
13609
13610 # type: verbatim
13611 #. type: verbatim
13612 #: ../src/guestfs-actions.pod:3764
13613 #, no-wrap
13614 msgid ""
13615 " struct guestfs_stat_list *\n"
13616 " guestfs_lstatlist (guestfs_h *g,\n"
13617 "                    const char *path,\n"
13618 "                    char *const *names);\n"
13619 "\n"
13620 msgstr ""
13621
13622 # type: textblock
13623 #. type: textblock
13624 #: ../src/guestfs-actions.pod:3769
13625 msgid ""
13626 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13627 "files, where all files are in the directory C<path>.  C<names> is the list "
13628 "of files from this directory."
13629 msgstr ""
13630
13631 # type: textblock
13632 #. type: textblock
13633 #: ../src/guestfs-actions.pod:3773 ../fish/guestfish-actions.pod:2604
13634 msgid ""
13635 "On return you get a list of stat structs, with a one-to-one correspondence "
13636 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13637 "then the C<ino> field of that structure is set to C<-1>."
13638 msgstr ""
13639
13640 # type: textblock
13641 #. type: textblock
13642 #: ../src/guestfs-actions.pod:3778
13643 msgid ""
13644 "This call is intended for programs that want to efficiently list a directory "
13645 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13646 "for a similarly efficient call for getting extended attributes.  Very long "
13647 "directory listings might cause the protocol message size to be exceeded, "
13648 "causing this call to fail.  The caller must split up such requests into "
13649 "smaller groups of names."
13650 msgstr ""
13651
13652 # type: textblock
13653 #. type: textblock
13654 #: ../src/guestfs-actions.pod:3786
13655 msgid ""
13656 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13657 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13658 msgstr ""
13659
13660 # type: =head2
13661 #. type: =head2
13662 #: ../src/guestfs-actions.pod:3792
13663 msgid "guestfs_luks_add_key"
13664 msgstr ""
13665
13666 # type: verbatim
13667 #. type: verbatim
13668 #: ../src/guestfs-actions.pod:3794
13669 #, no-wrap
13670 msgid ""
13671 " int\n"
13672 " guestfs_luks_add_key (guestfs_h *g,\n"
13673 "                       const char *device,\n"
13674 "                       const char *key,\n"
13675 "                       const char *newkey,\n"
13676 "                       int keyslot);\n"
13677 "\n"
13678 msgstr ""
13679
13680 # type: textblock
13681 #. type: textblock
13682 #: ../src/guestfs-actions.pod:3801 ../fish/guestfish-actions.pod:2621
13683 msgid ""
13684 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13685 "existing key, and is used to access the device.  C<newkey> is the new key to "
13686 "add.  C<keyslot> is the key slot that will be replaced."
13687 msgstr ""
13688
13689 # type: textblock
13690 #. type: textblock
13691 #: ../src/guestfs-actions.pod:3806
13692 msgid ""
13693 "Note that if C<keyslot> already contains a key, then this command will "
13694 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13695 msgstr ""
13696
13697 # type: textblock
13698 #. type: textblock
13699 #: ../src/guestfs-actions.pod:3812 ../src/guestfs-actions.pod:3852
13700 #: ../src/guestfs-actions.pod:3875 ../src/guestfs-actions.pod:3895
13701 #: ../src/guestfs-actions.pod:3927 ../src/guestfs-actions.pod:3946
13702 msgid ""
13703 "This function takes a key or passphrase parameter which could contain "
13704 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13705 "information."
13706 msgstr ""
13707
13708 # type: textblock
13709 #. type: textblock
13710 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3856
13711 #: ../src/guestfs-actions.pod:3879 ../src/guestfs-actions.pod:3899
13712 msgid "(Added in 1.5.2)"
13713 msgstr ""
13714
13715 # type: =head2
13716 #. type: =head2
13717 #: ../src/guestfs-actions.pod:3818
13718 msgid "guestfs_luks_close"
13719 msgstr ""
13720
13721 # type: verbatim
13722 #. type: verbatim
13723 #: ../src/guestfs-actions.pod:3820
13724 #, no-wrap
13725 msgid ""
13726 " int\n"
13727 " guestfs_luks_close (guestfs_h *g,\n"
13728 "                     const char *device);\n"
13729 "\n"
13730 msgstr ""
13731
13732 # type: textblock
13733 #. type: textblock
13734 #: ../src/guestfs-actions.pod:3824
13735 msgid ""
13736 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13737 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13738 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13739 "underlying block device."
13740 msgstr ""
13741
13742 # type: textblock
13743 #. type: textblock
13744 #: ../src/guestfs-actions.pod:3832 ../src/guestfs-actions.pod:3931
13745 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:4000
13746 #: ../src/guestfs-actions.pod:4048
13747 msgid "(Added in 1.5.1)"
13748 msgstr ""
13749
13750 # type: =head2
13751 #. type: =head2
13752 #: ../src/guestfs-actions.pod:3834
13753 msgid "guestfs_luks_format"
13754 msgstr ""
13755
13756 # type: verbatim
13757 #. type: verbatim
13758 #: ../src/guestfs-actions.pod:3836
13759 #, no-wrap
13760 msgid ""
13761 " int\n"
13762 " guestfs_luks_format (guestfs_h *g,\n"
13763 "                      const char *device,\n"
13764 "                      const char *key,\n"
13765 "                      int keyslot);\n"
13766 "\n"
13767 msgstr ""
13768
13769 # type: textblock
13770 #. type: textblock
13771 #: ../src/guestfs-actions.pod:3842 ../fish/guestfish-actions.pod:2647
13772 msgid ""
13773 "This command erases existing data on C<device> and formats the device as a "
13774 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13775 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13776 msgstr ""
13777
13778 # type: textblock
13779 #. type: textblock
13780 #: ../src/guestfs-actions.pod:3849 ../src/guestfs-actions.pod:3872
13781 #: ../src/guestfs-actions.pod:4012 ../src/guestfs-actions.pod:4954
13782 #: ../src/guestfs-actions.pod:5734 ../src/guestfs-actions.pod:6141
13783 #: ../src/guestfs-actions.pod:6164 ../src/guestfs-actions.pod:6190
13784 #: ../src/guestfs-actions.pod:7350 ../fish/guestfish-actions.pod:2655
13785 #: ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2752
13786 #: ../fish/guestfish-actions.pod:3326 ../fish/guestfish-actions.pod:3846
13787 #: ../fish/guestfish-actions.pod:4156 ../fish/guestfish-actions.pod:4172
13788 #: ../fish/guestfish-actions.pod:4187 ../fish/guestfish-actions.pod:4902
13789 msgid ""
13790 "B<This command is dangerous.  Without careful use you can easily destroy all "
13791 "your data>."
13792 msgstr ""
13793
13794 # type: =head2
13795 #. type: =head2
13796 #: ../src/guestfs-actions.pod:3858
13797 msgid "guestfs_luks_format_cipher"
13798 msgstr ""
13799
13800 # type: verbatim
13801 #. type: verbatim
13802 #: ../src/guestfs-actions.pod:3860
13803 #, no-wrap
13804 msgid ""
13805 " int\n"
13806 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13807 "                             const char *device,\n"
13808 "                             const char *key,\n"
13809 "                             int keyslot,\n"
13810 "                             const char *cipher);\n"
13811 "\n"
13812 msgstr ""
13813
13814 # type: textblock
13815 #. type: textblock
13816 #: ../src/guestfs-actions.pod:3867
13817 msgid ""
13818 "This command is the same as C<guestfs_luks_format> but it also allows you to "
13819 "set the C<cipher> used."
13820 msgstr ""
13821
13822 # type: =head2
13823 #. type: =head2
13824 #: ../src/guestfs-actions.pod:3881
13825 msgid "guestfs_luks_kill_slot"
13826 msgstr ""
13827
13828 # type: verbatim
13829 #. type: verbatim
13830 #: ../src/guestfs-actions.pod:3883
13831 #, no-wrap
13832 msgid ""
13833 " int\n"
13834 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13835 "                         const char *device,\n"
13836 "                         const char *key,\n"
13837 "                         int keyslot);\n"
13838 "\n"
13839 msgstr ""
13840
13841 # type: textblock
13842 #. type: textblock
13843 #: ../src/guestfs-actions.pod:3889 ../fish/guestfish-actions.pod:2675
13844 msgid ""
13845 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13846 "device C<device>.  C<key> must be one of the I<other> keys."
13847 msgstr ""
13848
13849 # type: =head2
13850 #. type: =head2
13851 #: ../src/guestfs-actions.pod:3901
13852 msgid "guestfs_luks_open"
13853 msgstr ""
13854
13855 # type: verbatim
13856 #. type: verbatim
13857 #: ../src/guestfs-actions.pod:3903
13858 #, no-wrap
13859 msgid ""
13860 " int\n"
13861 " guestfs_luks_open (guestfs_h *g,\n"
13862 "                    const char *device,\n"
13863 "                    const char *key,\n"
13864 "                    const char *mapname);\n"
13865 "\n"
13866 msgstr ""
13867
13868 # type: textblock
13869 #. type: textblock
13870 #: ../src/guestfs-actions.pod:3909 ../fish/guestfish-actions.pod:2686
13871 msgid ""
13872 "This command opens a block device which has been encrypted according to the "
13873 "Linux Unified Key Setup (LUKS) standard."
13874 msgstr ""
13875
13876 # type: textblock
13877 #. type: textblock
13878 #: ../src/guestfs-actions.pod:3912 ../fish/guestfish-actions.pod:2689
13879 msgid "C<device> is the encrypted block device or partition."
13880 msgstr ""
13881
13882 # type: textblock
13883 #. type: textblock
13884 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
13885 msgid ""
13886 "The caller must supply one of the keys associated with the LUKS block "
13887 "device, in the C<key> parameter."
13888 msgstr ""
13889
13890 # type: textblock
13891 #. type: textblock
13892 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
13893 msgid ""
13894 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13895 "writes to this block device are decrypted from and encrypted to the "
13896 "underlying C<device> respectively."
13897 msgstr ""
13898
13899 # type: textblock
13900 #. type: textblock
13901 #: ../src/guestfs-actions.pod:3921
13902 msgid ""
13903 "If this block device contains LVM volume groups, then calling "
13904 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13905 "visible."
13906 msgstr ""
13907
13908 # type: =head2
13909 #. type: =head2
13910 #: ../src/guestfs-actions.pod:3933
13911 msgid "guestfs_luks_open_ro"
13912 msgstr ""
13913
13914 # type: verbatim
13915 #. type: verbatim
13916 #: ../src/guestfs-actions.pod:3935
13917 #, no-wrap
13918 msgid ""
13919 " int\n"
13920 " guestfs_luks_open_ro (guestfs_h *g,\n"
13921 "                       const char *device,\n"
13922 "                       const char *key,\n"
13923 "                       const char *mapname);\n"
13924 "\n"
13925 msgstr ""
13926
13927 # type: textblock
13928 #. type: textblock
13929 #: ../src/guestfs-actions.pod:3941
13930 msgid ""
13931 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13932 "created."
13933 msgstr ""
13934
13935 # type: =head2
13936 #. type: =head2
13937 #: ../src/guestfs-actions.pod:3952
13938 msgid "guestfs_lvcreate"
13939 msgstr ""
13940
13941 # type: verbatim
13942 #. type: verbatim
13943 #: ../src/guestfs-actions.pod:3954
13944 #, no-wrap
13945 msgid ""
13946 " int\n"
13947 " guestfs_lvcreate (guestfs_h *g,\n"
13948 "                   const char *logvol,\n"
13949 "                   const char *volgroup,\n"
13950 "                   int mbytes);\n"
13951 "\n"
13952 msgstr ""
13953
13954 # type: textblock
13955 #. type: textblock
13956 #: ../src/guestfs-actions.pod:3960 ../fish/guestfish-actions.pod:2719
13957 msgid ""
13958 "This creates an LVM logical volume called C<logvol> on the volume group "
13959 "C<volgroup>, with C<size> megabytes."
13960 msgstr ""
13961
13962 # type: =head2
13963 #. type: =head2
13964 #: ../src/guestfs-actions.pod:3967
13965 msgid "guestfs_lvm_canonical_lv_name"
13966 msgstr ""
13967
13968 # type: verbatim
13969 #. type: verbatim
13970 #: ../src/guestfs-actions.pod:3969
13971 #, no-wrap
13972 msgid ""
13973 " char *\n"
13974 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13975 "                                const char *lvname);\n"
13976 "\n"
13977 msgstr ""
13978
13979 # type: textblock
13980 #. type: textblock
13981 #: ../src/guestfs-actions.pod:3973 ../fish/guestfish-actions.pod:2726
13982 msgid ""
13983 "This converts alternative naming schemes for LVs that you might find to the "
13984 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13985 "LV>."
13986 msgstr ""
13987
13988 # type: textblock
13989 #. type: textblock
13990 #: ../src/guestfs-actions.pod:3977 ../fish/guestfish-actions.pod:2730
13991 msgid ""
13992 "This command returns an error if the C<lvname> parameter does not refer to a "
13993 "logical volume."
13994 msgstr ""
13995
13996 # type: textblock
13997 #. type: textblock
13998 #: ../src/guestfs-actions.pod:3980
13999 msgid "See also C<guestfs_is_lv>."
14000 msgstr ""
14001
14002 # type: textblock
14003 #. type: textblock
14004 #: ../src/guestfs-actions.pod:3985
14005 msgid "(Added in 1.5.24)"
14006 msgstr ""
14007
14008 # type: =head2
14009 #. type: =head2
14010 #: ../src/guestfs-actions.pod:3987
14011 msgid "guestfs_lvm_clear_filter"
14012 msgstr ""
14013
14014 # type: verbatim
14015 #. type: verbatim
14016 #: ../src/guestfs-actions.pod:3989
14017 #, no-wrap
14018 msgid ""
14019 " int\n"
14020 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
14021 "\n"
14022 msgstr ""
14023
14024 # type: textblock
14025 #. type: textblock
14026 #: ../src/guestfs-actions.pod:3992
14027 msgid ""
14028 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
14029 "see every block device."
14030 msgstr ""
14031
14032 # type: textblock
14033 #. type: textblock
14034 #: ../src/guestfs-actions.pod:3995 ../src/guestfs-actions.pod:4037
14035 #: ../fish/guestfish-actions.pod:2742 ../fish/guestfish-actions.pod:2773
14036 msgid ""
14037 "This command also clears the LVM cache and performs a volume group scan."
14038 msgstr ""
14039
14040 # type: =head2
14041 #. type: =head2
14042 #: ../src/guestfs-actions.pod:4002
14043 msgid "guestfs_lvm_remove_all"
14044 msgstr ""
14045
14046 # type: verbatim
14047 #. type: verbatim
14048 #: ../src/guestfs-actions.pod:4004
14049 #, no-wrap
14050 msgid ""
14051 " int\n"
14052 " guestfs_lvm_remove_all (guestfs_h *g);\n"
14053 "\n"
14054 msgstr ""
14055
14056 # type: textblock
14057 #. type: textblock
14058 #: ../src/guestfs-actions.pod:4007 ../fish/guestfish-actions.pod:2749
14059 msgid ""
14060 "This command removes all LVM logical volumes, volume groups and physical "
14061 "volumes."
14062 msgstr ""
14063
14064 # type: =head2
14065 #. type: =head2
14066 #: ../src/guestfs-actions.pod:4017
14067 msgid "guestfs_lvm_set_filter"
14068 msgstr ""
14069
14070 # type: verbatim
14071 #. type: verbatim
14072 #: ../src/guestfs-actions.pod:4019
14073 #, no-wrap
14074 msgid ""
14075 " int\n"
14076 " guestfs_lvm_set_filter (guestfs_h *g,\n"
14077 "                         char *const *devices);\n"
14078 "\n"
14079 msgstr ""
14080
14081 # type: textblock
14082 #. type: textblock
14083 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2759
14084 msgid ""
14085 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
14086 "block devices in the list C<devices>, and will ignore all other attached "
14087 "block devices."
14088 msgstr ""
14089
14090 # type: textblock
14091 #. type: textblock
14092 #: ../src/guestfs-actions.pod:4027 ../fish/guestfish-actions.pod:2763
14093 msgid ""
14094 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
14095 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
14096 "there are two types of duplication possible: either cloned PVs/VGs which "
14097 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
14098 "same name.  In normal operation you cannot create this situation, but you "
14099 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
14100 "inside the LVM metadata."
14101 msgstr ""
14102
14103 # type: textblock
14104 #. type: textblock
14105 #: ../src/guestfs-actions.pod:4040 ../fish/guestfish-actions.pod:2776
14106 msgid "You can filter whole block devices or individual partitions."
14107 msgstr ""
14108
14109 # type: textblock
14110 #. type: textblock
14111 #: ../src/guestfs-actions.pod:4042 ../fish/guestfish-actions.pod:2778
14112 msgid ""
14113 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
14114 "filesystem), even if you are not filtering out that VG."
14115 msgstr ""
14116
14117 # type: =head2
14118 #. type: =head2
14119 #: ../src/guestfs-actions.pod:4050
14120 msgid "guestfs_lvremove"
14121 msgstr ""
14122
14123 # type: verbatim
14124 #. type: verbatim
14125 #: ../src/guestfs-actions.pod:4052
14126 #, no-wrap
14127 msgid ""
14128 " int\n"
14129 " guestfs_lvremove (guestfs_h *g,\n"
14130 "                   const char *device);\n"
14131 "\n"
14132 msgstr ""
14133
14134 # type: textblock
14135 #. type: textblock
14136 #: ../src/guestfs-actions.pod:4056 ../fish/guestfish-actions.pod:2786
14137 msgid ""
14138 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
14139 "LV, such as C</dev/VG/LV>."
14140 msgstr ""
14141
14142 # type: textblock
14143 #. type: textblock
14144 #: ../src/guestfs-actions.pod:4059 ../fish/guestfish-actions.pod:2789
14145 msgid ""
14146 "You can also remove all LVs in a volume group by specifying the VG name, C</"
14147 "dev/VG>."
14148 msgstr ""
14149
14150 # type: textblock
14151 #. type: textblock
14152 #: ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:5300
14153 #: ../src/guestfs-actions.pod:7089
14154 msgid "(Added in 1.0.13)"
14155 msgstr ""
14156
14157 # type: =head2
14158 #. type: =head2
14159 #: ../src/guestfs-actions.pod:4066
14160 msgid "guestfs_lvrename"
14161 msgstr ""
14162
14163 # type: verbatim
14164 #. type: verbatim
14165 #: ../src/guestfs-actions.pod:4068
14166 #, no-wrap
14167 msgid ""
14168 " int\n"
14169 " guestfs_lvrename (guestfs_h *g,\n"
14170 "                   const char *logvol,\n"
14171 "                   const char *newlogvol);\n"
14172 "\n"
14173 msgstr ""
14174
14175 # type: textblock
14176 #. type: textblock
14177 #: ../src/guestfs-actions.pod:4073 ../fish/guestfish-actions.pod:2796
14178 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
14179 msgstr ""
14180
14181 # type: textblock
14182 #. type: textblock
14183 #: ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:7102
14184 msgid "(Added in 1.0.83)"
14185 msgstr ""
14186
14187 # type: =head2
14188 #. type: =head2
14189 #: ../src/guestfs-actions.pod:4079
14190 msgid "guestfs_lvresize"
14191 msgstr ""
14192
14193 # type: verbatim
14194 #. type: verbatim
14195 #: ../src/guestfs-actions.pod:4081
14196 #, no-wrap
14197 msgid ""
14198 " int\n"
14199 " guestfs_lvresize (guestfs_h *g,\n"
14200 "                   const char *device,\n"
14201 "                   int mbytes);\n"
14202 "\n"
14203 msgstr ""
14204
14205 # type: textblock
14206 #. type: textblock
14207 #: ../src/guestfs-actions.pod:4086 ../fish/guestfish-actions.pod:2802
14208 msgid ""
14209 "This resizes (expands or shrinks) an existing LVM logical volume to "
14210 "C<mbytes>.  When reducing, data in the reduced part is lost."
14211 msgstr ""
14212
14213 # type: =head2
14214 #. type: =head2
14215 #: ../src/guestfs-actions.pod:4094
14216 msgid "guestfs_lvresize_free"
14217 msgstr ""
14218
14219 # type: verbatim
14220 #. type: verbatim
14221 #: ../src/guestfs-actions.pod:4096
14222 #, no-wrap
14223 msgid ""
14224 " int\n"
14225 " guestfs_lvresize_free (guestfs_h *g,\n"
14226 "                        const char *lv,\n"
14227 "                        int percent);\n"
14228 "\n"
14229 msgstr ""
14230
14231 # type: textblock
14232 #. type: textblock
14233 #: ../src/guestfs-actions.pod:4101 ../fish/guestfish-actions.pod:2810
14234 msgid ""
14235 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
14236 "remaining free space in the volume group.  Commonly you would call this with "
14237 "pc = 100 which expands the logical volume as much as possible, using all "
14238 "remaining free space in the volume group."
14239 msgstr ""
14240
14241 # type: textblock
14242 #. type: textblock
14243 #: ../src/guestfs-actions.pod:4109
14244 msgid "(Added in 1.3.3)"
14245 msgstr ""
14246
14247 # type: =head2
14248 #. type: =head2
14249 #: ../src/guestfs-actions.pod:4111
14250 msgid "guestfs_lvs"
14251 msgstr ""
14252
14253 # type: verbatim
14254 #. type: verbatim
14255 #: ../src/guestfs-actions.pod:4113
14256 #, no-wrap
14257 msgid ""
14258 " char **\n"
14259 " guestfs_lvs (guestfs_h *g);\n"
14260 "\n"
14261 msgstr ""
14262
14263 # type: textblock
14264 #. type: textblock
14265 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2820
14266 msgid ""
14267 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14268 "(8)> command."
14269 msgstr ""
14270
14271 # type: textblock
14272 #. type: textblock
14273 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2823
14274 msgid ""
14275 "This returns a list of the logical volume device names (eg. C</dev/"
14276 "VolGroup00/LogVol00>)."
14277 msgstr ""
14278
14279 # type: textblock
14280 #. type: textblock
14281 #: ../src/guestfs-actions.pod:4122
14282 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
14283 msgstr ""
14284
14285 # type: =head2
14286 #. type: =head2
14287 #: ../src/guestfs-actions.pod:4130
14288 msgid "guestfs_lvs_full"
14289 msgstr ""
14290
14291 # type: verbatim
14292 #. type: verbatim
14293 #: ../src/guestfs-actions.pod:4132
14294 #, no-wrap
14295 msgid ""
14296 " struct guestfs_lvm_lv_list *\n"
14297 " guestfs_lvs_full (guestfs_h *g);\n"
14298 "\n"
14299 msgstr ""
14300
14301 # type: textblock
14302 #. type: textblock
14303 #: ../src/guestfs-actions.pod:4135 ../fish/guestfish-actions.pod:2832
14304 msgid ""
14305 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
14306 "(8)> command.  The \"full\" version includes all fields."
14307 msgstr ""
14308
14309 # type: textblock
14310 #. type: textblock
14311 #: ../src/guestfs-actions.pod:4138
14312 msgid ""
14313 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
14314 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
14315 msgstr ""
14316
14317 # type: =head2
14318 #. type: =head2
14319 #: ../src/guestfs-actions.pod:4144
14320 msgid "guestfs_lvuuid"
14321 msgstr ""
14322
14323 # type: verbatim
14324 #. type: verbatim
14325 #: ../src/guestfs-actions.pod:4146
14326 #, no-wrap
14327 msgid ""
14328 " char *\n"
14329 " guestfs_lvuuid (guestfs_h *g,\n"
14330 "                 const char *device);\n"
14331 "\n"
14332 msgstr ""
14333
14334 # type: textblock
14335 #. type: textblock
14336 #: ../src/guestfs-actions.pod:4150 ../fish/guestfish-actions.pod:2839
14337 msgid "This command returns the UUID of the LVM LV C<device>."
14338 msgstr ""
14339
14340 # type: =head2
14341 #. type: =head2
14342 #: ../src/guestfs-actions.pod:4157
14343 msgid "guestfs_lxattrlist"
14344 msgstr ""
14345
14346 # type: verbatim
14347 #. type: verbatim
14348 #: ../src/guestfs-actions.pod:4159
14349 #, no-wrap
14350 msgid ""
14351 " struct guestfs_xattr_list *\n"
14352 " guestfs_lxattrlist (guestfs_h *g,\n"
14353 "                     const char *path,\n"
14354 "                     char *const *names);\n"
14355 "\n"
14356 msgstr ""
14357
14358 # type: textblock
14359 #. type: textblock
14360 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2845
14361 msgid ""
14362 "This call allows you to get the extended attributes of multiple files, where "
14363 "all files are in the directory C<path>.  C<names> is the list of files from "
14364 "this directory."
14365 msgstr ""
14366
14367 # type: textblock
14368 #. type: textblock
14369 #: ../src/guestfs-actions.pod:4168 ../fish/guestfish-actions.pod:2849
14370 msgid ""
14371 "On return you get a flat list of xattr structs which must be interpreted "
14372 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
14373 "C<attrval> in this struct is zero-length to indicate there was an error "
14374 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
14375 "number (the number of following attributes for this file, which could be C<"
14376 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
14377 "for the first named file.  This repeats for the second and subsequent files."
14378 msgstr ""
14379
14380 # type: textblock
14381 #. type: textblock
14382 #: ../src/guestfs-actions.pod:4178
14383 msgid ""
14384 "This call is intended for programs that want to efficiently list a directory "
14385 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
14386 "a similarly efficient call for getting standard stats.  Very long directory "
14387 "listings might cause the protocol message size to be exceeded, causing this "
14388 "call to fail.  The caller must split up such requests into smaller groups of "
14389 "names."
14390 msgstr ""
14391
14392 # type: =head2
14393 #. type: =head2
14394 #: ../src/guestfs-actions.pod:4192
14395 msgid "guestfs_mkdir"
14396 msgstr ""
14397
14398 # type: verbatim
14399 #. type: verbatim
14400 #: ../src/guestfs-actions.pod:4194
14401 #, no-wrap
14402 msgid ""
14403 " int\n"
14404 " guestfs_mkdir (guestfs_h *g,\n"
14405 "                const char *path);\n"
14406 "\n"
14407 msgstr ""
14408
14409 # type: textblock
14410 #. type: textblock
14411 #: ../src/guestfs-actions.pod:4198 ../fish/guestfish-actions.pod:2871
14412 msgid "Create a directory named C<path>."
14413 msgstr ""
14414
14415 # type: =head2
14416 #. type: =head2
14417 #: ../src/guestfs-actions.pod:4204
14418 msgid "guestfs_mkdir_mode"
14419 msgstr ""
14420
14421 # type: verbatim
14422 #. type: verbatim
14423 #: ../src/guestfs-actions.pod:4206
14424 #, no-wrap
14425 msgid ""
14426 " int\n"
14427 " guestfs_mkdir_mode (guestfs_h *g,\n"
14428 "                     const char *path,\n"
14429 "                     int mode);\n"
14430 "\n"
14431 msgstr ""
14432
14433 # type: textblock
14434 #. type: textblock
14435 #: ../src/guestfs-actions.pod:4211 ../fish/guestfish-actions.pod:2877
14436 msgid ""
14437 "This command creates a directory, setting the initial permissions of the "
14438 "directory to C<mode>."
14439 msgstr ""
14440
14441 # type: textblock
14442 #. type: textblock
14443 #: ../src/guestfs-actions.pod:4214 ../fish/guestfish-actions.pod:2880
14444 msgid ""
14445 "For common Linux filesystems, the actual mode which is set will be C<mode & "
14446 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
14447 "other ways."
14448 msgstr ""
14449
14450 # type: textblock
14451 #. type: textblock
14452 #: ../src/guestfs-actions.pod:4218
14453 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
14454 msgstr ""
14455
14456 # type: =head2
14457 #. type: =head2
14458 #: ../src/guestfs-actions.pod:4224
14459 msgid "guestfs_mkdir_p"
14460 msgstr ""
14461
14462 # type: verbatim
14463 #. type: verbatim
14464 #: ../src/guestfs-actions.pod:4226
14465 #, no-wrap
14466 msgid ""
14467 " int\n"
14468 " guestfs_mkdir_p (guestfs_h *g,\n"
14469 "                  const char *path);\n"
14470 "\n"
14471 msgstr ""
14472
14473 # type: textblock
14474 #. type: textblock
14475 #: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2890
14476 msgid ""
14477 "Create a directory named C<path>, creating any parent directories as "
14478 "necessary.  This is like the C<mkdir -p> shell command."
14479 msgstr ""
14480
14481 # type: =head2
14482 #. type: =head2
14483 #: ../src/guestfs-actions.pod:4237
14484 msgid "guestfs_mkdtemp"
14485 msgstr ""
14486
14487 # type: verbatim
14488 #. type: verbatim
14489 #: ../src/guestfs-actions.pod:4239
14490 #, no-wrap
14491 msgid ""
14492 " char *\n"
14493 " guestfs_mkdtemp (guestfs_h *g,\n"
14494 "                  const char *template);\n"
14495 "\n"
14496 msgstr ""
14497
14498 # type: textblock
14499 #. type: textblock
14500 #: ../src/guestfs-actions.pod:4243 ../fish/guestfish-actions.pod:2897
14501 msgid ""
14502 "This command creates a temporary directory.  The C<template> parameter "
14503 "should be a full pathname for the temporary directory name with the final "
14504 "six characters being \"XXXXXX\"."
14505 msgstr ""
14506
14507 # type: textblock
14508 #. type: textblock
14509 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
14510 msgid ""
14511 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
14512 "being suitable for Windows filesystems."
14513 msgstr ""
14514
14515 # type: textblock
14516 #. type: textblock
14517 #: ../src/guestfs-actions.pod:4251 ../fish/guestfish-actions.pod:2905
14518 msgid "The name of the temporary directory that was created is returned."
14519 msgstr ""
14520
14521 # type: textblock
14522 #. type: textblock
14523 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2908
14524 msgid "The temporary directory is created with mode 0700 and is owned by root."
14525 msgstr ""
14526
14527 # type: textblock
14528 #. type: textblock
14529 #: ../src/guestfs-actions.pod:4257 ../fish/guestfish-actions.pod:2911
14530 msgid ""
14531 "The caller is responsible for deleting the temporary directory and its "
14532 "contents after use."
14533 msgstr ""
14534
14535 # type: textblock
14536 #. type: textblock
14537 #: ../src/guestfs-actions.pod:4260 ../fish/guestfish-actions.pod:2914
14538 msgid "See also: L<mkdtemp(3)>"
14539 msgstr ""
14540
14541 # type: =head2
14542 #. type: =head2
14543 #: ../src/guestfs-actions.pod:4267
14544 msgid "guestfs_mke2fs_J"
14545 msgstr ""
14546
14547 # type: verbatim
14548 #. type: verbatim
14549 #: ../src/guestfs-actions.pod:4269
14550 #, no-wrap
14551 msgid ""
14552 " int\n"
14553 " guestfs_mke2fs_J (guestfs_h *g,\n"
14554 "                   const char *fstype,\n"
14555 "                   int blocksize,\n"
14556 "                   const char *device,\n"
14557 "                   const char *journal);\n"
14558 "\n"
14559 msgstr ""
14560
14561 # type: textblock
14562 #. type: textblock
14563 #: ../src/guestfs-actions.pod:4276 ../fish/guestfish-actions.pod:2920
14564 msgid ""
14565 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14566 "C<journal>.  It is equivalent to the command:"
14567 msgstr ""
14568
14569 # type: verbatim
14570 #. type: verbatim
14571 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2924
14572 #, no-wrap
14573 msgid ""
14574 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
14575 "\n"
14576 msgstr ""
14577
14578 # type: textblock
14579 #. type: textblock
14580 #: ../src/guestfs-actions.pod:4282
14581 msgid "See also C<guestfs_mke2journal>."
14582 msgstr ""
14583
14584 # type: textblock
14585 #. type: textblock
14586 #: ../src/guestfs-actions.pod:4286 ../src/guestfs-actions.pod:4304
14587 #: ../src/guestfs-actions.pod:4322 ../src/guestfs-actions.pod:4338
14588 #: ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:4366
14589 #: ../src/guestfs-actions.pod:4425 ../src/guestfs-actions.pod:4690
14590 msgid "(Added in 1.0.68)"
14591 msgstr ""
14592
14593 # type: =head2
14594 #. type: =head2
14595 #: ../src/guestfs-actions.pod:4288
14596 msgid "guestfs_mke2fs_JL"
14597 msgstr ""
14598
14599 # type: verbatim
14600 #. type: verbatim
14601 #: ../src/guestfs-actions.pod:4290
14602 #, no-wrap
14603 msgid ""
14604 " int\n"
14605 " guestfs_mke2fs_JL (guestfs_h *g,\n"
14606 "                    const char *fstype,\n"
14607 "                    int blocksize,\n"
14608 "                    const char *device,\n"
14609 "                    const char *label);\n"
14610 "\n"
14611 msgstr ""
14612
14613 # type: textblock
14614 #. type: textblock
14615 #: ../src/guestfs-actions.pod:4297 ../fish/guestfish-actions.pod:2932
14616 msgid ""
14617 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14618 "the journal labeled C<label>."
14619 msgstr ""
14620
14621 # type: textblock
14622 #. type: textblock
14623 #: ../src/guestfs-actions.pod:4300
14624 msgid "See also C<guestfs_mke2journal_L>."
14625 msgstr ""
14626
14627 # type: =head2
14628 #. type: =head2
14629 #: ../src/guestfs-actions.pod:4306
14630 msgid "guestfs_mke2fs_JU"
14631 msgstr ""
14632
14633 # type: verbatim
14634 #. type: verbatim
14635 #: ../src/guestfs-actions.pod:4308
14636 #, no-wrap
14637 msgid ""
14638 " int\n"
14639 " guestfs_mke2fs_JU (guestfs_h *g,\n"
14640 "                    const char *fstype,\n"
14641 "                    int blocksize,\n"
14642 "                    const char *device,\n"
14643 "                    const char *uuid);\n"
14644 "\n"
14645 msgstr ""
14646
14647 # type: textblock
14648 #. type: textblock
14649 #: ../src/guestfs-actions.pod:4315 ../fish/guestfish-actions.pod:2941
14650 msgid ""
14651 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
14652 "the journal with UUID C<uuid>."
14653 msgstr ""
14654
14655 # type: textblock
14656 #. type: textblock
14657 #: ../src/guestfs-actions.pod:4318
14658 msgid "See also C<guestfs_mke2journal_U>."
14659 msgstr ""
14660
14661 # type: =head2
14662 #. type: =head2
14663 #: ../src/guestfs-actions.pod:4324
14664 msgid "guestfs_mke2journal"
14665 msgstr ""
14666
14667 # type: verbatim
14668 #. type: verbatim
14669 #: ../src/guestfs-actions.pod:4326
14670 #, no-wrap
14671 msgid ""
14672 " int\n"
14673 " guestfs_mke2journal (guestfs_h *g,\n"
14674 "                      int blocksize,\n"
14675 "                      const char *device);\n"
14676 "\n"
14677 msgstr ""
14678
14679 # type: textblock
14680 #. type: textblock
14681 #: ../src/guestfs-actions.pod:4331 ../fish/guestfish-actions.pod:2950
14682 msgid ""
14683 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
14684 "command:"
14685 msgstr ""
14686
14687 # type: verbatim
14688 #. type: verbatim
14689 #: ../src/guestfs-actions.pod:4334 ../fish/guestfish-actions.pod:2953
14690 #, no-wrap
14691 msgid ""
14692 " mke2fs -O journal_dev -b blocksize device\n"
14693 "\n"
14694 msgstr ""
14695
14696 # type: =head2
14697 #. type: =head2
14698 #: ../src/guestfs-actions.pod:4340
14699 msgid "guestfs_mke2journal_L"
14700 msgstr ""
14701
14702 # type: verbatim
14703 #. type: verbatim
14704 #: ../src/guestfs-actions.pod:4342
14705 #, no-wrap
14706 msgid ""
14707 " int\n"
14708 " guestfs_mke2journal_L (guestfs_h *g,\n"
14709 "                        int blocksize,\n"
14710 "                        const char *label,\n"
14711 "                        const char *device);\n"
14712 "\n"
14713 msgstr ""
14714
14715 # type: textblock
14716 #. type: textblock
14717 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2959
14718 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14719 msgstr ""
14720
14721 # type: =head2
14722 #. type: =head2
14723 #: ../src/guestfs-actions.pod:4354
14724 msgid "guestfs_mke2journal_U"
14725 msgstr ""
14726
14727 # type: verbatim
14728 #. type: verbatim
14729 #: ../src/guestfs-actions.pod:4356
14730 #, no-wrap
14731 msgid ""
14732 " int\n"
14733 " guestfs_mke2journal_U (guestfs_h *g,\n"
14734 "                        int blocksize,\n"
14735 "                        const char *uuid,\n"
14736 "                        const char *device);\n"
14737 "\n"
14738 msgstr ""
14739
14740 # type: textblock
14741 #. type: textblock
14742 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2965
14743 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14744 msgstr ""
14745
14746 # type: =head2
14747 #. type: =head2
14748 #: ../src/guestfs-actions.pod:4368
14749 msgid "guestfs_mkfifo"
14750 msgstr ""
14751
14752 # type: verbatim
14753 #. type: verbatim
14754 #: ../src/guestfs-actions.pod:4370
14755 #, no-wrap
14756 msgid ""
14757 " int\n"
14758 " guestfs_mkfifo (guestfs_h *g,\n"
14759 "                 int mode,\n"
14760 "                 const char *path);\n"
14761 "\n"
14762 msgstr ""
14763
14764 # type: textblock
14765 #. type: textblock
14766 #: ../src/guestfs-actions.pod:4375
14767 msgid ""
14768 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14769 "is just a convenient wrapper around C<guestfs_mknod>."
14770 msgstr ""
14771
14772 # type: =head2
14773 #. type: =head2
14774 #: ../src/guestfs-actions.pod:4385
14775 msgid "guestfs_mkfs"
14776 msgstr ""
14777
14778 # type: verbatim
14779 #. type: verbatim
14780 #: ../src/guestfs-actions.pod:4387
14781 #, no-wrap
14782 msgid ""
14783 " int\n"
14784 " guestfs_mkfs (guestfs_h *g,\n"
14785 "               const char *fstype,\n"
14786 "               const char *device);\n"
14787 "\n"
14788 msgstr ""
14789
14790 # type: textblock
14791 #. type: textblock
14792 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2981
14793 msgid ""
14794 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14795 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14796 msgstr ""
14797
14798 # type: =head2
14799 #. type: =head2
14800 #: ../src/guestfs-actions.pod:4400
14801 msgid "guestfs_mkfs_b"
14802 msgstr ""
14803
14804 # type: verbatim
14805 #. type: verbatim
14806 #: ../src/guestfs-actions.pod:4402
14807 #, no-wrap
14808 msgid ""
14809 " int\n"
14810 " guestfs_mkfs_b (guestfs_h *g,\n"
14811 "                 const char *fstype,\n"
14812 "                 int blocksize,\n"
14813 "                 const char *device);\n"
14814 "\n"
14815 msgstr ""
14816
14817 # type: textblock
14818 #. type: textblock
14819 #: ../src/guestfs-actions.pod:4408
14820 msgid ""
14821 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
14822 "block size of the resulting filesystem.  Supported block sizes depend on the "
14823 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
14824 msgstr ""
14825
14826 # type: textblock
14827 #. type: textblock
14828 #: ../src/guestfs-actions.pod:4413 ../src/guestfs-actions.pod:4456
14829 #: ../fish/guestfish-actions.pod:2994 ../fish/guestfish-actions.pod:3021
14830 msgid ""
14831 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
14832 "cluster size."
14833 msgstr ""
14834
14835 # type: textblock
14836 #. type: textblock
14837 #: ../src/guestfs-actions.pod:4418 ../fish/guestfish-actions.pod:2997
14838 msgid ""
14839 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
14840 msgstr ""
14841
14842 # type: =head2
14843 #. type: =head2
14844 #: ../src/guestfs-actions.pod:4427
14845 msgid "guestfs_mkfs_opts"
14846 msgstr ""
14847
14848 # type: verbatim
14849 #. type: verbatim
14850 #: ../src/guestfs-actions.pod:4429
14851 #, no-wrap
14852 msgid ""
14853 " int\n"
14854 " guestfs_mkfs_opts (guestfs_h *g,\n"
14855 "                    const char *fstype,\n"
14856 "                    const char *device,\n"
14857 "                    ...);\n"
14858 "\n"
14859 msgstr ""
14860
14861 #. type: verbatim
14862 #: ../src/guestfs-actions.pod:4440
14863 #, no-wrap
14864 msgid ""
14865 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
14866 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
14867 "\n"
14868 msgstr ""
14869
14870 # type: textblock
14871 #. type: textblock
14872 #: ../src/guestfs-actions.pod:4443 ../fish/guestfish-actions.pod:3008
14873 msgid ""
14874 "This function creates a filesystem on C<device>.  The filesystem type is "
14875 "C<fstype>, for example C<ext3>."
14876 msgstr ""
14877
14878 # type: =item
14879 #. type: =item
14880 #: ../src/guestfs-actions.pod:4450 ../fish/guestfish-actions.pod:3015
14881 msgid "C<blocksize>"
14882 msgstr ""
14883
14884 # type: textblock
14885 #. type: textblock
14886 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:3017
14887 msgid ""
14888 "The filesystem block size.  Supported block sizes depend on the filesystem "
14889 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
14890 "filesystems."
14891 msgstr ""
14892
14893 #. type: textblock
14894 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:3024
14895 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
14896 msgstr ""
14897
14898 #. type: =item
14899 #: ../src/guestfs-actions.pod:4461 ../fish/guestfish-actions.pod:3026
14900 msgid "C<features>"
14901 msgstr ""
14902
14903 #. type: textblock
14904 #: ../src/guestfs-actions.pod:4463 ../fish/guestfish-actions.pod:3028
14905 msgid "This passes the C<-O> parameter to the external mkfs program."
14906 msgstr ""
14907
14908 #. type: textblock
14909 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:3030
14910 msgid ""
14911 "For certain filesystem types, this allows extra filesystem features to be "
14912 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
14913 msgstr ""
14914
14915 #. type: textblock
14916 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3034
14917 msgid ""
14918 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
14919 "type."
14920 msgstr ""
14921
14922 #. type: textblock
14923 #: ../src/guestfs-actions.pod:4476
14924 msgid "(Added in 1.7.19)"
14925 msgstr ""
14926
14927 # type: =head2
14928 #. type: =head2
14929 #: ../src/guestfs-actions.pod:4478
14930 msgid "guestfs_mkfs_opts_va"
14931 msgstr ""
14932
14933 # type: verbatim
14934 #. type: verbatim
14935 #: ../src/guestfs-actions.pod:4480
14936 #, no-wrap
14937 msgid ""
14938 " int\n"
14939 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14940 "                       const char *fstype,\n"
14941 "                       const char *device,\n"
14942 "                       va_list args);\n"
14943 "\n"
14944 msgstr ""
14945
14946 # type: textblock
14947 #. type: textblock
14948 #: ../src/guestfs-actions.pod:4486
14949 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14950 msgstr ""
14951
14952 # type: =head2
14953 #. type: =head2
14954 #: ../src/guestfs-actions.pod:4490
14955 msgid "guestfs_mkfs_opts_argv"
14956 msgstr ""
14957
14958 # type: verbatim
14959 #. type: verbatim
14960 #: ../src/guestfs-actions.pod:4492
14961 #, no-wrap
14962 msgid ""
14963 " int\n"
14964 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14965 "                         const char *fstype,\n"
14966 "                         const char *device,\n"
14967 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14968 "\n"
14969 msgstr ""
14970
14971 # type: textblock
14972 #. type: textblock
14973 #: ../src/guestfs-actions.pod:4498
14974 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14975 msgstr ""
14976
14977 # type: =head2
14978 #. type: =head2
14979 #: ../src/guestfs-actions.pod:4502
14980 msgid "guestfs_mkmountpoint"
14981 msgstr ""
14982
14983 # type: verbatim
14984 #. type: verbatim
14985 #: ../src/guestfs-actions.pod:4504
14986 #, no-wrap
14987 msgid ""
14988 " int\n"
14989 " guestfs_mkmountpoint (guestfs_h *g,\n"
14990 "                       const char *exemptpath);\n"
14991 "\n"
14992 msgstr ""
14993
14994 # type: textblock
14995 #. type: textblock
14996 #: ../src/guestfs-actions.pod:4508
14997 msgid ""
14998 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14999 "that can be used to create extra mountpoints before mounting the first "
15000 "filesystem."
15001 msgstr ""
15002
15003 # type: textblock
15004 #. type: textblock
15005 #: ../src/guestfs-actions.pod:4512 ../fish/guestfish-actions.pod:3049
15006 msgid ""
15007 "These calls are I<only> necessary in some very limited circumstances, mainly "
15008 "the case where you want to mount a mix of unrelated and/or read-only "
15009 "filesystems together."
15010 msgstr ""
15011
15012 # type: textblock
15013 #. type: textblock
15014 #: ../src/guestfs-actions.pod:4516 ../fish/guestfish-actions.pod:3053
15015 msgid ""
15016 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
15017 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
15018 "inside that.  You can unpack this as follows in guestfish:"
15019 msgstr ""
15020
15021 # type: verbatim
15022 #. type: verbatim
15023 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
15024 #, no-wrap
15025 msgid ""
15026 " add-ro Fedora-11-i686-Live.iso\n"
15027 " run\n"
15028 " mkmountpoint /cd\n"
15029 " mkmountpoint /sqsh\n"
15030 " mkmountpoint /ext3fs\n"
15031 " mount /dev/sda /cd\n"
15032 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
15033 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
15034 "\n"
15035 msgstr ""
15036
15037 # type: textblock
15038 #. type: textblock
15039 #: ../src/guestfs-actions.pod:4530 ../fish/guestfish-actions.pod:3067
15040 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
15041 msgstr ""
15042
15043 # type: textblock
15044 #. type: textblock
15045 #: ../src/guestfs-actions.pod:4532
15046 msgid ""
15047 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
15048 "may get unexpected errors if you try to mix these calls.  It is safest to "
15049 "manually unmount filesystems and remove mountpoints after use."
15050 msgstr ""
15051
15052 # type: textblock
15053 #. type: textblock
15054 #: ../src/guestfs-actions.pod:4536
15055 msgid ""
15056 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
15057 "first, so for this to work for manual mountpoints, you must ensure that the "
15058 "innermost mountpoints have the longest pathnames, as in the example code "
15059 "above."
15060 msgstr ""
15061
15062 # type: textblock
15063 #. type: textblock
15064 #: ../src/guestfs-actions.pod:4541 ../fish/guestfish-actions.pod:3078
15065 msgid ""
15066 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
15067 msgstr ""
15068
15069 #. type: textblock
15070 #: ../src/guestfs-actions.pod:4543
15071 msgid ""
15072 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
15073 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
15074 "can also trigger these issues."
15075 msgstr ""
15076
15077 # type: textblock
15078 #. type: textblock
15079 #: ../src/guestfs-actions.pod:4549 ../src/guestfs-actions.pod:4808
15080 #: ../src/guestfs-actions.pod:5718
15081 msgid "(Added in 1.0.62)"
15082 msgstr ""
15083
15084 # type: =head2
15085 #. type: =head2
15086 #: ../src/guestfs-actions.pod:4551
15087 msgid "guestfs_mknod"
15088 msgstr ""
15089
15090 # type: verbatim
15091 #. type: verbatim
15092 #: ../src/guestfs-actions.pod:4553
15093 #, no-wrap
15094 msgid ""
15095 " int\n"
15096 " guestfs_mknod (guestfs_h *g,\n"
15097 "                int mode,\n"
15098 "                int devmajor,\n"
15099 "                int devminor,\n"
15100 "                const char *path);\n"
15101 "\n"
15102 msgstr ""
15103
15104 # type: textblock
15105 #. type: textblock
15106 #: ../src/guestfs-actions.pod:4560 ../fish/guestfish-actions.pod:3088
15107 msgid ""
15108 "This call creates block or character special devices, or named pipes (FIFOs)."
15109 msgstr ""
15110
15111 # type: textblock
15112 #. type: textblock
15113 #: ../src/guestfs-actions.pod:4563 ../fish/guestfish-actions.pod:3091
15114 msgid ""
15115 "The C<mode> parameter should be the mode, using the standard constants.  "
15116 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
15117 "used when creating block and character special devices."
15118 msgstr ""
15119
15120 # type: textblock
15121 #. type: textblock
15122 #: ../src/guestfs-actions.pod:4568
15123 msgid ""
15124 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
15125 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
15126 "regular file).  These constants are available in the standard Linux header "
15127 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
15128 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
15129 "the appropriate constant for you."
15130 msgstr ""
15131
15132 # type: =head2
15133 #. type: =head2
15134 #: ../src/guestfs-actions.pod:4582
15135 msgid "guestfs_mknod_b"
15136 msgstr ""
15137
15138 # type: verbatim
15139 #. type: verbatim
15140 #: ../src/guestfs-actions.pod:4584
15141 #, no-wrap
15142 msgid ""
15143 " int\n"
15144 " guestfs_mknod_b (guestfs_h *g,\n"
15145 "                  int mode,\n"
15146 "                  int devmajor,\n"
15147 "                  int devminor,\n"
15148 "                  const char *path);\n"
15149 "\n"
15150 msgstr ""
15151
15152 # type: textblock
15153 #. type: textblock
15154 #: ../src/guestfs-actions.pod:4591
15155 msgid ""
15156 "This call creates a block device node called C<path> with mode C<mode> and "
15157 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15158 "wrapper around C<guestfs_mknod>."
15159 msgstr ""
15160
15161 # type: =head2
15162 #. type: =head2
15163 #: ../src/guestfs-actions.pod:4601
15164 msgid "guestfs_mknod_c"
15165 msgstr ""
15166
15167 # type: verbatim
15168 #. type: verbatim
15169 #: ../src/guestfs-actions.pod:4603
15170 #, no-wrap
15171 msgid ""
15172 " int\n"
15173 " guestfs_mknod_c (guestfs_h *g,\n"
15174 "                  int mode,\n"
15175 "                  int devmajor,\n"
15176 "                  int devminor,\n"
15177 "                  const char *path);\n"
15178 "\n"
15179 msgstr ""
15180
15181 # type: textblock
15182 #. type: textblock
15183 #: ../src/guestfs-actions.pod:4610
15184 msgid ""
15185 "This call creates a char device node called C<path> with mode C<mode> and "
15186 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
15187 "wrapper around C<guestfs_mknod>."
15188 msgstr ""
15189
15190 # type: =head2
15191 #. type: =head2
15192 #: ../src/guestfs-actions.pod:4620
15193 msgid "guestfs_mkswap"
15194 msgstr ""
15195
15196 # type: verbatim
15197 #. type: verbatim
15198 #: ../src/guestfs-actions.pod:4622
15199 #, no-wrap
15200 msgid ""
15201 " int\n"
15202 " guestfs_mkswap (guestfs_h *g,\n"
15203 "                 const char *device);\n"
15204 "\n"
15205 msgstr ""
15206
15207 # type: textblock
15208 #. type: textblock
15209 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3130
15210 msgid "Create a swap partition on C<device>."
15211 msgstr ""
15212
15213 # type: =head2
15214 #. type: =head2
15215 #: ../src/guestfs-actions.pod:4632
15216 msgid "guestfs_mkswap_L"
15217 msgstr ""
15218
15219 # type: verbatim
15220 #. type: verbatim
15221 #: ../src/guestfs-actions.pod:4634
15222 #, no-wrap
15223 msgid ""
15224 " int\n"
15225 " guestfs_mkswap_L (guestfs_h *g,\n"
15226 "                   const char *label,\n"
15227 "                   const char *device);\n"
15228 "\n"
15229 msgstr ""
15230
15231 # type: textblock
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:4639 ../fish/guestfish-actions.pod:3136
15234 msgid "Create a swap partition on C<device> with label C<label>."
15235 msgstr ""
15236
15237 # type: textblock
15238 #. type: textblock
15239 #: ../src/guestfs-actions.pod:4641 ../fish/guestfish-actions.pod:3138
15240 msgid ""
15241 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
15242 "sda>), just to a partition.  This appears to be a limitation of the kernel "
15243 "or swap tools."
15244 msgstr ""
15245
15246 # type: =head2
15247 #. type: =head2
15248 #: ../src/guestfs-actions.pod:4649
15249 msgid "guestfs_mkswap_U"
15250 msgstr ""
15251
15252 # type: verbatim
15253 #. type: verbatim
15254 #: ../src/guestfs-actions.pod:4651
15255 #, no-wrap
15256 msgid ""
15257 " int\n"
15258 " guestfs_mkswap_U (guestfs_h *g,\n"
15259 "                   const char *uuid,\n"
15260 "                   const char *device);\n"
15261 "\n"
15262 msgstr ""
15263
15264 # type: textblock
15265 #. type: textblock
15266 #: ../src/guestfs-actions.pod:4656 ../fish/guestfish-actions.pod:3146
15267 msgid "Create a swap partition on C<device> with UUID C<uuid>."
15268 msgstr ""
15269
15270 # type: =head2
15271 #. type: =head2
15272 #: ../src/guestfs-actions.pod:4662
15273 msgid "guestfs_mkswap_file"
15274 msgstr ""
15275
15276 # type: verbatim
15277 #. type: verbatim
15278 #: ../src/guestfs-actions.pod:4664
15279 #, no-wrap
15280 msgid ""
15281 " int\n"
15282 " guestfs_mkswap_file (guestfs_h *g,\n"
15283 "                      const char *path);\n"
15284 "\n"
15285 msgstr ""
15286
15287 # type: textblock
15288 #. type: textblock
15289 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3152
15290 msgid "Create a swap file."
15291 msgstr ""
15292
15293 # type: textblock
15294 #. type: textblock
15295 #: ../src/guestfs-actions.pod:4670
15296 msgid ""
15297 "This command just writes a swap file signature to an existing file.  To "
15298 "create the file itself, use something like C<guestfs_fallocate>."
15299 msgstr ""
15300
15301 # type: =head2
15302 #. type: =head2
15303 #: ../src/guestfs-actions.pod:4677
15304 msgid "guestfs_modprobe"
15305 msgstr ""
15306
15307 # type: verbatim
15308 #. type: verbatim
15309 #: ../src/guestfs-actions.pod:4679
15310 #, no-wrap
15311 msgid ""
15312 " int\n"
15313 " guestfs_modprobe (guestfs_h *g,\n"
15314 "                   const char *modulename);\n"
15315 "\n"
15316 msgstr ""
15317
15318 # type: textblock
15319 #. type: textblock
15320 #: ../src/guestfs-actions.pod:4683 ../fish/guestfish-actions.pod:3161
15321 msgid "This loads a kernel module in the appliance."
15322 msgstr ""
15323
15324 # type: textblock
15325 #. type: textblock
15326 #: ../src/guestfs-actions.pod:4685 ../fish/guestfish-actions.pod:3163
15327 msgid ""
15328 "The kernel module must have been whitelisted when libguestfs was built (see "
15329 "C<appliance/kmod.whitelist.in> in the source)."
15330 msgstr ""
15331
15332 # type: =head2
15333 #. type: =head2
15334 #: ../src/guestfs-actions.pod:4692
15335 msgid "guestfs_mount"
15336 msgstr ""
15337
15338 # type: verbatim
15339 #. type: verbatim
15340 #: ../src/guestfs-actions.pod:4694
15341 #, no-wrap
15342 msgid ""
15343 " int\n"
15344 " guestfs_mount (guestfs_h *g,\n"
15345 "                const char *device,\n"
15346 "                const char *mountpoint);\n"
15347 "\n"
15348 msgstr ""
15349
15350 # type: textblock
15351 #. type: textblock
15352 #: ../src/guestfs-actions.pod:4699 ../fish/guestfish-actions.pod:3170
15353 msgid ""
15354 "Mount a guest disk at a position in the filesystem.  Block devices are named "
15355 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
15356 "those block devices contain partitions, they will have the usual names (eg. "
15357 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
15358 msgstr ""
15359
15360 # type: textblock
15361 #. type: textblock
15362 #: ../src/guestfs-actions.pod:4705 ../fish/guestfish-actions.pod:3176
15363 msgid ""
15364 "The rules are the same as for L<mount(2)>: A filesystem must first be "
15365 "mounted on C</> before others can be mounted.  Other filesystems can only be "
15366 "mounted on directories which already exist."
15367 msgstr ""
15368
15369 # type: textblock
15370 #. type: textblock
15371 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
15372 msgid ""
15373 "The mounted filesystem is writable, if we have sufficient permissions on the "
15374 "underlying device."
15375 msgstr ""
15376
15377 # type: textblock
15378 #. type: textblock
15379 #: ../src/guestfs-actions.pod:4713
15380 msgid ""
15381 "B<Important note:> When you use this call, the filesystem options C<sync> "
15382 "and C<noatime> are set implicitly.  This was originally done because we "
15383 "thought it would improve reliability, but it turns out that I<-o sync> has a "
15384 "very large negative performance impact and negligible effect on "
15385 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
15386 "in any code that needs performance, and instead use C<guestfs_mount_options> "
15387 "(use an empty string for the first parameter if you don't want any options)."
15388 msgstr ""
15389
15390 # type: =head2
15391 #. type: =head2
15392 #: ../src/guestfs-actions.pod:4727
15393 msgid "guestfs_mount_loop"
15394 msgstr ""
15395
15396 # type: verbatim
15397 #. type: verbatim
15398 #: ../src/guestfs-actions.pod:4729
15399 #, no-wrap
15400 msgid ""
15401 " int\n"
15402 " guestfs_mount_loop (guestfs_h *g,\n"
15403 "                     const char *file,\n"
15404 "                     const char *mountpoint);\n"
15405 "\n"
15406 msgstr ""
15407
15408 # type: textblock
15409 #. type: textblock
15410 #: ../src/guestfs-actions.pod:4734 ../fish/guestfish-actions.pod:3198
15411 msgid ""
15412 "This command lets you mount C<file> (a filesystem image in a file) on a "
15413 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
15414 "mountpoint>."
15415 msgstr ""
15416
15417 # type: =head2
15418 #. type: =head2
15419 #: ../src/guestfs-actions.pod:4742
15420 msgid "guestfs_mount_options"
15421 msgstr ""
15422
15423 # type: verbatim
15424 #. type: verbatim
15425 #: ../src/guestfs-actions.pod:4744
15426 #, no-wrap
15427 msgid ""
15428 " int\n"
15429 " guestfs_mount_options (guestfs_h *g,\n"
15430 "                        const char *options,\n"
15431 "                        const char *device,\n"
15432 "                        const char *mountpoint);\n"
15433 "\n"
15434 msgstr ""
15435
15436 # type: textblock
15437 #. type: textblock
15438 #: ../src/guestfs-actions.pod:4750
15439 msgid ""
15440 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15441 "the mount options as for the L<mount(8)> I<-o> flag."
15442 msgstr ""
15443
15444 # type: textblock
15445 #. type: textblock
15446 #: ../src/guestfs-actions.pod:4754 ../fish/guestfish-actions.pod:3210
15447 msgid ""
15448 "If the C<options> parameter is an empty string, then no options are passed "
15449 "(all options default to whatever the filesystem uses)."
15450 msgstr ""
15451
15452 # type: textblock
15453 #. type: textblock
15454 #: ../src/guestfs-actions.pod:4760 ../src/guestfs-actions.pod:4774
15455 #: ../src/guestfs-actions.pod:4791
15456 msgid "(Added in 1.0.10)"
15457 msgstr ""
15458
15459 # type: =head2
15460 #. type: =head2
15461 #: ../src/guestfs-actions.pod:4762
15462 msgid "guestfs_mount_ro"
15463 msgstr ""
15464
15465 # type: verbatim
15466 #. type: verbatim
15467 #: ../src/guestfs-actions.pod:4764
15468 #, no-wrap
15469 msgid ""
15470 " int\n"
15471 " guestfs_mount_ro (guestfs_h *g,\n"
15472 "                   const char *device,\n"
15473 "                   const char *mountpoint);\n"
15474 "\n"
15475 msgstr ""
15476
15477 # type: textblock
15478 #. type: textblock
15479 #: ../src/guestfs-actions.pod:4769
15480 msgid ""
15481 "This is the same as the C<guestfs_mount> command, but it mounts the "
15482 "filesystem with the read-only (I<-o ro>) flag."
15483 msgstr ""
15484
15485 # type: =head2
15486 #. type: =head2
15487 #: ../src/guestfs-actions.pod:4776
15488 msgid "guestfs_mount_vfs"
15489 msgstr ""
15490
15491 # type: verbatim
15492 #. type: verbatim
15493 #: ../src/guestfs-actions.pod:4778
15494 #, no-wrap
15495 msgid ""
15496 " int\n"
15497 " guestfs_mount_vfs (guestfs_h *g,\n"
15498 "                    const char *options,\n"
15499 "                    const char *vfstype,\n"
15500 "                    const char *device,\n"
15501 "                    const char *mountpoint);\n"
15502 "\n"
15503 msgstr ""
15504
15505 # type: textblock
15506 #. type: textblock
15507 #: ../src/guestfs-actions.pod:4785
15508 msgid ""
15509 "This is the same as the C<guestfs_mount> command, but it allows you to set "
15510 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
15511 "t> flags."
15512 msgstr ""
15513
15514 # type: =head2
15515 #. type: =head2
15516 #: ../src/guestfs-actions.pod:4793
15517 msgid "guestfs_mountpoints"
15518 msgstr ""
15519
15520 # type: verbatim
15521 #. type: verbatim
15522 #: ../src/guestfs-actions.pod:4795
15523 #, no-wrap
15524 msgid ""
15525 " char **\n"
15526 " guestfs_mountpoints (guestfs_h *g);\n"
15527 "\n"
15528 msgstr ""
15529
15530 # type: textblock
15531 #. type: textblock
15532 #: ../src/guestfs-actions.pod:4798
15533 msgid ""
15534 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
15535 "devices.  This one returns a hash table (map) of device name to directory "
15536 "where the device is mounted."
15537 msgstr ""
15538
15539 # type: =head2
15540 #. type: =head2
15541 #: ../src/guestfs-actions.pod:4810
15542 msgid "guestfs_mounts"
15543 msgstr ""
15544
15545 # type: verbatim
15546 #. type: verbatim
15547 #: ../src/guestfs-actions.pod:4812
15548 #, no-wrap
15549 msgid ""
15550 " char **\n"
15551 " guestfs_mounts (guestfs_h *g);\n"
15552 "\n"
15553 msgstr ""
15554
15555 # type: textblock
15556 #. type: textblock
15557 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3241
15558 msgid ""
15559 "This returns the list of currently mounted filesystems.  It returns the list "
15560 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
15561 msgstr ""
15562
15563 # type: textblock
15564 #. type: textblock
15565 #: ../src/guestfs-actions.pod:4818 ../fish/guestfish-actions.pod:3244
15566 msgid "Some internal mounts are not shown."
15567 msgstr ""
15568
15569 # type: textblock
15570 #. type: textblock
15571 #: ../src/guestfs-actions.pod:4820
15572 msgid "See also: C<guestfs_mountpoints>"
15573 msgstr ""
15574
15575 # type: =head2
15576 #. type: =head2
15577 #: ../src/guestfs-actions.pod:4828
15578 msgid "guestfs_mv"
15579 msgstr ""
15580
15581 # type: verbatim
15582 #. type: verbatim
15583 #: ../src/guestfs-actions.pod:4830
15584 #, no-wrap
15585 msgid ""
15586 " int\n"
15587 " guestfs_mv (guestfs_h *g,\n"
15588 "             const char *src,\n"
15589 "             const char *dest);\n"
15590 "\n"
15591 msgstr ""
15592
15593 # type: textblock
15594 #. type: textblock
15595 #: ../src/guestfs-actions.pod:4835 ../fish/guestfish-actions.pod:3252
15596 msgid ""
15597 "This moves a file from C<src> to C<dest> where C<dest> is either a "
15598 "destination filename or destination directory."
15599 msgstr ""
15600
15601 # type: =head2
15602 #. type: =head2
15603 #: ../src/guestfs-actions.pod:4842
15604 msgid "guestfs_ntfs_3g_probe"
15605 msgstr ""
15606
15607 # type: verbatim
15608 #. type: verbatim
15609 #: ../src/guestfs-actions.pod:4844
15610 #, no-wrap
15611 msgid ""
15612 " int\n"
15613 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
15614 "                        int rw,\n"
15615 "                        const char *device);\n"
15616 "\n"
15617 msgstr ""
15618
15619 # type: textblock
15620 #. type: textblock
15621 #: ../src/guestfs-actions.pod:4849 ../fish/guestfish-actions.pod:3259
15622 msgid ""
15623 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
15624 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
15625 "write, and some cannot be mounted at all)."
15626 msgstr ""
15627
15628 # type: textblock
15629 #. type: textblock
15630 #: ../src/guestfs-actions.pod:4853 ../fish/guestfish-actions.pod:3263
15631 msgid ""
15632 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
15633 "can be mounted read-write.  Set it to false if you want to test if the "
15634 "volume can be mounted read-only."
15635 msgstr ""
15636
15637 # type: textblock
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3267
15640 msgid ""
15641 "The return value is an integer which C<0> if the operation would succeed, or "
15642 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
15643 msgstr ""
15644
15645 # type: textblock
15646 #. type: textblock
15647 #: ../src/guestfs-actions.pod:4863
15648 msgid "(Added in 1.0.43)"
15649 msgstr ""
15650
15651 # type: =head2
15652 #. type: =head2
15653 #: ../src/guestfs-actions.pod:4865
15654 msgid "guestfs_ntfsresize"
15655 msgstr ""
15656
15657 # type: verbatim
15658 #. type: verbatim
15659 #: ../src/guestfs-actions.pod:4867
15660 #, no-wrap
15661 msgid ""
15662 " int\n"
15663 " guestfs_ntfsresize (guestfs_h *g,\n"
15664 "                     const char *device);\n"
15665 "\n"
15666 msgstr ""
15667
15668 # type: textblock
15669 #. type: textblock
15670 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3275
15671 msgid ""
15672 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
15673 "size of the underlying device.  See also L<ntfsresize(8)>."
15674 msgstr ""
15675
15676 # type: =head2
15677 #. type: =head2
15678 #: ../src/guestfs-actions.pod:4879
15679 msgid "guestfs_ntfsresize_size"
15680 msgstr ""
15681
15682 # type: verbatim
15683 #. type: verbatim
15684 #: ../src/guestfs-actions.pod:4881
15685 #, no-wrap
15686 msgid ""
15687 " int\n"
15688 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15689 "                          const char *device,\n"
15690 "                          int64_t size);\n"
15691 "\n"
15692 msgstr ""
15693
15694 # type: textblock
15695 #. type: textblock
15696 #: ../src/guestfs-actions.pod:4886
15697 msgid ""
15698 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15699 "to specify the new size (in bytes) explicitly."
15700 msgstr ""
15701
15702 # type: textblock
15703 #. type: textblock
15704 #: ../src/guestfs-actions.pod:4891 ../src/guestfs-actions.pod:5327
15705 #: ../src/guestfs-actions.pod:5400 ../src/guestfs-actions.pod:5666
15706 #: ../src/guestfs-actions.pod:7237
15707 msgid "(Added in 1.3.14)"
15708 msgstr ""
15709
15710 # type: =head2
15711 #. type: =head2
15712 #: ../src/guestfs-actions.pod:4893
15713 msgid "guestfs_part_add"
15714 msgstr ""
15715
15716 # type: verbatim
15717 #. type: verbatim
15718 #: ../src/guestfs-actions.pod:4895
15719 #, no-wrap
15720 msgid ""
15721 " int\n"
15722 " guestfs_part_add (guestfs_h *g,\n"
15723 "                   const char *device,\n"
15724 "                   const char *prlogex,\n"
15725 "                   int64_t startsect,\n"
15726 "                   int64_t endsect);\n"
15727 "\n"
15728 msgstr ""
15729
15730 # type: textblock
15731 #. type: textblock
15732 #: ../src/guestfs-actions.pod:4902
15733 msgid ""
15734 "This command adds a partition to C<device>.  If there is no partition table "
15735 "on the device, call C<guestfs_part_init> first."
15736 msgstr ""
15737
15738 # type: textblock
15739 #. type: textblock
15740 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3293
15741 msgid ""
15742 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15743 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15744 "C<logical>) and C<e> (or C<extended>) partition types."
15745 msgstr ""
15746
15747 # type: textblock
15748 #. type: textblock
15749 #: ../src/guestfs-actions.pod:4910 ../fish/guestfish-actions.pod:3298
15750 msgid ""
15751 "C<startsect> and C<endsect> are the start and end of the partition in "
15752 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15753 "from the end of the disk (C<-1> is the last sector)."
15754 msgstr ""
15755
15756 # type: textblock
15757 #. type: textblock
15758 #: ../src/guestfs-actions.pod:4914
15759 msgid ""
15760 "Creating a partition which covers the whole disk is not so easy.  Use "
15761 "C<guestfs_part_disk> to do that."
15762 msgstr ""
15763
15764 # type: textblock
15765 #. type: textblock
15766 #: ../src/guestfs-actions.pod:4919 ../src/guestfs-actions.pod:4957
15767 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5088
15768 #: ../src/guestfs-actions.pod:5126 ../src/guestfs-actions.pod:5145
15769 #: ../src/guestfs-actions.pod:5185
15770 msgid "(Added in 1.0.78)"
15771 msgstr ""
15772
15773 # type: =head2
15774 #. type: =head2
15775 #: ../src/guestfs-actions.pod:4921
15776 msgid "guestfs_part_del"
15777 msgstr ""
15778
15779 # type: verbatim
15780 #. type: verbatim
15781 #: ../src/guestfs-actions.pod:4923
15782 #, no-wrap
15783 msgid ""
15784 " int\n"
15785 " guestfs_part_del (guestfs_h *g,\n"
15786 "                   const char *device,\n"
15787 "                   int partnum);\n"
15788 "\n"
15789 msgstr ""
15790
15791 # type: textblock
15792 #. type: textblock
15793 #: ../src/guestfs-actions.pod:4928 ../fish/guestfish-actions.pod:3309
15794 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15795 msgstr ""
15796
15797 # type: textblock
15798 #. type: textblock
15799 #: ../src/guestfs-actions.pod:4930 ../fish/guestfish-actions.pod:3311
15800 msgid ""
15801 "Note that in the case of MBR partitioning, deleting an extended partition "
15802 "also deletes any logical partitions it contains."
15803 msgstr ""
15804
15805 # type: =head2
15806 #. type: =head2
15807 #: ../src/guestfs-actions.pod:4938
15808 msgid "guestfs_part_disk"
15809 msgstr ""
15810
15811 # type: verbatim
15812 #. type: verbatim
15813 #: ../src/guestfs-actions.pod:4940
15814 #, no-wrap
15815 msgid ""
15816 " int\n"
15817 " guestfs_part_disk (guestfs_h *g,\n"
15818 "                    const char *device,\n"
15819 "                    const char *parttype);\n"
15820 "\n"
15821 msgstr ""
15822
15823 # type: textblock
15824 #. type: textblock
15825 #: ../src/guestfs-actions.pod:4945
15826 msgid ""
15827 "This command is simply a combination of C<guestfs_part_init> followed by "
15828 "C<guestfs_part_add> to create a single primary partition covering the whole "
15829 "disk."
15830 msgstr ""
15831
15832 # type: textblock
15833 #. type: textblock
15834 #: ../src/guestfs-actions.pod:4949
15835 msgid ""
15836 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
15837 "possible values are described in C<guestfs_part_init>."
15838 msgstr ""
15839
15840 # type: =head2
15841 #. type: =head2
15842 #: ../src/guestfs-actions.pod:4959
15843 msgid "guestfs_part_get_bootable"
15844 msgstr ""
15845
15846 # type: verbatim
15847 #. type: verbatim
15848 #: ../src/guestfs-actions.pod:4961
15849 #, no-wrap
15850 msgid ""
15851 " int\n"
15852 " guestfs_part_get_bootable (guestfs_h *g,\n"
15853 "                            const char *device,\n"
15854 "                            int partnum);\n"
15855 "\n"
15856 msgstr ""
15857
15858 # type: textblock
15859 #. type: textblock
15860 #: ../src/guestfs-actions.pod:4966 ../fish/guestfish-actions.pod:3333
15861 msgid ""
15862 "This command returns true if the partition C<partnum> on C<device> has the "
15863 "bootable flag set."
15864 msgstr ""
15865
15866 # type: textblock
15867 #. type: textblock
15868 #: ../src/guestfs-actions.pod:4969
15869 msgid "See also C<guestfs_part_set_bootable>."
15870 msgstr ""
15871
15872 # type: =head2
15873 #. type: =head2
15874 #: ../src/guestfs-actions.pod:4975
15875 msgid "guestfs_part_get_mbr_id"
15876 msgstr ""
15877
15878 # type: verbatim
15879 #. type: verbatim
15880 #: ../src/guestfs-actions.pod:4977
15881 #, no-wrap
15882 msgid ""
15883 " int\n"
15884 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15885 "                          const char *device,\n"
15886 "                          int partnum);\n"
15887 "\n"
15888 msgstr ""
15889
15890 # type: textblock
15891 #. type: textblock
15892 #: ../src/guestfs-actions.pod:4982 ../fish/guestfish-actions.pod:3342
15893 msgid ""
15894 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15895 "partition C<partnum>."
15896 msgstr ""
15897
15898 # type: textblock
15899 #. type: textblock
15900 #: ../src/guestfs-actions.pod:4985 ../src/guestfs-actions.pod:5161
15901 msgid ""
15902 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
15903 "undefined results for other partition table types (see "
15904 "C<guestfs_part_get_parttype>)."
15905 msgstr ""
15906
15907 # type: =head2
15908 #. type: =head2
15909 #: ../src/guestfs-actions.pod:4993
15910 msgid "guestfs_part_get_parttype"
15911 msgstr ""
15912
15913 # type: verbatim
15914 #. type: verbatim
15915 #: ../src/guestfs-actions.pod:4995
15916 #, no-wrap
15917 msgid ""
15918 " char *\n"
15919 " guestfs_part_get_parttype (guestfs_h *g,\n"
15920 "                            const char *device);\n"
15921 "\n"
15922 msgstr ""
15923
15924 # type: textblock
15925 #. type: textblock
15926 #: ../src/guestfs-actions.pod:4999 ../fish/guestfish-actions.pod:3353
15927 msgid ""
15928 "This command examines the partition table on C<device> and returns the "
15929 "partition table type (format) being used."
15930 msgstr ""
15931
15932 # type: textblock
15933 #. type: textblock
15934 #: ../src/guestfs-actions.pod:5002
15935 msgid ""
15936 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15937 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15938 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15939 msgstr ""
15940
15941 # type: =head2
15942 #. type: =head2
15943 #: ../src/guestfs-actions.pod:5012
15944 msgid "guestfs_part_init"
15945 msgstr ""
15946
15947 # type: verbatim
15948 #. type: verbatim
15949 #: ../src/guestfs-actions.pod:5014
15950 #, no-wrap
15951 msgid ""
15952 " int\n"
15953 " guestfs_part_init (guestfs_h *g,\n"
15954 "                    const char *device,\n"
15955 "                    const char *parttype);\n"
15956 "\n"
15957 msgstr ""
15958
15959 # type: textblock
15960 #. type: textblock
15961 #: ../src/guestfs-actions.pod:5019 ../fish/guestfish-actions.pod:3365
15962 msgid ""
15963 "This creates an empty partition table on C<device> of one of the partition "
15964 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
15965 "(for large disks)."
15966 msgstr ""
15967
15968 # type: textblock
15969 #. type: textblock
15970 #: ../src/guestfs-actions.pod:5023
15971 msgid ""
15972 "Initially there are no partitions.  Following this, you should call "
15973 "C<guestfs_part_add> for each partition required."
15974 msgstr ""
15975
15976 # type: textblock
15977 #. type: textblock
15978 #: ../src/guestfs-actions.pod:5026 ../fish/guestfish-actions.pod:3372
15979 msgid "Possible values for C<parttype> are:"
15980 msgstr ""
15981
15982 # type: =item
15983 #. type: =item
15984 #: ../src/guestfs-actions.pod:5030 ../fish/guestfish-actions.pod:3376
15985 msgid "B<efi> | B<gpt>"
15986 msgstr ""
15987
15988 # type: textblock
15989 #. type: textblock
15990 #: ../src/guestfs-actions.pod:5032 ../fish/guestfish-actions.pod:3378
15991 msgid "Intel EFI / GPT partition table."
15992 msgstr ""
15993
15994 # type: textblock
15995 #. type: textblock
15996 #: ../src/guestfs-actions.pod:5034 ../fish/guestfish-actions.pod:3380
15997 msgid ""
15998 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15999 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
16000 "the C<mbr> format."
16001 msgstr ""
16002
16003 # type: =item
16004 #. type: =item
16005 #: ../src/guestfs-actions.pod:5038 ../fish/guestfish-actions.pod:3384
16006 msgid "B<mbr> | B<msdos>"
16007 msgstr ""
16008
16009 # type: textblock
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
16012 msgid ""
16013 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
16014 "Windows.  This partition type will B<only> work for device sizes up to 2 "
16015 "TB.  For large disks we recommend using C<gpt>."
16016 msgstr ""
16017
16018 # type: textblock
16019 #. type: textblock
16020 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
16021 msgid ""
16022 "Other partition table types that may work but are not supported include:"
16023 msgstr ""
16024
16025 # type: =item
16026 #. type: =item
16027 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3398
16028 msgid "B<aix>"
16029 msgstr ""
16030
16031 # type: textblock
16032 #. type: textblock
16033 #: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3400
16034 msgid "AIX disk labels."
16035 msgstr ""
16036
16037 # type: =item
16038 #. type: =item
16039 #: ../src/guestfs-actions.pod:5056 ../fish/guestfish-actions.pod:3402
16040 msgid "B<amiga> | B<rdb>"
16041 msgstr ""
16042
16043 # type: textblock
16044 #. type: textblock
16045 #: ../src/guestfs-actions.pod:5058 ../fish/guestfish-actions.pod:3404
16046 msgid "Amiga \"Rigid Disk Block\" format."
16047 msgstr ""
16048
16049 # type: =item
16050 #. type: =item
16051 #: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3406
16052 msgid "B<bsd>"
16053 msgstr ""
16054
16055 # type: textblock
16056 #. type: textblock
16057 #: ../src/guestfs-actions.pod:5062 ../fish/guestfish-actions.pod:3408
16058 msgid "BSD disk labels."
16059 msgstr ""
16060
16061 # type: =item
16062 #. type: =item
16063 #: ../src/guestfs-actions.pod:5064 ../fish/guestfish-actions.pod:3410
16064 msgid "B<dasd>"
16065 msgstr ""
16066
16067 # type: textblock
16068 #. type: textblock
16069 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3412
16070 msgid "DASD, used on IBM mainframes."
16071 msgstr ""
16072
16073 # type: =item
16074 #. type: =item
16075 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
16076 msgid "B<dvh>"
16077 msgstr ""
16078
16079 # type: textblock
16080 #. type: textblock
16081 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3416
16082 msgid "MIPS/SGI volumes."
16083 msgstr ""
16084
16085 # type: =item
16086 #. type: =item
16087 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3418
16088 msgid "B<mac>"
16089 msgstr ""
16090
16091 # type: textblock
16092 #. type: textblock
16093 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3420
16094 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
16095 msgstr ""
16096
16097 # type: =item
16098 #. type: =item
16099 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3422
16100 msgid "B<pc98>"
16101 msgstr ""
16102
16103 # type: textblock
16104 #. type: textblock
16105 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
16106 msgid "NEC PC-98 format, common in Japan apparently."
16107 msgstr ""
16108
16109 # type: =item
16110 #. type: =item
16111 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
16112 msgid "B<sun>"
16113 msgstr ""
16114
16115 # type: textblock
16116 #. type: textblock
16117 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
16118 msgid "Sun disk labels."
16119 msgstr ""
16120
16121 # type: =head2
16122 #. type: =head2
16123 #: ../src/guestfs-actions.pod:5090
16124 msgid "guestfs_part_list"
16125 msgstr ""
16126
16127 # type: verbatim
16128 #. type: verbatim
16129 #: ../src/guestfs-actions.pod:5092
16130 #, no-wrap
16131 msgid ""
16132 " struct guestfs_partition_list *\n"
16133 " guestfs_part_list (guestfs_h *g,\n"
16134 "                    const char *device);\n"
16135 "\n"
16136 msgstr ""
16137
16138 # type: textblock
16139 #. type: textblock
16140 #: ../src/guestfs-actions.pod:5096 ../fish/guestfish-actions.pod:3436
16141 msgid ""
16142 "This command parses the partition table on C<device> and returns the list of "
16143 "partitions found."
16144 msgstr ""
16145
16146 # type: textblock
16147 #. type: textblock
16148 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3439
16149 msgid "The fields in the returned structure are:"
16150 msgstr ""
16151
16152 # type: =item
16153 #. type: =item
16154 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3443
16155 msgid "B<part_num>"
16156 msgstr ""
16157
16158 # type: textblock
16159 #. type: textblock
16160 #: ../src/guestfs-actions.pod:5105 ../fish/guestfish-actions.pod:3445
16161 msgid "Partition number, counting from 1."
16162 msgstr ""
16163
16164 # type: =item
16165 #. type: =item
16166 #: ../src/guestfs-actions.pod:5107 ../fish/guestfish-actions.pod:3447
16167 msgid "B<part_start>"
16168 msgstr ""
16169
16170 # type: textblock
16171 #. type: textblock
16172 #: ../src/guestfs-actions.pod:5109
16173 msgid ""
16174 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
16175 "the device's sector size, see C<guestfs_blockdev_getss>."
16176 msgstr ""
16177
16178 # type: =item
16179 #. type: =item
16180 #: ../src/guestfs-actions.pod:5112 ../fish/guestfish-actions.pod:3452
16181 msgid "B<part_end>"
16182 msgstr ""
16183
16184 # type: textblock
16185 #. type: textblock
16186 #: ../src/guestfs-actions.pod:5114 ../fish/guestfish-actions.pod:3454
16187 msgid "End of the partition in bytes."
16188 msgstr ""
16189
16190 # type: =item
16191 #. type: =item
16192 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3456
16193 msgid "B<part_size>"
16194 msgstr ""
16195
16196 # type: textblock
16197 #. type: textblock
16198 #: ../src/guestfs-actions.pod:5118 ../fish/guestfish-actions.pod:3458
16199 msgid "Size of the partition in bytes."
16200 msgstr ""
16201
16202 # type: textblock
16203 #. type: textblock
16204 #: ../src/guestfs-actions.pod:5122
16205 msgid ""
16206 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
16207 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
16208 "use>."
16209 msgstr ""
16210
16211 # type: =head2
16212 #. type: =head2
16213 #: ../src/guestfs-actions.pod:5128
16214 msgid "guestfs_part_set_bootable"
16215 msgstr ""
16216
16217 # type: verbatim
16218 #. type: verbatim
16219 #: ../src/guestfs-actions.pod:5130
16220 #, no-wrap
16221 msgid ""
16222 " int\n"
16223 " guestfs_part_set_bootable (guestfs_h *g,\n"
16224 "                            const char *device,\n"
16225 "                            int partnum,\n"
16226 "                            int bootable);\n"
16227 "\n"
16228 msgstr ""
16229
16230 # type: textblock
16231 #. type: textblock
16232 #: ../src/guestfs-actions.pod:5136 ../fish/guestfish-actions.pod:3466
16233 msgid ""
16234 "This sets the bootable flag on partition numbered C<partnum> on device "
16235 "C<device>.  Note that partitions are numbered from 1."
16236 msgstr ""
16237
16238 # type: textblock
16239 #. type: textblock
16240 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3469
16241 msgid ""
16242 "The bootable flag is used by some operating systems (notably Windows) to "
16243 "determine which partition to boot from.  It is by no means universally "
16244 "recognized."
16245 msgstr ""
16246
16247 # type: =head2
16248 #. type: =head2
16249 #: ../src/guestfs-actions.pod:5147
16250 msgid "guestfs_part_set_mbr_id"
16251 msgstr ""
16252
16253 # type: verbatim
16254 #. type: verbatim
16255 #: ../src/guestfs-actions.pod:5149
16256 #, no-wrap
16257 msgid ""
16258 " int\n"
16259 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
16260 "                          const char *device,\n"
16261 "                          int partnum,\n"
16262 "                          int idbyte);\n"
16263 "\n"
16264 msgstr ""
16265
16266 # type: textblock
16267 #. type: textblock
16268 #: ../src/guestfs-actions.pod:5155 ../fish/guestfish-actions.pod:3477
16269 msgid ""
16270 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
16271 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
16272 "documentation are in fact hexadecimal numbers, but usually documented "
16273 "without any leading \"0x\" which might be confusing."
16274 msgstr ""
16275
16276 # type: =head2
16277 #. type: =head2
16278 #: ../src/guestfs-actions.pod:5169
16279 msgid "guestfs_part_set_name"
16280 msgstr ""
16281
16282 # type: verbatim
16283 #. type: verbatim
16284 #: ../src/guestfs-actions.pod:5171
16285 #, no-wrap
16286 msgid ""
16287 " int\n"
16288 " guestfs_part_set_name (guestfs_h *g,\n"
16289 "                        const char *device,\n"
16290 "                        int partnum,\n"
16291 "                        const char *name);\n"
16292 "\n"
16293 msgstr ""
16294
16295 # type: textblock
16296 #. type: textblock
16297 #: ../src/guestfs-actions.pod:5177 ../fish/guestfish-actions.pod:3491
16298 msgid ""
16299 "This sets the partition name on partition numbered C<partnum> on device "
16300 "C<device>.  Note that partitions are numbered from 1."
16301 msgstr ""
16302
16303 # type: textblock
16304 #. type: textblock
16305 #: ../src/guestfs-actions.pod:5180 ../fish/guestfish-actions.pod:3494
16306 msgid ""
16307 "The partition name can only be set on certain types of partition table.  "
16308 "This works on C<gpt> but not on C<mbr> partitions."
16309 msgstr ""
16310
16311 # type: =head2
16312 #. type: =head2
16313 #: ../src/guestfs-actions.pod:5187
16314 msgid "guestfs_part_to_dev"
16315 msgstr ""
16316
16317 # type: verbatim
16318 #. type: verbatim
16319 #: ../src/guestfs-actions.pod:5189
16320 #, no-wrap
16321 msgid ""
16322 " char *\n"
16323 " guestfs_part_to_dev (guestfs_h *g,\n"
16324 "                      const char *partition);\n"
16325 "\n"
16326 msgstr ""
16327
16328 # type: textblock
16329 #. type: textblock
16330 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3501
16331 msgid ""
16332 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
16333 "partition number, returning the device name (eg. \"/dev/sdb\")."
16334 msgstr ""
16335
16336 # type: textblock
16337 #. type: textblock
16338 #: ../src/guestfs-actions.pod:5197
16339 msgid ""
16340 "The named partition must exist, for example as a string returned from "
16341 "C<guestfs_list_partitions>."
16342 msgstr ""
16343
16344 # type: =head2
16345 #. type: =head2
16346 #: ../src/guestfs-actions.pod:5205
16347 msgid "guestfs_ping_daemon"
16348 msgstr ""
16349
16350 # type: verbatim
16351 #. type: verbatim
16352 #: ../src/guestfs-actions.pod:5207
16353 #, no-wrap
16354 msgid ""
16355 " int\n"
16356 " guestfs_ping_daemon (guestfs_h *g);\n"
16357 "\n"
16358 msgstr ""
16359
16360 # type: textblock
16361 #. type: textblock
16362 #: ../src/guestfs-actions.pod:5210 ../fish/guestfish-actions.pod:3512
16363 msgid ""
16364 "This is a test probe into the guestfs daemon running inside the qemu "
16365 "subprocess.  Calling this function checks that the daemon responds to the "
16366 "ping message, without affecting the daemon or attached block device(s) in "
16367 "any other way."
16368 msgstr ""
16369
16370 # type: =head2
16371 #. type: =head2
16372 #: ../src/guestfs-actions.pod:5219
16373 msgid "guestfs_pread"
16374 msgstr ""
16375
16376 # type: verbatim
16377 #. type: verbatim
16378 #: ../src/guestfs-actions.pod:5221
16379 #, no-wrap
16380 msgid ""
16381 " char *\n"
16382 " guestfs_pread (guestfs_h *g,\n"
16383 "                const char *path,\n"
16384 "                int count,\n"
16385 "                int64_t offset,\n"
16386 "                size_t *size_r);\n"
16387 "\n"
16388 msgstr ""
16389
16390 # type: textblock
16391 #. type: textblock
16392 #: ../src/guestfs-actions.pod:5228 ../fish/guestfish-actions.pod:3521
16393 msgid ""
16394 "This command lets you read part of a file.  It reads C<count> bytes of the "
16395 "file, starting at C<offset>, from file C<path>."
16396 msgstr ""
16397
16398 # type: textblock
16399 #. type: textblock
16400 #: ../src/guestfs-actions.pod:5231 ../src/guestfs-actions.pod:5257
16401 #: ../fish/guestfish-actions.pod:3524 ../fish/guestfish-actions.pod:3539
16402 msgid ""
16403 "This may read fewer bytes than requested.  For further details see the "
16404 "L<pread(2)> system call."
16405 msgstr ""
16406
16407 # type: textblock
16408 #. type: textblock
16409 #: ../src/guestfs-actions.pod:5234
16410 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
16411 msgstr ""
16412
16413 # type: =head2
16414 #. type: =head2
16415 #: ../src/guestfs-actions.pod:5245
16416 msgid "guestfs_pread_device"
16417 msgstr ""
16418
16419 # type: verbatim
16420 #. type: verbatim
16421 #: ../src/guestfs-actions.pod:5247
16422 #, no-wrap
16423 msgid ""
16424 " char *\n"
16425 " guestfs_pread_device (guestfs_h *g,\n"
16426 "                       const char *device,\n"
16427 "                       int count,\n"
16428 "                       int64_t offset,\n"
16429 "                       size_t *size_r);\n"
16430 "\n"
16431 msgstr ""
16432
16433 # type: textblock
16434 #. type: textblock
16435 #: ../src/guestfs-actions.pod:5254 ../fish/guestfish-actions.pod:3536
16436 msgid ""
16437 "This command lets you read part of a file.  It reads C<count> bytes of "
16438 "C<device>, starting at C<offset>."
16439 msgstr ""
16440
16441 # type: textblock
16442 #. type: textblock
16443 #: ../src/guestfs-actions.pod:5260
16444 msgid "See also C<guestfs_pread>."
16445 msgstr ""
16446
16447 # type: textblock
16448 #. type: textblock
16449 #: ../src/guestfs-actions.pod:5269
16450 msgid "(Added in 1.5.21)"
16451 msgstr ""
16452
16453 # type: =head2
16454 #. type: =head2
16455 #: ../src/guestfs-actions.pod:5271
16456 msgid "guestfs_pvcreate"
16457 msgstr ""
16458
16459 # type: verbatim
16460 #. type: verbatim
16461 #: ../src/guestfs-actions.pod:5273
16462 #, no-wrap
16463 msgid ""
16464 " int\n"
16465 " guestfs_pvcreate (guestfs_h *g,\n"
16466 "                   const char *device);\n"
16467 "\n"
16468 msgstr ""
16469
16470 # type: textblock
16471 #. type: textblock
16472 #: ../src/guestfs-actions.pod:5277 ../fish/guestfish-actions.pod:3551
16473 msgid ""
16474 "This creates an LVM physical volume on the named C<device>, where C<device> "
16475 "should usually be a partition name such as C</dev/sda1>."
16476 msgstr ""
16477
16478 # type: =head2
16479 #. type: =head2
16480 #: ../src/guestfs-actions.pod:5285
16481 msgid "guestfs_pvremove"
16482 msgstr ""
16483
16484 # type: verbatim
16485 #. type: verbatim
16486 #: ../src/guestfs-actions.pod:5287
16487 #, no-wrap
16488 msgid ""
16489 " int\n"
16490 " guestfs_pvremove (guestfs_h *g,\n"
16491 "                   const char *device);\n"
16492 "\n"
16493 msgstr ""
16494
16495 # type: textblock
16496 #. type: textblock
16497 #: ../src/guestfs-actions.pod:5291 ../fish/guestfish-actions.pod:3559
16498 msgid ""
16499 "This wipes a physical volume C<device> so that LVM will no longer recognise "
16500 "it."
16501 msgstr ""
16502
16503 # type: textblock
16504 #. type: textblock
16505 #: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3562
16506 msgid ""
16507 "The implementation uses the C<pvremove> command which refuses to wipe "
16508 "physical volumes that contain any volume groups, so you have to remove those "
16509 "first."
16510 msgstr ""
16511
16512 # type: =head2
16513 #. type: =head2
16514 #: ../src/guestfs-actions.pod:5302
16515 msgid "guestfs_pvresize"
16516 msgstr ""
16517
16518 # type: verbatim
16519 #. type: verbatim
16520 #: ../src/guestfs-actions.pod:5304
16521 #, no-wrap
16522 msgid ""
16523 " int\n"
16524 " guestfs_pvresize (guestfs_h *g,\n"
16525 "                   const char *device);\n"
16526 "\n"
16527 msgstr ""
16528
16529 # type: textblock
16530 #. type: textblock
16531 #: ../src/guestfs-actions.pod:5308 ../fish/guestfish-actions.pod:3570
16532 msgid ""
16533 "This resizes (expands or shrinks) an existing LVM physical volume to match "
16534 "the new size of the underlying device."
16535 msgstr ""
16536
16537 # type: =head2
16538 #. type: =head2
16539 #: ../src/guestfs-actions.pod:5315
16540 msgid "guestfs_pvresize_size"
16541 msgstr ""
16542
16543 # type: verbatim
16544 #. type: verbatim
16545 #: ../src/guestfs-actions.pod:5317
16546 #, no-wrap
16547 msgid ""
16548 " int\n"
16549 " guestfs_pvresize_size (guestfs_h *g,\n"
16550 "                        const char *device,\n"
16551 "                        int64_t size);\n"
16552 "\n"
16553 msgstr ""
16554
16555 # type: textblock
16556 #. type: textblock
16557 #: ../src/guestfs-actions.pod:5322
16558 msgid ""
16559 "This command is the same as C<guestfs_pvresize> except that it allows you to "
16560 "specify the new size (in bytes) explicitly."
16561 msgstr ""
16562
16563 # type: =head2
16564 #. type: =head2
16565 #: ../src/guestfs-actions.pod:5329
16566 msgid "guestfs_pvs"
16567 msgstr ""
16568
16569 # type: verbatim
16570 #. type: verbatim
16571 #: ../src/guestfs-actions.pod:5331
16572 #, no-wrap
16573 msgid ""
16574 " char **\n"
16575 " guestfs_pvs (guestfs_h *g);\n"
16576 "\n"
16577 msgstr ""
16578
16579 # type: textblock
16580 #. type: textblock
16581 #: ../src/guestfs-actions.pod:5334 ../fish/guestfish-actions.pod:3584
16582 msgid ""
16583 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16584 "(8)> command."
16585 msgstr ""
16586
16587 # type: textblock
16588 #. type: textblock
16589 #: ../src/guestfs-actions.pod:5337 ../fish/guestfish-actions.pod:3587
16590 msgid ""
16591 "This returns a list of just the device names that contain PVs (eg. C</dev/"
16592 "sda2>)."
16593 msgstr ""
16594
16595 # type: textblock
16596 #. type: textblock
16597 #: ../src/guestfs-actions.pod:5340
16598 msgid "See also C<guestfs_pvs_full>."
16599 msgstr ""
16600
16601 # type: =head2
16602 #. type: =head2
16603 #: ../src/guestfs-actions.pod:5348
16604 msgid "guestfs_pvs_full"
16605 msgstr ""
16606
16607 # type: verbatim
16608 #. type: verbatim
16609 #: ../src/guestfs-actions.pod:5350
16610 #, no-wrap
16611 msgid ""
16612 " struct guestfs_lvm_pv_list *\n"
16613 " guestfs_pvs_full (guestfs_h *g);\n"
16614 "\n"
16615 msgstr ""
16616
16617 # type: textblock
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:5353 ../fish/guestfish-actions.pod:3596
16620 msgid ""
16621 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
16622 "(8)> command.  The \"full\" version includes all fields."
16623 msgstr ""
16624
16625 # type: textblock
16626 #. type: textblock
16627 #: ../src/guestfs-actions.pod:5356
16628 msgid ""
16629 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
16630 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
16631 msgstr ""
16632
16633 # type: =head2
16634 #. type: =head2
16635 #: ../src/guestfs-actions.pod:5362
16636 msgid "guestfs_pvuuid"
16637 msgstr ""
16638
16639 # type: verbatim
16640 #. type: verbatim
16641 #: ../src/guestfs-actions.pod:5364
16642 #, no-wrap
16643 msgid ""
16644 " char *\n"
16645 " guestfs_pvuuid (guestfs_h *g,\n"
16646 "                 const char *device);\n"
16647 "\n"
16648 msgstr ""
16649
16650 # type: textblock
16651 #. type: textblock
16652 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3603
16653 msgid "This command returns the UUID of the LVM PV C<device>."
16654 msgstr ""
16655
16656 # type: =head2
16657 #. type: =head2
16658 #: ../src/guestfs-actions.pod:5375
16659 msgid "guestfs_pwrite"
16660 msgstr ""
16661
16662 # type: verbatim
16663 #. type: verbatim
16664 #: ../src/guestfs-actions.pod:5377
16665 #, no-wrap
16666 msgid ""
16667 " int\n"
16668 " guestfs_pwrite (guestfs_h *g,\n"
16669 "                 const char *path,\n"
16670 "                 const char *content,\n"
16671 "                 size_t content_size,\n"
16672 "                 int64_t offset);\n"
16673 "\n"
16674 msgstr ""
16675
16676 # type: textblock
16677 #. type: textblock
16678 #: ../src/guestfs-actions.pod:5384 ../fish/guestfish-actions.pod:3609
16679 msgid ""
16680 "This command writes to part of a file.  It writes the data buffer C<content> "
16681 "to the file C<path> starting at offset C<offset>."
16682 msgstr ""
16683
16684 # type: textblock
16685 #. type: textblock
16686 #: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3612
16687 msgid ""
16688 "This command implements the L<pwrite(2)> system call, and like that system "
16689 "call it may not write the full data requested.  The return value is the "
16690 "number of bytes that were actually written to the file.  This could even be "
16691 "0, although short writes are unlikely for regular files in ordinary "
16692 "circumstances."
16693 msgstr ""
16694
16695 # type: textblock
16696 #. type: textblock
16697 #: ../src/guestfs-actions.pod:5393
16698 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
16699 msgstr ""
16700
16701 # type: =head2
16702 #. type: =head2
16703 #: ../src/guestfs-actions.pod:5402
16704 msgid "guestfs_pwrite_device"
16705 msgstr ""
16706
16707 # type: verbatim
16708 #. type: verbatim
16709 #: ../src/guestfs-actions.pod:5404
16710 #, no-wrap
16711 msgid ""
16712 " int\n"
16713 " guestfs_pwrite_device (guestfs_h *g,\n"
16714 "                        const char *device,\n"
16715 "                        const char *content,\n"
16716 "                        size_t content_size,\n"
16717 "                        int64_t offset);\n"
16718 "\n"
16719 msgstr ""
16720
16721 # type: textblock
16722 #. type: textblock
16723 #: ../src/guestfs-actions.pod:5411 ../fish/guestfish-actions.pod:3627
16724 msgid ""
16725 "This command writes to part of a device.  It writes the data buffer "
16726 "C<content> to C<device> starting at offset C<offset>."
16727 msgstr ""
16728
16729 # type: textblock
16730 #. type: textblock
16731 #: ../src/guestfs-actions.pod:5414 ../fish/guestfish-actions.pod:3630
16732 msgid ""
16733 "This command implements the L<pwrite(2)> system call, and like that system "
16734 "call it may not write the full data requested (although short writes to disk "
16735 "devices and partitions are probably impossible with standard Linux kernels)."
16736 msgstr ""
16737
16738 # type: textblock
16739 #. type: textblock
16740 #: ../src/guestfs-actions.pod:5419
16741 msgid "See also C<guestfs_pwrite>."
16742 msgstr ""
16743
16744 # type: textblock
16745 #. type: textblock
16746 #: ../src/guestfs-actions.pod:5426
16747 msgid "(Added in 1.5.20)"
16748 msgstr ""
16749
16750 # type: =head2
16751 #. type: =head2
16752 #: ../src/guestfs-actions.pod:5428
16753 msgid "guestfs_read_file"
16754 msgstr ""
16755
16756 # type: verbatim
16757 #. type: verbatim
16758 #: ../src/guestfs-actions.pod:5430
16759 #, no-wrap
16760 msgid ""
16761 " char *\n"
16762 " guestfs_read_file (guestfs_h *g,\n"
16763 "                    const char *path,\n"
16764 "                    size_t *size_r);\n"
16765 "\n"
16766 msgstr ""
16767
16768 # type: textblock
16769 #. type: textblock
16770 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3644
16771 msgid "This calls returns the contents of the file C<path> as a buffer."
16772 msgstr ""
16773
16774 # type: textblock
16775 #. type: textblock
16776 #: ../src/guestfs-actions.pod:5438
16777 msgid ""
16778 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16779 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16780 "function is limited in the total size of file that can be handled."
16781 msgstr ""
16782
16783 # type: textblock
16784 #. type: textblock
16785 #: ../src/guestfs-actions.pod:5450
16786 msgid "(Added in 1.0.63)"
16787 msgstr ""
16788
16789 # type: =head2
16790 #. type: =head2
16791 #: ../src/guestfs-actions.pod:5452
16792 msgid "guestfs_read_lines"
16793 msgstr ""
16794
16795 # type: verbatim
16796 #. type: verbatim
16797 #: ../src/guestfs-actions.pod:5454
16798 #, no-wrap
16799 msgid ""
16800 " char **\n"
16801 " guestfs_read_lines (guestfs_h *g,\n"
16802 "                     const char *path);\n"
16803 "\n"
16804 msgstr ""
16805
16806 # type: textblock
16807 #. type: textblock
16808 #: ../src/guestfs-actions.pod:5460 ../fish/guestfish-actions.pod:3661
16809 msgid ""
16810 "The file contents are returned as a list of lines.  Trailing C<LF> and "
16811 "C<CRLF> character sequences are I<not> returned."
16812 msgstr ""
16813
16814 # type: textblock
16815 #. type: textblock
16816 #: ../src/guestfs-actions.pod:5463
16817 msgid ""
16818 "Note that this function cannot correctly handle binary files (specifically, "
16819 "files containing C<\\0> character which is treated as end of line).  For "
16820 "those you need to use the C<guestfs_read_file> function which has a more "
16821 "complex interface."
16822 msgstr ""
16823
16824 # type: =head2
16825 #. type: =head2
16826 #: ../src/guestfs-actions.pod:5474
16827 msgid "guestfs_readdir"
16828 msgstr ""
16829
16830 # type: verbatim
16831 #. type: verbatim
16832 #: ../src/guestfs-actions.pod:5476
16833 #, no-wrap
16834 msgid ""
16835 " struct guestfs_dirent_list *\n"
16836 " guestfs_readdir (guestfs_h *g,\n"
16837 "                  const char *dir);\n"
16838 "\n"
16839 msgstr ""
16840
16841 # type: textblock
16842 #. type: textblock
16843 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3673
16844 msgid "This returns the list of directory entries in directory C<dir>."
16845 msgstr ""
16846
16847 # type: textblock
16848 #. type: textblock
16849 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3675
16850 msgid ""
16851 "All entries in the directory are returned, including C<.> and C<..>.  The "
16852 "entries are I<not> sorted, but returned in the same order as the underlying "
16853 "filesystem."
16854 msgstr ""
16855
16856 # type: textblock
16857 #. type: textblock
16858 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3679
16859 msgid ""
16860 "Also this call returns basic file type information about each file.  The "
16861 "C<ftyp> field will contain one of the following characters:"
16862 msgstr ""
16863
16864 # type: =item
16865 #. type: =item
16866 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3684
16867 msgid "'b'"
16868 msgstr ""
16869
16870 # type: textblock
16871 #. type: textblock
16872 #: ../src/guestfs-actions.pod:5493 ../fish/guestfish-actions.pod:3686
16873 msgid "Block special"
16874 msgstr ""
16875
16876 # type: =item
16877 #. type: =item
16878 #: ../src/guestfs-actions.pod:5495 ../fish/guestfish-actions.pod:3688
16879 msgid "'c'"
16880 msgstr ""
16881
16882 # type: textblock
16883 #. type: textblock
16884 #: ../src/guestfs-actions.pod:5497 ../fish/guestfish-actions.pod:3690
16885 msgid "Char special"
16886 msgstr ""
16887
16888 # type: =item
16889 #. type: =item
16890 #: ../src/guestfs-actions.pod:5499 ../fish/guestfish-actions.pod:3692
16891 msgid "'d'"
16892 msgstr ""
16893
16894 # type: textblock
16895 #. type: textblock
16896 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
16897 msgid "Directory"
16898 msgstr ""
16899
16900 # type: =item
16901 #. type: =item
16902 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
16903 msgid "'f'"
16904 msgstr ""
16905
16906 # type: textblock
16907 #. type: textblock
16908 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3698
16909 msgid "FIFO (named pipe)"
16910 msgstr ""
16911
16912 # type: =item
16913 #. type: =item
16914 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
16915 msgid "'l'"
16916 msgstr ""
16917
16918 # type: textblock
16919 #. type: textblock
16920 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3702
16921 msgid "Symbolic link"
16922 msgstr ""
16923
16924 # type: =item
16925 #. type: =item
16926 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3704
16927 msgid "'r'"
16928 msgstr ""
16929
16930 # type: textblock
16931 #. type: textblock
16932 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3706
16933 msgid "Regular file"
16934 msgstr ""
16935
16936 # type: =item
16937 #. type: =item
16938 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3708
16939 msgid "'s'"
16940 msgstr ""
16941
16942 # type: textblock
16943 #. type: textblock
16944 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3710
16945 msgid "Socket"
16946 msgstr ""
16947
16948 # type: =item
16949 #. type: =item
16950 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3712
16951 msgid "'u'"
16952 msgstr ""
16953
16954 # type: textblock
16955 #. type: textblock
16956 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3714
16957 msgid "Unknown file type"
16958 msgstr ""
16959
16960 # type: =item
16961 #. type: =item
16962 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3716
16963 msgid "'?'"
16964 msgstr ""
16965
16966 # type: textblock
16967 #. type: textblock
16968 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3718
16969 msgid ""
16970 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16971 msgstr ""
16972
16973 # type: textblock
16974 #. type: textblock
16975 #: ../src/guestfs-actions.pod:5530
16976 msgid ""
16977 "This function is primarily intended for use by programs.  To get a simple "
16978 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16979 "consumption, use C<guestfs_ll>."
16980 msgstr ""
16981
16982 # type: textblock
16983 #. type: textblock
16984 #: ../src/guestfs-actions.pod:5534
16985 msgid ""
16986 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16987 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
16988 msgstr ""
16989
16990 # type: =head2
16991 #. type: =head2
16992 #: ../src/guestfs-actions.pod:5540
16993 msgid "guestfs_readlink"
16994 msgstr ""
16995
16996 # type: verbatim
16997 #. type: verbatim
16998 #: ../src/guestfs-actions.pod:5542
16999 #, no-wrap
17000 msgid ""
17001 " char *\n"
17002 " guestfs_readlink (guestfs_h *g,\n"
17003 "                   const char *path);\n"
17004 "\n"
17005 msgstr ""
17006
17007 # type: textblock
17008 #. type: textblock
17009 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3731
17010 msgid "This command reads the target of a symbolic link."
17011 msgstr ""
17012
17013 # type: =head2
17014 #. type: =head2
17015 #: ../src/guestfs-actions.pod:5553
17016 msgid "guestfs_readlinklist"
17017 msgstr ""
17018
17019 # type: verbatim
17020 #. type: verbatim
17021 #: ../src/guestfs-actions.pod:5555
17022 #, no-wrap
17023 msgid ""
17024 " char **\n"
17025 " guestfs_readlinklist (guestfs_h *g,\n"
17026 "                       const char *path,\n"
17027 "                       char *const *names);\n"
17028 "\n"
17029 msgstr ""
17030
17031 # type: textblock
17032 #. type: textblock
17033 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3737
17034 msgid ""
17035 "This call allows you to do a C<readlink> operation on multiple files, where "
17036 "all files are in the directory C<path>.  C<names> is the list of files from "
17037 "this directory."
17038 msgstr ""
17039
17040 # type: textblock
17041 #. type: textblock
17042 #: ../src/guestfs-actions.pod:5564 ../fish/guestfish-actions.pod:3741
17043 msgid ""
17044 "On return you get a list of strings, with a one-to-one correspondence to the "
17045 "C<names> list.  Each string is the value of the symbolic link."
17046 msgstr ""
17047
17048 # type: textblock
17049 #. type: textblock
17050 #: ../src/guestfs-actions.pod:5568 ../fish/guestfish-actions.pod:3745
17051 msgid ""
17052 "If the C<readlink(2)> operation fails on any name, then the corresponding "
17053 "result string is the empty string C<\"\">.  However the whole operation is "
17054 "completed even if there were C<readlink(2)> errors, and so you can call this "
17055 "function with names where you don't know if they are symbolic links already "
17056 "(albeit slightly less efficient)."
17057 msgstr ""
17058
17059 # type: textblock
17060 #. type: textblock
17061 #: ../src/guestfs-actions.pod:5575 ../fish/guestfish-actions.pod:3752
17062 msgid ""
17063 "This call is intended for programs that want to efficiently list a directory "
17064 "contents without making many round-trips.  Very long directory listings "
17065 "might cause the protocol message size to be exceeded, causing this call to "
17066 "fail.  The caller must split up such requests into smaller groups of names."
17067 msgstr ""
17068
17069 # type: =head2
17070 #. type: =head2
17071 #: ../src/guestfs-actions.pod:5588
17072 msgid "guestfs_realpath"
17073 msgstr ""
17074
17075 # type: verbatim
17076 #. type: verbatim
17077 #: ../src/guestfs-actions.pod:5590
17078 #, no-wrap
17079 msgid ""
17080 " char *\n"
17081 " guestfs_realpath (guestfs_h *g,\n"
17082 "                   const char *path);\n"
17083 "\n"
17084 msgstr ""
17085
17086 # type: textblock
17087 #. type: textblock
17088 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3763
17089 msgid ""
17090 "Return the canonicalized absolute pathname of C<path>.  The returned path "
17091 "has no C<.>, C<..> or symbolic link path elements."
17092 msgstr ""
17093
17094 # type: =head2
17095 #. type: =head2
17096 #: ../src/guestfs-actions.pod:5602
17097 msgid "guestfs_removexattr"
17098 msgstr ""
17099
17100 # type: verbatim
17101 #. type: verbatim
17102 #: ../src/guestfs-actions.pod:5604
17103 #, no-wrap
17104 msgid ""
17105 " int\n"
17106 " guestfs_removexattr (guestfs_h *g,\n"
17107 "                      const char *xattr,\n"
17108 "                      const char *path);\n"
17109 "\n"
17110 msgstr ""
17111
17112 # type: textblock
17113 #. type: textblock
17114 #: ../src/guestfs-actions.pod:5609 ../fish/guestfish-actions.pod:3770
17115 msgid ""
17116 "This call removes the extended attribute named C<xattr> of the file C<path>."
17117 msgstr ""
17118
17119 # type: textblock
17120 #. type: textblock
17121 #: ../src/guestfs-actions.pod:5612
17122 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
17123 msgstr ""
17124
17125 # type: =head2
17126 #. type: =head2
17127 #: ../src/guestfs-actions.pod:5618
17128 msgid "guestfs_resize2fs"
17129 msgstr ""
17130
17131 # type: verbatim
17132 #. type: verbatim
17133 #: ../src/guestfs-actions.pod:5620
17134 #, no-wrap
17135 msgid ""
17136 " int\n"
17137 " guestfs_resize2fs (guestfs_h *g,\n"
17138 "                    const char *device);\n"
17139 "\n"
17140 msgstr ""
17141
17142 # type: textblock
17143 #. type: textblock
17144 #: ../src/guestfs-actions.pod:5624 ../fish/guestfish-actions.pod:3779
17145 msgid ""
17146 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
17147 "underlying device."
17148 msgstr ""
17149
17150 # type: textblock
17151 #. type: textblock
17152 #: ../src/guestfs-actions.pod:5627
17153 msgid ""
17154 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
17155 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
17156 "sometimes gives an error about this and sometimes not.  In any case, it is "
17157 "always safe to call C<guestfs_e2fsck_f> before calling this function."
17158 msgstr ""
17159
17160 #. type: =head2
17161 #: ../src/guestfs-actions.pod:5637
17162 msgid "guestfs_resize2fs_M"
17163 msgstr ""
17164
17165 #. type: verbatim
17166 #: ../src/guestfs-actions.pod:5639
17167 #, no-wrap
17168 msgid ""
17169 " int\n"
17170 " guestfs_resize2fs_M (guestfs_h *g,\n"
17171 "                      const char *device);\n"
17172 "\n"
17173 msgstr ""
17174
17175 #. type: textblock
17176 #: ../src/guestfs-actions.pod:5643
17177 msgid ""
17178 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
17179 "resized to its minimum size.  This works like the C<-M> option to the "
17180 "C<resize2fs> command."
17181 msgstr ""
17182
17183 #. type: textblock
17184 #: ../src/guestfs-actions.pod:5647
17185 msgid ""
17186 "To get the resulting size of the filesystem you should call "
17187 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
17188 "These two numbers, multiplied together, give the resulting size of the "
17189 "minimal filesystem in bytes."
17190 msgstr ""
17191
17192 # type: =head2
17193 #. type: =head2
17194 #: ../src/guestfs-actions.pod:5654
17195 msgid "guestfs_resize2fs_size"
17196 msgstr ""
17197
17198 # type: verbatim
17199 #. type: verbatim
17200 #: ../src/guestfs-actions.pod:5656
17201 #, no-wrap
17202 msgid ""
17203 " int\n"
17204 " guestfs_resize2fs_size (guestfs_h *g,\n"
17205 "                         const char *device,\n"
17206 "                         int64_t size);\n"
17207 "\n"
17208 msgstr ""
17209
17210 # type: textblock
17211 #. type: textblock
17212 #: ../src/guestfs-actions.pod:5661
17213 msgid ""
17214 "This command is the same as C<guestfs_resize2fs> except that it allows you "
17215 "to specify the new size (in bytes) explicitly."
17216 msgstr ""
17217
17218 # type: =head2
17219 #. type: =head2
17220 #: ../src/guestfs-actions.pod:5668
17221 msgid "guestfs_rm"
17222 msgstr ""
17223
17224 # type: verbatim
17225 #. type: verbatim
17226 #: ../src/guestfs-actions.pod:5670
17227 #, no-wrap
17228 msgid ""
17229 " int\n"
17230 " guestfs_rm (guestfs_h *g,\n"
17231 "             const char *path);\n"
17232 "\n"
17233 msgstr ""
17234
17235 # type: textblock
17236 #. type: textblock
17237 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3812
17238 msgid "Remove the single file C<path>."
17239 msgstr ""
17240
17241 # type: =head2
17242 #. type: =head2
17243 #: ../src/guestfs-actions.pod:5680
17244 msgid "guestfs_rm_rf"
17245 msgstr ""
17246
17247 # type: verbatim
17248 #. type: verbatim
17249 #: ../src/guestfs-actions.pod:5682
17250 #, no-wrap
17251 msgid ""
17252 " int\n"
17253 " guestfs_rm_rf (guestfs_h *g,\n"
17254 "                const char *path);\n"
17255 "\n"
17256 msgstr ""
17257
17258 # type: textblock
17259 #. type: textblock
17260 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3818
17261 msgid ""
17262 "Remove the file or directory C<path>, recursively removing the contents if "
17263 "its a directory.  This is like the C<rm -rf> shell command."
17264 msgstr ""
17265
17266 # type: =head2
17267 #. type: =head2
17268 #: ../src/guestfs-actions.pod:5694
17269 msgid "guestfs_rmdir"
17270 msgstr ""
17271
17272 # type: verbatim
17273 #. type: verbatim
17274 #: ../src/guestfs-actions.pod:5696
17275 #, no-wrap
17276 msgid ""
17277 " int\n"
17278 " guestfs_rmdir (guestfs_h *g,\n"
17279 "                const char *path);\n"
17280 "\n"
17281 msgstr ""
17282
17283 # type: textblock
17284 #. type: textblock
17285 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3826
17286 msgid "Remove the single directory C<path>."
17287 msgstr ""
17288
17289 # type: =head2
17290 #. type: =head2
17291 #: ../src/guestfs-actions.pod:5706
17292 msgid "guestfs_rmmountpoint"
17293 msgstr ""
17294
17295 # type: verbatim
17296 #. type: verbatim
17297 #: ../src/guestfs-actions.pod:5708
17298 #, no-wrap
17299 msgid ""
17300 " int\n"
17301 " guestfs_rmmountpoint (guestfs_h *g,\n"
17302 "                       const char *exemptpath);\n"
17303 "\n"
17304 msgstr ""
17305
17306 # type: textblock
17307 #. type: textblock
17308 #: ../src/guestfs-actions.pod:5712
17309 msgid ""
17310 "This calls removes a mountpoint that was previously created with "
17311 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
17312 msgstr ""
17313
17314 # type: =head2
17315 #. type: =head2
17316 #: ../src/guestfs-actions.pod:5720
17317 msgid "guestfs_scrub_device"
17318 msgstr ""
17319
17320 # type: verbatim
17321 #. type: verbatim
17322 #: ../src/guestfs-actions.pod:5722
17323 #, no-wrap
17324 msgid ""
17325 " int\n"
17326 " guestfs_scrub_device (guestfs_h *g,\n"
17327 "                       const char *device);\n"
17328 "\n"
17329 msgstr ""
17330
17331 # type: textblock
17332 #. type: textblock
17333 #: ../src/guestfs-actions.pod:5726 ../fish/guestfish-actions.pod:3840
17334 msgid ""
17335 "This command writes patterns over C<device> to make data retrieval more "
17336 "difficult."
17337 msgstr ""
17338
17339 # type: textblock
17340 #. type: textblock
17341 #: ../src/guestfs-actions.pod:5729 ../src/guestfs-actions.pod:5750
17342 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3843
17343 #: ../fish/guestfish-actions.pod:3858 ../fish/guestfish-actions.pod:3871
17344 msgid ""
17345 "It is an interface to the L<scrub(1)> program.  See that manual page for "
17346 "more details."
17347 msgstr ""
17348
17349 # type: textblock
17350 #. type: textblock
17351 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5755
17352 #: ../src/guestfs-actions.pod:5774
17353 msgid "(Added in 1.0.52)"
17354 msgstr ""
17355
17356 # type: =head2
17357 #. type: =head2
17358 #: ../src/guestfs-actions.pod:5739
17359 msgid "guestfs_scrub_file"
17360 msgstr ""
17361
17362 # type: verbatim
17363 #. type: verbatim
17364 #: ../src/guestfs-actions.pod:5741
17365 #, no-wrap
17366 msgid ""
17367 " int\n"
17368 " guestfs_scrub_file (guestfs_h *g,\n"
17369 "                     const char *file);\n"
17370 "\n"
17371 msgstr ""
17372
17373 # type: textblock
17374 #. type: textblock
17375 #: ../src/guestfs-actions.pod:5745 ../fish/guestfish-actions.pod:3853
17376 msgid ""
17377 "This command writes patterns over a file to make data retrieval more "
17378 "difficult."
17379 msgstr ""
17380
17381 # type: textblock
17382 #. type: textblock
17383 #: ../src/guestfs-actions.pod:5748 ../fish/guestfish-actions.pod:3856
17384 msgid "The file is I<removed> after scrubbing."
17385 msgstr ""
17386
17387 # type: =head2
17388 #. type: =head2
17389 #: ../src/guestfs-actions.pod:5757
17390 msgid "guestfs_scrub_freespace"
17391 msgstr ""
17392
17393 # type: verbatim
17394 #. type: verbatim
17395 #: ../src/guestfs-actions.pod:5759
17396 #, no-wrap
17397 msgid ""
17398 " int\n"
17399 " guestfs_scrub_freespace (guestfs_h *g,\n"
17400 "                          const char *dir);\n"
17401 "\n"
17402 msgstr ""
17403
17404 # type: textblock
17405 #. type: textblock
17406 #: ../src/guestfs-actions.pod:5763
17407 msgid ""
17408 "This command creates the directory C<dir> and then fills it with files until "
17409 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
17410 "and deletes them.  The intention is to scrub any free space on the partition "
17411 "containing C<dir>."
17412 msgstr ""
17413
17414 # type: =head2
17415 #. type: =head2
17416 #: ../src/guestfs-actions.pod:5776
17417 msgid "guestfs_set_append"
17418 msgstr ""
17419
17420 # type: verbatim
17421 #. type: verbatim
17422 #: ../src/guestfs-actions.pod:5778
17423 #, no-wrap
17424 msgid ""
17425 " int\n"
17426 " guestfs_set_append (guestfs_h *g,\n"
17427 "                     const char *append);\n"
17428 "\n"
17429 msgstr ""
17430
17431 # type: textblock
17432 #. type: textblock
17433 #: ../src/guestfs-actions.pod:5782 ../fish/guestfish-actions.pod:3880
17434 msgid ""
17435 "This function is used to add additional options to the guest kernel command "
17436 "line."
17437 msgstr ""
17438
17439 # type: textblock
17440 #. type: textblock
17441 #: ../src/guestfs-actions.pod:5785 ../fish/guestfish-actions.pod:3883
17442 msgid ""
17443 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
17444 "environment variable."
17445 msgstr ""
17446
17447 # type: textblock
17448 #. type: textblock
17449 #: ../src/guestfs-actions.pod:5788 ../fish/guestfish-actions.pod:3886
17450 msgid ""
17451 "Setting C<append> to C<NULL> means I<no> additional options are passed "
17452 "(libguestfs always adds a few of its own)."
17453 msgstr ""
17454
17455 #. type: =head2
17456 #: ../src/guestfs-actions.pod:5795
17457 msgid "guestfs_set_attach_method"
17458 msgstr ""
17459
17460 #. type: verbatim
17461 #: ../src/guestfs-actions.pod:5797
17462 #, no-wrap
17463 msgid ""
17464 " int\n"
17465 " guestfs_set_attach_method (guestfs_h *g,\n"
17466 "                            const char *attachmethod);\n"
17467 "\n"
17468 msgstr ""
17469
17470 #. type: textblock
17471 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3895
17472 msgid ""
17473 "Set the method that libguestfs uses to connect to the back end guestfsd "
17474 "daemon.  Possible methods are:"
17475 msgstr ""
17476
17477 #. type: textblock
17478 #: ../src/guestfs-actions.pod:5808 ../fish/guestfish-actions.pod:3902
17479 msgid ""
17480 "Launch an appliance and connect to it.  This is the ordinary method and the "
17481 "default."
17482 msgstr ""
17483
17484 #. type: =item
17485 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3905
17486 msgid "C<unix:I<path>>"
17487 msgstr ""
17488
17489 #. type: textblock
17490 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3907
17491 msgid "Connect to the Unix domain socket I<path>."
17492 msgstr ""
17493
17494 #. type: textblock
17495 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3909
17496 msgid ""
17497 "This method lets you connect to an existing daemon or (using virtio-serial) "
17498 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
17499 "RUNNING DAEMONS>."
17500 msgstr ""
17501
17502 # type: =head2
17503 #. type: =head2
17504 #: ../src/guestfs-actions.pod:5823
17505 msgid "guestfs_set_autosync"
17506 msgstr ""
17507
17508 # type: verbatim
17509 #. type: verbatim
17510 #: ../src/guestfs-actions.pod:5825
17511 #, no-wrap
17512 msgid ""
17513 " int\n"
17514 " guestfs_set_autosync (guestfs_h *g,\n"
17515 "                       int autosync);\n"
17516 "\n"
17517 msgstr ""
17518
17519 #. type: textblock
17520 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3921
17521 msgid ""
17522 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
17523 "effort attempt to make filesystems consistent and synchronized when the "
17524 "handle is closed (also if the program exits without closing handles)."
17525 msgstr ""
17526
17527 # type: textblock
17528 #. type: textblock
17529 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3926
17530 msgid ""
17531 "This is enabled by default (since libguestfs 1.5.24, previously it was "
17532 "disabled by default)."
17533 msgstr ""
17534
17535 # type: =head2
17536 #. type: =head2
17537 #: ../src/guestfs-actions.pod:5841
17538 msgid "guestfs_set_direct"
17539 msgstr ""
17540
17541 # type: verbatim
17542 #. type: verbatim
17543 #: ../src/guestfs-actions.pod:5843
17544 #, no-wrap
17545 msgid ""
17546 " int\n"
17547 " guestfs_set_direct (guestfs_h *g,\n"
17548 "                     int direct);\n"
17549 "\n"
17550 msgstr ""
17551
17552 # type: textblock
17553 #. type: textblock
17554 #: ../src/guestfs-actions.pod:5847 ../fish/guestfish-actions.pod:3935
17555 msgid ""
17556 "If the direct appliance mode flag is enabled, then stdin and stdout are "
17557 "passed directly through to the appliance once it is launched."
17558 msgstr ""
17559
17560 # type: textblock
17561 #. type: textblock
17562 #: ../src/guestfs-actions.pod:5851
17563 msgid ""
17564 "One consequence of this is that log messages aren't caught by the library "
17565 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
17566 "stdout."
17567 msgstr ""
17568
17569 # type: textblock
17570 #. type: textblock
17571 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3943
17572 msgid "You probably don't want to use this unless you know what you are doing."
17573 msgstr ""
17574
17575 # type: textblock
17576 #. type: textblock
17577 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3946
17578 msgid "The default is disabled."
17579 msgstr ""
17580
17581 # type: =head2
17582 #. type: =head2
17583 #: ../src/guestfs-actions.pod:5864
17584 msgid "guestfs_set_e2label"
17585 msgstr ""
17586
17587 # type: verbatim
17588 #. type: verbatim
17589 #: ../src/guestfs-actions.pod:5866
17590 #, no-wrap
17591 msgid ""
17592 " int\n"
17593 " guestfs_set_e2label (guestfs_h *g,\n"
17594 "                      const char *device,\n"
17595 "                      const char *label);\n"
17596 "\n"
17597 msgstr ""
17598
17599 # type: textblock
17600 #. type: textblock
17601 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3952
17602 msgid ""
17603 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
17604 "C<label>.  Filesystem labels are limited to 16 characters."
17605 msgstr ""
17606
17607 # type: textblock
17608 #. type: textblock
17609 #: ../src/guestfs-actions.pod:5875
17610 msgid ""
17611 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
17612 "the existing label on a filesystem."
17613 msgstr ""
17614
17615 # type: =head2
17616 #. type: =head2
17617 #: ../src/guestfs-actions.pod:5882
17618 msgid "guestfs_set_e2uuid"
17619 msgstr ""
17620
17621 # type: verbatim
17622 #. type: verbatim
17623 #: ../src/guestfs-actions.pod:5884
17624 #, no-wrap
17625 msgid ""
17626 " int\n"
17627 " guestfs_set_e2uuid (guestfs_h *g,\n"
17628 "                     const char *device,\n"
17629 "                     const char *uuid);\n"
17630 "\n"
17631 msgstr ""
17632
17633 # type: textblock
17634 #. type: textblock
17635 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3963
17636 msgid ""
17637 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
17638 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
17639 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
17640 msgstr ""
17641
17642 # type: textblock
17643 #. type: textblock
17644 #: ../src/guestfs-actions.pod:5894
17645 msgid ""
17646 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
17647 "the existing UUID of a filesystem."
17648 msgstr ""
17649
17650 # type: =head2
17651 #. type: =head2
17652 #: ../src/guestfs-actions.pod:5901
17653 msgid "guestfs_set_memsize"
17654 msgstr ""
17655
17656 # type: verbatim
17657 #. type: verbatim
17658 #: ../src/guestfs-actions.pod:5903
17659 #, no-wrap
17660 msgid ""
17661 " int\n"
17662 " guestfs_set_memsize (guestfs_h *g,\n"
17663 "                      int memsize);\n"
17664 "\n"
17665 msgstr ""
17666
17667 # type: textblock
17668 #. type: textblock
17669 #: ../src/guestfs-actions.pod:5907
17670 msgid ""
17671 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
17672 "This only has any effect if called before C<guestfs_launch>."
17673 msgstr ""
17674
17675 # type: textblock
17676 #. type: textblock
17677 #: ../src/guestfs-actions.pod:5911 ../fish/guestfish-actions.pod:3981
17678 msgid ""
17679 "You can also change this by setting the environment variable "
17680 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
17681 msgstr ""
17682
17683 # type: =head2
17684 #. type: =head2
17685 #: ../src/guestfs-actions.pod:5922
17686 msgid "guestfs_set_network"
17687 msgstr ""
17688
17689 # type: verbatim
17690 #. type: verbatim
17691 #: ../src/guestfs-actions.pod:5924
17692 #, no-wrap
17693 msgid ""
17694 " int\n"
17695 " guestfs_set_network (guestfs_h *g,\n"
17696 "                      int network);\n"
17697 "\n"
17698 msgstr ""
17699
17700 # type: textblock
17701 #. type: textblock
17702 #: ../src/guestfs-actions.pod:5928 ../fish/guestfish-actions.pod:3994
17703 msgid ""
17704 "If C<network> is true, then the network is enabled in the libguestfs "
17705 "appliance.  The default is false."
17706 msgstr ""
17707
17708 # type: textblock
17709 #. type: textblock
17710 #: ../src/guestfs-actions.pod:5931 ../fish/guestfish-actions.pod:3997
17711 msgid ""
17712 "This affects whether commands are able to access the network (see L<guestfs"
17713 "(3)/RUNNING COMMANDS>)."
17714 msgstr ""
17715
17716 # type: textblock
17717 #. type: textblock
17718 #: ../src/guestfs-actions.pod:5934
17719 msgid ""
17720 "You must call this before calling C<guestfs_launch>, otherwise it has no "
17721 "effect."
17722 msgstr ""
17723
17724 # type: =head2
17725 #. type: =head2
17726 #: ../src/guestfs-actions.pod:5941
17727 msgid "guestfs_set_path"
17728 msgstr ""
17729
17730 # type: verbatim
17731 #. type: verbatim
17732 #: ../src/guestfs-actions.pod:5943
17733 #, no-wrap
17734 msgid ""
17735 " int\n"
17736 " guestfs_set_path (guestfs_h *g,\n"
17737 "                   const char *searchpath);\n"
17738 "\n"
17739 msgstr ""
17740
17741 # type: textblock
17742 #. type: textblock
17743 #: ../src/guestfs-actions.pod:5947 ../fish/guestfish-actions.pod:4009
17744 msgid "Set the path that libguestfs searches for kernel and initrd.img."
17745 msgstr ""
17746
17747 # type: textblock
17748 #. type: textblock
17749 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4011
17750 msgid ""
17751 "The default is C<$libdir/guestfs> unless overridden by setting "
17752 "C<LIBGUESTFS_PATH> environment variable."
17753 msgstr ""
17754
17755 # type: textblock
17756 #. type: textblock
17757 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4014
17758 msgid "Setting C<path> to C<NULL> restores the default path."
17759 msgstr ""
17760
17761 # type: =head2
17762 #. type: =head2
17763 #: ../src/guestfs-actions.pod:5958
17764 msgid "guestfs_set_qemu"
17765 msgstr ""
17766
17767 # type: verbatim
17768 #. type: verbatim
17769 #: ../src/guestfs-actions.pod:5960
17770 #, no-wrap
17771 msgid ""
17772 " int\n"
17773 " guestfs_set_qemu (guestfs_h *g,\n"
17774 "                   const char *qemu);\n"
17775 "\n"
17776 msgstr ""
17777
17778 # type: textblock
17779 #. type: textblock
17780 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:4022
17781 msgid "Set the qemu binary that we will use."
17782 msgstr ""
17783
17784 # type: textblock
17785 #. type: textblock
17786 #: ../src/guestfs-actions.pod:5966 ../fish/guestfish-actions.pod:4024
17787 msgid ""
17788 "The default is chosen when the library was compiled by the configure script."
17789 msgstr ""
17790
17791 # type: textblock
17792 #. type: textblock
17793 #: ../src/guestfs-actions.pod:5969 ../fish/guestfish-actions.pod:4027
17794 msgid ""
17795 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
17796 "variable."
17797 msgstr ""
17798
17799 # type: textblock
17800 #. type: textblock
17801 #: ../src/guestfs-actions.pod:5972 ../fish/guestfish-actions.pod:4030
17802 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
17803 msgstr ""
17804
17805 # type: textblock
17806 #. type: textblock
17807 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:4032
17808 msgid ""
17809 "Note that you should call this function as early as possible after creating "
17810 "the handle.  This is because some pre-launch operations depend on testing "
17811 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
17812 "don't retest features, and so you might see inconsistent results.  Using the "
17813 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
17814 "the qemu binary at the same time as the handle is created."
17815 msgstr ""
17816
17817 # type: =head2
17818 #. type: =head2
17819 #: ../src/guestfs-actions.pod:5986
17820 msgid "guestfs_set_recovery_proc"
17821 msgstr ""
17822
17823 # type: verbatim
17824 #. type: verbatim
17825 #: ../src/guestfs-actions.pod:5988
17826 #, no-wrap
17827 msgid ""
17828 " int\n"
17829 " guestfs_set_recovery_proc (guestfs_h *g,\n"
17830 "                            int recoveryproc);\n"
17831 "\n"
17832 msgstr ""
17833
17834 # type: textblock
17835 #. type: textblock
17836 #: ../src/guestfs-actions.pod:5992
17837 msgid ""
17838 "If this is called with the parameter C<false> then C<guestfs_launch> does "
17839 "not create a recovery process.  The purpose of the recovery process is to "
17840 "stop runaway qemu processes in the case where the main program aborts "
17841 "abruptly."
17842 msgstr ""
17843
17844 # type: textblock
17845 #. type: textblock
17846 #: ../src/guestfs-actions.pod:5997
17847 msgid ""
17848 "This only has any effect if called before C<guestfs_launch>, and the default "
17849 "is true."
17850 msgstr ""
17851
17852 # type: textblock
17853 #. type: textblock
17854 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4054
17855 msgid ""
17856 "About the only time when you would want to disable this is if the main "
17857 "process will fork itself into the background (\"daemonize\" itself).  In "
17858 "this case the recovery process thinks that the main program has disappeared "
17859 "and so kills qemu, which is not very helpful."
17860 msgstr ""
17861
17862 # type: =head2
17863 #. type: =head2
17864 #: ../src/guestfs-actions.pod:6010
17865 msgid "guestfs_set_selinux"
17866 msgstr ""
17867
17868 # type: verbatim
17869 #. type: verbatim
17870 #: ../src/guestfs-actions.pod:6012
17871 #, no-wrap
17872 msgid ""
17873 " int\n"
17874 " guestfs_set_selinux (guestfs_h *g,\n"
17875 "                      int selinux);\n"
17876 "\n"
17877 msgstr ""
17878
17879 # type: textblock
17880 #. type: textblock
17881 #: ../src/guestfs-actions.pod:6016 ../fish/guestfish-actions.pod:4066
17882 msgid ""
17883 "This sets the selinux flag that is passed to the appliance at boot time.  "
17884 "The default is C<selinux=0> (disabled)."
17885 msgstr ""
17886
17887 # type: textblock
17888 #. type: textblock
17889 #: ../src/guestfs-actions.pod:6019 ../fish/guestfish-actions.pod:4069
17890 msgid ""
17891 "Note that if SELinux is enabled, it is always in Permissive mode "
17892 "(C<enforcing=0>)."
17893 msgstr ""
17894
17895 # type: =head2
17896 #. type: =head2
17897 #: ../src/guestfs-actions.pod:6029
17898 msgid "guestfs_set_trace"
17899 msgstr ""
17900
17901 # type: verbatim
17902 #. type: verbatim
17903 #: ../src/guestfs-actions.pod:6031
17904 #, no-wrap
17905 msgid ""
17906 " int\n"
17907 " guestfs_set_trace (guestfs_h *g,\n"
17908 "                    int trace);\n"
17909 "\n"
17910 msgstr ""
17911
17912 #. type: textblock
17913 #: ../src/guestfs-actions.pod:6035 ../fish/guestfish-actions.pod:4081
17914 msgid ""
17915 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
17916 "return values are traced."
17917 msgstr ""
17918
17919 # type: textblock
17920 #. type: textblock
17921 #: ../src/guestfs-actions.pod:6038 ../fish/guestfish-actions.pod:4084
17922 msgid ""
17923 "If you want to trace C API calls into libguestfs (and other libraries) then "
17924 "possibly a better way is to use the external ltrace(1) command."
17925 msgstr ""
17926
17927 # type: textblock
17928 #. type: textblock
17929 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:4088
17930 msgid ""
17931 "Command traces are disabled unless the environment variable "
17932 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
17933 msgstr ""
17934
17935 #. type: textblock
17936 #: ../src/guestfs-actions.pod:6045
17937 msgid ""
17938 "Trace messages are normally sent to C<stderr>, unless you register a "
17939 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17940 msgstr ""
17941
17942 # type: =head2
17943 #. type: =head2
17944 #: ../src/guestfs-actions.pod:6053
17945 msgid "guestfs_set_verbose"
17946 msgstr ""
17947
17948 # type: verbatim
17949 #. type: verbatim
17950 #: ../src/guestfs-actions.pod:6055
17951 #, no-wrap
17952 msgid ""
17953 " int\n"
17954 " guestfs_set_verbose (guestfs_h *g,\n"
17955 "                      int verbose);\n"
17956 "\n"
17957 msgstr ""
17958
17959 #. type: textblock
17960 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4101
17961 msgid "If C<verbose> is true, this turns on verbose messages."
17962 msgstr ""
17963
17964 # type: textblock
17965 #. type: textblock
17966 #: ../src/guestfs-actions.pod:6061 ../fish/guestfish-actions.pod:4103
17967 msgid ""
17968 "Verbose messages are disabled unless the environment variable "
17969 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
17970 msgstr ""
17971
17972 #. type: textblock
17973 #: ../src/guestfs-actions.pod:6064
17974 msgid ""
17975 "Verbose messages are normally sent to C<stderr>, unless you register a "
17976 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17977 msgstr ""
17978
17979 # type: =head2
17980 #. type: =head2
17981 #: ../src/guestfs-actions.pod:6072
17982 msgid "guestfs_setcon"
17983 msgstr ""
17984
17985 # type: verbatim
17986 #. type: verbatim
17987 #: ../src/guestfs-actions.pod:6074
17988 #, no-wrap
17989 msgid ""
17990 " int\n"
17991 " guestfs_setcon (guestfs_h *g,\n"
17992 "                 const char *context);\n"
17993 "\n"
17994 msgstr ""
17995
17996 # type: textblock
17997 #. type: textblock
17998 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4114
17999 msgid ""
18000 "This sets the SELinux security context of the daemon to the string "
18001 "C<context>."
18002 msgstr ""
18003
18004 # type: textblock
18005 #. type: textblock
18006 #: ../src/guestfs-actions.pod:6081 ../fish/guestfish-actions.pod:4117
18007 msgid "See the documentation about SELINUX in L<guestfs(3)>."
18008 msgstr ""
18009
18010 # type: =head2
18011 #. type: =head2
18012 #: ../src/guestfs-actions.pod:6087
18013 msgid "guestfs_setxattr"
18014 msgstr ""
18015
18016 # type: verbatim
18017 #. type: verbatim
18018 #: ../src/guestfs-actions.pod:6089
18019 #, no-wrap
18020 msgid ""
18021 " int\n"
18022 " guestfs_setxattr (guestfs_h *g,\n"
18023 "                   const char *xattr,\n"
18024 "                   const char *val,\n"
18025 "                   int vallen,\n"
18026 "                   const char *path);\n"
18027 "\n"
18028 msgstr ""
18029
18030 # type: textblock
18031 #. type: textblock
18032 #: ../src/guestfs-actions.pod:6096 ../fish/guestfish-actions.pod:4123
18033 msgid ""
18034 "This call sets the extended attribute named C<xattr> of the file C<path> to "
18035 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
18036 msgstr ""
18037
18038 # type: textblock
18039 #. type: textblock
18040 #: ../src/guestfs-actions.pod:6100
18041 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
18042 msgstr ""
18043
18044 # type: =head2
18045 #. type: =head2
18046 #: ../src/guestfs-actions.pod:6106
18047 msgid "guestfs_sfdisk"
18048 msgstr ""
18049
18050 # type: verbatim
18051 #. type: verbatim
18052 #: ../src/guestfs-actions.pod:6108
18053 #, no-wrap
18054 msgid ""
18055 " int\n"
18056 " guestfs_sfdisk (guestfs_h *g,\n"
18057 "                 const char *device,\n"
18058 "                 int cyls,\n"
18059 "                 int heads,\n"
18060 "                 int sectors,\n"
18061 "                 char *const *lines);\n"
18062 "\n"
18063 msgstr ""
18064
18065 # type: textblock
18066 #. type: textblock
18067 #: ../src/guestfs-actions.pod:6116 ../fish/guestfish-actions.pod:4133
18068 msgid ""
18069 "This is a direct interface to the L<sfdisk(8)> program for creating "
18070 "partitions on block devices."
18071 msgstr ""
18072
18073 # type: textblock
18074 #. type: textblock
18075 #: ../src/guestfs-actions.pod:6119 ../fish/guestfish-actions.pod:4136
18076 msgid "C<device> should be a block device, for example C</dev/sda>."
18077 msgstr ""
18078
18079 # type: textblock
18080 #. type: textblock
18081 #: ../src/guestfs-actions.pod:6121 ../fish/guestfish-actions.pod:4138
18082 msgid ""
18083 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
18084 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
18085 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
18086 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
18087 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
18088 "the kernel) cannot work out the right geometry and you will need to tell it."
18089 msgstr ""
18090
18091 # type: textblock
18092 #. type: textblock
18093 #: ../src/guestfs-actions.pod:6129 ../fish/guestfish-actions.pod:4146
18094 msgid ""
18095 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
18096 "refer to the L<sfdisk(8)> manpage."
18097 msgstr ""
18098
18099 # type: textblock
18100 #. type: textblock
18101 #: ../src/guestfs-actions.pod:6132 ../fish/guestfish-actions.pod:4149
18102 msgid ""
18103 "To create a single partition occupying the whole disk, you would pass "
18104 "C<lines> as a single element list, when the single element being the string "
18105 "C<,> (comma)."
18106 msgstr ""
18107
18108 # type: textblock
18109 #. type: textblock
18110 #: ../src/guestfs-actions.pod:6136
18111 msgid ""
18112 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
18113 msgstr ""
18114
18115 # type: =head2
18116 #. type: =head2
18117 #: ../src/guestfs-actions.pod:6146
18118 msgid "guestfs_sfdiskM"
18119 msgstr ""
18120
18121 # type: verbatim
18122 #. type: verbatim
18123 #: ../src/guestfs-actions.pod:6148
18124 #, no-wrap
18125 msgid ""
18126 " int\n"
18127 " guestfs_sfdiskM (guestfs_h *g,\n"
18128 "                  const char *device,\n"
18129 "                  char *const *lines);\n"
18130 "\n"
18131 msgstr ""
18132
18133 # type: textblock
18134 #. type: textblock
18135 #: ../src/guestfs-actions.pod:6153
18136 msgid ""
18137 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
18138 "partition sizes are specified in megabytes only (rounded to the nearest "
18139 "cylinder) and you don't need to specify the cyls, heads and sectors "
18140 "parameters which were rarely if ever used anyway."
18141 msgstr ""
18142
18143 # type: textblock
18144 #. type: textblock
18145 #: ../src/guestfs-actions.pod:6159
18146 msgid ""
18147 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
18148 "C<guestfs_part_disk>"
18149 msgstr ""
18150
18151 # type: =head2
18152 #. type: =head2
18153 #: ../src/guestfs-actions.pod:6169
18154 msgid "guestfs_sfdisk_N"
18155 msgstr ""
18156
18157 # type: verbatim
18158 #. type: verbatim
18159 #: ../src/guestfs-actions.pod:6171
18160 #, no-wrap
18161 msgid ""
18162 " int\n"
18163 " guestfs_sfdisk_N (guestfs_h *g,\n"
18164 "                   const char *device,\n"
18165 "                   int partnum,\n"
18166 "                   int cyls,\n"
18167 "                   int heads,\n"
18168 "                   int sectors,\n"
18169 "                   const char *line);\n"
18170 "\n"
18171 msgstr ""
18172
18173 # type: textblock
18174 #. type: textblock
18175 #: ../src/guestfs-actions.pod:6180 ../fish/guestfish-actions.pod:4179
18176 msgid ""
18177 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
18178 "(note: C<n> counts from 1)."
18179 msgstr ""
18180
18181 # type: textblock
18182 #. type: textblock
18183 #: ../src/guestfs-actions.pod:6183
18184 msgid ""
18185 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
18186 "for the cyls/heads/sectors parameters."
18187 msgstr ""
18188
18189 # type: textblock
18190 #. type: textblock
18191 #: ../src/guestfs-actions.pod:6186
18192 msgid "See also: C<guestfs_part_add>"
18193 msgstr ""
18194
18195 # type: =head2
18196 #. type: =head2
18197 #: ../src/guestfs-actions.pod:6195
18198 msgid "guestfs_sfdisk_disk_geometry"
18199 msgstr ""
18200
18201 # type: verbatim
18202 #. type: verbatim
18203 #: ../src/guestfs-actions.pod:6197
18204 #, no-wrap
18205 msgid ""
18206 " char *\n"
18207 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
18208 "                               const char *device);\n"
18209 "\n"
18210 msgstr ""
18211
18212 # type: textblock
18213 #. type: textblock
18214 #: ../src/guestfs-actions.pod:6201
18215 msgid ""
18216 "This displays the disk geometry of C<device> read from the partition table.  "
18217 "Especially in the case where the underlying block device has been resized, "
18218 "this can be different from the kernel's idea of the geometry (see "
18219 "C<guestfs_sfdisk_kernel_geometry>)."
18220 msgstr ""
18221
18222 # type: textblock
18223 #. type: textblock
18224 #: ../src/guestfs-actions.pod:6206 ../src/guestfs-actions.pod:6222
18225 #: ../fish/guestfish-actions.pod:4199 ../fish/guestfish-actions.pod:4208
18226 msgid "The result is in human-readable format, and not designed to be parsed."
18227 msgstr ""
18228
18229 # type: =head2
18230 #. type: =head2
18231 #: ../src/guestfs-actions.pod:6214
18232 msgid "guestfs_sfdisk_kernel_geometry"
18233 msgstr ""
18234
18235 # type: verbatim
18236 #. type: verbatim
18237 #: ../src/guestfs-actions.pod:6216
18238 #, no-wrap
18239 msgid ""
18240 " char *\n"
18241 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
18242 "                                 const char *device);\n"
18243 "\n"
18244 msgstr ""
18245
18246 # type: textblock
18247 #. type: textblock
18248 #: ../src/guestfs-actions.pod:6220 ../fish/guestfish-actions.pod:4206
18249 msgid "This displays the kernel's idea of the geometry of C<device>."
18250 msgstr ""
18251
18252 # type: =head2
18253 #. type: =head2
18254 #: ../src/guestfs-actions.pod:6230
18255 msgid "guestfs_sfdisk_l"
18256 msgstr ""
18257
18258 # type: verbatim
18259 #. type: verbatim
18260 #: ../src/guestfs-actions.pod:6232
18261 #, no-wrap
18262 msgid ""
18263 " char *\n"
18264 " guestfs_sfdisk_l (guestfs_h *g,\n"
18265 "                   const char *device);\n"
18266 "\n"
18267 msgstr ""
18268
18269 # type: textblock
18270 #. type: textblock
18271 #: ../src/guestfs-actions.pod:6236 ../fish/guestfish-actions.pod:4215
18272 msgid ""
18273 "This displays the partition table on C<device>, in the human-readable output "
18274 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
18275 msgstr ""
18276
18277 # type: textblock
18278 #. type: textblock
18279 #: ../src/guestfs-actions.pod:6240
18280 msgid "See also: C<guestfs_part_list>"
18281 msgstr ""
18282
18283 # type: =head2
18284 #. type: =head2
18285 #: ../src/guestfs-actions.pod:6247
18286 msgid "guestfs_sh"
18287 msgstr ""
18288
18289 # type: verbatim
18290 #. type: verbatim
18291 #: ../src/guestfs-actions.pod:6249
18292 #, no-wrap
18293 msgid ""
18294 " char *\n"
18295 " guestfs_sh (guestfs_h *g,\n"
18296 "             const char *command);\n"
18297 "\n"
18298 msgstr ""
18299
18300 # type: textblock
18301 #. type: textblock
18302 #: ../src/guestfs-actions.pod:6253 ../fish/guestfish-actions.pod:4225
18303 msgid ""
18304 "This call runs a command from the guest filesystem via the guest's C</bin/"
18305 "sh>."
18306 msgstr ""
18307
18308 # type: textblock
18309 #. type: textblock
18310 #: ../src/guestfs-actions.pod:6256
18311 msgid "This is like C<guestfs_command>, but passes the command to:"
18312 msgstr ""
18313
18314 # type: verbatim
18315 #. type: verbatim
18316 #: ../src/guestfs-actions.pod:6258 ../fish/guestfish-actions.pod:4230
18317 #, no-wrap
18318 msgid ""
18319 " /bin/sh -c \"command\"\n"
18320 "\n"
18321 msgstr ""
18322
18323 # type: textblock
18324 #. type: textblock
18325 #: ../src/guestfs-actions.pod:6260 ../fish/guestfish-actions.pod:4232
18326 msgid ""
18327 "Depending on the guest's shell, this usually results in wildcards being "
18328 "expanded, shell expressions being interpolated and so on."
18329 msgstr ""
18330
18331 # type: textblock
18332 #. type: textblock
18333 #: ../src/guestfs-actions.pod:6264
18334 msgid "All the provisos about C<guestfs_command> apply to this call."
18335 msgstr ""
18336
18337 # type: =head2
18338 #. type: =head2
18339 #: ../src/guestfs-actions.pod:6271
18340 msgid "guestfs_sh_lines"
18341 msgstr ""
18342
18343 # type: verbatim
18344 #. type: verbatim
18345 #: ../src/guestfs-actions.pod:6273
18346 #, no-wrap
18347 msgid ""
18348 " char **\n"
18349 " guestfs_sh_lines (guestfs_h *g,\n"
18350 "                   const char *command);\n"
18351 "\n"
18352 msgstr ""
18353
18354 # type: textblock
18355 #. type: textblock
18356 #: ../src/guestfs-actions.pod:6277
18357 msgid ""
18358 "This is the same as C<guestfs_sh>, but splits the result into a list of "
18359 "lines."
18360 msgstr ""
18361
18362 # type: textblock
18363 #. type: textblock
18364 #: ../src/guestfs-actions.pod:6280
18365 msgid "See also: C<guestfs_command_lines>"
18366 msgstr ""
18367
18368 # type: =head2
18369 #. type: =head2
18370 #: ../src/guestfs-actions.pod:6288
18371 msgid "guestfs_sleep"
18372 msgstr ""
18373
18374 # type: verbatim
18375 #. type: verbatim
18376 #: ../src/guestfs-actions.pod:6290
18377 #, no-wrap
18378 msgid ""
18379 " int\n"
18380 " guestfs_sleep (guestfs_h *g,\n"
18381 "                int secs);\n"
18382 "\n"
18383 msgstr ""
18384
18385 # type: textblock
18386 #. type: textblock
18387 #: ../src/guestfs-actions.pod:6294 ../fish/guestfish-actions.pod:4251
18388 msgid "Sleep for C<secs> seconds."
18389 msgstr ""
18390
18391 # type: textblock
18392 #. type: textblock
18393 #: ../src/guestfs-actions.pod:6298
18394 msgid "(Added in 1.0.41)"
18395 msgstr ""
18396
18397 # type: =head2
18398 #. type: =head2
18399 #: ../src/guestfs-actions.pod:6300 ../src/guestfs-structs.pod:109
18400 msgid "guestfs_stat"
18401 msgstr ""
18402
18403 # type: verbatim
18404 #. type: verbatim
18405 #: ../src/guestfs-actions.pod:6302
18406 #, no-wrap
18407 msgid ""
18408 " struct guestfs_stat *\n"
18409 " guestfs_stat (guestfs_h *g,\n"
18410 "               const char *path);\n"
18411 "\n"
18412 msgstr ""
18413
18414 # type: textblock
18415 #. type: textblock
18416 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4259
18417 msgid "This is the same as the C<stat(2)> system call."
18418 msgstr ""
18419
18420 # type: =head2
18421 #. type: =head2
18422 #: ../src/guestfs-actions.pod:6316 ../src/guestfs-structs.pod:135
18423 msgid "guestfs_statvfs"
18424 msgstr ""
18425
18426 # type: verbatim
18427 #. type: verbatim
18428 #: ../src/guestfs-actions.pod:6318
18429 #, no-wrap
18430 msgid ""
18431 " struct guestfs_statvfs *\n"
18432 " guestfs_statvfs (guestfs_h *g,\n"
18433 "                  const char *path);\n"
18434 "\n"
18435 msgstr ""
18436
18437 # type: textblock
18438 #. type: textblock
18439 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4265
18440 msgid ""
18441 "Returns file system statistics for any mounted file system.  C<path> should "
18442 "be a file or directory in the mounted file system (typically it is the mount "
18443 "point itself, but it doesn't need to be)."
18444 msgstr ""
18445
18446 # type: textblock
18447 #. type: textblock
18448 #: ../src/guestfs-actions.pod:6326 ../fish/guestfish-actions.pod:4269
18449 msgid "This is the same as the C<statvfs(2)> system call."
18450 msgstr ""
18451
18452 # type: textblock
18453 #. type: textblock
18454 #: ../src/guestfs-actions.pod:6328
18455 msgid ""
18456 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
18457 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
18458 msgstr ""
18459
18460 # type: =head2
18461 #. type: =head2
18462 #: ../src/guestfs-actions.pod:6334
18463 msgid "guestfs_strings"
18464 msgstr ""
18465
18466 # type: verbatim
18467 #. type: verbatim
18468 #: ../src/guestfs-actions.pod:6336
18469 #, no-wrap
18470 msgid ""
18471 " char **\n"
18472 " guestfs_strings (guestfs_h *g,\n"
18473 "                  const char *path);\n"
18474 "\n"
18475 msgstr ""
18476
18477 # type: textblock
18478 #. type: textblock
18479 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4275
18480 msgid ""
18481 "This runs the L<strings(1)> command on a file and returns the list of "
18482 "printable strings found."
18483 msgstr ""
18484
18485 # type: =head2
18486 #. type: =head2
18487 #: ../src/guestfs-actions.pod:6352
18488 msgid "guestfs_strings_e"
18489 msgstr ""
18490
18491 # type: verbatim
18492 #. type: verbatim
18493 #: ../src/guestfs-actions.pod:6354
18494 #, no-wrap
18495 msgid ""
18496 " char **\n"
18497 " guestfs_strings_e (guestfs_h *g,\n"
18498 "                    const char *encoding,\n"
18499 "                    const char *path);\n"
18500 "\n"
18501 msgstr ""
18502
18503 # type: textblock
18504 #. type: textblock
18505 #: ../src/guestfs-actions.pod:6359
18506 msgid ""
18507 "This is like the C<guestfs_strings> command, but allows you to specify the "
18508 "encoding of strings that are looked for in the source file C<path>."
18509 msgstr ""
18510
18511 # type: textblock
18512 #. type: textblock
18513 #: ../src/guestfs-actions.pod:6363 ../fish/guestfish-actions.pod:4289
18514 msgid "Allowed encodings are:"
18515 msgstr ""
18516
18517 # type: =item
18518 #. type: =item
18519 #: ../src/guestfs-actions.pod:6367 ../fish/guestfish-actions.pod:4293
18520 msgid "s"
18521 msgstr ""
18522
18523 # type: textblock
18524 #. type: textblock
18525 #: ../src/guestfs-actions.pod:6369
18526 msgid ""
18527 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
18528 "ISO-8859-X (this is what C<guestfs_strings> uses)."
18529 msgstr ""
18530
18531 # type: =item
18532 #. type: =item
18533 #: ../src/guestfs-actions.pod:6372 ../fish/guestfish-actions.pod:4298
18534 msgid "S"
18535 msgstr ""
18536
18537 # type: textblock
18538 #. type: textblock
18539 #: ../src/guestfs-actions.pod:6374 ../fish/guestfish-actions.pod:4300
18540 msgid "Single 8-bit-byte characters."
18541 msgstr ""
18542
18543 # type: =item
18544 #. type: =item
18545 #: ../src/guestfs-actions.pod:6376 ../fish/guestfish-actions.pod:4302
18546 msgid "b"
18547 msgstr ""
18548
18549 # type: textblock
18550 #. type: textblock
18551 #: ../src/guestfs-actions.pod:6378 ../fish/guestfish-actions.pod:4304
18552 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
18553 msgstr ""
18554
18555 # type: =item
18556 #. type: =item
18557 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4307
18558 msgid "l (lower case letter L)"
18559 msgstr ""
18560
18561 # type: textblock
18562 #. type: textblock
18563 #: ../src/guestfs-actions.pod:6383 ../fish/guestfish-actions.pod:4309
18564 msgid ""
18565 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
18566 "examining binaries in Windows guests."
18567 msgstr ""
18568
18569 # type: =item
18570 #. type: =item
18571 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4312
18572 msgid "B"
18573 msgstr ""
18574
18575 # type: textblock
18576 #. type: textblock
18577 #: ../src/guestfs-actions.pod:6388 ../fish/guestfish-actions.pod:4314
18578 msgid "32-bit big endian such as UCS-4BE."
18579 msgstr ""
18580
18581 # type: =item
18582 #. type: =item
18583 #: ../src/guestfs-actions.pod:6390 ../fish/guestfish-actions.pod:4316
18584 msgid "L"
18585 msgstr ""
18586
18587 # type: textblock
18588 #. type: textblock
18589 #: ../src/guestfs-actions.pod:6392 ../fish/guestfish-actions.pod:4318
18590 msgid "32-bit little endian such as UCS-4LE."
18591 msgstr ""
18592
18593 # type: textblock
18594 #. type: textblock
18595 #: ../src/guestfs-actions.pod:6396 ../fish/guestfish-actions.pod:4322
18596 msgid "The returned strings are transcoded to UTF-8."
18597 msgstr ""
18598
18599 # type: =head2
18600 #. type: =head2
18601 #: ../src/guestfs-actions.pod:6407
18602 msgid "guestfs_swapoff_device"
18603 msgstr ""
18604
18605 # type: verbatim
18606 #. type: verbatim
18607 #: ../src/guestfs-actions.pod:6409
18608 #, no-wrap
18609 msgid ""
18610 " int\n"
18611 " guestfs_swapoff_device (guestfs_h *g,\n"
18612 "                         const char *device);\n"
18613 "\n"
18614 msgstr ""
18615
18616 # type: textblock
18617 #. type: textblock
18618 #: ../src/guestfs-actions.pod:6413
18619 msgid ""
18620 "This command disables the libguestfs appliance swap device or partition "
18621 "named C<device>.  See C<guestfs_swapon_device>."
18622 msgstr ""
18623
18624 # type: =head2
18625 #. type: =head2
18626 #: ../src/guestfs-actions.pod:6421
18627 msgid "guestfs_swapoff_file"
18628 msgstr ""
18629
18630 # type: verbatim
18631 #. type: verbatim
18632 #: ../src/guestfs-actions.pod:6423
18633 #, no-wrap
18634 msgid ""
18635 " int\n"
18636 " guestfs_swapoff_file (guestfs_h *g,\n"
18637 "                       const char *file);\n"
18638 "\n"
18639 msgstr ""
18640
18641 # type: textblock
18642 #. type: textblock
18643 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4339
18644 msgid "This command disables the libguestfs appliance swap on file."
18645 msgstr ""
18646
18647 # type: =head2
18648 #. type: =head2
18649 #: ../src/guestfs-actions.pod:6433
18650 msgid "guestfs_swapoff_label"
18651 msgstr ""
18652
18653 # type: verbatim
18654 #. type: verbatim
18655 #: ../src/guestfs-actions.pod:6435
18656 #, no-wrap
18657 msgid ""
18658 " int\n"
18659 " guestfs_swapoff_label (guestfs_h *g,\n"
18660 "                        const char *label);\n"
18661 "\n"
18662 msgstr ""
18663
18664 # type: textblock
18665 #. type: textblock
18666 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4345
18667 msgid ""
18668 "This command disables the libguestfs appliance swap on labeled swap "
18669 "partition."
18670 msgstr ""
18671
18672 # type: =head2
18673 #. type: =head2
18674 #: ../src/guestfs-actions.pod:6446
18675 msgid "guestfs_swapoff_uuid"
18676 msgstr ""
18677
18678 # type: verbatim
18679 #. type: verbatim
18680 #: ../src/guestfs-actions.pod:6448
18681 #, no-wrap
18682 msgid ""
18683 " int\n"
18684 " guestfs_swapoff_uuid (guestfs_h *g,\n"
18685 "                       const char *uuid);\n"
18686 "\n"
18687 msgstr ""
18688
18689 # type: textblock
18690 #. type: textblock
18691 #: ../src/guestfs-actions.pod:6452 ../fish/guestfish-actions.pod:4352
18692 msgid ""
18693 "This command disables the libguestfs appliance swap partition with the given "
18694 "UUID."
18695 msgstr ""
18696
18697 # type: =head2
18698 #. type: =head2
18699 #: ../src/guestfs-actions.pod:6459
18700 msgid "guestfs_swapon_device"
18701 msgstr ""
18702
18703 # type: verbatim
18704 #. type: verbatim
18705 #: ../src/guestfs-actions.pod:6461
18706 #, no-wrap
18707 msgid ""
18708 " int\n"
18709 " guestfs_swapon_device (guestfs_h *g,\n"
18710 "                        const char *device);\n"
18711 "\n"
18712 msgstr ""
18713
18714 # type: textblock
18715 #. type: textblock
18716 #: ../src/guestfs-actions.pod:6465
18717 msgid ""
18718 "This command enables the libguestfs appliance to use the swap device or "
18719 "partition named C<device>.  The increased memory is made available for all "
18720 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
18721 msgstr ""
18722
18723 # type: textblock
18724 #. type: textblock
18725 #: ../src/guestfs-actions.pod:6470 ../fish/guestfish-actions.pod:4364
18726 msgid ""
18727 "Note that you should not swap to existing guest swap partitions unless you "
18728 "know what you are doing.  They may contain hibernation information, or other "
18729 "information that the guest doesn't want you to trash.  You also risk leaking "
18730 "information about the host to the guest this way.  Instead, attach a new "
18731 "host device to the guest and swap on that."
18732 msgstr ""
18733
18734 # type: =head2
18735 #. type: =head2
18736 #: ../src/guestfs-actions.pod:6481
18737 msgid "guestfs_swapon_file"
18738 msgstr ""
18739
18740 # type: verbatim
18741 #. type: verbatim
18742 #: ../src/guestfs-actions.pod:6483
18743 #, no-wrap
18744 msgid ""
18745 " int\n"
18746 " guestfs_swapon_file (guestfs_h *g,\n"
18747 "                      const char *file);\n"
18748 "\n"
18749 msgstr ""
18750
18751 # type: textblock
18752 #. type: textblock
18753 #: ../src/guestfs-actions.pod:6487
18754 msgid ""
18755 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
18756 "notes."
18757 msgstr ""
18758
18759 # type: =head2
18760 #. type: =head2
18761 #: ../src/guestfs-actions.pod:6494
18762 msgid "guestfs_swapon_label"
18763 msgstr ""
18764
18765 # type: verbatim
18766 #. type: verbatim
18767 #: ../src/guestfs-actions.pod:6496
18768 #, no-wrap
18769 msgid ""
18770 " int\n"
18771 " guestfs_swapon_label (guestfs_h *g,\n"
18772 "                       const char *label);\n"
18773 "\n"
18774 msgstr ""
18775
18776 # type: textblock
18777 #. type: textblock
18778 #: ../src/guestfs-actions.pod:6500
18779 msgid ""
18780 "This command enables swap to a labeled swap partition.  See "
18781 "C<guestfs_swapon_device> for other notes."
18782 msgstr ""
18783
18784 # type: =head2
18785 #. type: =head2
18786 #: ../src/guestfs-actions.pod:6507
18787 msgid "guestfs_swapon_uuid"
18788 msgstr ""
18789
18790 # type: verbatim
18791 #. type: verbatim
18792 #: ../src/guestfs-actions.pod:6509
18793 #, no-wrap
18794 msgid ""
18795 " int\n"
18796 " guestfs_swapon_uuid (guestfs_h *g,\n"
18797 "                      const char *uuid);\n"
18798 "\n"
18799 msgstr ""
18800
18801 # type: textblock
18802 #. type: textblock
18803 #: ../src/guestfs-actions.pod:6513
18804 msgid ""
18805 "This command enables swap to a swap partition with the given UUID.  See "
18806 "C<guestfs_swapon_device> for other notes."
18807 msgstr ""
18808
18809 # type: =head2
18810 #. type: =head2
18811 #: ../src/guestfs-actions.pod:6520
18812 msgid "guestfs_sync"
18813 msgstr ""
18814
18815 # type: verbatim
18816 #. type: verbatim
18817 #: ../src/guestfs-actions.pod:6522
18818 #, no-wrap
18819 msgid ""
18820 " int\n"
18821 " guestfs_sync (guestfs_h *g);\n"
18822 "\n"
18823 msgstr ""
18824
18825 # type: textblock
18826 #. type: textblock
18827 #: ../src/guestfs-actions.pod:6525 ../fish/guestfish-actions.pod:4396
18828 msgid ""
18829 "This syncs the disk, so that any writes are flushed through to the "
18830 "underlying disk image."
18831 msgstr ""
18832
18833 # type: textblock
18834 #. type: textblock
18835 #: ../src/guestfs-actions.pod:6528 ../fish/guestfish-actions.pod:4399
18836 msgid ""
18837 "You should always call this if you have modified a disk image, before "
18838 "closing the handle."
18839 msgstr ""
18840
18841 # type: =head2
18842 #. type: =head2
18843 #: ../src/guestfs-actions.pod:6535
18844 msgid "guestfs_tail"
18845 msgstr ""
18846
18847 # type: verbatim
18848 #. type: verbatim
18849 #: ../src/guestfs-actions.pod:6537
18850 #, no-wrap
18851 msgid ""
18852 " char **\n"
18853 " guestfs_tail (guestfs_h *g,\n"
18854 "               const char *path);\n"
18855 "\n"
18856 msgstr ""
18857
18858 # type: textblock
18859 #. type: textblock
18860 #: ../src/guestfs-actions.pod:6541 ../fish/guestfish-actions.pod:4406
18861 msgid ""
18862 "This command returns up to the last 10 lines of a file as a list of strings."
18863 msgstr ""
18864
18865 # type: =head2
18866 #. type: =head2
18867 #: ../src/guestfs-actions.pod:6553
18868 msgid "guestfs_tail_n"
18869 msgstr ""
18870
18871 # type: verbatim
18872 #. type: verbatim
18873 #: ../src/guestfs-actions.pod:6555
18874 #, no-wrap
18875 msgid ""
18876 " char **\n"
18877 " guestfs_tail_n (guestfs_h *g,\n"
18878 "                 int nrlines,\n"
18879 "                 const char *path);\n"
18880 "\n"
18881 msgstr ""
18882
18883 # type: textblock
18884 #. type: textblock
18885 #: ../src/guestfs-actions.pod:6560 ../fish/guestfish-actions.pod:4416
18886 msgid ""
18887 "If the parameter C<nrlines> is a positive number, this returns the last "
18888 "C<nrlines> lines of the file C<path>."
18889 msgstr ""
18890
18891 # type: textblock
18892 #. type: textblock
18893 #: ../src/guestfs-actions.pod:6563 ../fish/guestfish-actions.pod:4419
18894 msgid ""
18895 "If the parameter C<nrlines> is a negative number, this returns lines from "
18896 "the file C<path>, starting with the C<-nrlines>th line."
18897 msgstr ""
18898
18899 # type: =head2
18900 #. type: =head2
18901 #: ../src/guestfs-actions.pod:6577
18902 msgid "guestfs_tar_in"
18903 msgstr ""
18904
18905 # type: verbatim
18906 #. type: verbatim
18907 #: ../src/guestfs-actions.pod:6579
18908 #, no-wrap
18909 msgid ""
18910 " int\n"
18911 " guestfs_tar_in (guestfs_h *g,\n"
18912 "                 const char *tarfile,\n"
18913 "                 const char *directory);\n"
18914 "\n"
18915 msgstr ""
18916
18917 # type: textblock
18918 #. type: textblock
18919 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4431
18920 msgid ""
18921 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
18922 "tar file) into C<directory>."
18923 msgstr ""
18924
18925 # type: textblock
18926 #. type: textblock
18927 #: ../src/guestfs-actions.pod:6587
18928 msgid ""
18929 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
18930 msgstr ""
18931
18932 # type: textblock
18933 #. type: textblock
18934 #: ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:6609
18935 #: ../src/guestfs-actions.pod:6625 ../src/guestfs-actions.pod:6641
18936 msgid "(Added in 1.0.3)"
18937 msgstr ""
18938
18939 # type: =head2
18940 #. type: =head2
18941 #: ../src/guestfs-actions.pod:6594
18942 msgid "guestfs_tar_out"
18943 msgstr ""
18944
18945 # type: verbatim
18946 #. type: verbatim
18947 #: ../src/guestfs-actions.pod:6596
18948 #, no-wrap
18949 msgid ""
18950 " int\n"
18951 " guestfs_tar_out (guestfs_h *g,\n"
18952 "                  const char *directory,\n"
18953 "                  const char *tarfile);\n"
18954 "\n"
18955 msgstr ""
18956
18957 # type: textblock
18958 #. type: textblock
18959 #: ../src/guestfs-actions.pod:6601 ../fish/guestfish-actions.pod:4443
18960 msgid ""
18961 "This command packs the contents of C<directory> and downloads it to local "
18962 "file C<tarfile>."
18963 msgstr ""
18964
18965 # type: textblock
18966 #. type: textblock
18967 #: ../src/guestfs-actions.pod:6604
18968 msgid ""
18969 "To download a compressed tarball, use C<guestfs_tgz_out> or "
18970 "C<guestfs_txz_out>."
18971 msgstr ""
18972
18973 # type: =head2
18974 #. type: =head2
18975 #: ../src/guestfs-actions.pod:6611
18976 msgid "guestfs_tgz_in"
18977 msgstr ""
18978
18979 # type: verbatim
18980 #. type: verbatim
18981 #: ../src/guestfs-actions.pod:6613
18982 #, no-wrap
18983 msgid ""
18984 " int\n"
18985 " guestfs_tgz_in (guestfs_h *g,\n"
18986 "                 const char *tarball,\n"
18987 "                 const char *directory);\n"
18988 "\n"
18989 msgstr ""
18990
18991 # type: textblock
18992 #. type: textblock
18993 #: ../src/guestfs-actions.pod:6618 ../fish/guestfish-actions.pod:4455
18994 msgid ""
18995 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
18996 "tar file) into C<directory>."
18997 msgstr ""
18998
18999 # type: textblock
19000 #. type: textblock
19001 #: ../src/guestfs-actions.pod:6621
19002 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
19003 msgstr ""
19004
19005 # type: =head2
19006 #. type: =head2
19007 #: ../src/guestfs-actions.pod:6627
19008 msgid "guestfs_tgz_out"
19009 msgstr ""
19010
19011 # type: verbatim
19012 #. type: verbatim
19013 #: ../src/guestfs-actions.pod:6629
19014 #, no-wrap
19015 msgid ""
19016 " int\n"
19017 " guestfs_tgz_out (guestfs_h *g,\n"
19018 "                  const char *directory,\n"
19019 "                  const char *tarball);\n"
19020 "\n"
19021 msgstr ""
19022
19023 # type: textblock
19024 #. type: textblock
19025 #: ../src/guestfs-actions.pod:6634 ../fish/guestfish-actions.pod:4466
19026 msgid ""
19027 "This command packs the contents of C<directory> and downloads it to local "
19028 "file C<tarball>."
19029 msgstr ""
19030
19031 # type: textblock
19032 #. type: textblock
19033 #: ../src/guestfs-actions.pod:6637
19034 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
19035 msgstr ""
19036
19037 # type: =head2
19038 #. type: =head2
19039 #: ../src/guestfs-actions.pod:6643
19040 msgid "guestfs_touch"
19041 msgstr ""
19042
19043 # type: verbatim
19044 #. type: verbatim
19045 #: ../src/guestfs-actions.pod:6645
19046 #, no-wrap
19047 msgid ""
19048 " int\n"
19049 " guestfs_touch (guestfs_h *g,\n"
19050 "                const char *path);\n"
19051 "\n"
19052 msgstr ""
19053
19054 # type: textblock
19055 #. type: textblock
19056 #: ../src/guestfs-actions.pod:6649 ../fish/guestfish-actions.pod:4477
19057 msgid ""
19058 "Touch acts like the L<touch(1)> command.  It can be used to update the "
19059 "timestamps on a file, or, if the file does not exist, to create a new zero-"
19060 "length file."
19061 msgstr ""
19062
19063 # type: textblock
19064 #. type: textblock
19065 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4481
19066 msgid ""
19067 "This command only works on regular files, and will fail on other file types "
19068 "such as directories, symbolic links, block special etc."
19069 msgstr ""
19070
19071 # type: =head2
19072 #. type: =head2
19073 #: ../src/guestfs-actions.pod:6660
19074 msgid "guestfs_truncate"
19075 msgstr ""
19076
19077 # type: verbatim
19078 #. type: verbatim
19079 #: ../src/guestfs-actions.pod:6662
19080 #, no-wrap
19081 msgid ""
19082 " int\n"
19083 " guestfs_truncate (guestfs_h *g,\n"
19084 "                   const char *path);\n"
19085 "\n"
19086 msgstr ""
19087
19088 # type: textblock
19089 #. type: textblock
19090 #: ../src/guestfs-actions.pod:6666 ../fish/guestfish-actions.pod:4488
19091 msgid ""
19092 "This command truncates C<path> to a zero-length file.  The file must exist "
19093 "already."
19094 msgstr ""
19095
19096 # type: =head2
19097 #. type: =head2
19098 #: ../src/guestfs-actions.pod:6673
19099 msgid "guestfs_truncate_size"
19100 msgstr ""
19101
19102 # type: verbatim
19103 #. type: verbatim
19104 #: ../src/guestfs-actions.pod:6675
19105 #, no-wrap
19106 msgid ""
19107 " int\n"
19108 " guestfs_truncate_size (guestfs_h *g,\n"
19109 "                        const char *path,\n"
19110 "                        int64_t size);\n"
19111 "\n"
19112 msgstr ""
19113
19114 # type: textblock
19115 #. type: textblock
19116 #: ../src/guestfs-actions.pod:6680 ../fish/guestfish-actions.pod:4495
19117 msgid ""
19118 "This command truncates C<path> to size C<size> bytes.  The file must exist "
19119 "already."
19120 msgstr ""
19121
19122 # type: textblock
19123 #. type: textblock
19124 #: ../src/guestfs-actions.pod:6683
19125 msgid ""
19126 "If the current file size is less than C<size> then the file is extended to "
19127 "the required size with zero bytes.  This creates a sparse file (ie. disk "
19128 "blocks are not allocated for the file until you write to it).  To create a "
19129 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
19130 msgstr ""
19131
19132 # type: =head2
19133 #. type: =head2
19134 #: ../src/guestfs-actions.pod:6693
19135 msgid "guestfs_tune2fs_l"
19136 msgstr ""
19137
19138 # type: verbatim
19139 #. type: verbatim
19140 #: ../src/guestfs-actions.pod:6695
19141 #, no-wrap
19142 msgid ""
19143 " char **\n"
19144 " guestfs_tune2fs_l (guestfs_h *g,\n"
19145 "                    const char *device);\n"
19146 "\n"
19147 msgstr ""
19148
19149 # type: textblock
19150 #. type: textblock
19151 #: ../src/guestfs-actions.pod:6699 ../fish/guestfish-actions.pod:4508
19152 msgid ""
19153 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
19154 "C<device>."
19155 msgstr ""
19156
19157 # type: textblock
19158 #. type: textblock
19159 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4511
19160 msgid ""
19161 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
19162 "for more details.  The list of fields returned isn't clearly defined, and "
19163 "depends on both the version of C<tune2fs> that libguestfs was built against, "
19164 "and the filesystem itself."
19165 msgstr ""
19166
19167 # type: =head2
19168 #. type: =head2
19169 #: ../src/guestfs-actions.pod:6715
19170 msgid "guestfs_txz_in"
19171 msgstr ""
19172
19173 # type: verbatim
19174 #. type: verbatim
19175 #: ../src/guestfs-actions.pod:6717
19176 #, no-wrap
19177 msgid ""
19178 " int\n"
19179 " guestfs_txz_in (guestfs_h *g,\n"
19180 "                 const char *tarball,\n"
19181 "                 const char *directory);\n"
19182 "\n"
19183 msgstr ""
19184
19185 # type: textblock
19186 #. type: textblock
19187 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4520
19188 msgid ""
19189 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
19190 "tar file) into C<directory>."
19191 msgstr ""
19192
19193 # type: =head2
19194 #. type: =head2
19195 #: ../src/guestfs-actions.pod:6729
19196 msgid "guestfs_txz_out"
19197 msgstr ""
19198
19199 # type: verbatim
19200 #. type: verbatim
19201 #: ../src/guestfs-actions.pod:6731
19202 #, no-wrap
19203 msgid ""
19204 " int\n"
19205 " guestfs_txz_out (guestfs_h *g,\n"
19206 "                  const char *directory,\n"
19207 "                  const char *tarball);\n"
19208 "\n"
19209 msgstr ""
19210
19211 # type: textblock
19212 #. type: textblock
19213 #: ../src/guestfs-actions.pod:6736 ../fish/guestfish-actions.pod:4529
19214 msgid ""
19215 "This command packs the contents of C<directory> and downloads it to local "
19216 "file C<tarball> (as an xz compressed tar archive)."
19217 msgstr ""
19218
19219 # type: =head2
19220 #. type: =head2
19221 #: ../src/guestfs-actions.pod:6743
19222 msgid "guestfs_umask"
19223 msgstr ""
19224
19225 # type: verbatim
19226 #. type: verbatim
19227 #: ../src/guestfs-actions.pod:6745
19228 #, no-wrap
19229 msgid ""
19230 " int\n"
19231 " guestfs_umask (guestfs_h *g,\n"
19232 "                int mask);\n"
19233 "\n"
19234 msgstr ""
19235
19236 # type: textblock
19237 #. type: textblock
19238 #: ../src/guestfs-actions.pod:6749 ../fish/guestfish-actions.pod:4538
19239 msgid ""
19240 "This function sets the mask used for creating new files and device nodes to "
19241 "C<mask & 0777>."
19242 msgstr ""
19243
19244 # type: textblock
19245 #. type: textblock
19246 #: ../src/guestfs-actions.pod:6752 ../fish/guestfish-actions.pod:4541
19247 msgid ""
19248 "Typical umask values would be C<022> which creates new files with "
19249 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
19250 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
19251 msgstr ""
19252
19253 # type: textblock
19254 #. type: textblock
19255 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4546
19256 msgid ""
19257 "The default umask is C<022>.  This is important because it means that "
19258 "directories and device nodes will be created with C<0644> or C<0755> mode "
19259 "even if you specify C<0777>."
19260 msgstr ""
19261
19262 # type: textblock
19263 #. type: textblock
19264 #: ../src/guestfs-actions.pod:6761
19265 msgid ""
19266 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
19267 "C<guestfs_mkdir>."
19268 msgstr ""
19269
19270 # type: textblock
19271 #. type: textblock
19272 #: ../src/guestfs-actions.pod:6764 ../fish/guestfish-actions.pod:4553
19273 msgid "This call returns the previous umask."
19274 msgstr ""
19275
19276 # type: =head2
19277 #. type: =head2
19278 #: ../src/guestfs-actions.pod:6770
19279 msgid "guestfs_umount"
19280 msgstr ""
19281
19282 # type: verbatim
19283 #. type: verbatim
19284 #: ../src/guestfs-actions.pod:6772
19285 #, no-wrap
19286 msgid ""
19287 " int\n"
19288 " guestfs_umount (guestfs_h *g,\n"
19289 "                 const char *pathordevice);\n"
19290 "\n"
19291 msgstr ""
19292
19293 # type: textblock
19294 #. type: textblock
19295 #: ../src/guestfs-actions.pod:6776 ../fish/guestfish-actions.pod:4561
19296 msgid ""
19297 "This unmounts the given filesystem.  The filesystem may be specified either "
19298 "by its mountpoint (path) or the device which contains the filesystem."
19299 msgstr ""
19300
19301 # type: =head2
19302 #. type: =head2
19303 #: ../src/guestfs-actions.pod:6784
19304 msgid "guestfs_umount_all"
19305 msgstr ""
19306
19307 # type: verbatim
19308 #. type: verbatim
19309 #: ../src/guestfs-actions.pod:6786
19310 #, no-wrap
19311 msgid ""
19312 " int\n"
19313 " guestfs_umount_all (guestfs_h *g);\n"
19314 "\n"
19315 msgstr ""
19316
19317 # type: textblock
19318 #. type: textblock
19319 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4571
19320 msgid "This unmounts all mounted filesystems."
19321 msgstr ""
19322
19323 # type: textblock
19324 #. type: textblock
19325 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4573
19326 msgid "Some internal mounts are not unmounted by this call."
19327 msgstr ""
19328
19329 # type: =head2
19330 #. type: =head2
19331 #: ../src/guestfs-actions.pod:6797
19332 msgid "guestfs_upload"
19333 msgstr ""
19334
19335 # type: verbatim
19336 #. type: verbatim
19337 #: ../src/guestfs-actions.pod:6799
19338 #, no-wrap
19339 msgid ""
19340 " int\n"
19341 " guestfs_upload (guestfs_h *g,\n"
19342 "                 const char *filename,\n"
19343 "                 const char *remotefilename);\n"
19344 "\n"
19345 msgstr ""
19346
19347 # type: textblock
19348 #. type: textblock
19349 #: ../src/guestfs-actions.pod:6804 ../src/guestfs-actions.pod:6828
19350 #: ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4592
19351 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
19352 msgstr ""
19353
19354 # type: textblock
19355 #. type: textblock
19356 #: ../src/guestfs-actions.pod:6809
19357 msgid "See also C<guestfs_download>."
19358 msgstr ""
19359
19360 # type: =head2
19361 #. type: =head2
19362 #: ../src/guestfs-actions.pod:6820
19363 msgid "guestfs_upload_offset"
19364 msgstr ""
19365
19366 # type: verbatim
19367 #. type: verbatim
19368 #: ../src/guestfs-actions.pod:6822
19369 #, no-wrap
19370 msgid ""
19371 " int\n"
19372 " guestfs_upload_offset (guestfs_h *g,\n"
19373 "                        const char *filename,\n"
19374 "                        const char *remotefilename,\n"
19375 "                        int64_t offset);\n"
19376 "\n"
19377 msgstr ""
19378
19379 # type: textblock
19380 #. type: textblock
19381 #: ../src/guestfs-actions.pod:6831 ../fish/guestfish-actions.pod:4595
19382 msgid ""
19383 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
19384 "The intention is to overwrite parts of existing files or devices, although "
19385 "if a non-existant file is specified then it is created with a \"hole\" "
19386 "before C<offset>.  The size of the data written is implicit in the size of "
19387 "the source C<filename>."
19388 msgstr ""
19389
19390 # type: textblock
19391 #. type: textblock
19392 #: ../src/guestfs-actions.pod:6838
19393 msgid ""
19394 "Note that there is no limit on the amount of data that can be uploaded with "
19395 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
19396 "full amount unless an error occurs."
19397 msgstr ""
19398
19399 # type: textblock
19400 #. type: textblock
19401 #: ../src/guestfs-actions.pod:6843
19402 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
19403 msgstr ""
19404
19405 # type: =head2
19406 #. type: =head2
19407 #: ../src/guestfs-actions.pod:6854
19408 msgid "guestfs_utimens"
19409 msgstr ""
19410
19411 # type: verbatim
19412 #. type: verbatim
19413 #: ../src/guestfs-actions.pod:6856
19414 #, no-wrap
19415 msgid ""
19416 " int\n"
19417 " guestfs_utimens (guestfs_h *g,\n"
19418 "                  const char *path,\n"
19419 "                  int64_t atsecs,\n"
19420 "                  int64_t atnsecs,\n"
19421 "                  int64_t mtsecs,\n"
19422 "                  int64_t mtnsecs);\n"
19423 "\n"
19424 msgstr ""
19425
19426 # type: textblock
19427 #. type: textblock
19428 #: ../src/guestfs-actions.pod:6864 ../fish/guestfish-actions.pod:4615
19429 msgid "This command sets the timestamps of a file with nanosecond precision."
19430 msgstr ""
19431
19432 # type: textblock
19433 #. type: textblock
19434 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4618
19435 msgid ""
19436 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
19437 "from the epoch."
19438 msgstr ""
19439
19440 # type: textblock
19441 #. type: textblock
19442 #: ../src/guestfs-actions.pod:6870 ../fish/guestfish-actions.pod:4621
19443 msgid ""
19444 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
19445 "nanoseconds from the epoch."
19446 msgstr ""
19447
19448 # type: textblock
19449 #. type: textblock
19450 #: ../src/guestfs-actions.pod:6873 ../fish/guestfish-actions.pod:4624
19451 msgid ""
19452 "If the C<*nsecs> field contains the special value C<-1> then the "
19453 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
19454 "ignored in this case)."
19455 msgstr ""
19456
19457 # type: textblock
19458 #. type: textblock
19459 #: ../src/guestfs-actions.pod:6877 ../fish/guestfish-actions.pod:4628
19460 msgid ""
19461 "If the C<*nsecs> field contains the special value C<-2> then the "
19462 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
19463 "in this case)."
19464 msgstr ""
19465
19466 # type: =head2
19467 #. type: =head2
19468 #: ../src/guestfs-actions.pod:6885 ../src/guestfs-structs.pod:175
19469 msgid "guestfs_version"
19470 msgstr ""
19471
19472 # type: verbatim
19473 #. type: verbatim
19474 #: ../src/guestfs-actions.pod:6887
19475 #, no-wrap
19476 msgid ""
19477 " struct guestfs_version *\n"
19478 " guestfs_version (guestfs_h *g);\n"
19479 "\n"
19480 msgstr ""
19481
19482 # type: textblock
19483 #. type: textblock
19484 #: ../src/guestfs-actions.pod:6890 ../fish/guestfish-actions.pod:4636
19485 msgid ""
19486 "Return the libguestfs version number that the program is linked against."
19487 msgstr ""
19488
19489 # type: textblock
19490 #. type: textblock
19491 #: ../src/guestfs-actions.pod:6893 ../fish/guestfish-actions.pod:4639
19492 msgid ""
19493 "Note that because of dynamic linking this is not necessarily the version of "
19494 "libguestfs that you compiled against.  You can compile the program, and then "
19495 "at runtime dynamically link against a completely different C<libguestfs.so> "
19496 "library."
19497 msgstr ""
19498
19499 # type: textblock
19500 #. type: textblock
19501 #: ../src/guestfs-actions.pod:6898 ../fish/guestfish-actions.pod:4644
19502 msgid ""
19503 "This call was added in version C<1.0.58>.  In previous versions of "
19504 "libguestfs there was no way to get the version number.  From C code you can "
19505 "use dynamic linker functions to find out if this symbol exists (if it "
19506 "doesn't, then it's an earlier version)."
19507 msgstr ""
19508
19509 # type: textblock
19510 #. type: textblock
19511 #: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4650
19512 msgid ""
19513 "The call returns a structure with four elements.  The first three (C<major>, "
19514 "C<minor> and C<release>) are numbers and correspond to the usual version "
19515 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
19516 "but may be used for distro-specific information."
19517 msgstr ""
19518
19519 # type: textblock
19520 #. type: textblock
19521 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4656
19522 msgid ""
19523 "To construct the original version string: C<$major.$minor.$release$extra>"
19524 msgstr ""
19525
19526 # type: textblock
19527 #. type: textblock
19528 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4659
19529 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
19530 msgstr ""
19531
19532 # type: textblock
19533 #. type: textblock
19534 #: ../src/guestfs-actions.pod:6915
19535 msgid ""
19536 "I<Note:> Don't use this call to test for availability of features.  In "
19537 "enterprise distributions we backport features from later versions into "
19538 "earlier versions, making this an unreliable way to test for features.  Use "
19539 "C<guestfs_available> instead."
19540 msgstr ""
19541
19542 # type: textblock
19543 #. type: textblock
19544 #: ../src/guestfs-actions.pod:6921
19545 msgid ""
19546 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
19547 "error.  I<The caller must call C<guestfs_free_version> after use>."
19548 msgstr ""
19549
19550 # type: textblock
19551 #. type: textblock
19552 #: ../src/guestfs-actions.pod:6925
19553 msgid "(Added in 1.0.58)"
19554 msgstr ""
19555
19556 # type: =head2
19557 #. type: =head2
19558 #: ../src/guestfs-actions.pod:6927
19559 msgid "guestfs_vfs_label"
19560 msgstr ""
19561
19562 # type: verbatim
19563 #. type: verbatim
19564 #: ../src/guestfs-actions.pod:6929
19565 #, no-wrap
19566 msgid ""
19567 " char *\n"
19568 " guestfs_vfs_label (guestfs_h *g,\n"
19569 "                    const char *device);\n"
19570 "\n"
19571 msgstr ""
19572
19573 # type: textblock
19574 #. type: textblock
19575 #: ../src/guestfs-actions.pod:6933 ../fish/guestfish-actions.pod:4671
19576 msgid "This returns the filesystem label of the filesystem on C<device>."
19577 msgstr ""
19578
19579 # type: textblock
19580 #. type: textblock
19581 #: ../src/guestfs-actions.pod:6936 ../fish/guestfish-actions.pod:4674
19582 msgid "If the filesystem is unlabeled, this returns the empty string."
19583 msgstr ""
19584
19585 # type: textblock
19586 #. type: textblock
19587 #: ../src/guestfs-actions.pod:6938
19588 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
19589 msgstr ""
19590
19591 # type: textblock
19592 #. type: textblock
19593 #: ../src/guestfs-actions.pod:6943 ../src/guestfs-actions.pod:6980
19594 msgid "(Added in 1.3.18)"
19595 msgstr ""
19596
19597 # type: =head2
19598 #. type: =head2
19599 #: ../src/guestfs-actions.pod:6945
19600 msgid "guestfs_vfs_type"
19601 msgstr ""
19602
19603 # type: verbatim
19604 #. type: verbatim
19605 #: ../src/guestfs-actions.pod:6947
19606 #, no-wrap
19607 msgid ""
19608 " char *\n"
19609 " guestfs_vfs_type (guestfs_h *g,\n"
19610 "                   const char *device);\n"
19611 "\n"
19612 msgstr ""
19613
19614 # type: textblock
19615 #. type: textblock
19616 #: ../src/guestfs-actions.pod:6951 ../fish/guestfish-actions.pod:4682
19617 msgid ""
19618 "This command gets the filesystem type corresponding to the filesystem on "
19619 "C<device>."
19620 msgstr ""
19621
19622 # type: textblock
19623 #. type: textblock
19624 #: ../src/guestfs-actions.pod:6954 ../fish/guestfish-actions.pod:4685
19625 msgid ""
19626 "For most filesystems, the result is the name of the Linux VFS module which "
19627 "would be used to mount this filesystem if you mounted it without specifying "
19628 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
19629 msgstr ""
19630
19631 # type: =head2
19632 #. type: =head2
19633 #: ../src/guestfs-actions.pod:6964
19634 msgid "guestfs_vfs_uuid"
19635 msgstr ""
19636
19637 # type: verbatim
19638 #. type: verbatim
19639 #: ../src/guestfs-actions.pod:6966
19640 #, no-wrap
19641 msgid ""
19642 " char *\n"
19643 " guestfs_vfs_uuid (guestfs_h *g,\n"
19644 "                   const char *device);\n"
19645 "\n"
19646 msgstr ""
19647
19648 # type: textblock
19649 #. type: textblock
19650 #: ../src/guestfs-actions.pod:6970 ../fish/guestfish-actions.pod:4694
19651 msgid "This returns the filesystem UUID of the filesystem on C<device>."
19652 msgstr ""
19653
19654 # type: textblock
19655 #. type: textblock
19656 #: ../src/guestfs-actions.pod:6973 ../fish/guestfish-actions.pod:4697
19657 msgid "If the filesystem does not have a UUID, this returns the empty string."
19658 msgstr ""
19659
19660 # type: textblock
19661 #. type: textblock
19662 #: ../src/guestfs-actions.pod:6975
19663 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
19664 msgstr ""
19665
19666 # type: =head2
19667 #. type: =head2
19668 #: ../src/guestfs-actions.pod:6982
19669 msgid "guestfs_vg_activate"
19670 msgstr ""
19671
19672 # type: verbatim
19673 #. type: verbatim
19674 #: ../src/guestfs-actions.pod:6984
19675 #, no-wrap
19676 msgid ""
19677 " int\n"
19678 " guestfs_vg_activate (guestfs_h *g,\n"
19679 "                      int activate,\n"
19680 "                      char *const *volgroups);\n"
19681 "\n"
19682 msgstr ""
19683
19684 # type: textblock
19685 #. type: textblock
19686 #: ../src/guestfs-actions.pod:6989 ../fish/guestfish-actions.pod:4705
19687 msgid ""
19688 "This command activates or (if C<activate> is false) deactivates all logical "
19689 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
19690 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
19691 "deactivated, then those devices disappear."
19692 msgstr ""
19693
19694 # type: textblock
19695 #. type: textblock
19696 #: ../src/guestfs-actions.pod:6995 ../fish/guestfish-actions.pod:4711
19697 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
19698 msgstr ""
19699
19700 # type: textblock
19701 #. type: textblock
19702 #: ../src/guestfs-actions.pod:6997 ../fish/guestfish-actions.pod:4713
19703 msgid ""
19704 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
19705 "activated or deactivated."
19706 msgstr ""
19707
19708 # type: =head2
19709 #. type: =head2
19710 #: ../src/guestfs-actions.pod:7004
19711 msgid "guestfs_vg_activate_all"
19712 msgstr ""
19713
19714 # type: verbatim
19715 #. type: verbatim
19716 #: ../src/guestfs-actions.pod:7006
19717 #, no-wrap
19718 msgid ""
19719 " int\n"
19720 " guestfs_vg_activate_all (guestfs_h *g,\n"
19721 "                          int activate);\n"
19722 "\n"
19723 msgstr ""
19724
19725 # type: textblock
19726 #. type: textblock
19727 #: ../src/guestfs-actions.pod:7010 ../fish/guestfish-actions.pod:4720
19728 msgid ""
19729 "This command activates or (if C<activate> is false) deactivates all logical "
19730 "volumes in all volume groups.  If activated, then they are made known to the "
19731 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
19732 "those devices disappear."
19733 msgstr ""
19734
19735 # type: textblock
19736 #. type: textblock
19737 #: ../src/guestfs-actions.pod:7016 ../fish/guestfish-actions.pod:4726
19738 msgid "This command is the same as running C<vgchange -a y|n>"
19739 msgstr ""
19740
19741 # type: =head2
19742 #. type: =head2
19743 #: ../src/guestfs-actions.pod:7022
19744 msgid "guestfs_vgcreate"
19745 msgstr ""
19746
19747 # type: verbatim
19748 #. type: verbatim
19749 #: ../src/guestfs-actions.pod:7024
19750 #, no-wrap
19751 msgid ""
19752 " int\n"
19753 " guestfs_vgcreate (guestfs_h *g,\n"
19754 "                   const char *volgroup,\n"
19755 "                   char *const *physvols);\n"
19756 "\n"
19757 msgstr ""
19758
19759 # type: textblock
19760 #. type: textblock
19761 #: ../src/guestfs-actions.pod:7029 ../fish/guestfish-actions.pod:4732
19762 msgid ""
19763 "This creates an LVM volume group called C<volgroup> from the non-empty list "
19764 "of physical volumes C<physvols>."
19765 msgstr ""
19766
19767 # type: =head2
19768 #. type: =head2
19769 #: ../src/guestfs-actions.pod:7036
19770 msgid "guestfs_vglvuuids"
19771 msgstr ""
19772
19773 # type: verbatim
19774 #. type: verbatim
19775 #: ../src/guestfs-actions.pod:7038
19776 #, no-wrap
19777 msgid ""
19778 " char **\n"
19779 " guestfs_vglvuuids (guestfs_h *g,\n"
19780 "                    const char *vgname);\n"
19781 "\n"
19782 msgstr ""
19783
19784 # type: textblock
19785 #. type: textblock
19786 #: ../src/guestfs-actions.pod:7042 ../fish/guestfish-actions.pod:4739
19787 msgid ""
19788 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
19789 "volumes created in this volume group."
19790 msgstr ""
19791
19792 # type: textblock
19793 #. type: textblock
19794 #: ../src/guestfs-actions.pod:7045
19795 msgid ""
19796 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
19797 "associate logical volumes and volume groups."
19798 msgstr ""
19799
19800 # type: textblock
19801 #. type: textblock
19802 #: ../src/guestfs-actions.pod:7048
19803 msgid "See also C<guestfs_vgpvuuids>."
19804 msgstr ""
19805
19806 # type: =head2
19807 #. type: =head2
19808 #: ../src/guestfs-actions.pod:7056
19809 msgid "guestfs_vgpvuuids"
19810 msgstr ""
19811
19812 # type: verbatim
19813 #. type: verbatim
19814 #: ../src/guestfs-actions.pod:7058
19815 #, no-wrap
19816 msgid ""
19817 " char **\n"
19818 " guestfs_vgpvuuids (guestfs_h *g,\n"
19819 "                    const char *vgname);\n"
19820 "\n"
19821 msgstr ""
19822
19823 # type: textblock
19824 #. type: textblock
19825 #: ../src/guestfs-actions.pod:7062 ../fish/guestfish-actions.pod:4751
19826 msgid ""
19827 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
19828 "volumes that this volume group resides on."
19829 msgstr ""
19830
19831 # type: textblock
19832 #. type: textblock
19833 #: ../src/guestfs-actions.pod:7065
19834 msgid ""
19835 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
19836 "associate physical volumes and volume groups."
19837 msgstr ""
19838
19839 # type: textblock
19840 #. type: textblock
19841 #: ../src/guestfs-actions.pod:7068
19842 msgid "See also C<guestfs_vglvuuids>."
19843 msgstr ""
19844
19845 # type: =head2
19846 #. type: =head2
19847 #: ../src/guestfs-actions.pod:7076
19848 msgid "guestfs_vgremove"
19849 msgstr ""
19850
19851 # type: verbatim
19852 #. type: verbatim
19853 #: ../src/guestfs-actions.pod:7078
19854 #, no-wrap
19855 msgid ""
19856 " int\n"
19857 " guestfs_vgremove (guestfs_h *g,\n"
19858 "                   const char *vgname);\n"
19859 "\n"
19860 msgstr ""
19861
19862 # type: textblock
19863 #. type: textblock
19864 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4763
19865 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
19866 msgstr ""
19867
19868 # type: textblock
19869 #. type: textblock
19870 #: ../src/guestfs-actions.pod:7084 ../fish/guestfish-actions.pod:4765
19871 msgid ""
19872 "This also forcibly removes all logical volumes in the volume group (if any)."
19873 msgstr ""
19874
19875 # type: =head2
19876 #. type: =head2
19877 #: ../src/guestfs-actions.pod:7091
19878 msgid "guestfs_vgrename"
19879 msgstr ""
19880
19881 # type: verbatim
19882 #. type: verbatim
19883 #: ../src/guestfs-actions.pod:7093
19884 #, no-wrap
19885 msgid ""
19886 " int\n"
19887 " guestfs_vgrename (guestfs_h *g,\n"
19888 "                   const char *volgroup,\n"
19889 "                   const char *newvolgroup);\n"
19890 "\n"
19891 msgstr ""
19892
19893 # type: textblock
19894 #. type: textblock
19895 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4772
19896 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
19897 msgstr ""
19898
19899 # type: =head2
19900 #. type: =head2
19901 #: ../src/guestfs-actions.pod:7104
19902 msgid "guestfs_vgs"
19903 msgstr ""
19904
19905 # type: verbatim
19906 #. type: verbatim
19907 #: ../src/guestfs-actions.pod:7106
19908 #, no-wrap
19909 msgid ""
19910 " char **\n"
19911 " guestfs_vgs (guestfs_h *g);\n"
19912 "\n"
19913 msgstr ""
19914
19915 # type: textblock
19916 #. type: textblock
19917 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4778
19918 msgid ""
19919 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
19920 "> command."
19921 msgstr ""
19922
19923 # type: textblock
19924 #. type: textblock
19925 #: ../src/guestfs-actions.pod:7112 ../fish/guestfish-actions.pod:4781
19926 msgid ""
19927 "This returns a list of just the volume group names that were detected (eg. "
19928 "C<VolGroup00>)."
19929 msgstr ""
19930
19931 # type: textblock
19932 #. type: textblock
19933 #: ../src/guestfs-actions.pod:7115
19934 msgid "See also C<guestfs_vgs_full>."
19935 msgstr ""
19936
19937 # type: =head2
19938 #. type: =head2
19939 #: ../src/guestfs-actions.pod:7123
19940 msgid "guestfs_vgs_full"
19941 msgstr ""
19942
19943 # type: verbatim
19944 #. type: verbatim
19945 #: ../src/guestfs-actions.pod:7125
19946 #, no-wrap
19947 msgid ""
19948 " struct guestfs_lvm_vg_list *\n"
19949 " guestfs_vgs_full (guestfs_h *g);\n"
19950 "\n"
19951 msgstr ""
19952
19953 # type: textblock
19954 #. type: textblock
19955 #: ../src/guestfs-actions.pod:7128 ../fish/guestfish-actions.pod:4790
19956 msgid ""
19957 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
19958 "> command.  The \"full\" version includes all fields."
19959 msgstr ""
19960
19961 # type: textblock
19962 #. type: textblock
19963 #: ../src/guestfs-actions.pod:7131
19964 msgid ""
19965 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
19966 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
19967 msgstr ""
19968
19969 # type: =head2
19970 #. type: =head2
19971 #: ../src/guestfs-actions.pod:7137
19972 msgid "guestfs_vgscan"
19973 msgstr ""
19974
19975 # type: verbatim
19976 #. type: verbatim
19977 #: ../src/guestfs-actions.pod:7139
19978 #, no-wrap
19979 msgid ""
19980 " int\n"
19981 " guestfs_vgscan (guestfs_h *g);\n"
19982 "\n"
19983 msgstr ""
19984
19985 # type: textblock
19986 #. type: textblock
19987 #: ../src/guestfs-actions.pod:7142 ../fish/guestfish-actions.pod:4797
19988 msgid ""
19989 "This rescans all block devices and rebuilds the list of LVM physical "
19990 "volumes, volume groups and logical volumes."
19991 msgstr ""
19992
19993 # type: =head2
19994 #. type: =head2
19995 #: ../src/guestfs-actions.pod:7149
19996 msgid "guestfs_vguuid"
19997 msgstr ""
19998
19999 # type: verbatim
20000 #. type: verbatim
20001 #: ../src/guestfs-actions.pod:7151
20002 #, no-wrap
20003 msgid ""
20004 " char *\n"
20005 " guestfs_vguuid (guestfs_h *g,\n"
20006 "                 const char *vgname);\n"
20007 "\n"
20008 msgstr ""
20009
20010 # type: textblock
20011 #. type: textblock
20012 #: ../src/guestfs-actions.pod:7155 ../fish/guestfish-actions.pod:4804
20013 msgid "This command returns the UUID of the LVM VG named C<vgname>."
20014 msgstr ""
20015
20016 # type: =head2
20017 #. type: =head2
20018 #: ../src/guestfs-actions.pod:7162
20019 msgid "guestfs_wait_ready"
20020 msgstr ""
20021
20022 # type: verbatim
20023 #. type: verbatim
20024 #: ../src/guestfs-actions.pod:7164
20025 #, no-wrap
20026 msgid ""
20027 " int\n"
20028 " guestfs_wait_ready (guestfs_h *g);\n"
20029 "\n"
20030 msgstr ""
20031
20032 # type: textblock
20033 #. type: textblock
20034 #: ../src/guestfs-actions.pod:7167
20035 msgid "This function is a no op."
20036 msgstr ""
20037
20038 # type: textblock
20039 #. type: textblock
20040 #: ../src/guestfs-actions.pod:7169
20041 msgid ""
20042 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
20043 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
20044 "is no longer necessary because C<guestfs_launch> now does the waiting."
20045 msgstr ""
20046
20047 # type: textblock
20048 #. type: textblock
20049 #: ../src/guestfs-actions.pod:7174
20050 msgid ""
20051 "If you see any calls to this function in code then you can just remove them, "
20052 "unless you want to retain compatibility with older versions of the API."
20053 msgstr ""
20054
20055 # type: =head2
20056 #. type: =head2
20057 #: ../src/guestfs-actions.pod:7182
20058 msgid "guestfs_wc_c"
20059 msgstr ""
20060
20061 # type: verbatim
20062 #. type: verbatim
20063 #: ../src/guestfs-actions.pod:7184
20064 #, no-wrap
20065 msgid ""
20066 " int\n"
20067 " guestfs_wc_c (guestfs_h *g,\n"
20068 "               const char *path);\n"
20069 "\n"
20070 msgstr ""
20071
20072 # type: textblock
20073 #. type: textblock
20074 #: ../src/guestfs-actions.pod:7188 ../fish/guestfish-actions.pod:4810
20075 msgid ""
20076 "This command counts the characters in a file, using the C<wc -c> external "
20077 "command."
20078 msgstr ""
20079
20080 # type: =head2
20081 #. type: =head2
20082 #: ../src/guestfs-actions.pod:7195
20083 msgid "guestfs_wc_l"
20084 msgstr ""
20085
20086 # type: verbatim
20087 #. type: verbatim
20088 #: ../src/guestfs-actions.pod:7197
20089 #, no-wrap
20090 msgid ""
20091 " int\n"
20092 " guestfs_wc_l (guestfs_h *g,\n"
20093 "               const char *path);\n"
20094 "\n"
20095 msgstr ""
20096
20097 # type: textblock
20098 #. type: textblock
20099 #: ../src/guestfs-actions.pod:7201 ../fish/guestfish-actions.pod:4817
20100 msgid ""
20101 "This command counts the lines in a file, using the C<wc -l> external command."
20102 msgstr ""
20103
20104 # type: =head2
20105 #. type: =head2
20106 #: ../src/guestfs-actions.pod:7208
20107 msgid "guestfs_wc_w"
20108 msgstr ""
20109
20110 # type: verbatim
20111 #. type: verbatim
20112 #: ../src/guestfs-actions.pod:7210
20113 #, no-wrap
20114 msgid ""
20115 " int\n"
20116 " guestfs_wc_w (guestfs_h *g,\n"
20117 "               const char *path);\n"
20118 "\n"
20119 msgstr ""
20120
20121 # type: textblock
20122 #. type: textblock
20123 #: ../src/guestfs-actions.pod:7214 ../fish/guestfish-actions.pod:4824
20124 msgid ""
20125 "This command counts the words in a file, using the C<wc -w> external command."
20126 msgstr ""
20127
20128 # type: =head2
20129 #. type: =head2
20130 #: ../src/guestfs-actions.pod:7221
20131 msgid "guestfs_write"
20132 msgstr ""
20133
20134 # type: verbatim
20135 #. type: verbatim
20136 #: ../src/guestfs-actions.pod:7223
20137 #, no-wrap
20138 msgid ""
20139 " int\n"
20140 " guestfs_write (guestfs_h *g,\n"
20141 "                const char *path,\n"
20142 "                const char *content,\n"
20143 "                size_t content_size);\n"
20144 "\n"
20145 msgstr ""
20146
20147 # type: textblock
20148 #. type: textblock
20149 #: ../src/guestfs-actions.pod:7229 ../fish/guestfish-actions.pod:4831
20150 msgid ""
20151 "This call creates a file called C<path>.  The content of the file is the "
20152 "string C<content> (which can contain any 8 bit data)."
20153 msgstr ""
20154
20155 # type: =head2
20156 #. type: =head2
20157 #: ../src/guestfs-actions.pod:7239
20158 msgid "guestfs_write_file"
20159 msgstr ""
20160
20161 # type: verbatim
20162 #. type: verbatim
20163 #: ../src/guestfs-actions.pod:7241
20164 #, no-wrap
20165 msgid ""
20166 " int\n"
20167 " guestfs_write_file (guestfs_h *g,\n"
20168 "                     const char *path,\n"
20169 "                     const char *content,\n"
20170 "                     int size);\n"
20171 "\n"
20172 msgstr ""
20173
20174 # type: textblock
20175 #. type: textblock
20176 #: ../src/guestfs-actions.pod:7247 ../fish/guestfish-actions.pod:4841
20177 msgid ""
20178 "This call creates a file called C<path>.  The contents of the file is the "
20179 "string C<content> (which can contain any 8 bit data), with length C<size>."
20180 msgstr ""
20181
20182 # type: textblock
20183 #. type: textblock
20184 #: ../src/guestfs-actions.pod:7251 ../fish/guestfish-actions.pod:4845
20185 msgid ""
20186 "As a special case, if C<size> is C<0> then the length is calculated using "
20187 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
20188 msgstr ""
20189
20190 # type: textblock
20191 #. type: textblock
20192 #: ../src/guestfs-actions.pod:7255 ../fish/guestfish-actions.pod:4849
20193 msgid ""
20194 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
20195 "I<not> work, even if the length is specified."
20196 msgstr ""
20197
20198 # type: textblock
20199 #. type: textblock
20200 #: ../src/guestfs-actions.pod:7263 ../fish/guestfish-actions.pod:4855
20201 msgid ""
20202 "This function is deprecated.  In new code, use the C<write> call instead."
20203 msgstr ""
20204
20205 # type: =head2
20206 #. type: =head2
20207 #: ../src/guestfs-actions.pod:7272
20208 msgid "guestfs_zegrep"
20209 msgstr ""
20210
20211 # type: verbatim
20212 #. type: verbatim
20213 #: ../src/guestfs-actions.pod:7274
20214 #, no-wrap
20215 msgid ""
20216 " char **\n"
20217 " guestfs_zegrep (guestfs_h *g,\n"
20218 "                 const char *regex,\n"
20219 "                 const char *path);\n"
20220 "\n"
20221 msgstr ""
20222
20223 # type: textblock
20224 #. type: textblock
20225 #: ../src/guestfs-actions.pod:7279 ../fish/guestfish-actions.pod:4866
20226 msgid ""
20227 "This calls the external C<zegrep> program and returns the matching lines."
20228 msgstr ""
20229
20230 # type: =head2
20231 #. type: =head2
20232 #: ../src/guestfs-actions.pod:7291
20233 msgid "guestfs_zegrepi"
20234 msgstr ""
20235
20236 # type: verbatim
20237 #. type: verbatim
20238 #: ../src/guestfs-actions.pod:7293
20239 #, no-wrap
20240 msgid ""
20241 " char **\n"
20242 " guestfs_zegrepi (guestfs_h *g,\n"
20243 "                  const char *regex,\n"
20244 "                  const char *path);\n"
20245 "\n"
20246 msgstr ""
20247
20248 # type: textblock
20249 #. type: textblock
20250 #: ../src/guestfs-actions.pod:7298 ../fish/guestfish-actions.pod:4876
20251 msgid ""
20252 "This calls the external C<zegrep -i> program and returns the matching lines."
20253 msgstr ""
20254
20255 # type: =head2
20256 #. type: =head2
20257 #: ../src/guestfs-actions.pod:7310
20258 msgid "guestfs_zero"
20259 msgstr ""
20260
20261 # type: verbatim
20262 #. type: verbatim
20263 #: ../src/guestfs-actions.pod:7312
20264 #, no-wrap
20265 msgid ""
20266 " int\n"
20267 " guestfs_zero (guestfs_h *g,\n"
20268 "               const char *device);\n"
20269 "\n"
20270 msgstr ""
20271
20272 # type: textblock
20273 #. type: textblock
20274 #: ../src/guestfs-actions.pod:7316 ../fish/guestfish-actions.pod:4886
20275 msgid "This command writes zeroes over the first few blocks of C<device>."
20276 msgstr ""
20277
20278 # type: textblock
20279 #. type: textblock
20280 #: ../src/guestfs-actions.pod:7318 ../fish/guestfish-actions.pod:4888
20281 msgid ""
20282 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
20283 "securely wipe the device).  It should be sufficient to remove any partition "
20284 "tables, filesystem superblocks and so on."
20285 msgstr ""
20286
20287 # type: textblock
20288 #. type: textblock
20289 #: ../src/guestfs-actions.pod:7322
20290 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
20291 msgstr ""
20292
20293 # type: =head2
20294 #. type: =head2
20295 #: ../src/guestfs-actions.pod:7333
20296 msgid "guestfs_zero_device"
20297 msgstr ""
20298
20299 # type: verbatim
20300 #. type: verbatim
20301 #: ../src/guestfs-actions.pod:7335
20302 #, no-wrap
20303 msgid ""
20304 " int\n"
20305 " guestfs_zero_device (guestfs_h *g,\n"
20306 "                      const char *device);\n"
20307 "\n"
20308 msgstr ""
20309
20310 # type: textblock
20311 #. type: textblock
20312 #: ../src/guestfs-actions.pod:7339
20313 msgid ""
20314 "This command writes zeroes over the entire C<device>.  Compare with "
20315 "C<guestfs_zero> which just zeroes the first few blocks of a device."
20316 msgstr ""
20317
20318 # type: textblock
20319 #. type: textblock
20320 #: ../src/guestfs-actions.pod:7353
20321 msgid "(Added in 1.3.1)"
20322 msgstr ""
20323
20324 # type: =head2
20325 #. type: =head2
20326 #: ../src/guestfs-actions.pod:7355
20327 msgid "guestfs_zerofree"
20328 msgstr ""
20329
20330 # type: verbatim
20331 #. type: verbatim
20332 #: ../src/guestfs-actions.pod:7357
20333 #, no-wrap
20334 msgid ""
20335 " int\n"
20336 " guestfs_zerofree (guestfs_h *g,\n"
20337 "                   const char *device);\n"
20338 "\n"
20339 msgstr ""
20340
20341 # type: textblock
20342 #. type: textblock
20343 #: ../src/guestfs-actions.pod:7361 ../fish/guestfish-actions.pod:4909
20344 msgid ""
20345 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
20346 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
20347 "possible to compress the filesystem more effectively."
20348 msgstr ""
20349
20350 # type: textblock
20351 #. type: textblock
20352 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4914
20353 msgid "You should B<not> run this program if the filesystem is mounted."
20354 msgstr ""
20355
20356 # type: textblock
20357 #. type: textblock
20358 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4917
20359 msgid ""
20360 "It is possible that using this program can damage the filesystem or data on "
20361 "the filesystem."
20362 msgstr ""
20363
20364 # type: =head2
20365 #. type: =head2
20366 #: ../src/guestfs-actions.pod:7376
20367 msgid "guestfs_zfgrep"
20368 msgstr ""
20369
20370 # type: verbatim
20371 #. type: verbatim
20372 #: ../src/guestfs-actions.pod:7378
20373 #, no-wrap
20374 msgid ""
20375 " char **\n"
20376 " guestfs_zfgrep (guestfs_h *g,\n"
20377 "                 const char *pattern,\n"
20378 "                 const char *path);\n"
20379 "\n"
20380 msgstr ""
20381
20382 # type: textblock
20383 #. type: textblock
20384 #: ../src/guestfs-actions.pod:7383 ../fish/guestfish-actions.pod:4924
20385 msgid ""
20386 "This calls the external C<zfgrep> program and returns the matching lines."
20387 msgstr ""
20388
20389 # type: =head2
20390 #. type: =head2
20391 #: ../src/guestfs-actions.pod:7395
20392 msgid "guestfs_zfgrepi"
20393 msgstr ""
20394
20395 # type: verbatim
20396 #. type: verbatim
20397 #: ../src/guestfs-actions.pod:7397
20398 #, no-wrap
20399 msgid ""
20400 " char **\n"
20401 " guestfs_zfgrepi (guestfs_h *g,\n"
20402 "                  const char *pattern,\n"
20403 "                  const char *path);\n"
20404 "\n"
20405 msgstr ""
20406
20407 # type: textblock
20408 #. type: textblock
20409 #: ../src/guestfs-actions.pod:7402 ../fish/guestfish-actions.pod:4934
20410 msgid ""
20411 "This calls the external C<zfgrep -i> program and returns the matching lines."
20412 msgstr ""
20413
20414 # type: =head2
20415 #. type: =head2
20416 #: ../src/guestfs-actions.pod:7414
20417 msgid "guestfs_zfile"
20418 msgstr ""
20419
20420 # type: verbatim
20421 #. type: verbatim
20422 #: ../src/guestfs-actions.pod:7416
20423 #, no-wrap
20424 msgid ""
20425 " char *\n"
20426 " guestfs_zfile (guestfs_h *g,\n"
20427 "                const char *meth,\n"
20428 "                const char *path);\n"
20429 "\n"
20430 msgstr ""
20431
20432 # type: textblock
20433 #. type: textblock
20434 #: ../src/guestfs-actions.pod:7421 ../fish/guestfish-actions.pod:4944
20435 msgid ""
20436 "This command runs C<file> after first decompressing C<path> using C<method>."
20437 msgstr ""
20438
20439 # type: textblock
20440 #. type: textblock
20441 #: ../src/guestfs-actions.pod:7424 ../fish/guestfish-actions.pod:4947
20442 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
20443 msgstr ""
20444
20445 # type: textblock
20446 #. type: textblock
20447 #: ../src/guestfs-actions.pod:7426
20448 msgid ""
20449 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
20450 "files."
20451 msgstr ""
20452
20453 # type: textblock
20454 #. type: textblock
20455 #: ../src/guestfs-actions.pod:7432 ../fish/guestfish-actions.pod:4952
20456 msgid ""
20457 "This function is deprecated.  In new code, use the C<file> call instead."
20458 msgstr ""
20459
20460 # type: =head2
20461 #. type: =head2
20462 #: ../src/guestfs-actions.pod:7441
20463 msgid "guestfs_zgrep"
20464 msgstr ""
20465
20466 # type: verbatim
20467 #. type: verbatim
20468 #: ../src/guestfs-actions.pod:7443
20469 #, no-wrap
20470 msgid ""
20471 " char **\n"
20472 " guestfs_zgrep (guestfs_h *g,\n"
20473 "                const char *regex,\n"
20474 "                const char *path);\n"
20475 "\n"
20476 msgstr ""
20477
20478 # type: textblock
20479 #. type: textblock
20480 #: ../src/guestfs-actions.pod:7448 ../fish/guestfish-actions.pod:4963
20481 msgid ""
20482 "This calls the external C<zgrep> program and returns the matching lines."
20483 msgstr ""
20484
20485 # type: =head2
20486 #. type: =head2
20487 #: ../src/guestfs-actions.pod:7460
20488 msgid "guestfs_zgrepi"
20489 msgstr ""
20490
20491 # type: verbatim
20492 #. type: verbatim
20493 #: ../src/guestfs-actions.pod:7462
20494 #, no-wrap
20495 msgid ""
20496 " char **\n"
20497 " guestfs_zgrepi (guestfs_h *g,\n"
20498 "                 const char *regex,\n"
20499 "                 const char *path);\n"
20500 "\n"
20501 msgstr ""
20502
20503 # type: textblock
20504 #. type: textblock
20505 #: ../src/guestfs-actions.pod:7467 ../fish/guestfish-actions.pod:4973
20506 msgid ""
20507 "This calls the external C<zgrep -i> program and returns the matching lines."
20508 msgstr ""
20509
20510 # type: =item
20511 #. type: =item
20512 #: ../src/guestfs-availability.pod:3
20513 msgid "B<augeas>"
20514 msgstr ""
20515
20516 # type: textblock
20517 #. type: textblock
20518 #: ../src/guestfs-availability.pod:5
20519 msgid ""
20520 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
20521 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
20522 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
20523 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
20524 "L</guestfs_aug_save> L</guestfs_aug_set>"
20525 msgstr ""
20526
20527 # type: =item
20528 #. type: =item
20529 #: ../src/guestfs-availability.pod:21
20530 msgid "B<inotify>"
20531 msgstr ""
20532
20533 # type: textblock
20534 #. type: textblock
20535 #: ../src/guestfs-availability.pod:23
20536 msgid ""
20537 "The following functions: L</guestfs_inotify_add_watch> L</"
20538 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
20539 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
20540 msgstr ""
20541
20542 # type: =item
20543 #. type: =item
20544 #: ../src/guestfs-availability.pod:31
20545 msgid "B<linuxfsuuid>"
20546 msgstr ""
20547
20548 # type: textblock
20549 #. type: textblock
20550 #: ../src/guestfs-availability.pod:33
20551 msgid ""
20552 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
20553 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
20554 msgstr ""
20555
20556 # type: =item
20557 #. type: =item
20558 #: ../src/guestfs-availability.pod:40
20559 msgid "B<linuxmodules>"
20560 msgstr ""
20561
20562 # type: textblock
20563 #. type: textblock
20564 #: ../src/guestfs-availability.pod:42
20565 msgid "The following functions: L</guestfs_modprobe>"
20566 msgstr ""
20567
20568 # type: =item
20569 #. type: =item
20570 #: ../src/guestfs-availability.pod:45
20571 msgid "B<linuxxattrs>"
20572 msgstr ""
20573
20574 # type: textblock
20575 #. type: textblock
20576 #: ../src/guestfs-availability.pod:47
20577 msgid ""
20578 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
20579 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
20580 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
20581 "guestfs_setxattr>"
20582 msgstr ""
20583
20584 # type: =item
20585 #. type: =item
20586 #: ../src/guestfs-availability.pod:58
20587 msgid "B<luks>"
20588 msgstr ""
20589
20590 # type: textblock
20591 #. type: textblock
20592 #: ../src/guestfs-availability.pod:60
20593 msgid ""
20594 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
20595 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
20596 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
20597 msgstr ""
20598
20599 # type: =item
20600 #. type: =item
20601 #: ../src/guestfs-availability.pod:69
20602 msgid "B<lvm2>"
20603 msgstr ""
20604
20605 # type: textblock
20606 #. type: textblock
20607 #: ../src/guestfs-availability.pod:71
20608 msgid ""
20609 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
20610 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
20611 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
20612 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
20613 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
20614 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
20615 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
20616 msgstr ""
20617
20618 # type: =item
20619 #. type: =item
20620 #: ../src/guestfs-availability.pod:94
20621 msgid "B<mknod>"
20622 msgstr ""
20623
20624 # type: textblock
20625 #. type: textblock
20626 #: ../src/guestfs-availability.pod:96
20627 msgid ""
20628 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
20629 "guestfs_mknod_b> L</guestfs_mknod_c>"
20630 msgstr ""
20631
20632 # type: =item
20633 #. type: =item
20634 #: ../src/guestfs-availability.pod:102
20635 msgid "B<ntfs3g>"
20636 msgstr ""
20637
20638 # type: textblock
20639 #. type: textblock
20640 #: ../src/guestfs-availability.pod:104
20641 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
20642 msgstr ""
20643
20644 # type: =item
20645 #. type: =item
20646 #: ../src/guestfs-availability.pod:107
20647 msgid "B<ntfsprogs>"
20648 msgstr ""
20649
20650 # type: textblock
20651 #. type: textblock
20652 #: ../src/guestfs-availability.pod:109
20653 msgid ""
20654 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
20655 msgstr ""
20656
20657 # type: =item
20658 #. type: =item
20659 #: ../src/guestfs-availability.pod:113
20660 msgid "B<realpath>"
20661 msgstr ""
20662
20663 # type: textblock
20664 #. type: textblock
20665 #: ../src/guestfs-availability.pod:115
20666 msgid "The following functions: L</guestfs_realpath>"
20667 msgstr ""
20668
20669 # type: =item
20670 #. type: =item
20671 #: ../src/guestfs-availability.pod:118
20672 msgid "B<scrub>"
20673 msgstr ""
20674
20675 # type: textblock
20676 #. type: textblock
20677 #: ../src/guestfs-availability.pod:120
20678 msgid ""
20679 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
20680 "guestfs_scrub_freespace>"
20681 msgstr ""
20682
20683 # type: =item
20684 #. type: =item
20685 #: ../src/guestfs-availability.pod:125
20686 msgid "B<selinux>"
20687 msgstr ""
20688
20689 # type: textblock
20690 #. type: textblock
20691 #: ../src/guestfs-availability.pod:127
20692 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
20693 msgstr ""
20694
20695 # type: =item
20696 #. type: =item
20697 #: ../src/guestfs-availability.pod:131
20698 msgid "B<xz>"
20699 msgstr ""
20700
20701 # type: textblock
20702 #. type: textblock
20703 #: ../src/guestfs-availability.pod:133
20704 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
20705 msgstr ""
20706
20707 # type: =item
20708 #. type: =item
20709 #: ../src/guestfs-availability.pod:137
20710 msgid "B<zerofree>"
20711 msgstr ""
20712
20713 # type: textblock
20714 #. type: textblock
20715 #: ../src/guestfs-availability.pod:139
20716 msgid "The following functions: L</guestfs_zerofree>"
20717 msgstr ""
20718
20719 # type: =head2
20720 #. type: =head2
20721 #: ../src/guestfs-structs.pod:1
20722 msgid "guestfs_int_bool"
20723 msgstr ""
20724
20725 # type: verbatim
20726 #. type: verbatim
20727 #: ../src/guestfs-structs.pod:3
20728 #, no-wrap
20729 msgid ""
20730 " struct guestfs_int_bool {\n"
20731 "   int32_t i;\n"
20732 "   int32_t b;\n"
20733 " };\n"
20734 " \n"
20735 msgstr ""
20736
20737 # type: verbatim
20738 #. type: verbatim
20739 #: ../src/guestfs-structs.pod:8
20740 #, no-wrap
20741 msgid ""
20742 " struct guestfs_int_bool_list {\n"
20743 "   uint32_t len; /* Number of elements in list. */\n"
20744 "   struct guestfs_int_bool *val; /* Elements. */\n"
20745 " };\n"
20746 " \n"
20747 msgstr ""
20748
20749 # type: verbatim
20750 #. type: verbatim
20751 #: ../src/guestfs-structs.pod:13
20752 #, no-wrap
20753 msgid ""
20754 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
20755 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
20756 "\n"
20757 msgstr ""
20758
20759 # type: =head2
20760 #. type: =head2
20761 #: ../src/guestfs-structs.pod:16
20762 msgid "guestfs_lvm_pv"
20763 msgstr ""
20764
20765 # type: verbatim
20766 #. type: verbatim
20767 #: ../src/guestfs-structs.pod:18
20768 #, no-wrap
20769 msgid ""
20770 " struct guestfs_lvm_pv {\n"
20771 "   char *pv_name;\n"
20772 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20773 "   char pv_uuid[32];\n"
20774 "   char *pv_fmt;\n"
20775 "   uint64_t pv_size;\n"
20776 "   uint64_t dev_size;\n"
20777 "   uint64_t pv_free;\n"
20778 "   uint64_t pv_used;\n"
20779 "   char *pv_attr;\n"
20780 "   int64_t pv_pe_count;\n"
20781 "   int64_t pv_pe_alloc_count;\n"
20782 "   char *pv_tags;\n"
20783 "   uint64_t pe_start;\n"
20784 "   int64_t pv_mda_count;\n"
20785 "   uint64_t pv_mda_free;\n"
20786 " };\n"
20787 " \n"
20788 msgstr ""
20789
20790 # type: verbatim
20791 #. type: verbatim
20792 #: ../src/guestfs-structs.pod:36
20793 #, no-wrap
20794 msgid ""
20795 " struct guestfs_lvm_pv_list {\n"
20796 "   uint32_t len; /* Number of elements in list. */\n"
20797 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
20798 " };\n"
20799 " \n"
20800 msgstr ""
20801
20802 # type: verbatim
20803 #. type: verbatim
20804 #: ../src/guestfs-structs.pod:41
20805 #, no-wrap
20806 msgid ""
20807 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
20808 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
20809 "\n"
20810 msgstr ""
20811
20812 # type: =head2
20813 #. type: =head2
20814 #: ../src/guestfs-structs.pod:44
20815 msgid "guestfs_lvm_vg"
20816 msgstr ""
20817
20818 # type: verbatim
20819 #. type: verbatim
20820 #: ../src/guestfs-structs.pod:46
20821 #, no-wrap
20822 msgid ""
20823 " struct guestfs_lvm_vg {\n"
20824 "   char *vg_name;\n"
20825 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20826 "   char vg_uuid[32];\n"
20827 "   char *vg_fmt;\n"
20828 "   char *vg_attr;\n"
20829 "   uint64_t vg_size;\n"
20830 "   uint64_t vg_free;\n"
20831 "   char *vg_sysid;\n"
20832 "   uint64_t vg_extent_size;\n"
20833 "   int64_t vg_extent_count;\n"
20834 "   int64_t vg_free_count;\n"
20835 "   int64_t max_lv;\n"
20836 "   int64_t max_pv;\n"
20837 "   int64_t pv_count;\n"
20838 "   int64_t lv_count;\n"
20839 "   int64_t snap_count;\n"
20840 "   int64_t vg_seqno;\n"
20841 "   char *vg_tags;\n"
20842 "   int64_t vg_mda_count;\n"
20843 "   uint64_t vg_mda_free;\n"
20844 " };\n"
20845 " \n"
20846 msgstr ""
20847
20848 # type: verbatim
20849 #. type: verbatim
20850 #: ../src/guestfs-structs.pod:69
20851 #, no-wrap
20852 msgid ""
20853 " struct guestfs_lvm_vg_list {\n"
20854 "   uint32_t len; /* Number of elements in list. */\n"
20855 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
20856 " };\n"
20857 " \n"
20858 msgstr ""
20859
20860 # type: verbatim
20861 #. type: verbatim
20862 #: ../src/guestfs-structs.pod:74
20863 #, no-wrap
20864 msgid ""
20865 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
20866 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
20867 "\n"
20868 msgstr ""
20869
20870 # type: =head2
20871 #. type: =head2
20872 #: ../src/guestfs-structs.pod:77
20873 msgid "guestfs_lvm_lv"
20874 msgstr ""
20875
20876 # type: verbatim
20877 #. type: verbatim
20878 #: ../src/guestfs-structs.pod:79
20879 #, no-wrap
20880 msgid ""
20881 " struct guestfs_lvm_lv {\n"
20882 "   char *lv_name;\n"
20883 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
20884 "   char lv_uuid[32];\n"
20885 "   char *lv_attr;\n"
20886 "   int64_t lv_major;\n"
20887 "   int64_t lv_minor;\n"
20888 "   int64_t lv_kernel_major;\n"
20889 "   int64_t lv_kernel_minor;\n"
20890 "   uint64_t lv_size;\n"
20891 "   int64_t seg_count;\n"
20892 "   char *origin;\n"
20893 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
20894 "   float snap_percent;\n"
20895 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
20896 "   float copy_percent;\n"
20897 "   char *move_pv;\n"
20898 "   char *lv_tags;\n"
20899 "   char *mirror_log;\n"
20900 "   char *modules;\n"
20901 " };\n"
20902 " \n"
20903 msgstr ""
20904
20905 # type: verbatim
20906 #. type: verbatim
20907 #: ../src/guestfs-structs.pod:101
20908 #, no-wrap
20909 msgid ""
20910 " struct guestfs_lvm_lv_list {\n"
20911 "   uint32_t len; /* Number of elements in list. */\n"
20912 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
20913 " };\n"
20914 " \n"
20915 msgstr ""
20916
20917 # type: verbatim
20918 #. type: verbatim
20919 #: ../src/guestfs-structs.pod:106
20920 #, no-wrap
20921 msgid ""
20922 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
20923 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
20924 "\n"
20925 msgstr ""
20926
20927 # type: verbatim
20928 #. type: verbatim
20929 #: ../src/guestfs-structs.pod:111
20930 #, no-wrap
20931 msgid ""
20932 " struct guestfs_stat {\n"
20933 "   int64_t dev;\n"
20934 "   int64_t ino;\n"
20935 "   int64_t mode;\n"
20936 "   int64_t nlink;\n"
20937 "   int64_t uid;\n"
20938 "   int64_t gid;\n"
20939 "   int64_t rdev;\n"
20940 "   int64_t size;\n"
20941 "   int64_t blksize;\n"
20942 "   int64_t blocks;\n"
20943 "   int64_t atime;\n"
20944 "   int64_t mtime;\n"
20945 "   int64_t ctime;\n"
20946 " };\n"
20947 " \n"
20948 msgstr ""
20949
20950 # type: verbatim
20951 #. type: verbatim
20952 #: ../src/guestfs-structs.pod:127
20953 #, no-wrap
20954 msgid ""
20955 " struct guestfs_stat_list {\n"
20956 "   uint32_t len; /* Number of elements in list. */\n"
20957 "   struct guestfs_stat *val; /* Elements. */\n"
20958 " };\n"
20959 " \n"
20960 msgstr ""
20961
20962 # type: verbatim
20963 #. type: verbatim
20964 #: ../src/guestfs-structs.pod:132
20965 #, no-wrap
20966 msgid ""
20967 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
20968 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
20969 "\n"
20970 msgstr ""
20971
20972 # type: verbatim
20973 #. type: verbatim
20974 #: ../src/guestfs-structs.pod:137
20975 #, no-wrap
20976 msgid ""
20977 " struct guestfs_statvfs {\n"
20978 "   int64_t bsize;\n"
20979 "   int64_t frsize;\n"
20980 "   int64_t blocks;\n"
20981 "   int64_t bfree;\n"
20982 "   int64_t bavail;\n"
20983 "   int64_t files;\n"
20984 "   int64_t ffree;\n"
20985 "   int64_t favail;\n"
20986 "   int64_t fsid;\n"
20987 "   int64_t flag;\n"
20988 "   int64_t namemax;\n"
20989 " };\n"
20990 " \n"
20991 msgstr ""
20992
20993 # type: verbatim
20994 #. type: verbatim
20995 #: ../src/guestfs-structs.pod:151
20996 #, no-wrap
20997 msgid ""
20998 " struct guestfs_statvfs_list {\n"
20999 "   uint32_t len; /* Number of elements in list. */\n"
21000 "   struct guestfs_statvfs *val; /* Elements. */\n"
21001 " };\n"
21002 " \n"
21003 msgstr ""
21004
21005 # type: verbatim
21006 #. type: verbatim
21007 #: ../src/guestfs-structs.pod:156
21008 #, no-wrap
21009 msgid ""
21010 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
21011 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
21012 "\n"
21013 msgstr ""
21014
21015 # type: =head2
21016 #. type: =head2
21017 #: ../src/guestfs-structs.pod:159
21018 msgid "guestfs_dirent"
21019 msgstr ""
21020
21021 # type: verbatim
21022 #. type: verbatim
21023 #: ../src/guestfs-structs.pod:161
21024 #, no-wrap
21025 msgid ""
21026 " struct guestfs_dirent {\n"
21027 "   int64_t ino;\n"
21028 "   char ftyp;\n"
21029 "   char *name;\n"
21030 " };\n"
21031 " \n"
21032 msgstr ""
21033
21034 # type: verbatim
21035 #. type: verbatim
21036 #: ../src/guestfs-structs.pod:167
21037 #, no-wrap
21038 msgid ""
21039 " struct guestfs_dirent_list {\n"
21040 "   uint32_t len; /* Number of elements in list. */\n"
21041 "   struct guestfs_dirent *val; /* Elements. */\n"
21042 " };\n"
21043 " \n"
21044 msgstr ""
21045
21046 # type: verbatim
21047 #. type: verbatim
21048 #: ../src/guestfs-structs.pod:172
21049 #, no-wrap
21050 msgid ""
21051 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
21052 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
21053 "\n"
21054 msgstr ""
21055
21056 # type: verbatim
21057 #. type: verbatim
21058 #: ../src/guestfs-structs.pod:177
21059 #, no-wrap
21060 msgid ""
21061 " struct guestfs_version {\n"
21062 "   int64_t major;\n"
21063 "   int64_t minor;\n"
21064 "   int64_t release;\n"
21065 "   char *extra;\n"
21066 " };\n"
21067 " \n"
21068 msgstr ""
21069
21070 # type: verbatim
21071 #. type: verbatim
21072 #: ../src/guestfs-structs.pod:184
21073 #, no-wrap
21074 msgid ""
21075 " struct guestfs_version_list {\n"
21076 "   uint32_t len; /* Number of elements in list. */\n"
21077 "   struct guestfs_version *val; /* Elements. */\n"
21078 " };\n"
21079 " \n"
21080 msgstr ""
21081
21082 # type: verbatim
21083 #. type: verbatim
21084 #: ../src/guestfs-structs.pod:189
21085 #, no-wrap
21086 msgid ""
21087 " void guestfs_free_version (struct guestfs_free_version *);\n"
21088 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
21089 "\n"
21090 msgstr ""
21091
21092 # type: =head2
21093 #. type: =head2
21094 #: ../src/guestfs-structs.pod:192
21095 msgid "guestfs_xattr"
21096 msgstr ""
21097
21098 # type: verbatim
21099 #. type: verbatim
21100 #: ../src/guestfs-structs.pod:194
21101 #, no-wrap
21102 msgid ""
21103 " struct guestfs_xattr {\n"
21104 "   char *attrname;\n"
21105 "   /* The next two fields describe a byte array. */\n"
21106 "   uint32_t attrval_len;\n"
21107 "   char *attrval;\n"
21108 " };\n"
21109 " \n"
21110 msgstr ""
21111
21112 # type: verbatim
21113 #. type: verbatim
21114 #: ../src/guestfs-structs.pod:201
21115 #, no-wrap
21116 msgid ""
21117 " struct guestfs_xattr_list {\n"
21118 "   uint32_t len; /* Number of elements in list. */\n"
21119 "   struct guestfs_xattr *val; /* Elements. */\n"
21120 " };\n"
21121 " \n"
21122 msgstr ""
21123
21124 # type: verbatim
21125 #. type: verbatim
21126 #: ../src/guestfs-structs.pod:206
21127 #, no-wrap
21128 msgid ""
21129 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
21130 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
21131 "\n"
21132 msgstr ""
21133
21134 # type: =head2
21135 #. type: =head2
21136 #: ../src/guestfs-structs.pod:209
21137 msgid "guestfs_inotify_event"
21138 msgstr ""
21139
21140 # type: verbatim
21141 #. type: verbatim
21142 #: ../src/guestfs-structs.pod:211
21143 #, no-wrap
21144 msgid ""
21145 " struct guestfs_inotify_event {\n"
21146 "   int64_t in_wd;\n"
21147 "   uint32_t in_mask;\n"
21148 "   uint32_t in_cookie;\n"
21149 "   char *in_name;\n"
21150 " };\n"
21151 " \n"
21152 msgstr ""
21153
21154 # type: verbatim
21155 #. type: verbatim
21156 #: ../src/guestfs-structs.pod:218
21157 #, no-wrap
21158 msgid ""
21159 " struct guestfs_inotify_event_list {\n"
21160 "   uint32_t len; /* Number of elements in list. */\n"
21161 "   struct guestfs_inotify_event *val; /* Elements. */\n"
21162 " };\n"
21163 " \n"
21164 msgstr ""
21165
21166 # type: verbatim
21167 #. type: verbatim
21168 #: ../src/guestfs-structs.pod:223
21169 #, no-wrap
21170 msgid ""
21171 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
21172 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
21173 "\n"
21174 msgstr ""
21175
21176 # type: =head2
21177 #. type: =head2
21178 #: ../src/guestfs-structs.pod:226
21179 msgid "guestfs_partition"
21180 msgstr ""
21181
21182 # type: verbatim
21183 #. type: verbatim
21184 #: ../src/guestfs-structs.pod:228
21185 #, no-wrap
21186 msgid ""
21187 " struct guestfs_partition {\n"
21188 "   int32_t part_num;\n"
21189 "   uint64_t part_start;\n"
21190 "   uint64_t part_end;\n"
21191 "   uint64_t part_size;\n"
21192 " };\n"
21193 " \n"
21194 msgstr ""
21195
21196 # type: verbatim
21197 #. type: verbatim
21198 #: ../src/guestfs-structs.pod:235
21199 #, no-wrap
21200 msgid ""
21201 " struct guestfs_partition_list {\n"
21202 "   uint32_t len; /* Number of elements in list. */\n"
21203 "   struct guestfs_partition *val; /* Elements. */\n"
21204 " };\n"
21205 " \n"
21206 msgstr ""
21207
21208 # type: verbatim
21209 #. type: verbatim
21210 #: ../src/guestfs-structs.pod:240
21211 #, no-wrap
21212 msgid ""
21213 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
21214 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
21215 "\n"
21216 msgstr ""
21217
21218 # type: =head2
21219 #. type: =head2
21220 #: ../src/guestfs-structs.pod:243
21221 msgid "guestfs_application"
21222 msgstr ""
21223
21224 # type: verbatim
21225 #. type: verbatim
21226 #: ../src/guestfs-structs.pod:245
21227 #, no-wrap
21228 msgid ""
21229 " struct guestfs_application {\n"
21230 "   char *app_name;\n"
21231 "   char *app_display_name;\n"
21232 "   int32_t app_epoch;\n"
21233 "   char *app_version;\n"
21234 "   char *app_release;\n"
21235 "   char *app_install_path;\n"
21236 "   char *app_trans_path;\n"
21237 "   char *app_publisher;\n"
21238 "   char *app_url;\n"
21239 "   char *app_source_package;\n"
21240 "   char *app_summary;\n"
21241 "   char *app_description;\n"
21242 " };\n"
21243 " \n"
21244 msgstr ""
21245
21246 # type: verbatim
21247 #. type: verbatim
21248 #: ../src/guestfs-structs.pod:260
21249 #, no-wrap
21250 msgid ""
21251 " struct guestfs_application_list {\n"
21252 "   uint32_t len; /* Number of elements in list. */\n"
21253 "   struct guestfs_application *val; /* Elements. */\n"
21254 " };\n"
21255 " \n"
21256 msgstr ""
21257
21258 # type: verbatim
21259 #. type: verbatim
21260 #: ../src/guestfs-structs.pod:265
21261 #, no-wrap
21262 msgid ""
21263 " void guestfs_free_application (struct guestfs_free_application *);\n"
21264 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
21265 "\n"
21266 msgstr ""
21267
21268 # type: textblock
21269 #. type: textblock
21270 #: ../fish/guestfish.pod:5
21271 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
21272 msgstr ""
21273
21274 # type: verbatim
21275 #. type: verbatim
21276 #: ../fish/guestfish.pod:9
21277 #, no-wrap
21278 msgid ""
21279 " guestfish [--options] [commands]\n"
21280 "\n"
21281 msgstr ""
21282
21283 # type: verbatim
21284 #. type: verbatim
21285 #: ../fish/guestfish.pod:11
21286 #, no-wrap
21287 msgid ""
21288 " guestfish\n"
21289 "\n"
21290 msgstr ""
21291
21292 # type: verbatim
21293 #. type: verbatim
21294 #: ../fish/guestfish.pod:13
21295 #, no-wrap
21296 msgid ""
21297 " guestfish [--ro|--rw] -a disk.img\n"
21298 "\n"
21299 msgstr ""
21300
21301 # type: verbatim
21302 #. type: verbatim
21303 #: ../fish/guestfish.pod:15
21304 #, no-wrap
21305 msgid ""
21306 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
21307 "\n"
21308 msgstr ""
21309
21310 # type: verbatim
21311 #. type: verbatim
21312 #: ../fish/guestfish.pod:17
21313 #, no-wrap
21314 msgid ""
21315 " guestfish -d libvirt-domain\n"
21316 "\n"
21317 msgstr ""
21318
21319 # type: verbatim
21320 #. type: verbatim
21321 #: ../fish/guestfish.pod:19
21322 #, no-wrap
21323 msgid ""
21324 " guestfish [--ro|--rw] -a disk.img -i\n"
21325 "\n"
21326 msgstr ""
21327
21328 # type: verbatim
21329 #. type: verbatim
21330 #: ../fish/guestfish.pod:21
21331 #, no-wrap
21332 msgid ""
21333 " guestfish -d libvirt-domain -i\n"
21334 "\n"
21335 msgstr ""
21336
21337 # type: =head1
21338 #. type: =head1
21339 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
21340 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
21341 msgid "WARNING"
21342 msgstr ""
21343
21344 # type: textblock
21345 #. type: textblock
21346 #: ../fish/guestfish.pod:25
21347 msgid ""
21348 "Using guestfish in read/write mode on live virtual machines can be "
21349 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
21350 "option to use guestfish safely if the disk image or virtual machine might be "
21351 "live."
21352 msgstr ""
21353
21354 # type: textblock
21355 #. type: textblock
21356 #: ../fish/guestfish.pod:32
21357 msgid ""
21358 "Guestfish is a shell and command-line tool for examining and modifying "
21359 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
21360 "functionality of the guestfs API, see L<guestfs(3)>."
21361 msgstr ""
21362
21363 # type: textblock
21364 #. type: textblock
21365 #: ../fish/guestfish.pod:36
21366 msgid ""
21367 "Guestfish gives you structured access to the libguestfs API, from shell "
21368 "scripts or the command line or interactively.  If you want to rescue a "
21369 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
21370 "command."
21371 msgstr ""
21372
21373 # type: =head1
21374 #. type: =head1
21375 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:942
21376 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
21377 msgid "EXAMPLES"
21378 msgstr ""
21379
21380 # type: =head2
21381 #. type: =head2
21382 #: ../fish/guestfish.pod:43
21383 msgid "As an interactive shell"
21384 msgstr ""
21385
21386 # type: verbatim
21387 #. type: verbatim
21388 #: ../fish/guestfish.pod:45
21389 #, no-wrap
21390 msgid ""
21391 " $ guestfish\n"
21392 " \n"
21393 msgstr ""
21394
21395 # type: verbatim
21396 #. type: verbatim
21397 #: ../fish/guestfish.pod:47
21398 #, no-wrap
21399 msgid ""
21400 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
21401 " editing virtual machine filesystems.\n"
21402 " \n"
21403 msgstr ""
21404
21405 # type: verbatim
21406 #. type: verbatim
21407 #: ../fish/guestfish.pod:50
21408 #, no-wrap
21409 msgid ""
21410 " Type: 'help' for a list of commands\n"
21411 "       'man' to read the manual\n"
21412 "       'quit' to quit the shell\n"
21413 " \n"
21414 msgstr ""
21415
21416 # type: verbatim
21417 #. type: verbatim
21418 #: ../fish/guestfish.pod:54
21419 #, no-wrap
21420 msgid ""
21421 " ><fs> add-ro disk.img\n"
21422 " ><fs> run\n"
21423 " ><fs> list-filesystems\n"
21424 " /dev/sda1: ext4\n"
21425 " /dev/vg_guest/lv_root: ext4\n"
21426 " /dev/vg_guest/lv_swap: swap\n"
21427 " ><fs> mount /dev/vg_guest/lv_root /\n"
21428 " ><fs> cat /etc/fstab\n"
21429 " # /etc/fstab\n"
21430 " # Created by anaconda\n"
21431 " [...]\n"
21432 " ><fs> exit\n"
21433 "\n"
21434 msgstr ""
21435
21436 # type: =head2
21437 #. type: =head2
21438 #: ../fish/guestfish.pod:67
21439 msgid "From shell scripts"
21440 msgstr ""
21441
21442 # type: textblock
21443 #. type: textblock
21444 #: ../fish/guestfish.pod:69
21445 msgid "Create a new C</etc/motd> file in a guest or disk image:"
21446 msgstr ""
21447
21448 # type: verbatim
21449 #. type: verbatim
21450 #: ../fish/guestfish.pod:71
21451 #, no-wrap
21452 msgid ""
21453 " guestfish <<_EOF_\n"
21454 " add disk.img\n"
21455 " run\n"
21456 " mount /dev/vg_guest/lv_root /\n"
21457 " write /etc/motd \"Welcome, new users\"\n"
21458 " _EOF_\n"
21459 "\n"
21460 msgstr ""
21461
21462 # type: textblock
21463 #. type: textblock
21464 #: ../fish/guestfish.pod:78
21465 msgid "List the LVM logical volumes in a disk image:"
21466 msgstr ""
21467
21468 # type: verbatim
21469 #. type: verbatim
21470 #: ../fish/guestfish.pod:80
21471 #, no-wrap
21472 msgid ""
21473 " guestfish -a disk.img --ro <<_EOF_\n"
21474 " run\n"
21475 " lvs\n"
21476 " _EOF_\n"
21477 "\n"
21478 msgstr ""
21479
21480 # type: textblock
21481 #. type: textblock
21482 #: ../fish/guestfish.pod:85
21483 msgid "List all the filesystems in a disk image:"
21484 msgstr ""
21485
21486 # type: verbatim
21487 #. type: verbatim
21488 #: ../fish/guestfish.pod:87
21489 #, no-wrap
21490 msgid ""
21491 " guestfish -a disk.img --ro <<_EOF_\n"
21492 " run\n"
21493 " list-filesystems\n"
21494 " _EOF_\n"
21495 "\n"
21496 msgstr ""
21497
21498 # type: =head2
21499 #. type: =head2
21500 #: ../fish/guestfish.pod:92
21501 msgid "On one command line"
21502 msgstr ""
21503
21504 # type: textblock
21505 #. type: textblock
21506 #: ../fish/guestfish.pod:94
21507 msgid "Update C</etc/resolv.conf> in a guest:"
21508 msgstr ""
21509
21510 # type: verbatim
21511 #. type: verbatim
21512 #: ../fish/guestfish.pod:96
21513 #, no-wrap
21514 msgid ""
21515 " guestfish \\\n"
21516 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
21517 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
21518 "\n"
21519 msgstr ""
21520
21521 # type: textblock
21522 #. type: textblock
21523 #: ../fish/guestfish.pod:100
21524 msgid "Edit C</boot/grub/grub.conf> interactively:"
21525 msgstr ""
21526
21527 # type: verbatim
21528 #. type: verbatim
21529 #: ../fish/guestfish.pod:102
21530 #, no-wrap
21531 msgid ""
21532 " guestfish --rw --add disk.img \\\n"
21533 "   --mount /dev/vg_guest/lv_root \\\n"
21534 "   --mount /dev/sda1:/boot \\\n"
21535 "   edit /boot/grub/grub.conf\n"
21536 "\n"
21537 msgstr ""
21538
21539 # type: =head2
21540 #. type: =head2
21541 #: ../fish/guestfish.pod:107
21542 msgid "Mount disks automatically"
21543 msgstr ""
21544
21545 # type: textblock
21546 #. type: textblock
21547 #: ../fish/guestfish.pod:109
21548 msgid ""
21549 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
21550 msgstr ""
21551
21552 # type: verbatim
21553 #. type: verbatim
21554 #: ../fish/guestfish.pod:112
21555 #, no-wrap
21556 msgid ""
21557 " guestfish --ro -a disk.img -i cat /etc/group\n"
21558 "\n"
21559 msgstr ""
21560
21561 # type: verbatim
21562 #. type: verbatim
21563 #: ../fish/guestfish.pod:114
21564 #, no-wrap
21565 msgid ""
21566 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
21567 "\n"
21568 msgstr ""
21569
21570 # type: textblock
21571 #. type: textblock
21572 #: ../fish/guestfish.pod:116
21573 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
21574 msgstr ""
21575
21576 # type: verbatim
21577 #. type: verbatim
21578 #: ../fish/guestfish.pod:118
21579 #, no-wrap
21580 msgid ""
21581 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
21582 "\n"
21583 msgstr ""
21584
21585 # type: =head2
21586 #. type: =head2
21587 #: ../fish/guestfish.pod:120
21588 msgid "As a script interpreter"
21589 msgstr ""
21590
21591 # type: textblock
21592 #. type: textblock
21593 #: ../fish/guestfish.pod:122
21594 msgid "Create a 100MB disk containing an ext2-formatted partition:"
21595 msgstr ""
21596
21597 # type: verbatim
21598 #. type: verbatim
21599 #: ../fish/guestfish.pod:124
21600 #, no-wrap
21601 msgid ""
21602 " #!/usr/bin/guestfish -f\n"
21603 " sparse test1.img 100M\n"
21604 " run\n"
21605 " part-disk /dev/sda mbr\n"
21606 " mkfs ext2 /dev/sda1\n"
21607 "\n"
21608 msgstr ""
21609
21610 # type: =head2
21611 #. type: =head2
21612 #: ../fish/guestfish.pod:130
21613 msgid "Start with a prepared disk"
21614 msgstr ""
21615
21616 # type: textblock
21617 #. type: textblock
21618 #: ../fish/guestfish.pod:132
21619 msgid ""
21620 "An alternate way to create a 100MB disk called C<test1.img> containing a "
21621 "single ext2-formatted partition:"
21622 msgstr ""
21623
21624 # type: verbatim
21625 #. type: verbatim
21626 #: ../fish/guestfish.pod:135
21627 #, no-wrap
21628 msgid ""
21629 " guestfish -N fs\n"
21630 "\n"
21631 msgstr ""
21632
21633 # type: textblock
21634 #. type: textblock
21635 #: ../fish/guestfish.pod:137
21636 msgid "To list what is available do:"
21637 msgstr ""
21638
21639 # type: verbatim
21640 #. type: verbatim
21641 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:933
21642 #, no-wrap
21643 msgid ""
21644 " guestfish -N help | less\n"
21645 "\n"
21646 msgstr ""
21647
21648 # type: =head2
21649 #. type: =head2
21650 #: ../fish/guestfish.pod:141
21651 msgid "Remote control"
21652 msgstr ""
21653
21654 # type: verbatim
21655 #. type: verbatim
21656 #: ../fish/guestfish.pod:143
21657 #, no-wrap
21658 msgid ""
21659 " eval \"`guestfish --listen`\"\n"
21660 " guestfish --remote add-ro disk.img\n"
21661 " guestfish --remote run\n"
21662 " guestfish --remote lvs\n"
21663 "\n"
21664 msgstr ""
21665
21666 # type: =head1
21667 #. type: =head1
21668 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
21669 #: ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:81
21670 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
21671 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
21672 #: ../tools/virt-list-partitions.pl:54
21673 msgid "OPTIONS"
21674 msgstr ""
21675
21676 # type: =item
21677 #. type: =item
21678 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:131
21679 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
21680 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
21681 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
21682 msgid "B<--help>"
21683 msgstr ""
21684
21685 # type: textblock
21686 #. type: textblock
21687 #: ../fish/guestfish.pod:154
21688 msgid "Displays general help on options."
21689 msgstr ""
21690
21691 # type: =item
21692 #. type: =item
21693 #: ../fish/guestfish.pod:156
21694 msgid "B<-h>"
21695 msgstr ""
21696
21697 # type: =item
21698 #. type: =item
21699 #: ../fish/guestfish.pod:158
21700 msgid "B<--cmd-help>"
21701 msgstr ""
21702
21703 # type: textblock
21704 #. type: textblock
21705 #: ../fish/guestfish.pod:160
21706 msgid "Lists all available guestfish commands."
21707 msgstr ""
21708
21709 # type: =item
21710 #. type: =item
21711 #: ../fish/guestfish.pod:162
21712 msgid "B<-h cmd>"
21713 msgstr ""
21714
21715 # type: =item
21716 #. type: =item
21717 #: ../fish/guestfish.pod:164
21718 msgid "B<--cmd-help cmd>"
21719 msgstr ""
21720
21721 # type: textblock
21722 #. type: textblock
21723 #: ../fish/guestfish.pod:166
21724 msgid "Displays detailed help on a single command C<cmd>."
21725 msgstr ""
21726
21727 # type: =item
21728 #. type: =item
21729 #: ../fish/guestfish.pod:168
21730 msgid "B<-a image>"
21731 msgstr ""
21732
21733 # type: =item
21734 #. type: =item
21735 #: ../fish/guestfish.pod:170
21736 msgid "B<--add image>"
21737 msgstr ""
21738
21739 # type: textblock
21740 #. type: textblock
21741 #: ../fish/guestfish.pod:172
21742 msgid "Add a block device or virtual machine image to the shell."
21743 msgstr ""
21744
21745 # type: textblock
21746 #. type: textblock
21747 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
21748 msgid ""
21749 "The format of the disk image is auto-detected.  To override this and force a "
21750 "particular format use the I<--format=..> option."
21751 msgstr ""
21752
21753 # type: textblock
21754 #. type: textblock
21755 #: ../fish/guestfish.pod:177
21756 msgid ""
21757 "Using this flag is mostly equivalent to using the C<add> command, with "
21758 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
21759 "the I<--format:...> flag was given."
21760 msgstr ""
21761
21762 # type: =item
21763 #. type: =item
21764 #: ../fish/guestfish.pod:181
21765 msgid "B<-c URI>"
21766 msgstr ""
21767
21768 # type: =item
21769 #. type: =item
21770 #: ../fish/guestfish.pod:183
21771 msgid "B<--connect URI>"
21772 msgstr ""
21773
21774 # type: textblock
21775 #. type: textblock
21776 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
21777 msgid ""
21778 "When used in conjunction with the I<-d> option, this specifies the libvirt "
21779 "URI to use.  The default is to use the default libvirt connection."
21780 msgstr ""
21781
21782 # type: =item
21783 #. type: =item
21784 #: ../fish/guestfish.pod:189
21785 msgid "B<--csh>"
21786 msgstr ""
21787
21788 # type: textblock
21789 #. type: textblock
21790 #: ../fish/guestfish.pod:191
21791 msgid ""
21792 "If using the I<--listen> option and a csh-like shell, use this option.  See "
21793 "section L</REMOTE CONTROL AND CSH> below."
21794 msgstr ""
21795
21796 # type: =item
21797 #. type: =item
21798 #: ../fish/guestfish.pod:194
21799 msgid "B<-d libvirt-domain>"
21800 msgstr ""
21801
21802 # type: =item
21803 #. type: =item
21804 #: ../fish/guestfish.pod:196
21805 msgid "B<--domain libvirt-domain>"
21806 msgstr ""
21807
21808 # type: textblock
21809 #. type: textblock
21810 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
21811 msgid ""
21812 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
21813 "used, then any libvirt domain can be used.  However in write mode, only "
21814 "libvirt domains which are shut down can be named here."
21815 msgstr ""
21816
21817 # type: textblock
21818 #. type: textblock
21819 #: ../fish/guestfish.pod:202
21820 msgid ""
21821 "Using this flag is mostly equivalent to using the C<add-domain> command, "
21822 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
21823 "if the I<--format:...> flag was given."
21824 msgstr ""
21825
21826 # type: =item
21827 #. type: =item
21828 #: ../fish/guestfish.pod:206
21829 msgid "B<-D>"
21830 msgstr ""
21831
21832 # type: =item
21833 #. type: =item
21834 #: ../fish/guestfish.pod:208
21835 msgid "B<--no-dest-paths>"
21836 msgstr ""
21837
21838 # type: textblock
21839 #. type: textblock
21840 #: ../fish/guestfish.pod:210
21841 msgid ""
21842 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
21843 "to hit the tab key to complete paths on the guest filesystem, but this "
21844 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
21845 "allow this feature to be disabled."
21846 msgstr ""
21847
21848 # type: =item
21849 #. type: =item
21850 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
21851 msgid "B<--echo-keys>"
21852 msgstr ""
21853
21854 # type: textblock
21855 #. type: textblock
21856 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
21857 msgid ""
21858 "When prompting for keys and passphrases, guestfish normally turns echoing "
21859 "off so you cannot see what you are typing.  If you are not worried about "
21860 "Tempest attacks and there is no one else in the room you can specify this "
21861 "flag to see what you are typing."
21862 msgstr ""
21863
21864 # type: =item
21865 #. type: =item
21866 #: ../fish/guestfish.pod:222
21867 msgid "B<-f file>"
21868 msgstr ""
21869
21870 # type: =item
21871 #. type: =item
21872 #: ../fish/guestfish.pod:224
21873 msgid "B<--file file>"
21874 msgstr ""
21875
21876 # type: textblock
21877 #. type: textblock
21878 #: ../fish/guestfish.pod:226
21879 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
21880 msgstr ""
21881
21882 # type: verbatim
21883 #. type: verbatim
21884 #: ../fish/guestfish.pod:229
21885 #, no-wrap
21886 msgid ""
21887 " #!/usr/bin/guestfish -f\n"
21888 "\n"
21889 msgstr ""
21890
21891 # type: =item
21892 #. type: =item
21893 #: ../fish/guestfish.pod:231
21894 msgid "B<--format=raw|qcow2|..>"
21895 msgstr ""
21896
21897 # type: =item
21898 #. type: =item
21899 #: ../fish/guestfish.pod:233
21900 msgid "B<--format>"
21901 msgstr ""
21902
21903 # type: textblock
21904 #. type: textblock
21905 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
21906 msgid ""
21907 "The default for the I<-a> option is to auto-detect the format of the disk "
21908 "image.  Using this forces the disk format for I<-a> options which follow on "
21909 "the command line.  Using I<--format> with no argument switches back to auto-"
21910 "detection for subsequent I<-a> options."
21911 msgstr ""
21912
21913 # type: verbatim
21914 #. type: verbatim
21915 #: ../fish/guestfish.pod:242
21916 #, no-wrap
21917 msgid ""
21918 " guestfish --format=raw -a disk.img\n"
21919 "\n"
21920 msgstr ""
21921
21922 # type: textblock
21923 #. type: textblock
21924 #: ../fish/guestfish.pod:244
21925 msgid "forces raw format (no auto-detection) for C<disk.img>."
21926 msgstr ""
21927
21928 # type: verbatim
21929 #. type: verbatim
21930 #: ../fish/guestfish.pod:246
21931 #, no-wrap
21932 msgid ""
21933 " guestfish --format=raw -a disk.img --format -a another.img\n"
21934 "\n"
21935 msgstr ""
21936
21937 # type: textblock
21938 #. type: textblock
21939 #: ../fish/guestfish.pod:248
21940 msgid ""
21941 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
21942 "detection for C<another.img>."
21943 msgstr ""
21944
21945 # type: textblock
21946 #. type: textblock
21947 #: ../fish/guestfish.pod:251
21948 msgid ""
21949 "If you have untrusted raw-format guest disk images, you should use this "
21950 "option to specify the disk format.  This avoids a possible security problem "
21951 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
21952 msgstr ""
21953
21954 # type: =item
21955 #. type: =item
21956 #: ../fish/guestfish.pod:256
21957 msgid "B<-i>"
21958 msgstr ""
21959
21960 # type: =item
21961 #. type: =item
21962 #: ../fish/guestfish.pod:258
21963 msgid "B<--inspector>"
21964 msgstr ""
21965
21966 # type: textblock
21967 #. type: textblock
21968 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
21969 msgid ""
21970 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
21971 "system and mount filesystems as they would be mounted on the real virtual "
21972 "machine."
21973 msgstr ""
21974
21975 # type: textblock
21976 #. type: textblock
21977 #: ../fish/guestfish.pod:264
21978 msgid "Typical usage is either:"
21979 msgstr ""
21980
21981 # type: verbatim
21982 #. type: verbatim
21983 #: ../fish/guestfish.pod:266
21984 #, no-wrap
21985 msgid ""
21986 " guestfish -d myguest -i\n"
21987 "\n"
21988 msgstr ""
21989
21990 # type: textblock
21991 #. type: textblock
21992 #: ../fish/guestfish.pod:268
21993 msgid "(for an inactive libvirt domain called I<myguest>), or:"
21994 msgstr ""
21995
21996 # type: verbatim
21997 #. type: verbatim
21998 #: ../fish/guestfish.pod:270
21999 #, no-wrap
22000 msgid ""
22001 " guestfish --ro -d myguest -i\n"
22002 "\n"
22003 msgstr ""
22004
22005 # type: textblock
22006 #. type: textblock
22007 #: ../fish/guestfish.pod:272
22008 msgid "(for active domains, readonly), or specify the block device directly:"
22009 msgstr ""
22010
22011 # type: verbatim
22012 #. type: verbatim
22013 #: ../fish/guestfish.pod:274
22014 #, no-wrap
22015 msgid ""
22016 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
22017 "\n"
22018 msgstr ""
22019
22020 # type: textblock
22021 #. type: textblock
22022 #: ../fish/guestfish.pod:276
22023 msgid ""
22024 "Note that the command line syntax changed slightly over older versions of "
22025 "guestfish.  You can still use the old syntax:"
22026 msgstr ""
22027
22028 # type: verbatim
22029 #. type: verbatim
22030 #: ../fish/guestfish.pod:279
22031 #, no-wrap
22032 msgid ""
22033 " guestfish [--ro] -i disk.img\n"
22034 "\n"
22035 msgstr ""
22036
22037 # type: verbatim
22038 #. type: verbatim
22039 #: ../fish/guestfish.pod:281
22040 #, no-wrap
22041 msgid ""
22042 " guestfish [--ro] -i libvirt-domain\n"
22043 "\n"
22044 msgstr ""
22045
22046 # type: textblock
22047 #. type: textblock
22048 #: ../fish/guestfish.pod:283
22049 msgid ""
22050 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
22051 "then using other commands to mount the filesystems that were found."
22052 msgstr ""
22053
22054 # type: =item
22055 #. type: =item
22056 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
22057 msgid "B<--keys-from-stdin>"
22058 msgstr ""
22059
22060 # type: textblock
22061 #. type: textblock
22062 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
22063 msgid ""
22064 "Read key or passphrase parameters from stdin.  The default is to try to read "
22065 "passphrases from the user by opening C</dev/tty>."
22066 msgstr ""
22067
22068 # type: =item
22069 #. type: =item
22070 #: ../fish/guestfish.pod:292
22071 msgid "B<--listen>"
22072 msgstr ""
22073
22074 # type: textblock
22075 #. type: textblock
22076 #: ../fish/guestfish.pod:294
22077 msgid ""
22078 "Fork into the background and listen for remote commands.  See section L</"
22079 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
22080 msgstr ""
22081
22082 #. type: =item
22083 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:146
22084 msgid "B<--live>"
22085 msgstr ""
22086
22087 #. type: textblock
22088 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
22089 msgid ""
22090 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
22091 "ATTACHING TO RUNNING DAEMONS>)."
22092 msgstr ""
22093
22094 #. type: =item
22095 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:151
22096 msgid "B<-m dev[:mountpoint[:options]]>"
22097 msgstr ""
22098
22099 #. type: =item
22100 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
22101 msgid "B<--mount dev[:mountpoint[:options]]>"
22102 msgstr ""
22103
22104 # type: textblock
22105 #. type: textblock
22106 #: ../fish/guestfish.pod:306
22107 msgid "Mount the named partition or logical volume on the given mountpoint."
22108 msgstr ""
22109
22110 # type: textblock
22111 #. type: textblock
22112 #: ../fish/guestfish.pod:308
22113 msgid "If the mountpoint is omitted, it defaults to C</>."
22114 msgstr ""
22115
22116 # type: textblock
22117 #. type: textblock
22118 #: ../fish/guestfish.pod:310
22119 msgid "You have to mount something on C</> before most commands will work."
22120 msgstr ""
22121
22122 # type: textblock
22123 #. type: textblock
22124 #: ../fish/guestfish.pod:312
22125 msgid ""
22126 "If any I<-m> or I<--mount> options are given, the guest is automatically "
22127 "launched."
22128 msgstr ""
22129
22130 # type: textblock
22131 #. type: textblock
22132 #: ../fish/guestfish.pod:315
22133 msgid ""
22134 "If you don't know what filesystems a disk image contains, you can either run "
22135 "guestfish without this option, then list the partitions, filesystems and LVs "
22136 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
22137 "commands), or you can use the L<virt-filesystems(1)> program."
22138 msgstr ""
22139
22140 #. type: textblock
22141 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:161
22142 msgid ""
22143 "The third (and rarely used) part of the mount parameter is the list of mount "
22144 "options used to mount the underlying filesystem.  If this is not given, then "
22145 "the mount options are either the empty string or C<ro> (the latter if the "
22146 "I<--ro> flag is used).  By specifying the mount options, you override this "
22147 "default choice.  Probably the only time you would use this is to enable ACLs "
22148 "and/or extended attributes if the filesystem can support them:"
22149 msgstr ""
22150
22151 #. type: verbatim
22152 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:169
22153 #, no-wrap
22154 msgid ""
22155 " -m /dev/sda1:/:acl,user_xattr\n"
22156 "\n"
22157 msgstr ""
22158
22159 #. type: textblock
22160 #: ../fish/guestfish.pod:331
22161 msgid "Using this flag is equivalent to using the C<mount-options> command."
22162 msgstr ""
22163
22164 # type: =item
22165 #. type: =item
22166 #: ../fish/guestfish.pod:333
22167 msgid "B<-n>"
22168 msgstr ""
22169
22170 # type: =item
22171 #. type: =item
22172 #: ../fish/guestfish.pod:335
22173 msgid "B<--no-sync>"
22174 msgstr ""
22175
22176 # type: textblock
22177 #. type: textblock
22178 #: ../fish/guestfish.pod:337
22179 msgid ""
22180 "Disable autosync.  This is enabled by default.  See the discussion of "
22181 "autosync in the L<guestfs(3)> manpage."
22182 msgstr ""
22183
22184 # type: =item
22185 #. type: =item
22186 #: ../fish/guestfish.pod:340
22187 msgid "B<-N type>"
22188 msgstr ""
22189
22190 # type: =item
22191 #. type: =item
22192 #: ../fish/guestfish.pod:342
22193 msgid "B<--new type>"
22194 msgstr ""
22195
22196 # type: =item
22197 #. type: =item
22198 #: ../fish/guestfish.pod:344
22199 msgid "B<-N help>"
22200 msgstr ""
22201
22202 # type: textblock
22203 #. type: textblock
22204 #: ../fish/guestfish.pod:346
22205 msgid ""
22206 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
22207 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
22208 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
22209 "IMAGES> below."
22210 msgstr ""
22211
22212 # type: =item
22213 #. type: =item
22214 #: ../fish/guestfish.pod:351
22215 msgid "B<--progress-bars>"
22216 msgstr ""
22217
22218 # type: textblock
22219 #. type: textblock
22220 #: ../fish/guestfish.pod:353
22221 msgid "Enable progress bars, even when guestfish is used non-interactively."
22222 msgstr ""
22223
22224 # type: textblock
22225 #. type: textblock
22226 #: ../fish/guestfish.pod:355
22227 msgid ""
22228 "Progress bars are enabled by default when guestfish is used as an "
22229 "interactive shell."
22230 msgstr ""
22231
22232 # type: =item
22233 #. type: =item
22234 #: ../fish/guestfish.pod:358
22235 msgid "B<--no-progress-bars>"
22236 msgstr ""
22237
22238 # type: textblock
22239 #. type: textblock
22240 #: ../fish/guestfish.pod:360
22241 msgid "Disable progress bars."
22242 msgstr ""
22243
22244 # type: =item
22245 #. type: =item
22246 #: ../fish/guestfish.pod:362
22247 msgid "B<--remote[=pid]>"
22248 msgstr ""
22249
22250 # type: textblock
22251 #. type: textblock
22252 #: ../fish/guestfish.pod:364
22253 msgid ""
22254 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
22255 "CONTROL GUESTFISH OVER A SOCKET> below."
22256 msgstr ""
22257
22258 # type: =item
22259 #. type: =item
22260 #: ../fish/guestfish.pod:367
22261 msgid "B<-r>"
22262 msgstr ""
22263
22264 # type: =item
22265 #. type: =item
22266 #: ../fish/guestfish.pod:369
22267 msgid "B<--ro>"
22268 msgstr ""
22269
22270 # type: textblock
22271 #. type: textblock
22272 #: ../fish/guestfish.pod:371
22273 msgid ""
22274 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22275 "mounts are done read-only."
22276 msgstr ""
22277
22278 # type: textblock
22279 #. type: textblock
22280 #: ../fish/guestfish.pod:374
22281 msgid ""
22282 "The option must always be used if the disk image or virtual machine might be "
22283 "running, and is generally recommended in cases where you don't need write "
22284 "access to the disk."
22285 msgstr ""
22286
22287 # type: textblock
22288 #. type: textblock
22289 #: ../fish/guestfish.pod:378
22290 msgid ""
22291 "Note that prepared disk images created with I<-N> are not affected by this "
22292 "option.  Also commands like C<add> are not affected - you have to specify "
22293 "the C<readonly:true> option explicitly if you need it."
22294 msgstr ""
22295
22296 # type: textblock
22297 #. type: textblock
22298 #: ../fish/guestfish.pod:382
22299 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
22300 msgstr ""
22301
22302 # type: =item
22303 #. type: =item
22304 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:225
22305 msgid "B<--selinux>"
22306 msgstr ""
22307
22308 # type: textblock
22309 #. type: textblock
22310 #: ../fish/guestfish.pod:386
22311 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
22312 msgstr ""
22313
22314 # type: =item
22315 #. type: =item
22316 #: ../fish/guestfish.pod:388
22317 msgid "B<-v>"
22318 msgstr ""
22319
22320 # type: =item
22321 #. type: =item
22322 #: ../fish/guestfish.pod:390
22323 msgid "B<--verbose>"
22324 msgstr ""
22325
22326 # type: textblock
22327 #. type: textblock
22328 #: ../fish/guestfish.pod:392
22329 msgid ""
22330 "Enable very verbose messages.  This is particularly useful if you find a bug."
22331 msgstr ""
22332
22333 # type: =item
22334 #. type: =item
22335 #: ../fish/guestfish.pod:395
22336 msgid "B<-V>"
22337 msgstr ""
22338
22339 # type: =item
22340 #. type: =item
22341 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
22342 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
22343 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
22344 #: ../tools/virt-list-partitions.pl:70
22345 msgid "B<--version>"
22346 msgstr ""
22347
22348 # type: textblock
22349 #. type: textblock
22350 #: ../fish/guestfish.pod:399
22351 msgid "Display the guestfish / libguestfs version number and exit."
22352 msgstr ""
22353
22354 # type: =item
22355 #. type: =item
22356 #: ../fish/guestfish.pod:401
22357 msgid "B<-w>"
22358 msgstr ""
22359
22360 # type: =item
22361 #. type: =item
22362 #: ../fish/guestfish.pod:403
22363 msgid "B<--rw>"
22364 msgstr ""
22365
22366 #. type: textblock
22367 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:239
22368 msgid ""
22369 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
22370 "mounts are done read-write."
22371 msgstr ""
22372
22373 #. type: textblock
22374 #: ../fish/guestfish.pod:408
22375 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
22376 msgstr ""
22377
22378 # type: =item
22379 #. type: =item
22380 #: ../fish/guestfish.pod:410
22381 msgid "B<-x>"
22382 msgstr ""
22383
22384 # type: textblock
22385 #. type: textblock
22386 #: ../fish/guestfish.pod:412
22387 msgid "Echo each command before executing it."
22388 msgstr ""
22389
22390 # type: =head1
22391 #. type: =head1
22392 #: ../fish/guestfish.pod:416
22393 msgid "COMMANDS ON COMMAND LINE"
22394 msgstr ""
22395
22396 # type: textblock
22397 #. type: textblock
22398 #: ../fish/guestfish.pod:418
22399 msgid ""
22400 "Any additional (non-option) arguments are treated as commands to execute."
22401 msgstr ""
22402
22403 # type: textblock
22404 #. type: textblock
22405 #: ../fish/guestfish.pod:421
22406 msgid ""
22407 "Commands to execute should be separated by a colon (C<:>), where the colon "
22408 "is a separate parameter.  Thus:"
22409 msgstr ""
22410
22411 # type: verbatim
22412 #. type: verbatim
22413 #: ../fish/guestfish.pod:424
22414 #, no-wrap
22415 msgid ""
22416 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
22417 "\n"
22418 msgstr ""
22419
22420 # type: textblock
22421 #. type: textblock
22422 #: ../fish/guestfish.pod:426
22423 msgid ""
22424 "If there are no additional arguments, then we enter a shell, either an "
22425 "interactive shell with a prompt (if the input is a terminal) or a non-"
22426 "interactive shell."
22427 msgstr ""
22428
22429 # type: textblock
22430 #. type: textblock
22431 #: ../fish/guestfish.pod:430
22432 msgid ""
22433 "In either command line mode or non-interactive shell, the first command that "
22434 "gives an error causes the whole shell to exit.  In interactive mode (with a "
22435 "prompt) if a command fails, you can continue to enter commands."
22436 msgstr ""
22437
22438 # type: =head1
22439 #. type: =head1
22440 #: ../fish/guestfish.pod:435
22441 msgid "USING launch (OR run)"
22442 msgstr ""
22443
22444 # type: textblock
22445 #. type: textblock
22446 #: ../fish/guestfish.pod:437
22447 msgid ""
22448 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
22449 "then launch it, then mount any disks you need, and finally issue actions/"
22450 "commands.  So the general order of the day is:"
22451 msgstr ""
22452
22453 # type: textblock
22454 #. type: textblock
22455 #: ../fish/guestfish.pod:445
22456 msgid "add or -a/--add"
22457 msgstr ""
22458
22459 # type: textblock
22460 #. type: textblock
22461 #: ../fish/guestfish.pod:449
22462 msgid "launch (aka run)"
22463 msgstr ""
22464
22465 # type: textblock
22466 #. type: textblock
22467 #: ../fish/guestfish.pod:453
22468 msgid "mount or -m/--mount"
22469 msgstr ""
22470
22471 # type: textblock
22472 #. type: textblock
22473 #: ../fish/guestfish.pod:457
22474 msgid "any other commands"
22475 msgstr ""
22476
22477 # type: textblock
22478 #. type: textblock
22479 #: ../fish/guestfish.pod:461
22480 msgid ""
22481 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
22482 "guest before mounting or performing any other commands."
22483 msgstr ""
22484
22485 # type: textblock
22486 #. type: textblock
22487 #: ../fish/guestfish.pod:464
22488 msgid ""
22489 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
22490 "I<--new> options were given then C<run> is done automatically, simply "
22491 "because guestfish can't perform the action you asked for without doing this."
22492 msgstr ""
22493
22494 # type: =head1
22495 #. type: =head1
22496 #: ../fish/guestfish.pod:469
22497 msgid "OPENING DISKS FOR READ AND WRITE"
22498 msgstr ""
22499
22500 #. type: textblock
22501 #: ../fish/guestfish.pod:471
22502 msgid ""
22503 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
22504 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
22505 "I<-i> and I<-m> open disk images read-only or for writing."
22506 msgstr ""
22507
22508 #. type: textblock
22509 #: ../fish/guestfish.pod:476
22510 msgid ""
22511 "In libguestfs E<le> 1.8, guestfish, guestmount and virt-rescue defaulted to "
22512 "opening disk images supplied on the command line for write.  To open a disk "
22513 "image read-only you have to do I<-a image --ro>."
22514 msgstr ""
22515
22516 # type: textblock
22517 #. type: textblock
22518 #: ../fish/guestfish.pod:480
22519 msgid ""
22520 "This matters: If you accidentally open a live VM disk image writable then "
22521 "you will cause irreversible disk corruption."
22522 msgstr ""
22523
22524 #. type: textblock
22525 #: ../fish/guestfish.pod:483
22526 msgid ""
22527 "By libguestfs 1.10 we intend to change the default the other way.  Disk "
22528 "images will be opened read-only.  You will have to either specify "
22529 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
22530 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
22531 "access for disk images specified by those other command line options."
22532 msgstr ""
22533
22534 #. type: textblock
22535 #: ../fish/guestfish.pod:490
22536 msgid ""
22537 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
22538 "which does nothing (it is already the default).  However it is highly "
22539 "recommended that you use this option to indicate that you need write access, "
22540 "and prepare your scripts for the day when this option will be required for "
22541 "write access."
22542 msgstr ""
22543
22544 # type: textblock
22545 #. type: textblock
22546 #: ../fish/guestfish.pod:496
22547 msgid ""
22548 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
22549 "other libguestfs program apart from guestfish and guestmount."
22550 msgstr ""
22551
22552 # type: =head1
22553 #. type: =head1
22554 #: ../fish/guestfish.pod:499
22555 msgid "QUOTING"
22556 msgstr ""
22557
22558 # type: textblock
22559 #. type: textblock
22560 #: ../fish/guestfish.pod:501
22561 msgid ""
22562 "You can quote ordinary parameters using either single or double quotes.  For "
22563 "example:"
22564 msgstr ""
22565
22566 # type: verbatim
22567 #. type: verbatim
22568 #: ../fish/guestfish.pod:504
22569 #, no-wrap
22570 msgid ""
22571 " add \"file with a space.img\"\n"
22572 "\n"
22573 msgstr ""
22574
22575 # type: verbatim
22576 #. type: verbatim
22577 #: ../fish/guestfish.pod:506
22578 #, no-wrap
22579 msgid ""
22580 " rm '/file name'\n"
22581 "\n"
22582 msgstr ""
22583
22584 # type: verbatim
22585 #. type: verbatim
22586 #: ../fish/guestfish.pod:508
22587 #, no-wrap
22588 msgid ""
22589 " rm '/\"'\n"
22590 "\n"
22591 msgstr ""
22592
22593 # type: textblock
22594 #. type: textblock
22595 #: ../fish/guestfish.pod:510
22596 msgid ""
22597 "A few commands require a list of strings to be passed.  For these, use a "
22598 "whitespace-separated list, enclosed in quotes.  Strings containing "
22599 "whitespace to be passed through must be enclosed in single quotes.  A "
22600 "literal single quote must be escaped with a backslash."
22601 msgstr ""
22602
22603 # type: verbatim
22604 #. type: verbatim
22605 #: ../fish/guestfish.pod:515
22606 #, no-wrap
22607 msgid ""
22608 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
22609 " command \"/bin/echo 'foo      bar'\"\n"
22610 " command \"/bin/echo \\'foo\\'\"\n"
22611 "\n"
22612 msgstr ""
22613
22614 # type: =head1
22615 #. type: =head1
22616 #: ../fish/guestfish.pod:519
22617 msgid "OPTIONAL ARGUMENTS"
22618 msgstr ""
22619
22620 # type: textblock
22621 #. type: textblock
22622 #: ../fish/guestfish.pod:521
22623 msgid ""
22624 "Some commands take optional arguments.  These arguments appear in this "
22625 "documentation as C<[argname:..]>.  You can use them as in these examples:"
22626 msgstr ""
22627
22628 # type: verbatim
22629 #. type: verbatim
22630 #: ../fish/guestfish.pod:525
22631 #, no-wrap
22632 msgid ""
22633 " add-drive-opts filename\n"
22634 "\n"
22635 msgstr ""
22636
22637 # type: verbatim
22638 #. type: verbatim
22639 #: ../fish/guestfish.pod:527
22640 #, no-wrap
22641 msgid ""
22642 " add-drive-opts filename readonly:true\n"
22643 "\n"
22644 msgstr ""
22645
22646 # type: verbatim
22647 #. type: verbatim
22648 #: ../fish/guestfish.pod:529
22649 #, no-wrap
22650 msgid ""
22651 " add-drive-opts filename format:qcow2 readonly:false\n"
22652 "\n"
22653 msgstr ""
22654
22655 # type: textblock
22656 #. type: textblock
22657 #: ../fish/guestfish.pod:531
22658 msgid ""
22659 "Each optional argument can appear at most once.  All optional arguments must "
22660 "appear after the required ones."
22661 msgstr ""
22662
22663 # type: =head1
22664 #. type: =head1
22665 #: ../fish/guestfish.pod:534
22666 msgid "NUMBERS"
22667 msgstr ""
22668
22669 # type: textblock
22670 #. type: textblock
22671 #: ../fish/guestfish.pod:536
22672 msgid ""
22673 "This section applies to all commands which can take integers as parameters."
22674 msgstr ""
22675
22676 # type: =head2
22677 #. type: =head2
22678 #: ../fish/guestfish.pod:539
22679 msgid "SIZE SUFFIX"
22680 msgstr ""
22681
22682 # type: textblock
22683 #. type: textblock
22684 #: ../fish/guestfish.pod:541
22685 msgid ""
22686 "When the command takes a parameter measured in bytes, you can use one of the "
22687 "following suffixes to specify kilobytes, megabytes and larger sizes:"
22688 msgstr ""
22689
22690 # type: =item
22691 #. type: =item
22692 #: ../fish/guestfish.pod:547
22693 msgid "B<k> or B<K> or B<KiB>"
22694 msgstr ""
22695
22696 # type: textblock
22697 #. type: textblock
22698 #: ../fish/guestfish.pod:549
22699 msgid "The size in kilobytes (multiplied by 1024)."
22700 msgstr ""
22701
22702 # type: =item
22703 #. type: =item
22704 #: ../fish/guestfish.pod:551
22705 msgid "B<KB>"
22706 msgstr ""
22707
22708 # type: textblock
22709 #. type: textblock
22710 #: ../fish/guestfish.pod:553
22711 msgid "The size in SI 1000 byte units."
22712 msgstr ""
22713
22714 # type: =item
22715 #. type: =item
22716 #: ../fish/guestfish.pod:555
22717 msgid "B<M> or B<MiB>"
22718 msgstr ""
22719
22720 # type: textblock
22721 #. type: textblock
22722 #: ../fish/guestfish.pod:557
22723 msgid "The size in megabytes (multiplied by 1048576)."
22724 msgstr ""
22725
22726 # type: =item
22727 #. type: =item
22728 #: ../fish/guestfish.pod:559
22729 msgid "B<MB>"
22730 msgstr ""
22731
22732 # type: textblock
22733 #. type: textblock
22734 #: ../fish/guestfish.pod:561
22735 msgid "The size in SI 1000000 byte units."
22736 msgstr ""
22737
22738 # type: =item
22739 #. type: =item
22740 #: ../fish/guestfish.pod:563
22741 msgid "B<G> or B<GiB>"
22742 msgstr ""
22743
22744 # type: textblock
22745 #. type: textblock
22746 #: ../fish/guestfish.pod:565
22747 msgid "The size in gigabytes (multiplied by 2**30)."
22748 msgstr ""
22749
22750 # type: =item
22751 #. type: =item
22752 #: ../fish/guestfish.pod:567
22753 msgid "B<GB>"
22754 msgstr ""
22755
22756 # type: textblock
22757 #. type: textblock
22758 #: ../fish/guestfish.pod:569
22759 msgid "The size in SI 10**9 byte units."
22760 msgstr ""
22761
22762 # type: =item
22763 #. type: =item
22764 #: ../fish/guestfish.pod:571
22765 msgid "B<T> or B<TiB>"
22766 msgstr ""
22767
22768 # type: textblock
22769 #. type: textblock
22770 #: ../fish/guestfish.pod:573
22771 msgid "The size in terabytes (multiplied by 2**40)."
22772 msgstr ""
22773
22774 # type: =item
22775 #. type: =item
22776 #: ../fish/guestfish.pod:575
22777 msgid "B<TB>"
22778 msgstr ""
22779
22780 # type: textblock
22781 #. type: textblock
22782 #: ../fish/guestfish.pod:577
22783 msgid "The size in SI 10**12 byte units."
22784 msgstr ""
22785
22786 # type: =item
22787 #. type: =item
22788 #: ../fish/guestfish.pod:579
22789 msgid "B<P> or B<PiB>"
22790 msgstr ""
22791
22792 # type: textblock
22793 #. type: textblock
22794 #: ../fish/guestfish.pod:581
22795 msgid "The size in petabytes (multiplied by 2**50)."
22796 msgstr ""
22797
22798 # type: =item
22799 #. type: =item
22800 #: ../fish/guestfish.pod:583
22801 msgid "B<PB>"
22802 msgstr ""
22803
22804 # type: textblock
22805 #. type: textblock
22806 #: ../fish/guestfish.pod:585
22807 msgid "The size in SI 10**15 byte units."
22808 msgstr ""
22809
22810 # type: =item
22811 #. type: =item
22812 #: ../fish/guestfish.pod:587
22813 msgid "B<E> or B<EiB>"
22814 msgstr ""
22815
22816 # type: textblock
22817 #. type: textblock
22818 #: ../fish/guestfish.pod:589
22819 msgid "The size in exabytes (multiplied by 2**60)."
22820 msgstr ""
22821
22822 # type: =item
22823 #. type: =item
22824 #: ../fish/guestfish.pod:591
22825 msgid "B<EB>"
22826 msgstr ""
22827
22828 # type: textblock
22829 #. type: textblock
22830 #: ../fish/guestfish.pod:593
22831 msgid "The size in SI 10**18 byte units."
22832 msgstr ""
22833
22834 # type: =item
22835 #. type: =item
22836 #: ../fish/guestfish.pod:595
22837 msgid "B<Z> or B<ZiB>"
22838 msgstr ""
22839
22840 # type: textblock
22841 #. type: textblock
22842 #: ../fish/guestfish.pod:597
22843 msgid "The size in zettabytes (multiplied by 2**70)."
22844 msgstr ""
22845
22846 # type: =item
22847 #. type: =item
22848 #: ../fish/guestfish.pod:599
22849 msgid "B<ZB>"
22850 msgstr ""
22851
22852 # type: textblock
22853 #. type: textblock
22854 #: ../fish/guestfish.pod:601
22855 msgid "The size in SI 10**21 byte units."
22856 msgstr ""
22857
22858 # type: =item
22859 #. type: =item
22860 #: ../fish/guestfish.pod:603
22861 msgid "B<Y> or B<YiB>"
22862 msgstr ""
22863
22864 # type: textblock
22865 #. type: textblock
22866 #: ../fish/guestfish.pod:605
22867 msgid "The size in yottabytes (multiplied by 2**80)."
22868 msgstr ""
22869
22870 # type: =item
22871 #. type: =item
22872 #: ../fish/guestfish.pod:607
22873 msgid "B<YB>"
22874 msgstr ""
22875
22876 # type: textblock
22877 #. type: textblock
22878 #: ../fish/guestfish.pod:609
22879 msgid "The size in SI 10**24 byte units."
22880 msgstr ""
22881
22882 # type: verbatim
22883 #. type: verbatim
22884 #: ../fish/guestfish.pod:615
22885 #, no-wrap
22886 msgid ""
22887 " truncate-size /file 1G\n"
22888 "\n"
22889 msgstr ""
22890
22891 # type: textblock
22892 #. type: textblock
22893 #: ../fish/guestfish.pod:617
22894 msgid "would truncate the file to 1 gigabyte."
22895 msgstr ""
22896
22897 # type: textblock
22898 #. type: textblock
22899 #: ../fish/guestfish.pod:619
22900 msgid ""
22901 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
22902 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
22903 "suffix will probably not do what you expect."
22904 msgstr ""
22905
22906 # type: =head2
22907 #. type: =head2
22908 #: ../fish/guestfish.pod:623
22909 msgid "OCTAL AND HEXADECIMAL NUMBERS"
22910 msgstr ""
22911
22912 # type: textblock
22913 #. type: textblock
22914 #: ../fish/guestfish.pod:625
22915 msgid ""
22916 "For specifying the radix (base) use the C convention: C<0> to prefix an "
22917 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
22918 msgstr ""
22919
22920 # type: verbatim
22921 #. type: verbatim
22922 #: ../fish/guestfish.pod:628
22923 #, no-wrap
22924 msgid ""
22925 " 1234      decimal number 1234\n"
22926 " 02322     octal number, equivalent to decimal 1234\n"
22927 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
22928 "\n"
22929 msgstr ""
22930
22931 # type: textblock
22932 #. type: textblock
22933 #: ../fish/guestfish.pod:632
22934 msgid ""
22935 "When using the C<chmod> command, you almost always want to specify an octal "
22936 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
22937 "L<chmod(1)> program):"
22938 msgstr ""
22939
22940 # type: verbatim
22941 #. type: verbatim
22942 #: ../fish/guestfish.pod:636
22943 #, no-wrap
22944 msgid ""
22945 " chmod 0777 /public  # OK\n"
22946 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
22947 "\n"
22948 msgstr ""
22949
22950 # type: textblock
22951 #. type: textblock
22952 #: ../fish/guestfish.pod:639
22953 msgid ""
22954 "Commands that return numbers usually print them in decimal, but some "
22955 "commands print numbers in other radices (eg. C<umask> prints the mode in "
22956 "octal, preceeded by C<0>)."
22957 msgstr ""
22958
22959 # type: =head1
22960 #. type: =head1
22961 #: ../fish/guestfish.pod:643
22962 msgid "WILDCARDS AND GLOBBING"
22963 msgstr ""
22964
22965 # type: textblock
22966 #. type: textblock
22967 #: ../fish/guestfish.pod:645
22968 msgid ""
22969 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
22970 "(globbing) by default.  So for example the following will not do what you "
22971 "expect:"
22972 msgstr ""
22973
22974 # type: verbatim
22975 #. type: verbatim
22976 #: ../fish/guestfish.pod:649
22977 #, no-wrap
22978 msgid ""
22979 " rm-rf /home/*\n"
22980 "\n"
22981 msgstr ""
22982
22983 # type: textblock
22984 #. type: textblock
22985 #: ../fish/guestfish.pod:651
22986 msgid ""
22987 "Assuming you don't have a directory called literally C</home/*> then the "
22988 "above command will return an error."
22989 msgstr ""
22990
22991 # type: textblock
22992 #. type: textblock
22993 #: ../fish/guestfish.pod:654
22994 msgid "To perform wildcard expansion, use the C<glob> command."
22995 msgstr ""
22996
22997 # type: verbatim
22998 #. type: verbatim
22999 #: ../fish/guestfish.pod:656
23000 #, no-wrap
23001 msgid ""
23002 " glob rm-rf /home/*\n"
23003 "\n"
23004 msgstr ""
23005
23006 # type: textblock
23007 #. type: textblock
23008 #: ../fish/guestfish.pod:658
23009 msgid ""
23010 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
23011 "many times), equivalent to:"
23012 msgstr ""
23013
23014 # type: verbatim
23015 #. type: verbatim
23016 #: ../fish/guestfish.pod:661
23017 #, no-wrap
23018 msgid ""
23019 " rm-rf /home/jim\n"
23020 " rm-rf /home/joe\n"
23021 " rm-rf /home/mary\n"
23022 "\n"
23023 msgstr ""
23024
23025 # type: textblock
23026 #. type: textblock
23027 #: ../fish/guestfish.pod:665
23028 msgid "C<glob> only works on simple guest paths and not on device names."
23029 msgstr ""
23030
23031 # type: textblock
23032 #. type: textblock
23033 #: ../fish/guestfish.pod:667
23034 msgid ""
23035 "If you have several parameters, each containing a wildcard, then glob will "
23036 "perform a Cartesian product."
23037 msgstr ""
23038
23039 # type: =head1
23040 #. type: =head1
23041 #: ../fish/guestfish.pod:670
23042 msgid "COMMENTS"
23043 msgstr ""
23044
23045 # type: textblock
23046 #. type: textblock
23047 #: ../fish/guestfish.pod:672
23048 msgid ""
23049 "Any line which starts with a I<#> character is treated as a comment and "
23050 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
23051 "a command.  For example:"
23052 msgstr ""
23053
23054 # type: verbatim
23055 #. type: verbatim
23056 #: ../fish/guestfish.pod:676
23057 #, no-wrap
23058 msgid ""
23059 " # this is a comment\n"
23060 "         # this is a comment\n"
23061 " foo # NOT a comment\n"
23062 "\n"
23063 msgstr ""
23064
23065 # type: textblock
23066 #. type: textblock
23067 #: ../fish/guestfish.pod:680
23068 msgid "Blank lines are also ignored."
23069 msgstr ""
23070
23071 # type: =head1
23072 #. type: =head1
23073 #: ../fish/guestfish.pod:682
23074 msgid "RUNNING COMMANDS LOCALLY"
23075 msgstr ""
23076
23077 # type: textblock
23078 #. type: textblock
23079 #: ../fish/guestfish.pod:684
23080 msgid ""
23081 "Any line which starts with a I<!> character is treated as a command sent to "
23082 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
23083 msgstr ""
23084
23085 # type: verbatim
23086 #. type: verbatim
23087 #: ../fish/guestfish.pod:688
23088 #, no-wrap
23089 msgid ""
23090 " !mkdir local\n"
23091 " tgz-out /remote local/remote-data.tar.gz\n"
23092 "\n"
23093 msgstr ""
23094
23095 # type: textblock
23096 #. type: textblock
23097 #: ../fish/guestfish.pod:691
23098 msgid ""
23099 "will create a directory C<local> on the host, and then export the contents "
23100 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
23101 "(See C<tgz-out>)."
23102 msgstr ""
23103
23104 # type: textblock
23105 #. type: textblock
23106 #: ../fish/guestfish.pod:695
23107 msgid ""
23108 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
23109 "effect, due to the way that subprocesses work in Unix."
23110 msgstr ""
23111
23112 #. type: =head2
23113 #: ../fish/guestfish.pod:698
23114 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
23115 msgstr ""
23116
23117 #. type: textblock
23118 #: ../fish/guestfish.pod:700
23119 msgid ""
23120 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
23121 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
23122 "and executed as guestfish commands."
23123 msgstr ""
23124
23125 #. type: textblock
23126 #: ../fish/guestfish.pod:704
23127 msgid ""
23128 "Thus you can use shell script to construct arbitrary guestfish commands "
23129 "which are then parsed by guestfish."
23130 msgstr ""
23131
23132 #. type: textblock
23133 #: ../fish/guestfish.pod:707
23134 msgid ""
23135 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
23136 "through C</foo.100>) using guestfish commands alone.  However this is simple "
23137 "if we use a shell script to create the guestfish commands for us:"
23138 msgstr ""
23139
23140 #. type: verbatim
23141 #: ../fish/guestfish.pod:712
23142 #, no-wrap
23143 msgid ""
23144 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
23145 "\n"
23146 msgstr ""
23147
23148 #. type: textblock
23149 #: ../fish/guestfish.pod:714
23150 msgid "or with names like C</foo.001>:"
23151 msgstr ""
23152
23153 #. type: verbatim
23154 #: ../fish/guestfish.pod:716
23155 #, no-wrap
23156 msgid ""
23157 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
23158 "\n"
23159 msgstr ""
23160
23161 #. type: textblock
23162 #: ../fish/guestfish.pod:718
23163 msgid ""
23164 "When using guestfish interactively it can be helpful to just run the shell "
23165 "script first (ie. remove the initial C<E<lt>> character so it is just an "
23166 "ordinary I<!> local command), see what guestfish commands it would run, and "
23167 "when you are happy with those prepend the C<E<lt>> character to run the "
23168 "guestfish commands for real."
23169 msgstr ""
23170
23171 # type: =head1
23172 #. type: =head1
23173 #: ../fish/guestfish.pod:724
23174 msgid "PIPES"
23175 msgstr ""
23176
23177 # type: textblock
23178 #. type: textblock
23179 #: ../fish/guestfish.pod:726
23180 msgid ""
23181 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
23182 "command (a guestfish command) to the second command (any host command).  For "
23183 "example:"
23184 msgstr ""
23185
23186 # type: verbatim
23187 #. type: verbatim
23188 #: ../fish/guestfish.pod:730
23189 #, no-wrap
23190 msgid ""
23191 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
23192 "\n"
23193 msgstr ""
23194
23195 # type: textblock
23196 #. type: textblock
23197 #: ../fish/guestfish.pod:732
23198 msgid ""
23199 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
23200 "program).  The above command would list all accounts in the guest filesystem "
23201 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
23202 msgstr ""
23203
23204 # type: verbatim
23205 #. type: verbatim
23206 #: ../fish/guestfish.pod:737
23207 #, no-wrap
23208 msgid ""
23209 " hexdump /bin/ls | head\n"
23210 " list-devices | tail -1\n"
23211 " tgz-out / - | tar ztf -\n"
23212 "\n"
23213 msgstr ""
23214
23215 # type: textblock
23216 #. type: textblock
23217 #: ../fish/guestfish.pod:741
23218 msgid ""
23219 "The space before the pipe symbol is required, any space after the pipe "
23220 "symbol is optional.  Everything after the pipe symbol is just passed "
23221 "straight to the host shell, so it can contain redirections, globs and "
23222 "anything else that makes sense on the host side."
23223 msgstr ""
23224
23225 # type: textblock
23226 #. type: textblock
23227 #: ../fish/guestfish.pod:746
23228 msgid ""
23229 "To use a literal argument which begins with a pipe symbol, you have to quote "
23230 "it, eg:"
23231 msgstr ""
23232
23233 # type: verbatim
23234 #. type: verbatim
23235 #: ../fish/guestfish.pod:749
23236 #, no-wrap
23237 msgid ""
23238 " echo \"|\"\n"
23239 "\n"
23240 msgstr ""
23241
23242 # type: =head1
23243 #. type: =head1
23244 #: ../fish/guestfish.pod:751
23245 msgid "HOME DIRECTORIES"
23246 msgstr ""
23247
23248 # type: textblock
23249 #. type: textblock
23250 #: ../fish/guestfish.pod:753
23251 msgid ""
23252 "If a parameter starts with the character C<~> then the tilde may be expanded "
23253 "as a home directory path (either C<~> for the current user's home directory, "
23254 "or C<~user> for another user)."
23255 msgstr ""
23256
23257 # type: textblock
23258 #. type: textblock
23259 #: ../fish/guestfish.pod:757
23260 msgid ""
23261 "Note that home directory expansion happens for users known I<on the host>, "
23262 "not in the guest filesystem."
23263 msgstr ""
23264
23265 # type: textblock
23266 #. type: textblock
23267 #: ../fish/guestfish.pod:760
23268 msgid ""
23269 "To use a literal argument which begins with a tilde, you have to quote it, "
23270 "eg:"
23271 msgstr ""
23272
23273 # type: verbatim
23274 #. type: verbatim
23275 #: ../fish/guestfish.pod:763
23276 #, no-wrap
23277 msgid ""
23278 " echo \"~\"\n"
23279 "\n"
23280 msgstr ""
23281
23282 # type: textblock
23283 #. type: textblock
23284 #: ../fish/guestfish.pod:767
23285 msgid ""
23286 "Libguestfs has some support for Linux guests encrypted according to the "
23287 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
23288 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
23289 "LUKS is supported."
23290 msgstr ""
23291
23292 # type: textblock
23293 #. type: textblock
23294 #: ../fish/guestfish.pod:772
23295 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
23296 msgstr ""
23297
23298 # type: verbatim
23299 #. type: verbatim
23300 #: ../fish/guestfish.pod:774
23301 #, no-wrap
23302 msgid ""
23303 " ><fs> vfs-type /dev/sda2\n"
23304 " crypto_LUKS\n"
23305 "\n"
23306 msgstr ""
23307
23308 # type: textblock
23309 #. type: textblock
23310 #: ../fish/guestfish.pod:777
23311 msgid ""
23312 "Then open those devices using L</luks-open>.  This creates a device-mapper "
23313 "device called C</dev/mapper/luksdev>."
23314 msgstr ""
23315
23316 # type: verbatim
23317 #. type: verbatim
23318 #: ../fish/guestfish.pod:780
23319 #, no-wrap
23320 msgid ""
23321 " ><fs> luks-open /dev/sda2 luksdev\n"
23322 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
23323 "\n"
23324 msgstr ""
23325
23326 # type: textblock
23327 #. type: textblock
23328 #: ../fish/guestfish.pod:783
23329 msgid ""
23330 "Finally you have to tell LVM to scan for volume groups on the newly created "
23331 "mapper device:"
23332 msgstr ""
23333
23334 # type: verbatim
23335 #. type: verbatim
23336 #: ../fish/guestfish.pod:786
23337 #, no-wrap
23338 msgid ""
23339 " vgscan\n"
23340 " vg-activate-all true\n"
23341 "\n"
23342 msgstr ""
23343
23344 # type: textblock
23345 #. type: textblock
23346 #: ../fish/guestfish.pod:789
23347 msgid "The logical volume(s) can now be mounted in the usual way."
23348 msgstr ""
23349
23350 # type: textblock
23351 #. type: textblock
23352 #: ../fish/guestfish.pod:791
23353 msgid ""
23354 "Before closing a LUKS device you must unmount any logical volumes on it and "
23355 "deactivate the volume groups by calling C<vg-activate false VG> on each "
23356 "one.  Then you can close the mapper device:"
23357 msgstr ""
23358
23359 # type: verbatim
23360 #. type: verbatim
23361 #: ../fish/guestfish.pod:795
23362 #, no-wrap
23363 msgid ""
23364 " vg-activate false /dev/VG\n"
23365 " luks-close /dev/mapper/luksdev\n"
23366 "\n"
23367 msgstr ""
23368
23369 # type: =head1
23370 #. type: =head1
23371 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
23372 msgid "WINDOWS PATHS"
23373 msgstr ""
23374
23375 # type: textblock
23376 #. type: textblock
23377 #: ../fish/guestfish.pod:800
23378 msgid ""
23379 "If a path is prefixed with C<win:> then you can use Windows-style paths "
23380 "(with some limitations).  The following commands are equivalent:"
23381 msgstr ""
23382
23383 # type: verbatim
23384 #. type: verbatim
23385 #: ../fish/guestfish.pod:803
23386 #, no-wrap
23387 msgid ""
23388 " file /WINDOWS/system32/config/system.LOG\n"
23389 "\n"
23390 msgstr ""
23391
23392 # type: verbatim
23393 #. type: verbatim
23394 #: ../fish/guestfish.pod:805
23395 #, no-wrap
23396 msgid ""
23397 " file win:/windows/system32/config/system.log\n"
23398 "\n"
23399 msgstr ""
23400
23401 # type: verbatim
23402 #. type: verbatim
23403 #: ../fish/guestfish.pod:807
23404 #, no-wrap
23405 msgid ""
23406 " file win:\\windows\\system32\\config\\system.log\n"
23407 "\n"
23408 msgstr ""
23409
23410 # type: verbatim
23411 #. type: verbatim
23412 #: ../fish/guestfish.pod:809
23413 #, no-wrap
23414 msgid ""
23415 " file WIN:C:\\Windows\\SYSTEM32\\conFIG\\SYSTEM.LOG\n"
23416 "\n"
23417 msgstr ""
23418
23419 # type: textblock
23420 #. type: textblock
23421 #: ../fish/guestfish.pod:811
23422 msgid ""
23423 "This syntax implicitly calls C<case-sensitive-path> (q.v.) so it also "
23424 "handles case insensitivity like Windows would.  This only works in argument "
23425 "positions that expect a path."
23426 msgstr ""
23427
23428 # type: =head1
23429 #. type: =head1
23430 #: ../fish/guestfish.pod:815
23431 msgid "UPLOADING AND DOWNLOADING FILES"
23432 msgstr ""
23433
23434 # type: textblock
23435 #. type: textblock
23436 #: ../fish/guestfish.pod:817
23437 msgid ""
23438 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
23439 "others which upload from or download to a local file, you can use the "
23440 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
23441 msgstr ""
23442
23443 # type: verbatim
23444 #. type: verbatim
23445 #: ../fish/guestfish.pod:821
23446 #, no-wrap
23447 msgid ""
23448 " upload - /foo\n"
23449 "\n"
23450 msgstr ""
23451
23452 # type: textblock
23453 #. type: textblock
23454 #: ../fish/guestfish.pod:823
23455 msgid ""
23456 "reads stdin and creates from that a file C</foo> in the disk image, and:"
23457 msgstr ""
23458
23459 # type: verbatim
23460 #. type: verbatim
23461 #: ../fish/guestfish.pod:826
23462 #, no-wrap
23463 msgid ""
23464 " tar-out /etc - | tar tf -\n"
23465 "\n"
23466 msgstr ""
23467
23468 # type: textblock
23469 #. type: textblock
23470 #: ../fish/guestfish.pod:828
23471 msgid ""
23472 "writes the tarball to stdout and then pipes that into the external \"tar\" "
23473 "command (see L</PIPES>)."
23474 msgstr ""
23475
23476 # type: textblock
23477 #. type: textblock
23478 #: ../fish/guestfish.pod:831
23479 msgid ""
23480 "When using C<-> to read from stdin, the input is read up to the end of "
23481 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
23482 "some arbitrary end marker:"
23483 msgstr ""
23484
23485 # type: verbatim
23486 #. type: verbatim
23487 #: ../fish/guestfish.pod:835
23488 #, no-wrap
23489 msgid ""
23490 " upload -<<END /foo\n"
23491 " input line 1\n"
23492 " input line 2\n"
23493 " input line 3\n"
23494 " END\n"
23495 "\n"
23496 msgstr ""
23497
23498 # type: textblock
23499 #. type: textblock
23500 #: ../fish/guestfish.pod:841
23501 msgid ""
23502 "Any string of characters can be used instead of C<END>.  The end marker must "
23503 "appear on a line of its own, without any preceeding or following characters "
23504 "(not even spaces)."
23505 msgstr ""
23506
23507 # type: textblock
23508 #. type: textblock
23509 #: ../fish/guestfish.pod:845
23510 msgid ""
23511 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
23512 "upload local files (so-called \"FileIn\" parameters in the generator)."
23513 msgstr ""
23514
23515 # type: =head1
23516 #. type: =head1
23517 #: ../fish/guestfish.pod:848
23518 msgid "EXIT ON ERROR BEHAVIOUR"
23519 msgstr ""
23520
23521 # type: textblock
23522 #. type: textblock
23523 #: ../fish/guestfish.pod:850
23524 msgid ""
23525 "By default, guestfish will ignore any errors when in interactive mode (ie. "
23526 "taking commands from a human over a tty), and will exit on the first error "
23527 "in non-interactive mode (scripts, commands given on the command line)."
23528 msgstr ""
23529
23530 # type: textblock
23531 #. type: textblock
23532 #: ../fish/guestfish.pod:855
23533 msgid ""
23534 "If you prefix a command with a I<-> character, then that command will not "
23535 "cause guestfish to exit, even if that (one) command returns an error."
23536 msgstr ""
23537
23538 # type: =head1
23539 #. type: =head1
23540 #: ../fish/guestfish.pod:859
23541 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
23542 msgstr ""
23543
23544 # type: textblock
23545 #. type: textblock
23546 #: ../fish/guestfish.pod:861
23547 msgid ""
23548 "Guestfish can be remote-controlled over a socket.  This is useful "
23549 "particularly in shell scripts where you want to make several different "
23550 "changes to a filesystem, but you don't want the overhead of starting up a "
23551 "guestfish process each time."
23552 msgstr ""
23553
23554 # type: textblock
23555 #. type: textblock
23556 #: ../fish/guestfish.pod:866
23557 msgid "Start a guestfish server process using:"
23558 msgstr ""
23559
23560 # type: verbatim
23561 #. type: verbatim
23562 #: ../fish/guestfish.pod:868
23563 #, no-wrap
23564 msgid ""
23565 " eval \"`guestfish --listen`\"\n"
23566 "\n"
23567 msgstr ""
23568
23569 # type: textblock
23570 #. type: textblock
23571 #: ../fish/guestfish.pod:870
23572 msgid "and then send it commands by doing:"
23573 msgstr ""
23574
23575 # type: verbatim
23576 #. type: verbatim
23577 #: ../fish/guestfish.pod:872
23578 #, no-wrap
23579 msgid ""
23580 " guestfish --remote cmd [...]\n"
23581 "\n"
23582 msgstr ""
23583
23584 # type: textblock
23585 #. type: textblock
23586 #: ../fish/guestfish.pod:874
23587 msgid "To cause the server to exit, send it the exit command:"
23588 msgstr ""
23589
23590 # type: verbatim
23591 #. type: verbatim
23592 #: ../fish/guestfish.pod:876
23593 #, no-wrap
23594 msgid ""
23595 " guestfish --remote exit\n"
23596 "\n"
23597 msgstr ""
23598
23599 # type: textblock
23600 #. type: textblock
23601 #: ../fish/guestfish.pod:878
23602 msgid ""
23603 "Note that the server will normally exit if there is an error in a command.  "
23604 "You can change this in the usual way.  See section L</EXIT ON ERROR "
23605 "BEHAVIOUR>."
23606 msgstr ""
23607
23608 # type: =head2
23609 #. type: =head2
23610 #: ../fish/guestfish.pod:882
23611 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
23612 msgstr ""
23613
23614 # type: textblock
23615 #. type: textblock
23616 #: ../fish/guestfish.pod:884
23617 msgid ""
23618 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
23619 "is how the I<--remote> option knows where to send the commands.  You can "
23620 "have several guestfish listener processes running using:"
23621 msgstr ""
23622
23623 # type: verbatim
23624 #. type: verbatim
23625 #: ../fish/guestfish.pod:888
23626 #, no-wrap
23627 msgid ""
23628 " eval \"`guestfish --listen`\"\n"
23629 " pid1=$GUESTFISH_PID\n"
23630 " eval \"`guestfish --listen`\"\n"
23631 " pid2=$GUESTFISH_PID\n"
23632 " ...\n"
23633 " guestfish --remote=$pid1 cmd\n"
23634 " guestfish --remote=$pid2 cmd\n"
23635 "\n"
23636 msgstr ""
23637
23638 # type: =head2
23639 #. type: =head2
23640 #: ../fish/guestfish.pod:896
23641 msgid "REMOTE CONTROL AND CSH"
23642 msgstr ""
23643
23644 # type: textblock
23645 #. type: textblock
23646 #: ../fish/guestfish.pod:898
23647 msgid ""
23648 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
23649 "option:"
23650 msgstr ""
23651
23652 # type: verbatim
23653 #. type: verbatim
23654 #: ../fish/guestfish.pod:901
23655 #, no-wrap
23656 msgid ""
23657 " eval \"`guestfish --listen --csh`\"\n"
23658 "\n"
23659 msgstr ""
23660
23661 # type: =head2
23662 #. type: =head2
23663 #: ../fish/guestfish.pod:903
23664 msgid "REMOTE CONTROL DETAILS"
23665 msgstr ""
23666
23667 # type: textblock
23668 #. type: textblock
23669 #: ../fish/guestfish.pod:905
23670 msgid ""
23671 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
23672 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
23673 "and C<$PID> is the process ID of the server."
23674 msgstr ""
23675
23676 # type: textblock
23677 #. type: textblock
23678 #: ../fish/guestfish.pod:909
23679 msgid "Guestfish client and server versions must match exactly."
23680 msgstr ""
23681
23682 # type: =head1
23683 #. type: =head1
23684 #: ../fish/guestfish.pod:911
23685 msgid "PREPARED DISK IMAGES"
23686 msgstr ""
23687
23688 # type: textblock
23689 #. type: textblock
23690 #: ../fish/guestfish.pod:913
23691 msgid ""
23692 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
23693 "preformatted disk images that guestfish can make for you to save typing.  "
23694 "This is particularly useful for testing purposes.  This option is used "
23695 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
23696 "can be mixed with I<-a>)."
23697 msgstr ""
23698
23699 # type: textblock
23700 #. type: textblock
23701 #: ../fish/guestfish.pod:919
23702 msgid ""
23703 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
23704 "the second and so on.  Existing files in the current directory are "
23705 "I<overwritten>."
23706 msgstr ""
23707
23708 # type: textblock
23709 #. type: textblock
23710 #: ../fish/guestfish.pod:923
23711 msgid ""
23712 "The type briefly describes how the disk should be sized, partitioned, how "
23713 "filesystem(s) should be created, and how content should be added.  "
23714 "Optionally the type can be followed by extra parameters, separated by C<:> "
23715 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
23716 "allocated disk, containing a single partition, with the partition formatted "
23717 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
23718 "disk instead."
23719 msgstr ""
23720
23721 # type: textblock
23722 #. type: textblock
23723 #: ../fish/guestfish.pod:931
23724 msgid "To list the available types and any extra parameters they take, run:"
23725 msgstr ""
23726
23727 # type: textblock
23728 #. type: textblock
23729 #: ../fish/guestfish.pod:935
23730 msgid ""
23731 "Note that the prepared filesystem is not mounted.  You would usually have to "
23732 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
23733 msgstr ""
23734
23735 # type: textblock
23736 #. type: textblock
23737 #: ../fish/guestfish.pod:939
23738 msgid ""
23739 "If any I<-N> or I<--new> options are given, the guest is automatically "
23740 "launched."
23741 msgstr ""
23742
23743 # type: textblock
23744 #. type: textblock
23745 #: ../fish/guestfish.pod:944
23746 msgid "Create a 100MB disk with an ext4-formatted partition:"
23747 msgstr ""
23748
23749 # type: verbatim
23750 #. type: verbatim
23751 #: ../fish/guestfish.pod:946
23752 #, no-wrap
23753 msgid ""
23754 " guestfish -N fs:ext4\n"
23755 "\n"
23756 msgstr ""
23757
23758 # type: textblock
23759 #. type: textblock
23760 #: ../fish/guestfish.pod:948
23761 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
23762 msgstr ""
23763
23764 # type: verbatim
23765 #. type: verbatim
23766 #: ../fish/guestfish.pod:950
23767 #, no-wrap
23768 msgid ""
23769 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
23770 "\n"
23771 msgstr ""
23772
23773 # type: textblock
23774 #. type: textblock
23775 #: ../fish/guestfish.pod:952
23776 msgid "Create a blank 200MB disk:"
23777 msgstr ""
23778
23779 # type: verbatim
23780 #. type: verbatim
23781 #: ../fish/guestfish.pod:954
23782 #, no-wrap
23783 msgid ""
23784 " guestfish -N disk:200M\n"
23785 "\n"
23786 msgstr ""
23787
23788 # type: =head1
23789 #. type: =head1
23790 #: ../fish/guestfish.pod:956
23791 msgid "PROGRESS BARS"
23792 msgstr ""
23793
23794 # type: textblock
23795 #. type: textblock
23796 #: ../fish/guestfish.pod:958
23797 msgid ""
23798 "Some (not all) long-running commands send progress notification messages as "
23799 "they are running.  Guestfish turns these messages into progress bars."
23800 msgstr ""
23801
23802 # type: textblock
23803 #. type: textblock
23804 #: ../fish/guestfish.pod:962
23805 msgid ""
23806 "When a command that supports progress bars takes longer than two seconds to "
23807 "run, and if progress bars are enabled, then you will see one appearing below "
23808 "the command:"
23809 msgstr ""
23810
23811 # type: verbatim
23812 #. type: verbatim
23813 #: ../fish/guestfish.pod:966
23814 #, no-wrap
23815 msgid ""
23816 " ><fs> copy-size /large-file /another-file 2048M\n"
23817 " / 10% [#####-----------------------------------------] 00:30\n"
23818 "\n"
23819 msgstr ""
23820
23821 # type: textblock
23822 #. type: textblock
23823 #: ../fish/guestfish.pod:969
23824 msgid ""
23825 "The spinner on the left hand side moves round once for every progress "
23826 "notification received from the backend.  This is a (reasonably) golden "
23827 "assurance that the command is \"doing something\" even if the progress bar "
23828 "is not moving, because the command is able to send the progress "
23829 "notifications.  When the bar reaches 100% and the command finishes, the "
23830 "spinner disappears."
23831 msgstr ""
23832
23833 # type: textblock
23834 #. type: textblock
23835 #: ../fish/guestfish.pod:976
23836 msgid ""
23837 "Progress bars are enabled by default when guestfish is used interactively.  "
23838 "You can enable them even for non-interactive modes using I<--progress-bars>, "
23839 "and you can disable them completely using I<--no-progress-bars>."
23840 msgstr ""
23841
23842 # type: =head1
23843 #. type: =head1
23844 #: ../fish/guestfish.pod:981
23845 msgid "GUESTFISH COMMANDS"
23846 msgstr ""
23847
23848 # type: textblock
23849 #. type: textblock
23850 #: ../fish/guestfish.pod:983
23851 msgid ""
23852 "The commands in this section are guestfish convenience commands, in other "
23853 "words, they are not part of the L<guestfs(3)> API."
23854 msgstr ""
23855
23856 # type: =head2
23857 #. type: =head2
23858 #: ../fish/guestfish.pod:986
23859 msgid "help"
23860 msgstr ""
23861
23862 # type: verbatim
23863 #. type: verbatim
23864 #: ../fish/guestfish.pod:988
23865 #, no-wrap
23866 msgid ""
23867 " help\n"
23868 " help cmd\n"
23869 "\n"
23870 msgstr ""
23871
23872 # type: textblock
23873 #. type: textblock
23874 #: ../fish/guestfish.pod:991
23875 msgid "Without any parameter, this provides general help."
23876 msgstr ""
23877
23878 # type: textblock
23879 #. type: textblock
23880 #: ../fish/guestfish.pod:993
23881 msgid "With a C<cmd> parameter, this displays detailed help for that command."
23882 msgstr ""
23883
23884 # type: =head2
23885 #. type: =head2
23886 #: ../fish/guestfish.pod:995
23887 msgid "quit | exit"
23888 msgstr ""
23889
23890 # type: textblock
23891 #. type: textblock
23892 #: ../fish/guestfish.pod:997
23893 msgid "This exits guestfish.  You can also use C<^D> key."
23894 msgstr ""
23895
23896 # type: textblock
23897 #. type: textblock
23898 #: ../fish/guestfish.pod:999
23899 msgid "@FISH_COMMANDS@"
23900 msgstr ""
23901
23902 # type: =head1
23903 #. type: =head1
23904 #: ../fish/guestfish.pod:1001
23905 msgid "COMMANDS"
23906 msgstr ""
23907
23908 # type: =head1
23909 #. type: =head1
23910 #: ../fish/guestfish.pod:1005 ../test-tool/libguestfs-test-tool.pod:77
23911 msgid "EXIT CODE"
23912 msgstr ""
23913
23914 # type: textblock
23915 #. type: textblock
23916 #: ../fish/guestfish.pod:1007
23917 msgid ""
23918 "guestfish returns 0 if the commands completed without error, or 1 if there "
23919 "was an error."
23920 msgstr ""
23921
23922 # type: =item
23923 #. type: =item
23924 #: ../fish/guestfish.pod:1014
23925 msgid "EDITOR"
23926 msgstr ""
23927
23928 # type: textblock
23929 #. type: textblock
23930 #: ../fish/guestfish.pod:1016
23931 msgid ""
23932 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
23933 "C<vi>."
23934 msgstr ""
23935
23936 # type: =item
23937 #. type: =item
23938 #: ../fish/guestfish.pod:1019
23939 msgid "GUESTFISH_PID"
23940 msgstr ""
23941
23942 # type: textblock
23943 #. type: textblock
23944 #: ../fish/guestfish.pod:1021
23945 msgid ""
23946 "Used with the I<--remote> option to specify the remote guestfish process to "
23947 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
23948 msgstr ""
23949
23950 # type: =item
23951 #. type: =item
23952 #: ../fish/guestfish.pod:1025
23953 msgid "HEXEDITOR"
23954 msgstr ""
23955
23956 # type: textblock
23957 #. type: textblock
23958 #: ../fish/guestfish.pod:1027
23959 msgid ""
23960 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
23961 "not specified, the external L<hexedit(1)> program is used."
23962 msgstr ""
23963
23964 # type: =item
23965 #. type: =item
23966 #: ../fish/guestfish.pod:1031
23967 msgid "HOME"
23968 msgstr ""
23969
23970 # type: textblock
23971 #. type: textblock
23972 #: ../fish/guestfish.pod:1033
23973 msgid ""
23974 "If compiled with GNU readline support, various files in the home directory "
23975 "can be used.  See L</FILES>."
23976 msgstr ""
23977
23978 # type: textblock
23979 #. type: textblock
23980 #: ../fish/guestfish.pod:1042
23981 msgid ""
23982 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
23983 "effect as using the B<-v> option."
23984 msgstr ""
23985
23986 # type: textblock
23987 #. type: textblock
23988 #: ../fish/guestfish.pod:1054
23989 msgid ""
23990 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
23991 "the discussion of paths in L<guestfs(3)>."
23992 msgstr ""
23993
23994 # type: textblock
23995 #. type: textblock
23996 #: ../fish/guestfish.pod:1065
23997 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
23998 msgstr ""
23999
24000 # type: =item
24001 #. type: =item
24002 #: ../fish/guestfish.pod:1067
24003 msgid "PAGER"
24004 msgstr ""
24005
24006 # type: textblock
24007 #. type: textblock
24008 #: ../fish/guestfish.pod:1069
24009 msgid ""
24010 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
24011 "C<more>."
24012 msgstr ""
24013
24014 # type: =head1
24015 #. type: =head1
24016 #: ../fish/guestfish.pod:1085 ../fuse/guestmount.pod:252
24017 msgid "FILES"
24018 msgstr ""
24019
24020 #. type: =item
24021 #: ../fish/guestfish.pod:1089 ../fuse/guestmount.pod:256
24022 msgid "$HOME/.libguestfs-tools.rc"
24023 msgstr ""
24024
24025 #. type: =item
24026 #: ../fish/guestfish.pod:1091 ../fuse/guestmount.pod:258
24027 msgid "/etc/libguestfs-tools.conf"
24028 msgstr ""
24029
24030 #. type: textblock
24031 #: ../fish/guestfish.pod:1093 ../fuse/guestmount.pod:260
24032 msgid ""
24033 "This configuration file controls the default read-only or read-write mode "
24034 "(I<--ro> or I<--rw>)."
24035 msgstr ""
24036
24037 #. type: textblock
24038 #: ../fish/guestfish.pod:1096
24039 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
24040 msgstr ""
24041
24042 # type: =item
24043 #. type: =item
24044 #: ../fish/guestfish.pod:1098
24045 msgid "$HOME/.guestfish"
24046 msgstr ""
24047
24048 # type: textblock
24049 #. type: textblock
24050 #: ../fish/guestfish.pod:1100
24051 msgid ""
24052 "If compiled with GNU readline support, then the command history is saved in "
24053 "this file."
24054 msgstr ""
24055
24056 # type: =item
24057 #. type: =item
24058 #: ../fish/guestfish.pod:1103
24059 msgid "$HOME/.inputrc"
24060 msgstr ""
24061
24062 # type: =item
24063 #. type: =item
24064 #: ../fish/guestfish.pod:1105
24065 msgid "/etc/inputrc"
24066 msgstr ""
24067
24068 # type: textblock
24069 #. type: textblock
24070 #: ../fish/guestfish.pod:1107
24071 msgid ""
24072 "If compiled with GNU readline support, then these files can be used to "
24073 "configure readline.  For further information, please see L<readline(3)/"
24074 "INITIALIZATION FILE>."
24075 msgstr ""
24076
24077 # type: textblock
24078 #. type: textblock
24079 #: ../fish/guestfish.pod:1111
24080 msgid "To write rules which only apply to guestfish, use:"
24081 msgstr ""
24082
24083 # type: verbatim
24084 #. type: verbatim
24085 #: ../fish/guestfish.pod:1113
24086 #, no-wrap
24087 msgid ""
24088 " $if guestfish\n"
24089 " ...\n"
24090 " $endif\n"
24091 "\n"
24092 msgstr ""
24093
24094 # type: textblock
24095 #. type: textblock
24096 #: ../fish/guestfish.pod:1117
24097 msgid ""
24098 "Variables that you can set in inputrc that change the behaviour of guestfish "
24099 "in useful ways include:"
24100 msgstr ""
24101
24102 # type: =item
24103 #. type: =item
24104 #: ../fish/guestfish.pod:1122
24105 msgid "completion-ignore-case (default: on)"
24106 msgstr ""
24107
24108 # type: textblock
24109 #. type: textblock
24110 #: ../fish/guestfish.pod:1124
24111 msgid ""
24112 "By default, guestfish will ignore case when tab-completing paths on the "
24113 "disk.  Use:"
24114 msgstr ""
24115
24116 # type: verbatim
24117 #. type: verbatim
24118 #: ../fish/guestfish.pod:1127
24119 #, no-wrap
24120 msgid ""
24121 " set completion-ignore-case off\n"
24122 "\n"
24123 msgstr ""
24124
24125 # type: textblock
24126 #. type: textblock
24127 #: ../fish/guestfish.pod:1129
24128 msgid "to make guestfish case sensitive."
24129 msgstr ""
24130
24131 # type: =item
24132 #. type: =item
24133 #: ../fish/guestfish.pod:1133
24134 msgid "test1.img"
24135 msgstr ""
24136
24137 # type: =item
24138 #. type: =item
24139 #: ../fish/guestfish.pod:1135
24140 msgid "test2.img (etc)"
24141 msgstr ""
24142
24143 # type: textblock
24144 #. type: textblock
24145 #: ../fish/guestfish.pod:1137
24146 msgid ""
24147 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
24148 "will be created in the file C<test1.img> in the current directory.  The "
24149 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
24150 "the same name will be overwritten."
24151 msgstr ""
24152
24153 #. type: textblock
24154 #: ../fish/guestfish.pod:1146
24155 msgid ""
24156 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
24157 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
24158 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
24159 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
24160 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
24161 ">, L<hexedit(1)>."
24162 msgstr ""
24163
24164 # type: textblock
24165 #. type: textblock
24166 #: ../fish/guestfish.pod:1176 ../test-tool/libguestfs-test-tool.pod:102
24167 #: ../fuse/guestmount.pod:287 ../tools/virt-edit.pl:518
24168 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
24169 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
24170 #: ../tools/virt-list-partitions.pl:277
24171 msgid ""
24172 "This program is free software; you can redistribute it and/or modify it "
24173 "under the terms of the GNU General Public License as published by the Free "
24174 "Software Foundation; either version 2 of the License, or (at your option) "
24175 "any later version."
24176 msgstr ""
24177
24178 # type: textblock
24179 #. type: textblock
24180 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:107
24181 #: ../fuse/guestmount.pod:292 ../tools/virt-edit.pl:523
24182 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
24183 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
24184 #: ../tools/virt-list-partitions.pl:282
24185 msgid ""
24186 "This program is distributed in the hope that it will be useful, but WITHOUT "
24187 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
24188 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
24189 "more details."
24190 msgstr ""
24191
24192 # type: textblock
24193 #. type: textblock
24194 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:112
24195 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:528
24196 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
24197 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
24198 #: ../tools/virt-list-partitions.pl:287
24199 msgid ""
24200 "You should have received a copy of the GNU General Public License along with "
24201 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
24202 "Ave, Cambridge, MA 02139, USA."
24203 msgstr ""
24204
24205 # type: =head2
24206 #. type: =head2
24207 #: ../fish/guestfish-actions.pod:1
24208 msgid "add-cdrom"
24209 msgstr ""
24210
24211 # type: verbatim
24212 #. type: verbatim
24213 #: ../fish/guestfish-actions.pod:3
24214 #, no-wrap
24215 msgid ""
24216 " add-cdrom filename\n"
24217 "\n"
24218 msgstr ""
24219
24220 # type: textblock
24221 #. type: textblock
24222 #: ../fish/guestfish-actions.pod:15
24223 msgid ""
24224 "This call checks for the existence of C<filename>.  This stops you from "
24225 "specifying other types of drive which are supported by qemu such as C<nbd:> "
24226 "and C<http:> URLs.  To specify those, use the general L</config> call "
24227 "instead."
24228 msgstr ""
24229
24230 # type: textblock
24231 #. type: textblock
24232 #: ../fish/guestfish-actions.pod:22
24233 msgid ""
24234 "If you just want to add an ISO file (often you use this as an efficient way "
24235 "to transfer large files into the guest), then you should probably use L</add-"
24236 "drive-ro> instead."
24237 msgstr ""
24238
24239 # type: =head2
24240 #. type: =head2
24241 #: ../fish/guestfish-actions.pod:35
24242 msgid "add-domain"
24243 msgstr ""
24244
24245 # type: =head2
24246 #. type: =head2
24247 #: ../fish/guestfish-actions.pod:37
24248 msgid "domain"
24249 msgstr ""
24250
24251 #. type: verbatim
24252 #: ../fish/guestfish-actions.pod:39
24253 #, no-wrap
24254 msgid ""
24255 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
24256 "\n"
24257 msgstr ""
24258
24259 # type: textblock
24260 #. type: textblock
24261 #: ../fish/guestfish-actions.pod:41
24262 msgid ""
24263 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
24264 "It works by connecting to libvirt, requesting the domain and domain XML from "
24265 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
24266 msgstr ""
24267
24268 # type: textblock
24269 #. type: textblock
24270 #: ../fish/guestfish-actions.pod:71
24271 msgid ""
24272 "The other optional parameters are passed directly through to L</add-drive-"
24273 "opts>."
24274 msgstr ""
24275
24276 # type: textblock
24277 #. type: textblock
24278 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
24279 #: ../fish/guestfish-actions.pod:3039
24280 msgid ""
24281 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
24282 msgstr ""
24283
24284 # type: =head2
24285 #. type: =head2
24286 #: ../fish/guestfish-actions.pod:76
24287 msgid "add-drive"
24288 msgstr ""
24289
24290 # type: verbatim
24291 #. type: verbatim
24292 #: ../fish/guestfish-actions.pod:78
24293 #, no-wrap
24294 msgid ""
24295 " add-drive filename\n"
24296 "\n"
24297 msgstr ""
24298
24299 # type: textblock
24300 #. type: textblock
24301 #: ../fish/guestfish-actions.pod:80
24302 msgid ""
24303 "This function is the equivalent of calling L</add-drive-opts> with no "
24304 "optional parameters, so the disk is added writable, with the format being "
24305 "detected automatically."
24306 msgstr ""
24307
24308 # type: textblock
24309 #. type: textblock
24310 #: ../fish/guestfish-actions.pod:84
24311 msgid ""
24312 "Automatic detection of the format opens you up to a potential security hole "
24313 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
24314 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
24315 "you should think about replacing calls to this function with calls to L</add-"
24316 "drive-opts>, and specifying the format."
24317 msgstr ""
24318
24319 # type: =head2
24320 #. type: =head2
24321 #: ../fish/guestfish-actions.pod:91
24322 msgid "add-drive-opts"
24323 msgstr ""
24324
24325 # type: =head2
24326 #. type: =head2
24327 #: ../fish/guestfish-actions.pod:93
24328 msgid "add"
24329 msgstr ""
24330
24331 # type: verbatim
24332 #. type: verbatim
24333 #: ../fish/guestfish-actions.pod:95
24334 #, no-wrap
24335 msgid ""
24336 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
24337 "\n"
24338 msgstr ""
24339
24340 # type: textblock
24341 #. type: textblock
24342 #: ../fish/guestfish-actions.pod:122
24343 msgid ""
24344 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
24345 "add-drive-ro>) then the format is automatically detected.  Possible formats "
24346 "include C<raw> and C<qcow2>."
24347 msgstr ""
24348
24349 # type: textblock
24350 #. type: textblock
24351 #: ../fish/guestfish-actions.pod:133
24352 msgid ""
24353 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
24354 "add-drive-with-if> call (q.v.)"
24355 msgstr ""
24356
24357 # type: =head2
24358 #. type: =head2
24359 #: ../fish/guestfish-actions.pod:140
24360 msgid "add-drive-ro"
24361 msgstr ""
24362
24363 # type: =head2
24364 #. type: =head2
24365 #: ../fish/guestfish-actions.pod:142
24366 msgid "add-ro"
24367 msgstr ""
24368
24369 # type: verbatim
24370 #. type: verbatim
24371 #: ../fish/guestfish-actions.pod:144
24372 #, no-wrap
24373 msgid ""
24374 " add-drive-ro filename\n"
24375 "\n"
24376 msgstr ""
24377
24378 # type: textblock
24379 #. type: textblock
24380 #: ../fish/guestfish-actions.pod:146
24381 msgid ""
24382 "This function is the equivalent of calling L</add-drive-opts> with the "
24383 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
24384 "is added read-only, with the format being detected automatically."
24385 msgstr ""
24386
24387 # type: =head2
24388 #. type: =head2
24389 #: ../fish/guestfish-actions.pod:151
24390 msgid "add-drive-ro-with-if"
24391 msgstr ""
24392
24393 # type: verbatim
24394 #. type: verbatim
24395 #: ../fish/guestfish-actions.pod:153
24396 #, no-wrap
24397 msgid ""
24398 " add-drive-ro-with-if filename iface\n"
24399 "\n"
24400 msgstr ""
24401
24402 # type: textblock
24403 #. type: textblock
24404 #: ../fish/guestfish-actions.pod:155
24405 msgid ""
24406 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
24407 "interface emulation to use at run time."
24408 msgstr ""
24409
24410 # type: =head2
24411 #. type: =head2
24412 #: ../fish/guestfish-actions.pod:165
24413 msgid "add-drive-with-if"
24414 msgstr ""
24415
24416 # type: verbatim
24417 #. type: verbatim
24418 #: ../fish/guestfish-actions.pod:167
24419 #, no-wrap
24420 msgid ""
24421 " add-drive-with-if filename iface\n"
24422 "\n"
24423 msgstr ""
24424
24425 # type: textblock
24426 #. type: textblock
24427 #: ../fish/guestfish-actions.pod:169
24428 msgid ""
24429 "This is the same as L</add-drive> but it allows you to specify the QEMU "
24430 "interface emulation to use at run time."
24431 msgstr ""
24432
24433 # type: =head2
24434 #. type: =head2
24435 #: ../fish/guestfish-actions.pod:179
24436 msgid "aug-clear"
24437 msgstr ""
24438
24439 # type: verbatim
24440 #. type: verbatim
24441 #: ../fish/guestfish-actions.pod:181
24442 #, no-wrap
24443 msgid ""
24444 " aug-clear augpath\n"
24445 "\n"
24446 msgstr ""
24447
24448 # type: =head2
24449 #. type: =head2
24450 #: ../fish/guestfish-actions.pod:186
24451 msgid "aug-close"
24452 msgstr ""
24453
24454 # type: verbatim
24455 #. type: verbatim
24456 #: ../fish/guestfish-actions.pod:188
24457 #, no-wrap
24458 msgid ""
24459 " aug-close\n"
24460 "\n"
24461 msgstr ""
24462
24463 # type: textblock
24464 #. type: textblock
24465 #: ../fish/guestfish-actions.pod:190
24466 msgid ""
24467 "Close the current Augeas handle and free up any resources used by it.  After "
24468 "calling this, you have to call L</aug-init> again before you can use any "
24469 "other Augeas functions."
24470 msgstr ""
24471
24472 # type: =head2
24473 #. type: =head2
24474 #: ../fish/guestfish-actions.pod:195
24475 msgid "aug-defnode"
24476 msgstr ""
24477
24478 # type: verbatim
24479 #. type: verbatim
24480 #: ../fish/guestfish-actions.pod:197
24481 #, no-wrap
24482 msgid ""
24483 " aug-defnode name expr val\n"
24484 "\n"
24485 msgstr ""
24486
24487 # type: textblock
24488 #. type: textblock
24489 #: ../fish/guestfish-actions.pod:202
24490 msgid ""
24491 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
24492 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
24493 "containing that single node."
24494 msgstr ""
24495
24496 # type: =head2
24497 #. type: =head2
24498 #: ../fish/guestfish-actions.pod:210
24499 msgid "aug-defvar"
24500 msgstr ""
24501
24502 # type: verbatim
24503 #. type: verbatim
24504 #: ../fish/guestfish-actions.pod:212
24505 #, no-wrap
24506 msgid ""
24507 " aug-defvar name expr\n"
24508 "\n"
24509 msgstr ""
24510
24511 # type: =head2
24512 #. type: =head2
24513 #: ../fish/guestfish-actions.pod:221
24514 msgid "aug-get"
24515 msgstr ""
24516
24517 # type: verbatim
24518 #. type: verbatim
24519 #: ../fish/guestfish-actions.pod:223
24520 #, no-wrap
24521 msgid ""
24522 " aug-get augpath\n"
24523 "\n"
24524 msgstr ""
24525
24526 # type: =head2
24527 #. type: =head2
24528 #: ../fish/guestfish-actions.pod:228
24529 msgid "aug-init"
24530 msgstr ""
24531
24532 # type: verbatim
24533 #. type: verbatim
24534 #: ../fish/guestfish-actions.pod:230
24535 #, no-wrap
24536 msgid ""
24537 " aug-init root flags\n"
24538 "\n"
24539 msgstr ""
24540
24541 # type: textblock
24542 #. type: textblock
24543 #: ../fish/guestfish-actions.pod:236
24544 msgid "You must call this before using any other L</aug-*> commands."
24545 msgstr ""
24546
24547 # type: textblock
24548 #. type: textblock
24549 #: ../fish/guestfish-actions.pod:271
24550 msgid "Do not load the tree in L</aug-init>."
24551 msgstr ""
24552
24553 # type: textblock
24554 #. type: textblock
24555 #: ../fish/guestfish-actions.pod:275
24556 msgid "To close the handle, you can call L</aug-close>."
24557 msgstr ""
24558
24559 # type: =head2
24560 #. type: =head2
24561 #: ../fish/guestfish-actions.pod:279
24562 msgid "aug-insert"
24563 msgstr ""
24564
24565 # type: verbatim
24566 #. type: verbatim
24567 #: ../fish/guestfish-actions.pod:281
24568 #, no-wrap
24569 msgid ""
24570 " aug-insert augpath label true|false\n"
24571 "\n"
24572 msgstr ""
24573
24574 # type: =head2
24575 #. type: =head2
24576 #: ../fish/guestfish-actions.pod:291
24577 msgid "aug-load"
24578 msgstr ""
24579
24580 # type: verbatim
24581 #. type: verbatim
24582 #: ../fish/guestfish-actions.pod:293
24583 #, no-wrap
24584 msgid ""
24585 " aug-load\n"
24586 "\n"
24587 msgstr ""
24588
24589 # type: =head2
24590 #. type: =head2
24591 #: ../fish/guestfish-actions.pod:300
24592 msgid "aug-ls"
24593 msgstr ""
24594
24595 # type: verbatim
24596 #. type: verbatim
24597 #: ../fish/guestfish-actions.pod:302
24598 #, no-wrap
24599 msgid ""
24600 " aug-ls augpath\n"
24601 "\n"
24602 msgstr ""
24603
24604 # type: textblock
24605 #. type: textblock
24606 #: ../fish/guestfish-actions.pod:304
24607 msgid ""
24608 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
24609 "resulting nodes into alphabetical order."
24610 msgstr ""
24611
24612 # type: =head2
24613 #. type: =head2
24614 #: ../fish/guestfish-actions.pod:307
24615 msgid "aug-match"
24616 msgstr ""
24617
24618 # type: verbatim
24619 #. type: verbatim
24620 #: ../fish/guestfish-actions.pod:309
24621 #, no-wrap
24622 msgid ""
24623 " aug-match augpath\n"
24624 "\n"
24625 msgstr ""
24626
24627 # type: =head2
24628 #. type: =head2
24629 #: ../fish/guestfish-actions.pod:315
24630 msgid "aug-mv"
24631 msgstr ""
24632
24633 # type: verbatim
24634 #. type: verbatim
24635 #: ../fish/guestfish-actions.pod:317
24636 #, no-wrap
24637 msgid ""
24638 " aug-mv src dest\n"
24639 "\n"
24640 msgstr ""
24641
24642 # type: =head2
24643 #. type: =head2
24644 #: ../fish/guestfish-actions.pod:322
24645 msgid "aug-rm"
24646 msgstr ""
24647
24648 # type: verbatim
24649 #. type: verbatim
24650 #: ../fish/guestfish-actions.pod:324
24651 #, no-wrap
24652 msgid ""
24653 " aug-rm augpath\n"
24654 "\n"
24655 msgstr ""
24656
24657 # type: =head2
24658 #. type: =head2
24659 #: ../fish/guestfish-actions.pod:330
24660 msgid "aug-save"
24661 msgstr ""
24662
24663 # type: verbatim
24664 #. type: verbatim
24665 #: ../fish/guestfish-actions.pod:332
24666 #, no-wrap
24667 msgid ""
24668 " aug-save\n"
24669 "\n"
24670 msgstr ""
24671
24672 # type: textblock
24673 #. type: textblock
24674 #: ../fish/guestfish-actions.pod:336
24675 msgid ""
24676 "The flags which were passed to L</aug-init> affect exactly how files are "
24677 "saved."
24678 msgstr ""
24679
24680 # type: =head2
24681 #. type: =head2
24682 #: ../fish/guestfish-actions.pod:339
24683 msgid "aug-set"
24684 msgstr ""
24685
24686 # type: verbatim
24687 #. type: verbatim
24688 #: ../fish/guestfish-actions.pod:341
24689 #, no-wrap
24690 msgid ""
24691 " aug-set augpath val\n"
24692 "\n"
24693 msgstr ""
24694
24695 # type: textblock
24696 #. type: textblock
24697 #: ../fish/guestfish-actions.pod:345
24698 msgid ""
24699 "In the Augeas API, it is possible to clear a node by setting the value to "
24700 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
24701 "this call.  Instead you must use the L</aug-clear> call."
24702 msgstr ""
24703
24704 # type: =head2
24705 #. type: =head2
24706 #: ../fish/guestfish-actions.pod:350
24707 msgid "available"
24708 msgstr ""
24709
24710 # type: verbatim
24711 #. type: verbatim
24712 #: ../fish/guestfish-actions.pod:352
24713 #, no-wrap
24714 msgid ""
24715 " available 'groups ...'\n"
24716 "\n"
24717 msgstr ""
24718
24719 # type: textblock
24720 #. type: textblock
24721 #: ../fish/guestfish-actions.pod:358
24722 msgid ""
24723 "The libguestfs groups, and the functions that those groups correspond to, "
24724 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
24725 "runtime by calling L</available-all-groups>."
24726 msgstr ""
24727
24728 # type: textblock
24729 #. type: textblock
24730 #: ../fish/guestfish-actions.pod:382
24731 msgid "You must call L</launch> before calling this function."
24732 msgstr ""
24733
24734 # type: textblock
24735 #. type: textblock
24736 #: ../fish/guestfish-actions.pod:404
24737 msgid ""
24738 "This call was added in version C<1.0.80>.  In previous versions of "
24739 "libguestfs all you could do would be to speculatively execute a command to "
24740 "find out if the daemon implemented it.  See also L</version>."
24741 msgstr ""
24742
24743 # type: =head2
24744 #. type: =head2
24745 #: ../fish/guestfish-actions.pod:411
24746 msgid "available-all-groups"
24747 msgstr ""
24748
24749 # type: verbatim
24750 #. type: verbatim
24751 #: ../fish/guestfish-actions.pod:413
24752 #, no-wrap
24753 msgid ""
24754 " available-all-groups\n"
24755 "\n"
24756 msgstr ""
24757
24758 # type: textblock
24759 #. type: textblock
24760 #: ../fish/guestfish-actions.pod:415
24761 msgid ""
24762 "This command returns a list of all optional groups that this daemon knows "
24763 "about.  Note this returns both supported and unsupported groups.  To find "
24764 "out which ones the daemon can actually support you have to call L</"
24765 "available> on each member of the returned list."
24766 msgstr ""
24767
24768 # type: textblock
24769 #. type: textblock
24770 #: ../fish/guestfish-actions.pod:421
24771 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
24772 msgstr ""
24773
24774 # type: =head2
24775 #. type: =head2
24776 #: ../fish/guestfish-actions.pod:423
24777 msgid "base64-in"
24778 msgstr ""
24779
24780 # type: verbatim
24781 #. type: verbatim
24782 #: ../fish/guestfish-actions.pod:425
24783 #, no-wrap
24784 msgid ""
24785 " base64-in (base64file|-) filename\n"
24786 "\n"
24787 msgstr ""
24788
24789 # type: textblock
24790 #. type: textblock
24791 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
24792 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
24793 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1228
24794 #: ../fish/guestfish-actions.pod:4437 ../fish/guestfish-actions.pod:4449
24795 #: ../fish/guestfish-actions.pod:4460 ../fish/guestfish-actions.pod:4471
24796 #: ../fish/guestfish-actions.pod:4523 ../fish/guestfish-actions.pod:4532
24797 #: ../fish/guestfish-actions.pod:4586 ../fish/guestfish-actions.pod:4609
24798 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
24799 msgstr ""
24800
24801 # type: =head2
24802 #. type: =head2
24803 #: ../fish/guestfish-actions.pod:432
24804 msgid "base64-out"
24805 msgstr ""
24806
24807 # type: verbatim
24808 #. type: verbatim
24809 #: ../fish/guestfish-actions.pod:434
24810 #, no-wrap
24811 msgid ""
24812 " base64-out filename (base64file|-)\n"
24813 "\n"
24814 msgstr ""
24815
24816 # type: =head2
24817 #. type: =head2
24818 #: ../fish/guestfish-actions.pod:441
24819 msgid "blockdev-flushbufs"
24820 msgstr ""
24821
24822 # type: verbatim
24823 #. type: verbatim
24824 #: ../fish/guestfish-actions.pod:443
24825 #, no-wrap
24826 msgid ""
24827 " blockdev-flushbufs device\n"
24828 "\n"
24829 msgstr ""
24830
24831 # type: =head2
24832 #. type: =head2
24833 #: ../fish/guestfish-actions.pod:450
24834 msgid "blockdev-getbsz"
24835 msgstr ""
24836
24837 # type: verbatim
24838 #. type: verbatim
24839 #: ../fish/guestfish-actions.pod:452
24840 #, no-wrap
24841 msgid ""
24842 " blockdev-getbsz device\n"
24843 "\n"
24844 msgstr ""
24845
24846 # type: =head2
24847 #. type: =head2
24848 #: ../fish/guestfish-actions.pod:461
24849 msgid "blockdev-getro"
24850 msgstr ""
24851
24852 # type: verbatim
24853 #. type: verbatim
24854 #: ../fish/guestfish-actions.pod:463
24855 #, no-wrap
24856 msgid ""
24857 " blockdev-getro device\n"
24858 "\n"
24859 msgstr ""
24860
24861 # type: =head2
24862 #. type: =head2
24863 #: ../fish/guestfish-actions.pod:470
24864 msgid "blockdev-getsize64"
24865 msgstr ""
24866
24867 # type: verbatim
24868 #. type: verbatim
24869 #: ../fish/guestfish-actions.pod:472
24870 #, no-wrap
24871 msgid ""
24872 " blockdev-getsize64 device\n"
24873 "\n"
24874 msgstr ""
24875
24876 # type: textblock
24877 #. type: textblock
24878 #: ../fish/guestfish-actions.pod:476
24879 msgid "See also L</blockdev-getsz>."
24880 msgstr ""
24881
24882 # type: =head2
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:480
24885 msgid "blockdev-getss"
24886 msgstr ""
24887
24888 # type: verbatim
24889 #. type: verbatim
24890 #: ../fish/guestfish-actions.pod:482
24891 #, no-wrap
24892 msgid ""
24893 " blockdev-getss device\n"
24894 "\n"
24895 msgstr ""
24896
24897 # type: textblock
24898 #. type: textblock
24899 #: ../fish/guestfish-actions.pod:487
24900 msgid ""
24901 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
24902 msgstr ""
24903
24904 # type: =head2
24905 #. type: =head2
24906 #: ../fish/guestfish-actions.pod:492
24907 msgid "blockdev-getsz"
24908 msgstr ""
24909
24910 # type: verbatim
24911 #. type: verbatim
24912 #: ../fish/guestfish-actions.pod:494
24913 #, no-wrap
24914 msgid ""
24915 " blockdev-getsz device\n"
24916 "\n"
24917 msgstr ""
24918
24919 # type: textblock
24920 #. type: textblock
24921 #: ../fish/guestfish-actions.pod:499
24922 msgid ""
24923 "See also L</blockdev-getss> for the real sector size of the device, and L</"
24924 "blockdev-getsize64> for the more useful I<size in bytes>."
24925 msgstr ""
24926
24927 # type: =head2
24928 #. type: =head2
24929 #: ../fish/guestfish-actions.pod:505
24930 msgid "blockdev-rereadpt"
24931 msgstr ""
24932
24933 # type: verbatim
24934 #. type: verbatim
24935 #: ../fish/guestfish-actions.pod:507
24936 #, no-wrap
24937 msgid ""
24938 " blockdev-rereadpt device\n"
24939 "\n"
24940 msgstr ""
24941
24942 # type: =head2
24943 #. type: =head2
24944 #: ../fish/guestfish-actions.pod:513
24945 msgid "blockdev-setbsz"
24946 msgstr ""
24947
24948 # type: verbatim
24949 #. type: verbatim
24950 #: ../fish/guestfish-actions.pod:515
24951 #, no-wrap
24952 msgid ""
24953 " blockdev-setbsz device blocksize\n"
24954 "\n"
24955 msgstr ""
24956
24957 # type: =head2
24958 #. type: =head2
24959 #: ../fish/guestfish-actions.pod:524
24960 msgid "blockdev-setro"
24961 msgstr ""
24962
24963 # type: verbatim
24964 #. type: verbatim
24965 #: ../fish/guestfish-actions.pod:526
24966 #, no-wrap
24967 msgid ""
24968 " blockdev-setro device\n"
24969 "\n"
24970 msgstr ""
24971
24972 # type: =head2
24973 #. type: =head2
24974 #: ../fish/guestfish-actions.pod:532
24975 msgid "blockdev-setrw"
24976 msgstr ""
24977
24978 # type: verbatim
24979 #. type: verbatim
24980 #: ../fish/guestfish-actions.pod:534
24981 #, no-wrap
24982 msgid ""
24983 " blockdev-setrw device\n"
24984 "\n"
24985 msgstr ""
24986
24987 # type: =head2
24988 #. type: =head2
24989 #: ../fish/guestfish-actions.pod:540
24990 msgid "case-sensitive-path"
24991 msgstr ""
24992
24993 # type: verbatim
24994 #. type: verbatim
24995 #: ../fish/guestfish-actions.pod:542
24996 #, no-wrap
24997 msgid ""
24998 " case-sensitive-path path\n"
24999 "\n"
25000 msgstr ""
25001
25002 # type: textblock
25003 #. type: textblock
25004 #: ../fish/guestfish-actions.pod:566
25005 msgid ""
25006 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
25007 "WINDOWS/system32\"> (the exact return value would depend on details of how "
25008 "the directories were originally created under Windows)."
25009 msgstr ""
25010
25011 # type: textblock
25012 #. type: textblock
25013 #: ../fish/guestfish-actions.pod:574
25014 msgid "See also L</realpath>."
25015 msgstr ""
25016
25017 # type: =head2
25018 #. type: =head2
25019 #: ../fish/guestfish-actions.pod:576
25020 msgid "cat"
25021 msgstr ""
25022
25023 # type: verbatim
25024 #. type: verbatim
25025 #: ../fish/guestfish-actions.pod:578
25026 #, no-wrap
25027 msgid ""
25028 " cat path\n"
25029 "\n"
25030 msgstr ""
25031
25032 # type: textblock
25033 #. type: textblock
25034 #: ../fish/guestfish-actions.pod:582
25035 msgid ""
25036 "Note that this function cannot correctly handle binary files (specifically, "
25037 "files containing C<\\0> character which is treated as end of string).  For "
25038 "those you need to use the L</read-file> or L</download> functions which have "
25039 "a more complex interface."
25040 msgstr ""
25041
25042 # type: =head2
25043 #. type: =head2
25044 #: ../fish/guestfish-actions.pod:590
25045 msgid "checksum"
25046 msgstr ""
25047
25048 # type: verbatim
25049 #. type: verbatim
25050 #: ../fish/guestfish-actions.pod:592
25051 #, no-wrap
25052 msgid ""
25053 " checksum csumtype path\n"
25054 "\n"
25055 msgstr ""
25056
25057 # type: textblock
25058 #. type: textblock
25059 #: ../fish/guestfish-actions.pod:635
25060 msgid "To get the checksum for a device, use L</checksum-device>."
25061 msgstr ""
25062
25063 # type: textblock
25064 #. type: textblock
25065 #: ../fish/guestfish-actions.pod:637
25066 msgid "To get the checksums for many files, use L</checksums-out>."
25067 msgstr ""
25068
25069 # type: =head2
25070 #. type: =head2
25071 #: ../fish/guestfish-actions.pod:639
25072 msgid "checksum-device"
25073 msgstr ""
25074
25075 # type: verbatim
25076 #. type: verbatim
25077 #: ../fish/guestfish-actions.pod:641
25078 #, no-wrap
25079 msgid ""
25080 " checksum-device csumtype device\n"
25081 "\n"
25082 msgstr ""
25083
25084 # type: textblock
25085 #. type: textblock
25086 #: ../fish/guestfish-actions.pod:643
25087 msgid ""
25088 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
25089 "device named C<device>.  For the types of checksums supported see the L</"
25090 "checksum> command."
25091 msgstr ""
25092
25093 # type: =head2
25094 #. type: =head2
25095 #: ../fish/guestfish-actions.pod:647
25096 msgid "checksums-out"
25097 msgstr ""
25098
25099 # type: verbatim
25100 #. type: verbatim
25101 #: ../fish/guestfish-actions.pod:649
25102 #, no-wrap
25103 msgid ""
25104 " checksums-out csumtype directory (sumsfile|-)\n"
25105 "\n"
25106 msgstr ""
25107
25108 # type: =head2
25109 #. type: =head2
25110 #: ../fish/guestfish-actions.pod:665
25111 msgid "chmod"
25112 msgstr ""
25113
25114 # type: verbatim
25115 #. type: verbatim
25116 #: ../fish/guestfish-actions.pod:667
25117 #, no-wrap
25118 msgid ""
25119 " chmod mode path\n"
25120 "\n"
25121 msgstr ""
25122
25123 # type: =head2
25124 #. type: =head2
25125 #: ../fish/guestfish-actions.pod:678
25126 msgid "chown"
25127 msgstr ""
25128
25129 # type: verbatim
25130 #. type: verbatim
25131 #: ../fish/guestfish-actions.pod:680
25132 #, no-wrap
25133 msgid ""
25134 " chown owner group path\n"
25135 "\n"
25136 msgstr ""
25137
25138 # type: =head2
25139 #. type: =head2
25140 #: ../fish/guestfish-actions.pod:688
25141 msgid "command"
25142 msgstr ""
25143
25144 # type: verbatim
25145 #. type: verbatim
25146 #: ../fish/guestfish-actions.pod:690
25147 #, no-wrap
25148 msgid ""
25149 " command 'arguments ...'\n"
25150 "\n"
25151 msgstr ""
25152
25153 # type: textblock
25154 #. type: textblock
25155 #: ../fish/guestfish-actions.pod:697
25156 msgid ""
25157 "The single parameter is an argv-style list of arguments.  The first element "
25158 "is the name of the program to run.  Subsequent elements are parameters.  The "
25159 "list must be non-empty (ie. must contain a program name).  Note that the "
25160 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
25161 msgstr ""
25162
25163 # type: =head2
25164 #. type: =head2
25165 #: ../fish/guestfish-actions.pod:725
25166 msgid "command-lines"
25167 msgstr ""
25168
25169 # type: verbatim
25170 #. type: verbatim
25171 #: ../fish/guestfish-actions.pod:727
25172 #, no-wrap
25173 msgid ""
25174 " command-lines 'arguments ...'\n"
25175 "\n"
25176 msgstr ""
25177
25178 # type: textblock
25179 #. type: textblock
25180 #: ../fish/guestfish-actions.pod:729
25181 msgid ""
25182 "This is the same as L</command>, but splits the result into a list of lines."
25183 msgstr ""
25184
25185 # type: textblock
25186 #. type: textblock
25187 #: ../fish/guestfish-actions.pod:732
25188 msgid "See also: L</sh-lines>"
25189 msgstr ""
25190
25191 # type: =head2
25192 #. type: =head2
25193 #: ../fish/guestfish-actions.pod:737
25194 msgid "config"
25195 msgstr ""
25196
25197 # type: verbatim
25198 #. type: verbatim
25199 #: ../fish/guestfish-actions.pod:739
25200 #, no-wrap
25201 msgid ""
25202 " config qemuparam qemuvalue\n"
25203 "\n"
25204 msgstr ""
25205
25206 # type: =head2
25207 #. type: =head2
25208 #: ../fish/guestfish-actions.pod:750
25209 msgid "copy-size"
25210 msgstr ""
25211
25212 # type: verbatim
25213 #. type: verbatim
25214 #: ../fish/guestfish-actions.pod:752
25215 #, no-wrap
25216 msgid ""
25217 " copy-size src dest size\n"
25218 "\n"
25219 msgstr ""
25220
25221 # type: =head2
25222 #. type: =head2
25223 #: ../fish/guestfish-actions.pod:760
25224 msgid "cp"
25225 msgstr ""
25226
25227 # type: verbatim
25228 #. type: verbatim
25229 #: ../fish/guestfish-actions.pod:762
25230 #, no-wrap
25231 msgid ""
25232 " cp src dest\n"
25233 "\n"
25234 msgstr ""
25235
25236 # type: =head2
25237 #. type: =head2
25238 #: ../fish/guestfish-actions.pod:767
25239 msgid "cp-a"
25240 msgstr ""
25241
25242 # type: verbatim
25243 #. type: verbatim
25244 #: ../fish/guestfish-actions.pod:769
25245 #, no-wrap
25246 msgid ""
25247 " cp-a src dest\n"
25248 "\n"
25249 msgstr ""
25250
25251 # type: =head2
25252 #. type: =head2
25253 #: ../fish/guestfish-actions.pod:774
25254 msgid "dd"
25255 msgstr ""
25256
25257 # type: verbatim
25258 #. type: verbatim
25259 #: ../fish/guestfish-actions.pod:776
25260 #, no-wrap
25261 msgid ""
25262 " dd src dest\n"
25263 "\n"
25264 msgstr ""
25265
25266 # type: textblock
25267 #. type: textblock
25268 #: ../fish/guestfish-actions.pod:783
25269 msgid ""
25270 "If the destination is a device, it must be as large or larger than the "
25271 "source file or device, otherwise the copy will fail.  This command cannot do "
25272 "partial copies (see L</copy-size>)."
25273 msgstr ""
25274
25275 # type: =head2
25276 #. type: =head2
25277 #: ../fish/guestfish-actions.pod:787
25278 msgid "df"
25279 msgstr ""
25280
25281 # type: verbatim
25282 #. type: verbatim
25283 #: ../fish/guestfish-actions.pod:789
25284 #, no-wrap
25285 msgid ""
25286 " df\n"
25287 "\n"
25288 msgstr ""
25289
25290 # type: textblock
25291 #. type: textblock
25292 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
25293 msgid ""
25294 "This command is mostly useful for interactive sessions.  It is I<not> "
25295 "intended that you try to parse the output string.  Use L</statvfs> from "
25296 "programs."
25297 msgstr ""
25298
25299 # type: =head2
25300 #. type: =head2
25301 #: ../fish/guestfish-actions.pod:797
25302 msgid "df-h"
25303 msgstr ""
25304
25305 # type: verbatim
25306 #. type: verbatim
25307 #: ../fish/guestfish-actions.pod:799
25308 #, no-wrap
25309 msgid ""
25310 " df-h\n"
25311 "\n"
25312 msgstr ""
25313
25314 # type: =head2
25315 #. type: =head2
25316 #: ../fish/guestfish-actions.pod:808
25317 msgid "dmesg"
25318 msgstr ""
25319
25320 # type: verbatim
25321 #. type: verbatim
25322 #: ../fish/guestfish-actions.pod:810
25323 #, no-wrap
25324 msgid ""
25325 " dmesg\n"
25326 "\n"
25327 msgstr ""
25328
25329 # type: textblock
25330 #. type: textblock
25331 #: ../fish/guestfish-actions.pod:816
25332 msgid ""
25333 "Another way to get the same information is to enable verbose messages with "
25334 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
25335 "before running the program."
25336 msgstr ""
25337
25338 # type: =head2
25339 #. type: =head2
25340 #: ../fish/guestfish-actions.pod:821
25341 msgid "download"
25342 msgstr ""
25343
25344 # type: verbatim
25345 #. type: verbatim
25346 #: ../fish/guestfish-actions.pod:823
25347 #, no-wrap
25348 msgid ""
25349 " download remotefilename (filename|-)\n"
25350 "\n"
25351 msgstr ""
25352
25353 # type: textblock
25354 #. type: textblock
25355 #: ../fish/guestfish-actions.pod:830
25356 msgid "See also L</upload>, L</cat>."
25357 msgstr ""
25358
25359 # type: =head2
25360 #. type: =head2
25361 #: ../fish/guestfish-actions.pod:834
25362 msgid "download-offset"
25363 msgstr ""
25364
25365 # type: verbatim
25366 #. type: verbatim
25367 #: ../fish/guestfish-actions.pod:836
25368 #, no-wrap
25369 msgid ""
25370 " download-offset remotefilename (filename|-) offset size\n"
25371 "\n"
25372 msgstr ""
25373
25374 # type: textblock
25375 #. type: textblock
25376 #: ../fish/guestfish-actions.pod:844
25377 msgid ""
25378 "Note that there is no limit on the amount of data that can be downloaded "
25379 "with this call, unlike with L</pread>, and this call always reads the full "
25380 "amount unless an error occurs."
25381 msgstr ""
25382
25383 # type: textblock
25384 #. type: textblock
25385 #: ../fish/guestfish-actions.pod:849
25386 msgid "See also L</download>, L</pread>."
25387 msgstr ""
25388
25389 # type: =head2
25390 #. type: =head2
25391 #: ../fish/guestfish-actions.pod:853
25392 msgid "drop-caches"
25393 msgstr ""
25394
25395 # type: verbatim
25396 #. type: verbatim
25397 #: ../fish/guestfish-actions.pod:855
25398 #, no-wrap
25399 msgid ""
25400 " drop-caches whattodrop\n"
25401 "\n"
25402 msgstr ""
25403
25404 # type: =head2
25405 #. type: =head2
25406 #: ../fish/guestfish-actions.pod:867
25407 msgid "du"
25408 msgstr ""
25409
25410 # type: verbatim
25411 #. type: verbatim
25412 #: ../fish/guestfish-actions.pod:869
25413 #, no-wrap
25414 msgid ""
25415 " du path\n"
25416 "\n"
25417 msgstr ""
25418
25419 # type: =head2
25420 #. type: =head2
25421 #: ../fish/guestfish-actions.pod:881
25422 msgid "e2fsck-f"
25423 msgstr ""
25424
25425 # type: verbatim
25426 #. type: verbatim
25427 #: ../fish/guestfish-actions.pod:883
25428 #, no-wrap
25429 msgid ""
25430 " e2fsck-f device\n"
25431 "\n"
25432 msgstr ""
25433
25434 # type: textblock
25435 #. type: textblock
25436 #: ../fish/guestfish-actions.pod:889
25437 msgid ""
25438 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
25439 "should use L</fsck>."
25440 msgstr ""
25441
25442 # type: =head2
25443 #. type: =head2
25444 #: ../fish/guestfish-actions.pod:892
25445 msgid "echo-daemon"
25446 msgstr ""
25447
25448 # type: verbatim
25449 #. type: verbatim
25450 #: ../fish/guestfish-actions.pod:894
25451 #, no-wrap
25452 msgid ""
25453 " echo-daemon 'words ...'\n"
25454 "\n"
25455 msgstr ""
25456
25457 # type: textblock
25458 #. type: textblock
25459 #: ../fish/guestfish-actions.pod:901
25460 msgid "See also L</ping-daemon>."
25461 msgstr ""
25462
25463 # type: =head2
25464 #. type: =head2
25465 #: ../fish/guestfish-actions.pod:903
25466 msgid "egrep"
25467 msgstr ""
25468
25469 # type: verbatim
25470 #. type: verbatim
25471 #: ../fish/guestfish-actions.pod:905
25472 #, no-wrap
25473 msgid ""
25474 " egrep regex path\n"
25475 "\n"
25476 msgstr ""
25477
25478 # type: =head2
25479 #. type: =head2
25480 #: ../fish/guestfish-actions.pod:913
25481 msgid "egrepi"
25482 msgstr ""
25483
25484 # type: verbatim
25485 #. type: verbatim
25486 #: ../fish/guestfish-actions.pod:915
25487 #, no-wrap
25488 msgid ""
25489 " egrepi regex path\n"
25490 "\n"
25491 msgstr ""
25492
25493 # type: =head2
25494 #. type: =head2
25495 #: ../fish/guestfish-actions.pod:923
25496 msgid "equal"
25497 msgstr ""
25498
25499 # type: verbatim
25500 #. type: verbatim
25501 #: ../fish/guestfish-actions.pod:925
25502 #, no-wrap
25503 msgid ""
25504 " equal file1 file2\n"
25505 "\n"
25506 msgstr ""
25507
25508 # type: =head2
25509 #. type: =head2
25510 #: ../fish/guestfish-actions.pod:932
25511 msgid "exists"
25512 msgstr ""
25513
25514 # type: verbatim
25515 #. type: verbatim
25516 #: ../fish/guestfish-actions.pod:934
25517 #, no-wrap
25518 msgid ""
25519 " exists path\n"
25520 "\n"
25521 msgstr ""
25522
25523 # type: textblock
25524 #. type: textblock
25525 #: ../fish/guestfish-actions.pod:939
25526 msgid "See also L</is-file>, L</is-dir>, L</stat>."
25527 msgstr ""
25528
25529 # type: =head2
25530 #. type: =head2
25531 #: ../fish/guestfish-actions.pod:941
25532 msgid "fallocate"
25533 msgstr ""
25534
25535 # type: verbatim
25536 #. type: verbatim
25537 #: ../fish/guestfish-actions.pod:943
25538 #, no-wrap
25539 msgid ""
25540 " fallocate path len\n"
25541 "\n"
25542 msgstr ""
25543
25544 # type: =head2
25545 #. type: =head2
25546 #: ../fish/guestfish-actions.pod:960
25547 msgid "fallocate64"
25548 msgstr ""
25549
25550 # type: verbatim
25551 #. type: verbatim
25552 #: ../fish/guestfish-actions.pod:962
25553 #, no-wrap
25554 msgid ""
25555 " fallocate64 path len\n"
25556 "\n"
25557 msgstr ""
25558
25559 # type: textblock
25560 #. type: textblock
25561 #: ../fish/guestfish-actions.pod:968
25562 msgid ""
25563 "Note that this call allocates disk blocks for the file.  To create a sparse "
25564 "file use L</truncate-size> instead."
25565 msgstr ""
25566
25567 # type: textblock
25568 #. type: textblock
25569 #: ../fish/guestfish-actions.pod:971
25570 msgid ""
25571 "The deprecated call L</fallocate> does the same, but owing to an oversight "
25572 "it only allowed 30 bit lengths to be specified, effectively limiting the "
25573 "maximum size of files created through that call to 1GB."
25574 msgstr ""
25575
25576 # type: =head2
25577 #. type: =head2
25578 #: ../fish/guestfish-actions.pod:980
25579 msgid "fgrep"
25580 msgstr ""
25581
25582 # type: verbatim
25583 #. type: verbatim
25584 #: ../fish/guestfish-actions.pod:982
25585 #, no-wrap
25586 msgid ""
25587 " fgrep pattern path\n"
25588 "\n"
25589 msgstr ""
25590
25591 # type: =head2
25592 #. type: =head2
25593 #: ../fish/guestfish-actions.pod:990
25594 msgid "fgrepi"
25595 msgstr ""
25596
25597 # type: verbatim
25598 #. type: verbatim
25599 #: ../fish/guestfish-actions.pod:992
25600 #, no-wrap
25601 msgid ""
25602 " fgrepi pattern path\n"
25603 "\n"
25604 msgstr ""
25605
25606 # type: =head2
25607 #. type: =head2
25608 #: ../fish/guestfish-actions.pod:1000
25609 msgid "file"
25610 msgstr ""
25611
25612 # type: verbatim
25613 #. type: verbatim
25614 #: ../fish/guestfish-actions.pod:1002
25615 #, no-wrap
25616 msgid ""
25617 " file path\n"
25618 "\n"
25619 msgstr ""
25620
25621 # type: textblock
25622 #. type: textblock
25623 #: ../fish/guestfish-actions.pod:1014
25624 msgid ""
25625 "This command can also be used on C</dev/> devices (and partitions, LV "
25626 "names).  You can for example use this to determine if a device contains a "
25627 "filesystem, although it's usually better to use L</vfs-type>."
25628 msgstr ""
25629
25630 # type: =head2
25631 #. type: =head2
25632 #: ../fish/guestfish-actions.pod:1024
25633 msgid "file-architecture"
25634 msgstr ""
25635
25636 # type: verbatim
25637 #. type: verbatim
25638 #: ../fish/guestfish-actions.pod:1026
25639 #, no-wrap
25640 msgid ""
25641 " file-architecture filename\n"
25642 "\n"
25643 msgstr ""
25644
25645 # type: =head2
25646 #. type: =head2
25647 #: ../fish/guestfish-actions.pod:1129
25648 msgid "filesize"
25649 msgstr ""
25650
25651 # type: verbatim
25652 #. type: verbatim
25653 #: ../fish/guestfish-actions.pod:1131
25654 #, no-wrap
25655 msgid ""
25656 " filesize file\n"
25657 "\n"
25658 msgstr ""
25659
25660 # type: textblock
25661 #. type: textblock
25662 #: ../fish/guestfish-actions.pod:1135
25663 msgid ""
25664 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
25665 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
25666 msgstr ""
25667
25668 # type: =head2
25669 #. type: =head2
25670 #: ../fish/guestfish-actions.pod:1139
25671 msgid "fill"
25672 msgstr ""
25673
25674 # type: verbatim
25675 #. type: verbatim
25676 #: ../fish/guestfish-actions.pod:1141
25677 #, no-wrap
25678 msgid ""
25679 " fill c len path\n"
25680 "\n"
25681 msgstr ""
25682
25683 # type: textblock
25684 #. type: textblock
25685 #: ../fish/guestfish-actions.pod:1147
25686 msgid ""
25687 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
25688 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
25689 "L</fill-pattern>."
25690 msgstr ""
25691
25692 # type: =head2
25693 #. type: =head2
25694 #: ../fish/guestfish-actions.pod:1152
25695 msgid "fill-pattern"
25696 msgstr ""
25697
25698 # type: verbatim
25699 #. type: verbatim
25700 #: ../fish/guestfish-actions.pod:1154
25701 #, no-wrap
25702 msgid ""
25703 " fill-pattern pattern len path\n"
25704 "\n"
25705 msgstr ""
25706
25707 # type: textblock
25708 #. type: textblock
25709 #: ../fish/guestfish-actions.pod:1156
25710 msgid ""
25711 "This function is like L</fill> except that it creates a new file of length "
25712 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
25713 "is truncated if necessary to ensure the length of the file is exactly C<len> "
25714 "bytes."
25715 msgstr ""
25716
25717 # type: =head2
25718 #. type: =head2
25719 #: ../fish/guestfish-actions.pod:1161
25720 msgid "find"
25721 msgstr ""
25722
25723 # type: verbatim
25724 #. type: verbatim
25725 #: ../fish/guestfish-actions.pod:1163
25726 #, no-wrap
25727 msgid ""
25728 " find directory\n"
25729 "\n"
25730 msgstr ""
25731
25732 # type: textblock
25733 #. type: textblock
25734 #: ../fish/guestfish-actions.pod:1177
25735 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
25736 msgstr ""
25737
25738 # type: textblock
25739 #. type: textblock
25740 #: ../fish/guestfish-actions.pod:1190
25741 msgid "See also L</find0>."
25742 msgstr ""
25743
25744 # type: =head2
25745 #. type: =head2
25746 #: ../fish/guestfish-actions.pod:1195
25747 msgid "find0"
25748 msgstr ""
25749
25750 # type: verbatim
25751 #. type: verbatim
25752 #: ../fish/guestfish-actions.pod:1197
25753 #, no-wrap
25754 msgid ""
25755 " find0 directory (files|-)\n"
25756 "\n"
25757 msgstr ""
25758
25759 # type: textblock
25760 #. type: textblock
25761 #: ../fish/guestfish-actions.pod:1203
25762 msgid ""
25763 "This command works the same way as L</find> with the following exceptions:"
25764 msgstr ""
25765
25766 # type: =head2
25767 #. type: =head2
25768 #: ../fish/guestfish-actions.pod:1230
25769 msgid "findfs-label"
25770 msgstr ""
25771
25772 # type: verbatim
25773 #. type: verbatim
25774 #: ../fish/guestfish-actions.pod:1232
25775 #, no-wrap
25776 msgid ""
25777 " findfs-label label\n"
25778 "\n"
25779 msgstr ""
25780
25781 # type: textblock
25782 #. type: textblock
25783 #: ../fish/guestfish-actions.pod:1238
25784 msgid "To find the label of a filesystem, use L</vfs-label>."
25785 msgstr ""
25786
25787 # type: =head2
25788 #. type: =head2
25789 #: ../fish/guestfish-actions.pod:1240
25790 msgid "findfs-uuid"
25791 msgstr ""
25792
25793 # type: verbatim
25794 #. type: verbatim
25795 #: ../fish/guestfish-actions.pod:1242
25796 #, no-wrap
25797 msgid ""
25798 " findfs-uuid uuid\n"
25799 "\n"
25800 msgstr ""
25801
25802 # type: textblock
25803 #. type: textblock
25804 #: ../fish/guestfish-actions.pod:1248
25805 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
25806 msgstr ""
25807
25808 # type: =head2
25809 #. type: =head2
25810 #: ../fish/guestfish-actions.pod:1250
25811 msgid "fsck"
25812 msgstr ""
25813
25814 # type: verbatim
25815 #. type: verbatim
25816 #: ../fish/guestfish-actions.pod:1252
25817 #, no-wrap
25818 msgid ""
25819 " fsck fstype device\n"
25820 "\n"
25821 msgstr ""
25822
25823 # type: =head2
25824 #. type: =head2
25825 #: ../fish/guestfish-actions.pod:1282
25826 msgid "get-append"
25827 msgstr ""
25828
25829 # type: verbatim
25830 #. type: verbatim
25831 #: ../fish/guestfish-actions.pod:1284
25832 #, no-wrap
25833 msgid ""
25834 " get-append\n"
25835 "\n"
25836 msgstr ""
25837
25838 #. type: =head2
25839 #: ../fish/guestfish-actions.pod:1291
25840 msgid "get-attach-method"
25841 msgstr ""
25842
25843 #. type: verbatim
25844 #: ../fish/guestfish-actions.pod:1293
25845 #, no-wrap
25846 msgid ""
25847 " get-attach-method\n"
25848 "\n"
25849 msgstr ""
25850
25851 #. type: textblock
25852 #: ../fish/guestfish-actions.pod:1295
25853 msgid "Return the current attach method.  See L</set-attach-method>."
25854 msgstr ""
25855
25856 # type: =head2
25857 #. type: =head2
25858 #: ../fish/guestfish-actions.pod:1297
25859 msgid "get-autosync"
25860 msgstr ""
25861
25862 # type: verbatim
25863 #. type: verbatim
25864 #: ../fish/guestfish-actions.pod:1299
25865 #, no-wrap
25866 msgid ""
25867 " get-autosync\n"
25868 "\n"
25869 msgstr ""
25870
25871 # type: =head2
25872 #. type: =head2
25873 #: ../fish/guestfish-actions.pod:1303
25874 msgid "get-direct"
25875 msgstr ""
25876
25877 # type: verbatim
25878 #. type: verbatim
25879 #: ../fish/guestfish-actions.pod:1305
25880 #, no-wrap
25881 msgid ""
25882 " get-direct\n"
25883 "\n"
25884 msgstr ""
25885
25886 # type: =head2
25887 #. type: =head2
25888 #: ../fish/guestfish-actions.pod:1309
25889 msgid "get-e2label"
25890 msgstr ""
25891
25892 # type: verbatim
25893 #. type: verbatim
25894 #: ../fish/guestfish-actions.pod:1311
25895 #, no-wrap
25896 msgid ""
25897 " get-e2label device\n"
25898 "\n"
25899 msgstr ""
25900
25901 # type: =head2
25902 #. type: =head2
25903 #: ../fish/guestfish-actions.pod:1323
25904 msgid "get-e2uuid"
25905 msgstr ""
25906
25907 # type: verbatim
25908 #. type: verbatim
25909 #: ../fish/guestfish-actions.pod:1325
25910 #, no-wrap
25911 msgid ""
25912 " get-e2uuid device\n"
25913 "\n"
25914 msgstr ""
25915
25916 # type: =head2
25917 #. type: =head2
25918 #: ../fish/guestfish-actions.pod:1337
25919 msgid "get-memsize"
25920 msgstr ""
25921
25922 # type: verbatim
25923 #. type: verbatim
25924 #: ../fish/guestfish-actions.pod:1339
25925 #, no-wrap
25926 msgid ""
25927 " get-memsize\n"
25928 "\n"
25929 msgstr ""
25930
25931 # type: textblock
25932 #. type: textblock
25933 #: ../fish/guestfish-actions.pod:1344
25934 msgid ""
25935 "If L</set-memsize> was not called on this handle, and if "
25936 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
25937 "value for memsize."
25938 msgstr ""
25939
25940 # type: =head2
25941 #. type: =head2
25942 #: ../fish/guestfish-actions.pod:1351
25943 msgid "get-network"
25944 msgstr ""
25945
25946 # type: verbatim
25947 #. type: verbatim
25948 #: ../fish/guestfish-actions.pod:1353
25949 #, no-wrap
25950 msgid ""
25951 " get-network\n"
25952 "\n"
25953 msgstr ""
25954
25955 # type: =head2
25956 #. type: =head2
25957 #: ../fish/guestfish-actions.pod:1357
25958 msgid "get-path"
25959 msgstr ""
25960
25961 # type: verbatim
25962 #. type: verbatim
25963 #: ../fish/guestfish-actions.pod:1359
25964 #, no-wrap
25965 msgid ""
25966 " get-path\n"
25967 "\n"
25968 msgstr ""
25969
25970 # type: =head2
25971 #. type: =head2
25972 #: ../fish/guestfish-actions.pod:1366
25973 msgid "get-pid"
25974 msgstr ""
25975
25976 # type: =head2
25977 #. type: =head2
25978 #: ../fish/guestfish-actions.pod:1368
25979 msgid "pid"
25980 msgstr ""
25981
25982 # type: verbatim
25983 #. type: verbatim
25984 #: ../fish/guestfish-actions.pod:1370
25985 #, no-wrap
25986 msgid ""
25987 " get-pid\n"
25988 "\n"
25989 msgstr ""
25990
25991 # type: =head2
25992 #. type: =head2
25993 #: ../fish/guestfish-actions.pod:1377
25994 msgid "get-qemu"
25995 msgstr ""
25996
25997 # type: verbatim
25998 #. type: verbatim
25999 #: ../fish/guestfish-actions.pod:1379
26000 #, no-wrap
26001 msgid ""
26002 " get-qemu\n"
26003 "\n"
26004 msgstr ""
26005
26006 # type: =head2
26007 #. type: =head2
26008 #: ../fish/guestfish-actions.pod:1386
26009 msgid "get-recovery-proc"
26010 msgstr ""
26011
26012 # type: verbatim
26013 #. type: verbatim
26014 #: ../fish/guestfish-actions.pod:1388
26015 #, no-wrap
26016 msgid ""
26017 " get-recovery-proc\n"
26018 "\n"
26019 msgstr ""
26020
26021 # type: =head2
26022 #. type: =head2
26023 #: ../fish/guestfish-actions.pod:1392
26024 msgid "get-selinux"
26025 msgstr ""
26026
26027 # type: verbatim
26028 #. type: verbatim
26029 #: ../fish/guestfish-actions.pod:1394
26030 #, no-wrap
26031 msgid ""
26032 " get-selinux\n"
26033 "\n"
26034 msgstr ""
26035
26036 # type: textblock
26037 #. type: textblock
26038 #: ../fish/guestfish-actions.pod:1396
26039 msgid ""
26040 "This returns the current setting of the selinux flag which is passed to the "
26041 "appliance at boot time.  See L</set-selinux>."
26042 msgstr ""
26043
26044 # type: =head2
26045 #. type: =head2
26046 #: ../fish/guestfish-actions.pod:1402
26047 msgid "get-state"
26048 msgstr ""
26049
26050 # type: verbatim
26051 #. type: verbatim
26052 #: ../fish/guestfish-actions.pod:1404
26053 #, no-wrap
26054 msgid ""
26055 " get-state\n"
26056 "\n"
26057 msgstr ""
26058
26059 # type: =head2
26060 #. type: =head2
26061 #: ../fish/guestfish-actions.pod:1411
26062 msgid "get-trace"
26063 msgstr ""
26064
26065 # type: verbatim
26066 #. type: verbatim
26067 #: ../fish/guestfish-actions.pod:1413
26068 #, no-wrap
26069 msgid ""
26070 " get-trace\n"
26071 "\n"
26072 msgstr ""
26073
26074 # type: =head2
26075 #. type: =head2
26076 #: ../fish/guestfish-actions.pod:1417
26077 msgid "get-umask"
26078 msgstr ""
26079
26080 # type: verbatim
26081 #. type: verbatim
26082 #: ../fish/guestfish-actions.pod:1419
26083 #, no-wrap
26084 msgid ""
26085 " get-umask\n"
26086 "\n"
26087 msgstr ""
26088
26089 # type: textblock
26090 #. type: textblock
26091 #: ../fish/guestfish-actions.pod:1421
26092 msgid ""
26093 "Return the current umask.  By default the umask is C<022> unless it has been "
26094 "set by calling L</umask>."
26095 msgstr ""
26096
26097 # type: =head2
26098 #. type: =head2
26099 #: ../fish/guestfish-actions.pod:1424
26100 msgid "get-verbose"
26101 msgstr ""
26102
26103 # type: verbatim
26104 #. type: verbatim
26105 #: ../fish/guestfish-actions.pod:1426
26106 #, no-wrap
26107 msgid ""
26108 " get-verbose\n"
26109 "\n"
26110 msgstr ""
26111
26112 # type: =head2
26113 #. type: =head2
26114 #: ../fish/guestfish-actions.pod:1430
26115 msgid "getcon"
26116 msgstr ""
26117
26118 # type: verbatim
26119 #. type: verbatim
26120 #: ../fish/guestfish-actions.pod:1432
26121 #, no-wrap
26122 msgid ""
26123 " getcon\n"
26124 "\n"
26125 msgstr ""
26126
26127 # type: textblock
26128 #. type: textblock
26129 #: ../fish/guestfish-actions.pod:1436
26130 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
26131 msgstr ""
26132
26133 # type: =head2
26134 #. type: =head2
26135 #: ../fish/guestfish-actions.pod:1439
26136 msgid "getxattr"
26137 msgstr ""
26138
26139 # type: verbatim
26140 #. type: verbatim
26141 #: ../fish/guestfish-actions.pod:1441
26142 #, no-wrap
26143 msgid ""
26144 " getxattr path name\n"
26145 "\n"
26146 msgstr ""
26147
26148 # type: textblock
26149 #. type: textblock
26150 #: ../fish/guestfish-actions.pod:1443
26151 msgid ""
26152 "Get a single extended attribute from file C<path> named C<name>.  This call "
26153 "follows symlinks.  If you want to lookup an extended attribute for the "
26154 "symlink itself, use L</lgetxattr>."
26155 msgstr ""
26156
26157 # type: textblock
26158 #. type: textblock
26159 #: ../fish/guestfish-actions.pod:1447 ../fish/guestfish-actions.pod:2445
26160 msgid ""
26161 "Normally it is better to get all extended attributes from a file in one go "
26162 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
26163 "buggy and do not provide a way to list out attributes.  For these "
26164 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
26165 "attributes you want in advance and call this function."
26166 msgstr ""
26167
26168 # type: textblock
26169 #. type: textblock
26170 #: ../fish/guestfish-actions.pod:1457
26171 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
26172 msgstr ""
26173
26174 # type: =head2
26175 #. type: =head2
26176 #: ../fish/guestfish-actions.pod:1459
26177 msgid "getxattrs"
26178 msgstr ""
26179
26180 # type: verbatim
26181 #. type: verbatim
26182 #: ../fish/guestfish-actions.pod:1461
26183 #, no-wrap
26184 msgid ""
26185 " getxattrs path\n"
26186 "\n"
26187 msgstr ""
26188
26189 # type: textblock
26190 #. type: textblock
26191 #: ../fish/guestfish-actions.pod:1469
26192 msgid "See also: L</lgetxattrs>, L<attr(5)>."
26193 msgstr ""
26194
26195 # type: =head2
26196 #. type: =head2
26197 #: ../fish/guestfish-actions.pod:1471
26198 msgid "glob-expand"
26199 msgstr ""
26200
26201 # type: verbatim
26202 #. type: verbatim
26203 #: ../fish/guestfish-actions.pod:1473
26204 #, no-wrap
26205 msgid ""
26206 " glob-expand pattern\n"
26207 "\n"
26208 msgstr ""
26209
26210 # type: =head2
26211 #. type: =head2
26212 #: ../fish/guestfish-actions.pod:1486
26213 msgid "grep"
26214 msgstr ""
26215
26216 # type: verbatim
26217 #. type: verbatim
26218 #: ../fish/guestfish-actions.pod:1488
26219 #, no-wrap
26220 msgid ""
26221 " grep regex path\n"
26222 "\n"
26223 msgstr ""
26224
26225 # type: =head2
26226 #. type: =head2
26227 #: ../fish/guestfish-actions.pod:1496
26228 msgid "grepi"
26229 msgstr ""
26230
26231 # type: verbatim
26232 #. type: verbatim
26233 #: ../fish/guestfish-actions.pod:1498
26234 #, no-wrap
26235 msgid ""
26236 " grepi regex path\n"
26237 "\n"
26238 msgstr ""
26239
26240 # type: =head2
26241 #. type: =head2
26242 #: ../fish/guestfish-actions.pod:1506
26243 msgid "grub-install"
26244 msgstr ""
26245
26246 # type: verbatim
26247 #. type: verbatim
26248 #: ../fish/guestfish-actions.pod:1508
26249 #, no-wrap
26250 msgid ""
26251 " grub-install root device\n"
26252 "\n"
26253 msgstr ""
26254
26255 # type: =head2
26256 #. type: =head2
26257 #: ../fish/guestfish-actions.pod:1524
26258 msgid "head"
26259 msgstr ""
26260
26261 # type: verbatim
26262 #. type: verbatim
26263 #: ../fish/guestfish-actions.pod:1526
26264 #, no-wrap
26265 msgid ""
26266 " head path\n"
26267 "\n"
26268 msgstr ""
26269
26270 # type: =head2
26271 #. type: =head2
26272 #: ../fish/guestfish-actions.pod:1534
26273 msgid "head-n"
26274 msgstr ""
26275
26276 # type: verbatim
26277 #. type: verbatim
26278 #: ../fish/guestfish-actions.pod:1536
26279 #, no-wrap
26280 msgid ""
26281 " head-n nrlines path\n"
26282 "\n"
26283 msgstr ""
26284
26285 # type: =head2
26286 #. type: =head2
26287 #: ../fish/guestfish-actions.pod:1549
26288 msgid "hexdump"
26289 msgstr ""
26290
26291 # type: verbatim
26292 #. type: verbatim
26293 #: ../fish/guestfish-actions.pod:1551
26294 #, no-wrap
26295 msgid ""
26296 " hexdump path\n"
26297 "\n"
26298 msgstr ""
26299
26300 # type: =head2
26301 #. type: =head2
26302 #: ../fish/guestfish-actions.pod:1559
26303 msgid "initrd-cat"
26304 msgstr ""
26305
26306 # type: verbatim
26307 #. type: verbatim
26308 #: ../fish/guestfish-actions.pod:1561
26309 #, no-wrap
26310 msgid ""
26311 " initrd-cat initrdpath filename\n"
26312 "\n"
26313 msgstr ""
26314
26315 # type: textblock
26316 #. type: textblock
26317 #: ../fish/guestfish-actions.pod:1573
26318 msgid "See also L</initrd-list>."
26319 msgstr ""
26320
26321 # type: =head2
26322 #. type: =head2
26323 #: ../fish/guestfish-actions.pod:1578
26324 msgid "initrd-list"
26325 msgstr ""
26326
26327 # type: verbatim
26328 #. type: verbatim
26329 #: ../fish/guestfish-actions.pod:1580
26330 #, no-wrap
26331 msgid ""
26332 " initrd-list path\n"
26333 "\n"
26334 msgstr ""
26335
26336 # type: =head2
26337 #. type: =head2
26338 #: ../fish/guestfish-actions.pod:1592
26339 msgid "inotify-add-watch"
26340 msgstr ""
26341
26342 # type: verbatim
26343 #. type: verbatim
26344 #: ../fish/guestfish-actions.pod:1594
26345 #, no-wrap
26346 msgid ""
26347 " inotify-add-watch path mask\n"
26348 "\n"
26349 msgstr ""
26350
26351 # type: =head2
26352 #. type: =head2
26353 #: ../fish/guestfish-actions.pod:1606
26354 msgid "inotify-close"
26355 msgstr ""
26356
26357 # type: verbatim
26358 #. type: verbatim
26359 #: ../fish/guestfish-actions.pod:1608
26360 #, no-wrap
26361 msgid ""
26362 " inotify-close\n"
26363 "\n"
26364 msgstr ""
26365
26366 # type: =head2
26367 #. type: =head2
26368 #: ../fish/guestfish-actions.pod:1614
26369 msgid "inotify-files"
26370 msgstr ""
26371
26372 # type: verbatim
26373 #. type: verbatim
26374 #: ../fish/guestfish-actions.pod:1616
26375 #, no-wrap
26376 msgid ""
26377 " inotify-files\n"
26378 "\n"
26379 msgstr ""
26380
26381 # type: textblock
26382 #. type: textblock
26383 #: ../fish/guestfish-actions.pod:1618
26384 msgid ""
26385 "This function is a helpful wrapper around L</inotify-read> which just "
26386 "returns a list of pathnames of objects that were touched.  The returned "
26387 "pathnames are sorted and deduplicated."
26388 msgstr ""
26389
26390 # type: =head2
26391 #. type: =head2
26392 #: ../fish/guestfish-actions.pod:1622
26393 msgid "inotify-init"
26394 msgstr ""
26395
26396 # type: verbatim
26397 #. type: verbatim
26398 #: ../fish/guestfish-actions.pod:1624
26399 #, no-wrap
26400 msgid ""
26401 " inotify-init maxevents\n"
26402 "\n"
26403 msgstr ""
26404
26405 # type: textblock
26406 #. type: textblock
26407 #: ../fish/guestfish-actions.pod:1630
26408 msgid ""
26409 "C<maxevents> is the maximum number of events which will be queued up between "
26410 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
26411 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
26412 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
26413 "but records the fact that it threw them away by setting a flag "
26414 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
26415 msgstr ""
26416
26417 # type: textblock
26418 #. type: textblock
26419 #: ../fish/guestfish-actions.pod:1640
26420 msgid ""
26421 "Before any events are generated, you have to add some watches to the "
26422 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
26423 "L</inotify-watch-all>."
26424 msgstr ""
26425
26426 # type: textblock
26427 #. type: textblock
26428 #: ../fish/guestfish-actions.pod:1646
26429 msgid ""
26430 "Queued up events should be read periodically by calling L</inotify-read> (or "
26431 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
26432 "If you don't read the events out often enough then you risk the internal "
26433 "queue overflowing."
26434 msgstr ""
26435
26436 # type: textblock
26437 #. type: textblock
26438 #: ../fish/guestfish-actions.pod:1653
26439 msgid ""
26440 "The handle should be closed after use by calling L</inotify-close>.  This "
26441 "also removes any watches automatically."
26442 msgstr ""
26443
26444 # type: =head2
26445 #. type: =head2
26446 #: ../fish/guestfish-actions.pod:1662
26447 msgid "inotify-read"
26448 msgstr ""
26449
26450 # type: verbatim
26451 #. type: verbatim
26452 #: ../fish/guestfish-actions.pod:1664
26453 #, no-wrap
26454 msgid ""
26455 " inotify-read\n"
26456 "\n"
26457 msgstr ""
26458
26459 # type: =head2
26460 #. type: =head2
26461 #: ../fish/guestfish-actions.pod:1677
26462 msgid "inotify-rm-watch"
26463 msgstr ""
26464
26465 # type: verbatim
26466 #. type: verbatim
26467 #: ../fish/guestfish-actions.pod:1679
26468 #, no-wrap
26469 msgid ""
26470 " inotify-rm-watch wd\n"
26471 "\n"
26472 msgstr ""
26473
26474 # type: textblock
26475 #. type: textblock
26476 #: ../fish/guestfish-actions.pod:1681
26477 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
26478 msgstr ""
26479
26480 # type: =head2
26481 #. type: =head2
26482 #: ../fish/guestfish-actions.pod:1684
26483 msgid "inspect-get-arch"
26484 msgstr ""
26485
26486 # type: verbatim
26487 #. type: verbatim
26488 #: ../fish/guestfish-actions.pod:1686
26489 #, no-wrap
26490 msgid ""
26491 " inspect-get-arch root\n"
26492 "\n"
26493 msgstr ""
26494
26495 # type: textblock
26496 #. type: textblock
26497 #: ../fish/guestfish-actions.pod:1688 ../fish/guestfish-actions.pod:1704
26498 #: ../fish/guestfish-actions.pod:1782 ../fish/guestfish-actions.pod:1818
26499 #: ../fish/guestfish-actions.pod:1836 ../fish/guestfish-actions.pod:1870
26500 #: ../fish/guestfish-actions.pod:1885 ../fish/guestfish-actions.pod:1906
26501 #: ../fish/guestfish-actions.pod:1921 ../fish/guestfish-actions.pod:1954
26502 #: ../fish/guestfish-actions.pod:1976 ../fish/guestfish-actions.pod:2000
26503 #: ../fish/guestfish-actions.pod:2017 ../fish/guestfish-actions.pod:2060
26504 #: ../fish/guestfish-actions.pod:2095 ../fish/guestfish-actions.pod:2111
26505 #: ../fish/guestfish-actions.pod:2127 ../fish/guestfish-actions.pod:2140
26506 #: ../fish/guestfish-actions.pod:2153 ../fish/guestfish-actions.pod:2168
26507 msgid ""
26508 "This function should only be called with a root device string as returned by "
26509 "L</inspect-os>."
26510 msgstr ""
26511
26512 # type: textblock
26513 #. type: textblock
26514 #: ../fish/guestfish-actions.pod:1691
26515 msgid ""
26516 "This returns the architecture of the inspected operating system.  The "
26517 "possible return values are listed under L</file-architecture>."
26518 msgstr ""
26519
26520 # type: =head2
26521 #. type: =head2
26522 #: ../fish/guestfish-actions.pod:1700
26523 msgid "inspect-get-distro"
26524 msgstr ""
26525
26526 # type: verbatim
26527 #. type: verbatim
26528 #: ../fish/guestfish-actions.pod:1702
26529 #, no-wrap
26530 msgid ""
26531 " inspect-get-distro root\n"
26532 "\n"
26533 msgstr ""
26534
26535 #. type: =head2
26536 #: ../fish/guestfish-actions.pod:1778
26537 msgid "inspect-get-drive-mappings"
26538 msgstr ""
26539
26540 #. type: verbatim
26541 #: ../fish/guestfish-actions.pod:1780
26542 #, no-wrap
26543 msgid ""
26544 " inspect-get-drive-mappings root\n"
26545 "\n"
26546 msgstr ""
26547
26548 #. type: textblock
26549 #: ../fish/guestfish-actions.pod:1810
26550 msgid ""
26551 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26552 "get-mountpoints>, L</inspect-get-filesystems>."
26553 msgstr ""
26554
26555 # type: =head2
26556 #. type: =head2
26557 #: ../fish/guestfish-actions.pod:1814
26558 msgid "inspect-get-filesystems"
26559 msgstr ""
26560
26561 # type: verbatim
26562 #. type: verbatim
26563 #: ../fish/guestfish-actions.pod:1816
26564 #, no-wrap
26565 msgid ""
26566 " inspect-get-filesystems root\n"
26567 "\n"
26568 msgstr ""
26569
26570 # type: textblock
26571 #. type: textblock
26572 #: ../fish/guestfish-actions.pod:1829
26573 msgid ""
26574 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26575 "get-mountpoints>."
26576 msgstr ""
26577
26578 #. type: =head2
26579 #: ../fish/guestfish-actions.pod:1832
26580 msgid "inspect-get-format"
26581 msgstr ""
26582
26583 #. type: verbatim
26584 #: ../fish/guestfish-actions.pod:1834
26585 #, no-wrap
26586 msgid ""
26587 " inspect-get-format root\n"
26588 "\n"
26589 msgstr ""
26590
26591 # type: =head2
26592 #. type: =head2
26593 #: ../fish/guestfish-actions.pod:1866
26594 msgid "inspect-get-hostname"
26595 msgstr ""
26596
26597 # type: verbatim
26598 #. type: verbatim
26599 #: ../fish/guestfish-actions.pod:1868
26600 #, no-wrap
26601 msgid ""
26602 " inspect-get-hostname root\n"
26603 "\n"
26604 msgstr ""
26605
26606 # type: =head2
26607 #. type: =head2
26608 #: ../fish/guestfish-actions.pod:1881
26609 msgid "inspect-get-major-version"
26610 msgstr ""
26611
26612 # type: verbatim
26613 #. type: verbatim
26614 #: ../fish/guestfish-actions.pod:1883
26615 #, no-wrap
26616 msgid ""
26617 " inspect-get-major-version root\n"
26618 "\n"
26619 msgstr ""
26620
26621 # type: =head2
26622 #. type: =head2
26623 #: ../fish/guestfish-actions.pod:1902
26624 msgid "inspect-get-minor-version"
26625 msgstr ""
26626
26627 # type: verbatim
26628 #. type: verbatim
26629 #: ../fish/guestfish-actions.pod:1904
26630 #, no-wrap
26631 msgid ""
26632 " inspect-get-minor-version root\n"
26633 "\n"
26634 msgstr ""
26635
26636 # type: textblock
26637 #. type: textblock
26638 #: ../fish/guestfish-actions.pod:1914
26639 msgid ""
26640 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26641 "get-major-version>."
26642 msgstr ""
26643
26644 # type: =head2
26645 #. type: =head2
26646 #: ../fish/guestfish-actions.pod:1917
26647 msgid "inspect-get-mountpoints"
26648 msgstr ""
26649
26650 # type: verbatim
26651 #. type: verbatim
26652 #: ../fish/guestfish-actions.pod:1919
26653 #, no-wrap
26654 msgid ""
26655 " inspect-get-mountpoints root\n"
26656 "\n"
26657 msgstr ""
26658
26659 #. type: textblock
26660 #: ../fish/guestfish-actions.pod:1941
26661 msgid ""
26662 "For operating systems like Windows which still use drive letters, this call "
26663 "will only return an entry for the first drive \"mounted on\" C</>.  For "
26664 "information about the mapping of drive letters to partitions, see L</inspect-"
26665 "get-drive-mappings>."
26666 msgstr ""
26667
26668 # type: textblock
26669 #. type: textblock
26670 #: ../fish/guestfish-actions.pod:1947
26671 msgid ""
26672 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26673 "get-filesystems>."
26674 msgstr ""
26675
26676 # type: =head2
26677 #. type: =head2
26678 #: ../fish/guestfish-actions.pod:1950
26679 msgid "inspect-get-package-format"
26680 msgstr ""
26681
26682 # type: verbatim
26683 #. type: verbatim
26684 #: ../fish/guestfish-actions.pod:1952
26685 #, no-wrap
26686 msgid ""
26687 " inspect-get-package-format root\n"
26688 "\n"
26689 msgstr ""
26690
26691 # type: textblock
26692 #. type: textblock
26693 #: ../fish/guestfish-actions.pod:1957
26694 msgid ""
26695 "This function and L</inspect-get-package-management> return the package "
26696 "format and package management tool used by the inspected operating system.  "
26697 "For example for Fedora these functions would return C<rpm> (package format) "
26698 "and C<yum> (package management)."
26699 msgstr ""
26700
26701 # type: =head2
26702 #. type: =head2
26703 #: ../fish/guestfish-actions.pod:1972
26704 msgid "inspect-get-package-management"
26705 msgstr ""
26706
26707 # type: verbatim
26708 #. type: verbatim
26709 #: ../fish/guestfish-actions.pod:1974
26710 #, no-wrap
26711 msgid ""
26712 " inspect-get-package-management root\n"
26713 "\n"
26714 msgstr ""
26715
26716 # type: textblock
26717 #. type: textblock
26718 #: ../fish/guestfish-actions.pod:1979
26719 msgid ""
26720 "L</inspect-get-package-format> and this function return the package format "
26721 "and package management tool used by the inspected operating system.  For "
26722 "example for Fedora these functions would return C<rpm> (package format) and "
26723 "C<yum> (package management)."
26724 msgstr ""
26725
26726 # type: =head2
26727 #. type: =head2
26728 #: ../fish/guestfish-actions.pod:1996
26729 msgid "inspect-get-product-name"
26730 msgstr ""
26731
26732 # type: verbatim
26733 #. type: verbatim
26734 #: ../fish/guestfish-actions.pod:1998
26735 #, no-wrap
26736 msgid ""
26737 " inspect-get-product-name root\n"
26738 "\n"
26739 msgstr ""
26740
26741 #. type: =head2
26742 #: ../fish/guestfish-actions.pod:2013
26743 msgid "inspect-get-product-variant"
26744 msgstr ""
26745
26746 #. type: verbatim
26747 #: ../fish/guestfish-actions.pod:2015
26748 #, no-wrap
26749 msgid ""
26750 " inspect-get-product-variant root\n"
26751 "\n"
26752 msgstr ""
26753
26754 #. type: textblock
26755 #: ../fish/guestfish-actions.pod:2039
26756 msgid ""
26757 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
26758 "get-product-name>, L</inspect-get-major-version>."
26759 msgstr ""
26760
26761 # type: =head2
26762 #. type: =head2
26763 #: ../fish/guestfish-actions.pod:2043
26764 msgid "inspect-get-roots"
26765 msgstr ""
26766
26767 # type: verbatim
26768 #. type: verbatim
26769 #: ../fish/guestfish-actions.pod:2045
26770 #, no-wrap
26771 msgid ""
26772 " inspect-get-roots\n"
26773 "\n"
26774 msgstr ""
26775
26776 # type: textblock
26777 #. type: textblock
26778 #: ../fish/guestfish-actions.pod:2047
26779 msgid ""
26780 "This function is a convenient way to get the list of root devices, as "
26781 "returned from a previous call to L</inspect-os>, but without redoing the "
26782 "whole inspection process."
26783 msgstr ""
26784
26785 # type: textblock
26786 #. type: textblock
26787 #: ../fish/guestfish-actions.pod:2051
26788 msgid ""
26789 "This returns an empty list if either no root devices were found or the "
26790 "caller has not called L</inspect-os>."
26791 msgstr ""
26792
26793 # type: =head2
26794 #. type: =head2
26795 #: ../fish/guestfish-actions.pod:2056
26796 msgid "inspect-get-type"
26797 msgstr ""
26798
26799 # type: verbatim
26800 #. type: verbatim
26801 #: ../fish/guestfish-actions.pod:2058
26802 #, no-wrap
26803 msgid ""
26804 " inspect-get-type root\n"
26805 "\n"
26806 msgstr ""
26807
26808 #. type: =head2
26809 #: ../fish/guestfish-actions.pod:2091
26810 msgid "inspect-get-windows-current-control-set"
26811 msgstr ""
26812
26813 #. type: verbatim
26814 #: ../fish/guestfish-actions.pod:2093
26815 #, no-wrap
26816 msgid ""
26817 " inspect-get-windows-current-control-set root\n"
26818 "\n"
26819 msgstr ""
26820
26821 # type: =head2
26822 #. type: =head2
26823 #: ../fish/guestfish-actions.pod:2107
26824 msgid "inspect-get-windows-systemroot"
26825 msgstr ""
26826
26827 # type: verbatim
26828 #. type: verbatim
26829 #: ../fish/guestfish-actions.pod:2109
26830 #, no-wrap
26831 msgid ""
26832 " inspect-get-windows-systemroot root\n"
26833 "\n"
26834 msgstr ""
26835
26836 #. type: =head2
26837 #: ../fish/guestfish-actions.pod:2123
26838 msgid "inspect-is-live"
26839 msgstr ""
26840
26841 #. type: verbatim
26842 #: ../fish/guestfish-actions.pod:2125
26843 #, no-wrap
26844 msgid ""
26845 " inspect-is-live root\n"
26846 "\n"
26847 msgstr ""
26848
26849 #. type: textblock
26850 #: ../fish/guestfish-actions.pod:2130
26851 msgid ""
26852 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
26853 "then this returns true if a live image was detected on the disk."
26854 msgstr ""
26855
26856 #. type: =head2
26857 #: ../fish/guestfish-actions.pod:2136
26858 msgid "inspect-is-multipart"
26859 msgstr ""
26860
26861 #. type: verbatim
26862 #: ../fish/guestfish-actions.pod:2138
26863 #, no-wrap
26864 msgid ""
26865 " inspect-is-multipart root\n"
26866 "\n"
26867 msgstr ""
26868
26869 #. type: textblock
26870 #: ../fish/guestfish-actions.pod:2143
26871 msgid ""
26872 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
26873 "then this returns true if the disk is part of a set."
26874 msgstr ""
26875
26876 #. type: =head2
26877 #: ../fish/guestfish-actions.pod:2149
26878 msgid "inspect-is-netinst"
26879 msgstr ""
26880
26881 #. type: verbatim
26882 #: ../fish/guestfish-actions.pod:2151
26883 #, no-wrap
26884 msgid ""
26885 " inspect-is-netinst root\n"
26886 "\n"
26887 msgstr ""
26888
26889 #. type: textblock
26890 #: ../fish/guestfish-actions.pod:2156
26891 msgid ""
26892 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
26893 "then this returns true if the disk is a network installer, ie. not a self-"
26894 "contained install CD but one which is likely to require network access to "
26895 "complete the install."
26896 msgstr ""
26897
26898 # type: =head2
26899 #. type: =head2
26900 #: ../fish/guestfish-actions.pod:2164
26901 msgid "inspect-list-applications"
26902 msgstr ""
26903
26904 # type: verbatim
26905 #. type: verbatim
26906 #: ../fish/guestfish-actions.pod:2166
26907 #, no-wrap
26908 msgid ""
26909 " inspect-list-applications root\n"
26910 "\n"
26911 msgstr ""
26912
26913 # type: textblock
26914 #. type: textblock
26915 #: ../fish/guestfish-actions.pod:2173
26916 msgid ""
26917 "I<Note:> This call works differently from other parts of the inspection "
26918 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
26919 "then mount up the disks, before calling this.  Listing applications is a "
26920 "significantly more difficult operation which requires access to the full "
26921 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
26922 "are just returning data cached in the libguestfs handle, this call actually "
26923 "reads parts of the mounted filesystems during the call."
26924 msgstr ""
26925
26926 # type: =head2
26927 #. type: =head2
26928 #: ../fish/guestfish-actions.pod:2263
26929 msgid "inspect-os"
26930 msgstr ""
26931
26932 # type: verbatim
26933 #. type: verbatim
26934 #: ../fish/guestfish-actions.pod:2265
26935 #, no-wrap
26936 msgid ""
26937 " inspect-os\n"
26938 "\n"
26939 msgstr ""
26940
26941 # type: textblock
26942 #. type: textblock
26943 #: ../fish/guestfish-actions.pod:2280
26944 msgid ""
26945 "You can pass the root string(s) returned to other L</inspect-get-*> "
26946 "functions in order to query further information about each operating system, "
26947 "such as the name and version."
26948 msgstr ""
26949
26950 # type: textblock
26951 #. type: textblock
26952 #: ../fish/guestfish-actions.pod:2285
26953 msgid ""
26954 "This function uses other libguestfs features such as L</mount-ro> and L</"
26955 "umount-all> in order to mount and unmount filesystems and look at the "
26956 "contents.  This should be called with no disks currently mounted.  The "
26957 "function may also use Augeas, so any existing Augeas handle will be closed."
26958 msgstr ""
26959
26960 # type: textblock
26961 #. type: textblock
26962 #: ../fish/guestfish-actions.pod:2297 ../fish/guestfish-actions.pod:2473
26963 #: ../fish/guestfish-actions.pod:2519
26964 msgid "See also L</list-filesystems>."
26965 msgstr ""
26966
26967 # type: =head2
26968 #. type: =head2
26969 #: ../fish/guestfish-actions.pod:2299
26970 msgid "is-blockdev"
26971 msgstr ""
26972
26973 # type: verbatim
26974 #. type: verbatim
26975 #: ../fish/guestfish-actions.pod:2301
26976 #, no-wrap
26977 msgid ""
26978 " is-blockdev path\n"
26979 "\n"
26980 msgstr ""
26981
26982 # type: textblock
26983 #. type: textblock
26984 #: ../fish/guestfish-actions.pod:2306 ../fish/guestfish-actions.pod:2324
26985 #: ../fish/guestfish-actions.pod:2343 ../fish/guestfish-actions.pod:2352
26986 #: ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2396
26987 #: ../fish/guestfish-actions.pod:2405
26988 msgid "See also L</stat>."
26989 msgstr ""
26990
26991 # type: =head2
26992 #. type: =head2
26993 #: ../fish/guestfish-actions.pod:2308
26994 msgid "is-busy"
26995 msgstr ""
26996
26997 # type: verbatim
26998 #. type: verbatim
26999 #: ../fish/guestfish-actions.pod:2310
27000 #, no-wrap
27001 msgid ""
27002 " is-busy\n"
27003 "\n"
27004 msgstr ""
27005
27006 # type: =head2
27007 #. type: =head2
27008 #: ../fish/guestfish-actions.pod:2317
27009 msgid "is-chardev"
27010 msgstr ""
27011
27012 # type: verbatim
27013 #. type: verbatim
27014 #: ../fish/guestfish-actions.pod:2319
27015 #, no-wrap
27016 msgid ""
27017 " is-chardev path\n"
27018 "\n"
27019 msgstr ""
27020
27021 # type: =head2
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:2326
27024 msgid "is-config"
27025 msgstr ""
27026
27027 # type: verbatim
27028 #. type: verbatim
27029 #: ../fish/guestfish-actions.pod:2328
27030 #, no-wrap
27031 msgid ""
27032 " is-config\n"
27033 "\n"
27034 msgstr ""
27035
27036 # type: =head2
27037 #. type: =head2
27038 #: ../fish/guestfish-actions.pod:2335
27039 msgid "is-dir"
27040 msgstr ""
27041
27042 # type: verbatim
27043 #. type: verbatim
27044 #: ../fish/guestfish-actions.pod:2337
27045 #, no-wrap
27046 msgid ""
27047 " is-dir path\n"
27048 "\n"
27049 msgstr ""
27050
27051 # type: =head2
27052 #. type: =head2
27053 #: ../fish/guestfish-actions.pod:2345
27054 msgid "is-fifo"
27055 msgstr ""
27056
27057 # type: verbatim
27058 #. type: verbatim
27059 #: ../fish/guestfish-actions.pod:2347
27060 #, no-wrap
27061 msgid ""
27062 " is-fifo path\n"
27063 "\n"
27064 msgstr ""
27065
27066 # type: =head2
27067 #. type: =head2
27068 #: ../fish/guestfish-actions.pod:2354
27069 msgid "is-file"
27070 msgstr ""
27071
27072 # type: verbatim
27073 #. type: verbatim
27074 #: ../fish/guestfish-actions.pod:2356
27075 #, no-wrap
27076 msgid ""
27077 " is-file path\n"
27078 "\n"
27079 msgstr ""
27080
27081 # type: =head2
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:2364
27084 msgid "is-launching"
27085 msgstr ""
27086
27087 # type: verbatim
27088 #. type: verbatim
27089 #: ../fish/guestfish-actions.pod:2366
27090 #, no-wrap
27091 msgid ""
27092 " is-launching\n"
27093 "\n"
27094 msgstr ""
27095
27096 # type: =head2
27097 #. type: =head2
27098 #: ../fish/guestfish-actions.pod:2373
27099 msgid "is-lv"
27100 msgstr ""
27101
27102 # type: verbatim
27103 #. type: verbatim
27104 #: ../fish/guestfish-actions.pod:2375
27105 #, no-wrap
27106 msgid ""
27107 " is-lv device\n"
27108 "\n"
27109 msgstr ""
27110
27111 # type: =head2
27112 #. type: =head2
27113 #: ../fish/guestfish-actions.pod:2380
27114 msgid "is-ready"
27115 msgstr ""
27116
27117 # type: verbatim
27118 #. type: verbatim
27119 #: ../fish/guestfish-actions.pod:2382
27120 #, no-wrap
27121 msgid ""
27122 " is-ready\n"
27123 "\n"
27124 msgstr ""
27125
27126 # type: =head2
27127 #. type: =head2
27128 #: ../fish/guestfish-actions.pod:2389
27129 msgid "is-socket"
27130 msgstr ""
27131
27132 # type: verbatim
27133 #. type: verbatim
27134 #: ../fish/guestfish-actions.pod:2391
27135 #, no-wrap
27136 msgid ""
27137 " is-socket path\n"
27138 "\n"
27139 msgstr ""
27140
27141 # type: =head2
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:2398
27144 msgid "is-symlink"
27145 msgstr ""
27146
27147 # type: verbatim
27148 #. type: verbatim
27149 #: ../fish/guestfish-actions.pod:2400
27150 #, no-wrap
27151 msgid ""
27152 " is-symlink path\n"
27153 "\n"
27154 msgstr ""
27155
27156 # type: =head2
27157 #. type: =head2
27158 #: ../fish/guestfish-actions.pod:2407
27159 msgid "kill-subprocess"
27160 msgstr ""
27161
27162 # type: verbatim
27163 #. type: verbatim
27164 #: ../fish/guestfish-actions.pod:2409
27165 #, no-wrap
27166 msgid ""
27167 " kill-subprocess\n"
27168 "\n"
27169 msgstr ""
27170
27171 # type: =head2
27172 #. type: =head2
27173 #: ../fish/guestfish-actions.pod:2413
27174 msgid "launch"
27175 msgstr ""
27176
27177 # type: =head2
27178 #. type: =head2
27179 #: ../fish/guestfish-actions.pod:2415
27180 msgid "run"
27181 msgstr ""
27182
27183 # type: verbatim
27184 #. type: verbatim
27185 #: ../fish/guestfish-actions.pod:2417
27186 #, no-wrap
27187 msgid ""
27188 " launch\n"
27189 "\n"
27190 msgstr ""
27191
27192 # type: =head2
27193 #. type: =head2
27194 #: ../fish/guestfish-actions.pod:2425
27195 msgid "lchown"
27196 msgstr ""
27197
27198 # type: verbatim
27199 #. type: verbatim
27200 #: ../fish/guestfish-actions.pod:2427
27201 #, no-wrap
27202 msgid ""
27203 " lchown owner group path\n"
27204 "\n"
27205 msgstr ""
27206
27207 # type: textblock
27208 #. type: textblock
27209 #: ../fish/guestfish-actions.pod:2429
27210 msgid ""
27211 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
27212 "chown> but if C<path> is a symlink then the link itself is changed, not the "
27213 "target."
27214 msgstr ""
27215
27216 # type: =head2
27217 #. type: =head2
27218 #: ../fish/guestfish-actions.pod:2437
27219 msgid "lgetxattr"
27220 msgstr ""
27221
27222 # type: verbatim
27223 #. type: verbatim
27224 #: ../fish/guestfish-actions.pod:2439
27225 #, no-wrap
27226 msgid ""
27227 " lgetxattr path name\n"
27228 "\n"
27229 msgstr ""
27230
27231 # type: textblock
27232 #. type: textblock
27233 #: ../fish/guestfish-actions.pod:2455
27234 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
27235 msgstr ""
27236
27237 # type: =head2
27238 #. type: =head2
27239 #: ../fish/guestfish-actions.pod:2457
27240 msgid "lgetxattrs"
27241 msgstr ""
27242
27243 # type: verbatim
27244 #. type: verbatim
27245 #: ../fish/guestfish-actions.pod:2459
27246 #, no-wrap
27247 msgid ""
27248 " lgetxattrs path\n"
27249 "\n"
27250 msgstr ""
27251
27252 # type: textblock
27253 #. type: textblock
27254 #: ../fish/guestfish-actions.pod:2461
27255 msgid ""
27256 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
27257 "it returns the extended attributes of the link itself."
27258 msgstr ""
27259
27260 # type: =head2
27261 #. type: =head2
27262 #: ../fish/guestfish-actions.pod:2465
27263 msgid "list-devices"
27264 msgstr ""
27265
27266 # type: verbatim
27267 #. type: verbatim
27268 #: ../fish/guestfish-actions.pod:2467
27269 #, no-wrap
27270 msgid ""
27271 " list-devices\n"
27272 "\n"
27273 msgstr ""
27274
27275 # type: =head2
27276 #. type: =head2
27277 #: ../fish/guestfish-actions.pod:2475
27278 msgid "list-filesystems"
27279 msgstr ""
27280
27281 # type: verbatim
27282 #. type: verbatim
27283 #: ../fish/guestfish-actions.pod:2477
27284 #, no-wrap
27285 msgid ""
27286 " list-filesystems\n"
27287 "\n"
27288 msgstr ""
27289
27290 # type: textblock
27291 #. type: textblock
27292 #: ../fish/guestfish-actions.pod:2496
27293 msgid ""
27294 "This command runs other libguestfs commands, which might include L</mount> "
27295 "and L</umount>, and therefore you should use this soon after launch and only "
27296 "when nothing is mounted."
27297 msgstr ""
27298
27299 # type: textblock
27300 #. type: textblock
27301 #: ../fish/guestfish-actions.pod:2500
27302 msgid ""
27303 "Not all of the filesystems returned will be mountable.  In particular, swap "
27304 "partitions are returned in the list.  Also this command does not check that "
27305 "each filesystem found is valid and mountable, and some filesystems might be "
27306 "mountable but require special options.  Filesystems may not all belong to a "
27307 "single logical operating system (use L</inspect-os> to look for OSes)."
27308 msgstr ""
27309
27310 # type: =head2
27311 #. type: =head2
27312 #: ../fish/guestfish-actions.pod:2508
27313 msgid "list-partitions"
27314 msgstr ""
27315
27316 # type: verbatim
27317 #. type: verbatim
27318 #: ../fish/guestfish-actions.pod:2510
27319 #, no-wrap
27320 msgid ""
27321 " list-partitions\n"
27322 "\n"
27323 msgstr ""
27324
27325 # type: textblock
27326 #. type: textblock
27327 #: ../fish/guestfish-actions.pod:2516
27328 msgid ""
27329 "This does not return logical volumes.  For that you will need to call L</"
27330 "lvs>."
27331 msgstr ""
27332
27333 # type: =head2
27334 #. type: =head2
27335 #: ../fish/guestfish-actions.pod:2521
27336 msgid "ll"
27337 msgstr ""
27338
27339 # type: verbatim
27340 #. type: verbatim
27341 #: ../fish/guestfish-actions.pod:2523
27342 #, no-wrap
27343 msgid ""
27344 " ll directory\n"
27345 "\n"
27346 msgstr ""
27347
27348 # type: =head2
27349 #. type: =head2
27350 #: ../fish/guestfish-actions.pod:2531
27351 msgid "ln"
27352 msgstr ""
27353
27354 # type: verbatim
27355 #. type: verbatim
27356 #: ../fish/guestfish-actions.pod:2533
27357 #, no-wrap
27358 msgid ""
27359 " ln target linkname\n"
27360 "\n"
27361 msgstr ""
27362
27363 # type: =head2
27364 #. type: =head2
27365 #: ../fish/guestfish-actions.pod:2537
27366 msgid "ln-f"
27367 msgstr ""
27368
27369 # type: verbatim
27370 #. type: verbatim
27371 #: ../fish/guestfish-actions.pod:2539
27372 #, no-wrap
27373 msgid ""
27374 " ln-f target linkname\n"
27375 "\n"
27376 msgstr ""
27377
27378 # type: =head2
27379 #. type: =head2
27380 #: ../fish/guestfish-actions.pod:2544
27381 msgid "ln-s"
27382 msgstr ""
27383
27384 # type: verbatim
27385 #. type: verbatim
27386 #: ../fish/guestfish-actions.pod:2546
27387 #, no-wrap
27388 msgid ""
27389 " ln-s target linkname\n"
27390 "\n"
27391 msgstr ""
27392
27393 # type: =head2
27394 #. type: =head2
27395 #: ../fish/guestfish-actions.pod:2550
27396 msgid "ln-sf"
27397 msgstr ""
27398
27399 # type: verbatim
27400 #. type: verbatim
27401 #: ../fish/guestfish-actions.pod:2552
27402 #, no-wrap
27403 msgid ""
27404 " ln-sf target linkname\n"
27405 "\n"
27406 msgstr ""
27407
27408 # type: =head2
27409 #. type: =head2
27410 #: ../fish/guestfish-actions.pod:2557
27411 msgid "lremovexattr"
27412 msgstr ""
27413
27414 # type: verbatim
27415 #. type: verbatim
27416 #: ../fish/guestfish-actions.pod:2559
27417 #, no-wrap
27418 msgid ""
27419 " lremovexattr xattr path\n"
27420 "\n"
27421 msgstr ""
27422
27423 # type: textblock
27424 #. type: textblock
27425 #: ../fish/guestfish-actions.pod:2561
27426 msgid ""
27427 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
27428 "it removes an extended attribute of the link itself."
27429 msgstr ""
27430
27431 # type: =head2
27432 #. type: =head2
27433 #: ../fish/guestfish-actions.pod:2565
27434 msgid "ls"
27435 msgstr ""
27436
27437 # type: verbatim
27438 #. type: verbatim
27439 #: ../fish/guestfish-actions.pod:2567
27440 #, no-wrap
27441 msgid ""
27442 " ls directory\n"
27443 "\n"
27444 msgstr ""
27445
27446 # type: textblock
27447 #. type: textblock
27448 #: ../fish/guestfish-actions.pod:2573
27449 msgid ""
27450 "This command is mostly useful for interactive sessions.  Programs should "
27451 "probably use L</readdir> instead."
27452 msgstr ""
27453
27454 # type: =head2
27455 #. type: =head2
27456 #: ../fish/guestfish-actions.pod:2576
27457 msgid "lsetxattr"
27458 msgstr ""
27459
27460 # type: verbatim
27461 #. type: verbatim
27462 #: ../fish/guestfish-actions.pod:2578
27463 #, no-wrap
27464 msgid ""
27465 " lsetxattr xattr val vallen path\n"
27466 "\n"
27467 msgstr ""
27468
27469 # type: textblock
27470 #. type: textblock
27471 #: ../fish/guestfish-actions.pod:2580
27472 msgid ""
27473 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
27474 "sets an extended attribute of the link itself."
27475 msgstr ""
27476
27477 # type: =head2
27478 #. type: =head2
27479 #: ../fish/guestfish-actions.pod:2584
27480 msgid "lstat"
27481 msgstr ""
27482
27483 # type: verbatim
27484 #. type: verbatim
27485 #: ../fish/guestfish-actions.pod:2586
27486 #, no-wrap
27487 msgid ""
27488 " lstat path\n"
27489 "\n"
27490 msgstr ""
27491
27492 # type: textblock
27493 #. type: textblock
27494 #: ../fish/guestfish-actions.pod:2590
27495 msgid ""
27496 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
27497 "the link is stat-ed, not the file it refers to."
27498 msgstr ""
27499
27500 # type: =head2
27501 #. type: =head2
27502 #: ../fish/guestfish-actions.pod:2596
27503 msgid "lstatlist"
27504 msgstr ""
27505
27506 # type: verbatim
27507 #. type: verbatim
27508 #: ../fish/guestfish-actions.pod:2598
27509 #, no-wrap
27510 msgid ""
27511 " lstatlist path 'names ...'\n"
27512 "\n"
27513 msgstr ""
27514
27515 # type: textblock
27516 #. type: textblock
27517 #: ../fish/guestfish-actions.pod:2600
27518 msgid ""
27519 "This call allows you to perform the L</lstat> operation on multiple files, "
27520 "where all files are in the directory C<path>.  C<names> is the list of files "
27521 "from this directory."
27522 msgstr ""
27523
27524 # type: textblock
27525 #. type: textblock
27526 #: ../fish/guestfish-actions.pod:2609
27527 msgid ""
27528 "This call is intended for programs that want to efficiently list a directory "
27529 "contents without making many round-trips.  See also L</lxattrlist> for a "
27530 "similarly efficient call for getting extended attributes.  Very long "
27531 "directory listings might cause the protocol message size to be exceeded, "
27532 "causing this call to fail.  The caller must split up such requests into "
27533 "smaller groups of names."
27534 msgstr ""
27535
27536 # type: =head2
27537 #. type: =head2
27538 #: ../fish/guestfish-actions.pod:2617
27539 msgid "luks-add-key"
27540 msgstr ""
27541
27542 # type: verbatim
27543 #. type: verbatim
27544 #: ../fish/guestfish-actions.pod:2619
27545 #, no-wrap
27546 msgid ""
27547 " luks-add-key device keyslot\n"
27548 "\n"
27549 msgstr ""
27550
27551 # type: textblock
27552 #. type: textblock
27553 #: ../fish/guestfish-actions.pod:2626
27554 msgid ""
27555 "Note that if C<keyslot> already contains a key, then this command will "
27556 "fail.  You have to use L</luks-kill-slot> first to remove that key."
27557 msgstr ""
27558
27559 # type: textblock
27560 #. type: textblock
27561 #: ../fish/guestfish-actions.pod:2630 ../fish/guestfish-actions.pod:2652
27562 #: ../fish/guestfish-actions.pod:2665 ../fish/guestfish-actions.pod:2679
27563 #: ../fish/guestfish-actions.pod:2702 ../fish/guestfish-actions.pod:2712
27564 msgid ""
27565 "This command has one or more key or passphrase parameters.  Guestfish will "
27566 "prompt for these separately."
27567 msgstr ""
27568
27569 # type: =head2
27570 #. type: =head2
27571 #: ../fish/guestfish-actions.pod:2633
27572 msgid "luks-close"
27573 msgstr ""
27574
27575 # type: verbatim
27576 #. type: verbatim
27577 #: ../fish/guestfish-actions.pod:2635
27578 #, no-wrap
27579 msgid ""
27580 " luks-close device\n"
27581 "\n"
27582 msgstr ""
27583
27584 # type: textblock
27585 #. type: textblock
27586 #: ../fish/guestfish-actions.pod:2637
27587 msgid ""
27588 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
27589 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
27590 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
27591 "block device."
27592 msgstr ""
27593
27594 # type: =head2
27595 #. type: =head2
27596 #: ../fish/guestfish-actions.pod:2643
27597 msgid "luks-format"
27598 msgstr ""
27599
27600 # type: verbatim
27601 #. type: verbatim
27602 #: ../fish/guestfish-actions.pod:2645
27603 #, no-wrap
27604 msgid ""
27605 " luks-format device keyslot\n"
27606 "\n"
27607 msgstr ""
27608
27609 # type: =head2
27610 #. type: =head2
27611 #: ../fish/guestfish-actions.pod:2658
27612 msgid "luks-format-cipher"
27613 msgstr ""
27614
27615 # type: verbatim
27616 #. type: verbatim
27617 #: ../fish/guestfish-actions.pod:2660
27618 #, no-wrap
27619 msgid ""
27620 " luks-format-cipher device keyslot cipher\n"
27621 "\n"
27622 msgstr ""
27623
27624 # type: textblock
27625 #. type: textblock
27626 #: ../fish/guestfish-actions.pod:2662
27627 msgid ""
27628 "This command is the same as L</luks-format> but it also allows you to set "
27629 "the C<cipher> used."
27630 msgstr ""
27631
27632 # type: =head2
27633 #. type: =head2
27634 #: ../fish/guestfish-actions.pod:2671
27635 msgid "luks-kill-slot"
27636 msgstr ""
27637
27638 # type: verbatim
27639 #. type: verbatim
27640 #: ../fish/guestfish-actions.pod:2673
27641 #, no-wrap
27642 msgid ""
27643 " luks-kill-slot device keyslot\n"
27644 "\n"
27645 msgstr ""
27646
27647 # type: =head2
27648 #. type: =head2
27649 #: ../fish/guestfish-actions.pod:2682
27650 msgid "luks-open"
27651 msgstr ""
27652
27653 # type: verbatim
27654 #. type: verbatim
27655 #: ../fish/guestfish-actions.pod:2684
27656 #, no-wrap
27657 msgid ""
27658 " luks-open device mapname\n"
27659 "\n"
27660 msgstr ""
27661
27662 # type: textblock
27663 #. type: textblock
27664 #: ../fish/guestfish-actions.pod:2698
27665 msgid ""
27666 "If this block device contains LVM volume groups, then calling L</vgscan> "
27667 "followed by L</vg-activate-all> will make them visible."
27668 msgstr ""
27669
27670 # type: =head2
27671 #. type: =head2
27672 #: ../fish/guestfish-actions.pod:2705
27673 msgid "luks-open-ro"
27674 msgstr ""
27675
27676 # type: verbatim
27677 #. type: verbatim
27678 #: ../fish/guestfish-actions.pod:2707
27679 #, no-wrap
27680 msgid ""
27681 " luks-open-ro device mapname\n"
27682 "\n"
27683 msgstr ""
27684
27685 # type: textblock
27686 #. type: textblock
27687 #: ../fish/guestfish-actions.pod:2709
27688 msgid ""
27689 "This is the same as L</luks-open> except that a read-only mapping is created."
27690 msgstr ""
27691
27692 # type: =head2
27693 #. type: =head2
27694 #: ../fish/guestfish-actions.pod:2715
27695 msgid "lvcreate"
27696 msgstr ""
27697
27698 # type: verbatim
27699 #. type: verbatim
27700 #: ../fish/guestfish-actions.pod:2717
27701 #, no-wrap
27702 msgid ""
27703 " lvcreate logvol volgroup mbytes\n"
27704 "\n"
27705 msgstr ""
27706
27707 # type: =head2
27708 #. type: =head2
27709 #: ../fish/guestfish-actions.pod:2722
27710 msgid "lvm-canonical-lv-name"
27711 msgstr ""
27712
27713 # type: verbatim
27714 #. type: verbatim
27715 #: ../fish/guestfish-actions.pod:2724
27716 #, no-wrap
27717 msgid ""
27718 " lvm-canonical-lv-name lvname\n"
27719 "\n"
27720 msgstr ""
27721
27722 # type: textblock
27723 #. type: textblock
27724 #: ../fish/guestfish-actions.pod:2733
27725 msgid "See also L</is-lv>."
27726 msgstr ""
27727
27728 # type: =head2
27729 #. type: =head2
27730 #: ../fish/guestfish-actions.pod:2735
27731 msgid "lvm-clear-filter"
27732 msgstr ""
27733
27734 # type: verbatim
27735 #. type: verbatim
27736 #: ../fish/guestfish-actions.pod:2737
27737 #, no-wrap
27738 msgid ""
27739 " lvm-clear-filter\n"
27740 "\n"
27741 msgstr ""
27742
27743 # type: textblock
27744 #. type: textblock
27745 #: ../fish/guestfish-actions.pod:2739
27746 msgid ""
27747 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
27748 "block device."
27749 msgstr ""
27750
27751 # type: =head2
27752 #. type: =head2
27753 #: ../fish/guestfish-actions.pod:2745
27754 msgid "lvm-remove-all"
27755 msgstr ""
27756
27757 # type: verbatim
27758 #. type: verbatim
27759 #: ../fish/guestfish-actions.pod:2747
27760 #, no-wrap
27761 msgid ""
27762 " lvm-remove-all\n"
27763 "\n"
27764 msgstr ""
27765
27766 # type: =head2
27767 #. type: =head2
27768 #: ../fish/guestfish-actions.pod:2755
27769 msgid "lvm-set-filter"
27770 msgstr ""
27771
27772 # type: verbatim
27773 #. type: verbatim
27774 #: ../fish/guestfish-actions.pod:2757
27775 #, no-wrap
27776 msgid ""
27777 " lvm-set-filter 'devices ...'\n"
27778 "\n"
27779 msgstr ""
27780
27781 # type: =head2
27782 #. type: =head2
27783 #: ../fish/guestfish-actions.pod:2782
27784 msgid "lvremove"
27785 msgstr ""
27786
27787 # type: verbatim
27788 #. type: verbatim
27789 #: ../fish/guestfish-actions.pod:2784
27790 #, no-wrap
27791 msgid ""
27792 " lvremove device\n"
27793 "\n"
27794 msgstr ""
27795
27796 # type: =head2
27797 #. type: =head2
27798 #: ../fish/guestfish-actions.pod:2792
27799 msgid "lvrename"
27800 msgstr ""
27801
27802 # type: verbatim
27803 #. type: verbatim
27804 #: ../fish/guestfish-actions.pod:2794
27805 #, no-wrap
27806 msgid ""
27807 " lvrename logvol newlogvol\n"
27808 "\n"
27809 msgstr ""
27810
27811 # type: =head2
27812 #. type: =head2
27813 #: ../fish/guestfish-actions.pod:2798
27814 msgid "lvresize"
27815 msgstr ""
27816
27817 # type: verbatim
27818 #. type: verbatim
27819 #: ../fish/guestfish-actions.pod:2800
27820 #, no-wrap
27821 msgid ""
27822 " lvresize device mbytes\n"
27823 "\n"
27824 msgstr ""
27825
27826 # type: =head2
27827 #. type: =head2
27828 #: ../fish/guestfish-actions.pod:2806
27829 msgid "lvresize-free"
27830 msgstr ""
27831
27832 # type: verbatim
27833 #. type: verbatim
27834 #: ../fish/guestfish-actions.pod:2808
27835 #, no-wrap
27836 msgid ""
27837 " lvresize-free lv percent\n"
27838 "\n"
27839 msgstr ""
27840
27841 # type: =head2
27842 #. type: =head2
27843 #: ../fish/guestfish-actions.pod:2816
27844 msgid "lvs"
27845 msgstr ""
27846
27847 # type: verbatim
27848 #. type: verbatim
27849 #: ../fish/guestfish-actions.pod:2818
27850 #, no-wrap
27851 msgid ""
27852 " lvs\n"
27853 "\n"
27854 msgstr ""
27855
27856 # type: textblock
27857 #. type: textblock
27858 #: ../fish/guestfish-actions.pod:2826
27859 msgid "See also L</lvs-full>, L</list-filesystems>."
27860 msgstr ""
27861
27862 # type: =head2
27863 #. type: =head2
27864 #: ../fish/guestfish-actions.pod:2828
27865 msgid "lvs-full"
27866 msgstr ""
27867
27868 # type: verbatim
27869 #. type: verbatim
27870 #: ../fish/guestfish-actions.pod:2830
27871 #, no-wrap
27872 msgid ""
27873 " lvs-full\n"
27874 "\n"
27875 msgstr ""
27876
27877 # type: =head2
27878 #. type: =head2
27879 #: ../fish/guestfish-actions.pod:2835
27880 msgid "lvuuid"
27881 msgstr ""
27882
27883 # type: verbatim
27884 #. type: verbatim
27885 #: ../fish/guestfish-actions.pod:2837
27886 #, no-wrap
27887 msgid ""
27888 " lvuuid device\n"
27889 "\n"
27890 msgstr ""
27891
27892 # type: =head2
27893 #. type: =head2
27894 #: ../fish/guestfish-actions.pod:2841
27895 msgid "lxattrlist"
27896 msgstr ""
27897
27898 # type: verbatim
27899 #. type: verbatim
27900 #: ../fish/guestfish-actions.pod:2843
27901 #, no-wrap
27902 msgid ""
27903 " lxattrlist path 'names ...'\n"
27904 "\n"
27905 msgstr ""
27906
27907 # type: textblock
27908 #. type: textblock
27909 #: ../fish/guestfish-actions.pod:2859
27910 msgid ""
27911 "This call is intended for programs that want to efficiently list a directory "
27912 "contents without making many round-trips.  See also L</lstatlist> for a "
27913 "similarly efficient call for getting standard stats.  Very long directory "
27914 "listings might cause the protocol message size to be exceeded, causing this "
27915 "call to fail.  The caller must split up such requests into smaller groups of "
27916 "names."
27917 msgstr ""
27918
27919 # type: =head2
27920 #. type: =head2
27921 #: ../fish/guestfish-actions.pod:2867
27922 msgid "mkdir"
27923 msgstr ""
27924
27925 # type: verbatim
27926 #. type: verbatim
27927 #: ../fish/guestfish-actions.pod:2869
27928 #, no-wrap
27929 msgid ""
27930 " mkdir path\n"
27931 "\n"
27932 msgstr ""
27933
27934 # type: =head2
27935 #. type: =head2
27936 #: ../fish/guestfish-actions.pod:2873
27937 msgid "mkdir-mode"
27938 msgstr ""
27939
27940 # type: verbatim
27941 #. type: verbatim
27942 #: ../fish/guestfish-actions.pod:2875
27943 #, no-wrap
27944 msgid ""
27945 " mkdir-mode path mode\n"
27946 "\n"
27947 msgstr ""
27948
27949 # type: textblock
27950 #. type: textblock
27951 #: ../fish/guestfish-actions.pod:2884
27952 msgid "See also L</mkdir>, L</umask>"
27953 msgstr ""
27954
27955 # type: =head2
27956 #. type: =head2
27957 #: ../fish/guestfish-actions.pod:2886
27958 msgid "mkdir-p"
27959 msgstr ""
27960
27961 # type: verbatim
27962 #. type: verbatim
27963 #: ../fish/guestfish-actions.pod:2888
27964 #, no-wrap
27965 msgid ""
27966 " mkdir-p path\n"
27967 "\n"
27968 msgstr ""
27969
27970 # type: =head2
27971 #. type: =head2
27972 #: ../fish/guestfish-actions.pod:2893
27973 msgid "mkdtemp"
27974 msgstr ""
27975
27976 # type: verbatim
27977 #. type: verbatim
27978 #: ../fish/guestfish-actions.pod:2895
27979 #, no-wrap
27980 msgid ""
27981 " mkdtemp template\n"
27982 "\n"
27983 msgstr ""
27984
27985 # type: =head2
27986 #. type: =head2
27987 #: ../fish/guestfish-actions.pod:2916
27988 msgid "mke2fs-J"
27989 msgstr ""
27990
27991 # type: verbatim
27992 #. type: verbatim
27993 #: ../fish/guestfish-actions.pod:2918
27994 #, no-wrap
27995 msgid ""
27996 " mke2fs-J fstype blocksize device journal\n"
27997 "\n"
27998 msgstr ""
27999
28000 # type: textblock
28001 #. type: textblock
28002 #: ../fish/guestfish-actions.pod:2926
28003 msgid "See also L</mke2journal>."
28004 msgstr ""
28005
28006 # type: =head2
28007 #. type: =head2
28008 #: ../fish/guestfish-actions.pod:2928
28009 msgid "mke2fs-JL"
28010 msgstr ""
28011
28012 # type: verbatim
28013 #. type: verbatim
28014 #: ../fish/guestfish-actions.pod:2930
28015 #, no-wrap
28016 msgid ""
28017 " mke2fs-JL fstype blocksize device label\n"
28018 "\n"
28019 msgstr ""
28020
28021 # type: textblock
28022 #. type: textblock
28023 #: ../fish/guestfish-actions.pod:2935
28024 msgid "See also L</mke2journal-L>."
28025 msgstr ""
28026
28027 # type: =head2
28028 #. type: =head2
28029 #: ../fish/guestfish-actions.pod:2937
28030 msgid "mke2fs-JU"
28031 msgstr ""
28032
28033 # type: verbatim
28034 #. type: verbatim
28035 #: ../fish/guestfish-actions.pod:2939
28036 #, no-wrap
28037 msgid ""
28038 " mke2fs-JU fstype blocksize device uuid\n"
28039 "\n"
28040 msgstr ""
28041
28042 # type: textblock
28043 #. type: textblock
28044 #: ../fish/guestfish-actions.pod:2944
28045 msgid "See also L</mke2journal-U>."
28046 msgstr ""
28047
28048 # type: =head2
28049 #. type: =head2
28050 #: ../fish/guestfish-actions.pod:2946
28051 msgid "mke2journal"
28052 msgstr ""
28053
28054 # type: verbatim
28055 #. type: verbatim
28056 #: ../fish/guestfish-actions.pod:2948
28057 #, no-wrap
28058 msgid ""
28059 " mke2journal blocksize device\n"
28060 "\n"
28061 msgstr ""
28062
28063 # type: =head2
28064 #. type: =head2
28065 #: ../fish/guestfish-actions.pod:2955
28066 msgid "mke2journal-L"
28067 msgstr ""
28068
28069 # type: verbatim
28070 #. type: verbatim
28071 #: ../fish/guestfish-actions.pod:2957
28072 #, no-wrap
28073 msgid ""
28074 " mke2journal-L blocksize label device\n"
28075 "\n"
28076 msgstr ""
28077
28078 # type: =head2
28079 #. type: =head2
28080 #: ../fish/guestfish-actions.pod:2961
28081 msgid "mke2journal-U"
28082 msgstr ""
28083
28084 # type: verbatim
28085 #. type: verbatim
28086 #: ../fish/guestfish-actions.pod:2963
28087 #, no-wrap
28088 msgid ""
28089 " mke2journal-U blocksize uuid device\n"
28090 "\n"
28091 msgstr ""
28092
28093 # type: =head2
28094 #. type: =head2
28095 #: ../fish/guestfish-actions.pod:2967
28096 msgid "mkfifo"
28097 msgstr ""
28098
28099 # type: verbatim
28100 #. type: verbatim
28101 #: ../fish/guestfish-actions.pod:2969
28102 #, no-wrap
28103 msgid ""
28104 " mkfifo mode path\n"
28105 "\n"
28106 msgstr ""
28107
28108 # type: textblock
28109 #. type: textblock
28110 #: ../fish/guestfish-actions.pod:2971
28111 msgid ""
28112 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
28113 "is just a convenient wrapper around L</mknod>."
28114 msgstr ""
28115
28116 # type: =head2
28117 #. type: =head2
28118 #: ../fish/guestfish-actions.pod:2977
28119 msgid "mkfs"
28120 msgstr ""
28121
28122 # type: verbatim
28123 #. type: verbatim
28124 #: ../fish/guestfish-actions.pod:2979
28125 #, no-wrap
28126 msgid ""
28127 " mkfs fstype device\n"
28128 "\n"
28129 msgstr ""
28130
28131 # type: =head2
28132 #. type: =head2
28133 #: ../fish/guestfish-actions.pod:2985
28134 msgid "mkfs-b"
28135 msgstr ""
28136
28137 # type: verbatim
28138 #. type: verbatim
28139 #: ../fish/guestfish-actions.pod:2987
28140 #, no-wrap
28141 msgid ""
28142 " mkfs-b fstype blocksize device\n"
28143 "\n"
28144 msgstr ""
28145
28146 # type: textblock
28147 #. type: textblock
28148 #: ../fish/guestfish-actions.pod:2989
28149 msgid ""
28150 "This call is similar to L</mkfs>, but it allows you to control the block "
28151 "size of the resulting filesystem.  Supported block sizes depend on the "
28152 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
28153 msgstr ""
28154
28155 # type: =head2
28156 #. type: =head2
28157 #: ../fish/guestfish-actions.pod:3004
28158 msgid "mkfs-opts"
28159 msgstr ""
28160
28161 #. type: verbatim
28162 #: ../fish/guestfish-actions.pod:3006
28163 #, no-wrap
28164 msgid ""
28165 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
28166 "\n"
28167 msgstr ""
28168
28169 # type: =head2
28170 #. type: =head2
28171 #: ../fish/guestfish-actions.pod:3041
28172 msgid "mkmountpoint"
28173 msgstr ""
28174
28175 # type: verbatim
28176 #. type: verbatim
28177 #: ../fish/guestfish-actions.pod:3043
28178 #, no-wrap
28179 msgid ""
28180 " mkmountpoint exemptpath\n"
28181 "\n"
28182 msgstr ""
28183
28184 # type: textblock
28185 #. type: textblock
28186 #: ../fish/guestfish-actions.pod:3045
28187 msgid ""
28188 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
28189 "to create extra mountpoints before mounting the first filesystem."
28190 msgstr ""
28191
28192 # type: textblock
28193 #. type: textblock
28194 #: ../fish/guestfish-actions.pod:3069
28195 msgid ""
28196 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
28197 "unexpected errors if you try to mix these calls.  It is safest to manually "
28198 "unmount filesystems and remove mountpoints after use."
28199 msgstr ""
28200
28201 # type: textblock
28202 #. type: textblock
28203 #: ../fish/guestfish-actions.pod:3073
28204 msgid ""
28205 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
28206 "for this to work for manual mountpoints, you must ensure that the innermost "
28207 "mountpoints have the longest pathnames, as in the example code above."
28208 msgstr ""
28209
28210 #. type: textblock
28211 #: ../fish/guestfish-actions.pod:3080
28212 msgid ""
28213 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
28214 "L</umount-all> to be called when the handle is closed which can also trigger "
28215 "these issues."
28216 msgstr ""
28217
28218 # type: =head2
28219 #. type: =head2
28220 #: ../fish/guestfish-actions.pod:3084
28221 msgid "mknod"
28222 msgstr ""
28223
28224 # type: verbatim
28225 #. type: verbatim
28226 #: ../fish/guestfish-actions.pod:3086
28227 #, no-wrap
28228 msgid ""
28229 " mknod mode devmajor devminor path\n"
28230 "\n"
28231 msgstr ""
28232
28233 # type: textblock
28234 #. type: textblock
28235 #: ../fish/guestfish-actions.pod:3096
28236 msgid ""
28237 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
28238 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
28239 "regular file).  These constants are available in the standard Linux header "
28240 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
28241 "wrappers around this command which bitwise OR in the appropriate constant "
28242 "for you."
28243 msgstr ""
28244
28245 # type: =head2
28246 #. type: =head2
28247 #: ../fish/guestfish-actions.pod:3106
28248 msgid "mknod-b"
28249 msgstr ""
28250
28251 # type: verbatim
28252 #. type: verbatim
28253 #: ../fish/guestfish-actions.pod:3108
28254 #, no-wrap
28255 msgid ""
28256 " mknod-b mode devmajor devminor path\n"
28257 "\n"
28258 msgstr ""
28259
28260 # type: textblock
28261 #. type: textblock
28262 #: ../fish/guestfish-actions.pod:3110
28263 msgid ""
28264 "This call creates a block device node called C<path> with mode C<mode> and "
28265 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28266 "wrapper around L</mknod>."
28267 msgstr ""
28268
28269 # type: =head2
28270 #. type: =head2
28271 #: ../fish/guestfish-actions.pod:3116
28272 msgid "mknod-c"
28273 msgstr ""
28274
28275 # type: verbatim
28276 #. type: verbatim
28277 #: ../fish/guestfish-actions.pod:3118
28278 #, no-wrap
28279 msgid ""
28280 " mknod-c mode devmajor devminor path\n"
28281 "\n"
28282 msgstr ""
28283
28284 # type: textblock
28285 #. type: textblock
28286 #: ../fish/guestfish-actions.pod:3120
28287 msgid ""
28288 "This call creates a char device node called C<path> with mode C<mode> and "
28289 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
28290 "wrapper around L</mknod>."
28291 msgstr ""
28292
28293 # type: =head2
28294 #. type: =head2
28295 #: ../fish/guestfish-actions.pod:3126
28296 msgid "mkswap"
28297 msgstr ""
28298
28299 # type: verbatim
28300 #. type: verbatim
28301 #: ../fish/guestfish-actions.pod:3128
28302 #, no-wrap
28303 msgid ""
28304 " mkswap device\n"
28305 "\n"
28306 msgstr ""
28307
28308 # type: =head2
28309 #. type: =head2
28310 #: ../fish/guestfish-actions.pod:3132
28311 msgid "mkswap-L"
28312 msgstr ""
28313
28314 # type: verbatim
28315 #. type: verbatim
28316 #: ../fish/guestfish-actions.pod:3134
28317 #, no-wrap
28318 msgid ""
28319 " mkswap-L label device\n"
28320 "\n"
28321 msgstr ""
28322
28323 # type: =head2
28324 #. type: =head2
28325 #: ../fish/guestfish-actions.pod:3142
28326 msgid "mkswap-U"
28327 msgstr ""
28328
28329 # type: verbatim
28330 #. type: verbatim
28331 #: ../fish/guestfish-actions.pod:3144
28332 #, no-wrap
28333 msgid ""
28334 " mkswap-U uuid device\n"
28335 "\n"
28336 msgstr ""
28337
28338 # type: =head2
28339 #. type: =head2
28340 #: ../fish/guestfish-actions.pod:3148
28341 msgid "mkswap-file"
28342 msgstr ""
28343
28344 # type: verbatim
28345 #. type: verbatim
28346 #: ../fish/guestfish-actions.pod:3150
28347 #, no-wrap
28348 msgid ""
28349 " mkswap-file path\n"
28350 "\n"
28351 msgstr ""
28352
28353 # type: textblock
28354 #. type: textblock
28355 #: ../fish/guestfish-actions.pod:3154
28356 msgid ""
28357 "This command just writes a swap file signature to an existing file.  To "
28358 "create the file itself, use something like L</fallocate>."
28359 msgstr ""
28360
28361 # type: =head2
28362 #. type: =head2
28363 #: ../fish/guestfish-actions.pod:3157
28364 msgid "modprobe"
28365 msgstr ""
28366
28367 # type: verbatim
28368 #. type: verbatim
28369 #: ../fish/guestfish-actions.pod:3159
28370 #, no-wrap
28371 msgid ""
28372 " modprobe modulename\n"
28373 "\n"
28374 msgstr ""
28375
28376 # type: =head2
28377 #. type: =head2
28378 #: ../fish/guestfish-actions.pod:3166
28379 msgid "mount"
28380 msgstr ""
28381
28382 # type: verbatim
28383 #. type: verbatim
28384 #: ../fish/guestfish-actions.pod:3168
28385 #, no-wrap
28386 msgid ""
28387 " mount device mountpoint\n"
28388 "\n"
28389 msgstr ""
28390
28391 # type: textblock
28392 #. type: textblock
28393 #: ../fish/guestfish-actions.pod:3184
28394 msgid ""
28395 "B<Important note:> When you use this call, the filesystem options C<sync> "
28396 "and C<noatime> are set implicitly.  This was originally done because we "
28397 "thought it would improve reliability, but it turns out that I<-o sync> has a "
28398 "very large negative performance impact and negligible effect on "
28399 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
28400 "code that needs performance, and instead use L</mount-options> (use an empty "
28401 "string for the first parameter if you don't want any options)."
28402 msgstr ""
28403
28404 # type: =head2
28405 #. type: =head2
28406 #: ../fish/guestfish-actions.pod:3194
28407 msgid "mount-loop"
28408 msgstr ""
28409
28410 # type: verbatim
28411 #. type: verbatim
28412 #: ../fish/guestfish-actions.pod:3196
28413 #, no-wrap
28414 msgid ""
28415 " mount-loop file mountpoint\n"
28416 "\n"
28417 msgstr ""
28418
28419 # type: =head2
28420 #. type: =head2
28421 #: ../fish/guestfish-actions.pod:3202
28422 msgid "mount-options"
28423 msgstr ""
28424
28425 # type: verbatim
28426 #. type: verbatim
28427 #: ../fish/guestfish-actions.pod:3204
28428 #, no-wrap
28429 msgid ""
28430 " mount-options options device mountpoint\n"
28431 "\n"
28432 msgstr ""
28433
28434 # type: textblock
28435 #. type: textblock
28436 #: ../fish/guestfish-actions.pod:3206
28437 msgid ""
28438 "This is the same as the L</mount> command, but it allows you to set the "
28439 "mount options as for the L<mount(8)> I<-o> flag."
28440 msgstr ""
28441
28442 # type: =head2
28443 #. type: =head2
28444 #: ../fish/guestfish-actions.pod:3214
28445 msgid "mount-ro"
28446 msgstr ""
28447
28448 # type: verbatim
28449 #. type: verbatim
28450 #: ../fish/guestfish-actions.pod:3216
28451 #, no-wrap
28452 msgid ""
28453 " mount-ro device mountpoint\n"
28454 "\n"
28455 msgstr ""
28456
28457 # type: textblock
28458 #. type: textblock
28459 #: ../fish/guestfish-actions.pod:3218
28460 msgid ""
28461 "This is the same as the L</mount> command, but it mounts the filesystem with "
28462 "the read-only (I<-o ro>) flag."
28463 msgstr ""
28464
28465 # type: =head2
28466 #. type: =head2
28467 #: ../fish/guestfish-actions.pod:3221
28468 msgid "mount-vfs"
28469 msgstr ""
28470
28471 # type: verbatim
28472 #. type: verbatim
28473 #: ../fish/guestfish-actions.pod:3223
28474 #, no-wrap
28475 msgid ""
28476 " mount-vfs options vfstype device mountpoint\n"
28477 "\n"
28478 msgstr ""
28479
28480 # type: textblock
28481 #. type: textblock
28482 #: ../fish/guestfish-actions.pod:3225
28483 msgid ""
28484 "This is the same as the L</mount> command, but it allows you to set both the "
28485 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
28486 msgstr ""
28487
28488 # type: =head2
28489 #. type: =head2
28490 #: ../fish/guestfish-actions.pod:3229
28491 msgid "mountpoints"
28492 msgstr ""
28493
28494 # type: verbatim
28495 #. type: verbatim
28496 #: ../fish/guestfish-actions.pod:3231
28497 #, no-wrap
28498 msgid ""
28499 " mountpoints\n"
28500 "\n"
28501 msgstr ""
28502
28503 # type: textblock
28504 #. type: textblock
28505 #: ../fish/guestfish-actions.pod:3233
28506 msgid ""
28507 "This call is similar to L</mounts>.  That call returns a list of devices.  "
28508 "This one returns a hash table (map) of device name to directory where the "
28509 "device is mounted."
28510 msgstr ""
28511
28512 # type: =head2
28513 #. type: =head2
28514 #: ../fish/guestfish-actions.pod:3237
28515 msgid "mounts"
28516 msgstr ""
28517
28518 # type: verbatim
28519 #. type: verbatim
28520 #: ../fish/guestfish-actions.pod:3239
28521 #, no-wrap
28522 msgid ""
28523 " mounts\n"
28524 "\n"
28525 msgstr ""
28526
28527 # type: textblock
28528 #. type: textblock
28529 #: ../fish/guestfish-actions.pod:3246
28530 msgid "See also: L</mountpoints>"
28531 msgstr ""
28532
28533 # type: =head2
28534 #. type: =head2
28535 #: ../fish/guestfish-actions.pod:3248
28536 msgid "mv"
28537 msgstr ""
28538
28539 # type: verbatim
28540 #. type: verbatim
28541 #: ../fish/guestfish-actions.pod:3250
28542 #, no-wrap
28543 msgid ""
28544 " mv src dest\n"
28545 "\n"
28546 msgstr ""
28547
28548 # type: =head2
28549 #. type: =head2
28550 #: ../fish/guestfish-actions.pod:3255
28551 msgid "ntfs-3g-probe"
28552 msgstr ""
28553
28554 # type: verbatim
28555 #. type: verbatim
28556 #: ../fish/guestfish-actions.pod:3257
28557 #, no-wrap
28558 msgid ""
28559 " ntfs-3g-probe true|false device\n"
28560 "\n"
28561 msgstr ""
28562
28563 # type: =head2
28564 #. type: =head2
28565 #: ../fish/guestfish-actions.pod:3271
28566 msgid "ntfsresize"
28567 msgstr ""
28568
28569 # type: verbatim
28570 #. type: verbatim
28571 #: ../fish/guestfish-actions.pod:3273
28572 #, no-wrap
28573 msgid ""
28574 " ntfsresize device\n"
28575 "\n"
28576 msgstr ""
28577
28578 # type: =head2
28579 #. type: =head2
28580 #: ../fish/guestfish-actions.pod:3279
28581 msgid "ntfsresize-size"
28582 msgstr ""
28583
28584 # type: verbatim
28585 #. type: verbatim
28586 #: ../fish/guestfish-actions.pod:3281
28587 #, no-wrap
28588 msgid ""
28589 " ntfsresize-size device size\n"
28590 "\n"
28591 msgstr ""
28592
28593 # type: textblock
28594 #. type: textblock
28595 #: ../fish/guestfish-actions.pod:3283
28596 msgid ""
28597 "This command is the same as L</ntfsresize> except that it allows you to "
28598 "specify the new size (in bytes) explicitly."
28599 msgstr ""
28600
28601 # type: =head2
28602 #. type: =head2
28603 #: ../fish/guestfish-actions.pod:3286
28604 msgid "part-add"
28605 msgstr ""
28606
28607 # type: verbatim
28608 #. type: verbatim
28609 #: ../fish/guestfish-actions.pod:3288
28610 #, no-wrap
28611 msgid ""
28612 " part-add device prlogex startsect endsect\n"
28613 "\n"
28614 msgstr ""
28615
28616 # type: textblock
28617 #. type: textblock
28618 #: ../fish/guestfish-actions.pod:3290
28619 msgid ""
28620 "This command adds a partition to C<device>.  If there is no partition table "
28621 "on the device, call L</part-init> first."
28622 msgstr ""
28623
28624 # type: textblock
28625 #. type: textblock
28626 #: ../fish/guestfish-actions.pod:3302
28627 msgid ""
28628 "Creating a partition which covers the whole disk is not so easy.  Use L</"
28629 "part-disk> to do that."
28630 msgstr ""
28631
28632 # type: =head2
28633 #. type: =head2
28634 #: ../fish/guestfish-actions.pod:3305
28635 msgid "part-del"
28636 msgstr ""
28637
28638 # type: verbatim
28639 #. type: verbatim
28640 #: ../fish/guestfish-actions.pod:3307
28641 #, no-wrap
28642 msgid ""
28643 " part-del device partnum\n"
28644 "\n"
28645 msgstr ""
28646
28647 # type: =head2
28648 #. type: =head2
28649 #: ../fish/guestfish-actions.pod:3315
28650 msgid "part-disk"
28651 msgstr ""
28652
28653 # type: verbatim
28654 #. type: verbatim
28655 #: ../fish/guestfish-actions.pod:3317
28656 #, no-wrap
28657 msgid ""
28658 " part-disk device parttype\n"
28659 "\n"
28660 msgstr ""
28661
28662 # type: textblock
28663 #. type: textblock
28664 #: ../fish/guestfish-actions.pod:3319
28665 msgid ""
28666 "This command is simply a combination of L</part-init> followed by L</part-"
28667 "add> to create a single primary partition covering the whole disk."
28668 msgstr ""
28669
28670 # type: textblock
28671 #. type: textblock
28672 #: ../fish/guestfish-actions.pod:3323
28673 msgid ""
28674 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
28675 "possible values are described in L</part-init>."
28676 msgstr ""
28677
28678 # type: =head2
28679 #. type: =head2
28680 #: ../fish/guestfish-actions.pod:3329
28681 msgid "part-get-bootable"
28682 msgstr ""
28683
28684 # type: verbatim
28685 #. type: verbatim
28686 #: ../fish/guestfish-actions.pod:3331
28687 #, no-wrap
28688 msgid ""
28689 " part-get-bootable device partnum\n"
28690 "\n"
28691 msgstr ""
28692
28693 # type: textblock
28694 #. type: textblock
28695 #: ../fish/guestfish-actions.pod:3336
28696 msgid "See also L</part-set-bootable>."
28697 msgstr ""
28698
28699 # type: =head2
28700 #. type: =head2
28701 #: ../fish/guestfish-actions.pod:3338
28702 msgid "part-get-mbr-id"
28703 msgstr ""
28704
28705 # type: verbatim
28706 #. type: verbatim
28707 #: ../fish/guestfish-actions.pod:3340
28708 #, no-wrap
28709 msgid ""
28710 " part-get-mbr-id device partnum\n"
28711 "\n"
28712 msgstr ""
28713
28714 # type: textblock
28715 #. type: textblock
28716 #: ../fish/guestfish-actions.pod:3345 ../fish/guestfish-actions.pod:3483
28717 msgid ""
28718 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
28719 "undefined results for other partition table types (see L</part-get-"
28720 "parttype>)."
28721 msgstr ""
28722
28723 # type: =head2
28724 #. type: =head2
28725 #: ../fish/guestfish-actions.pod:3349
28726 msgid "part-get-parttype"
28727 msgstr ""
28728
28729 # type: verbatim
28730 #. type: verbatim
28731 #: ../fish/guestfish-actions.pod:3351
28732 #, no-wrap
28733 msgid ""
28734 " part-get-parttype device\n"
28735 "\n"
28736 msgstr ""
28737
28738 # type: textblock
28739 #. type: textblock
28740 #: ../fish/guestfish-actions.pod:3356
28741 msgid ""
28742 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
28743 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
28744 "possible, although unusual.  See L</part-init> for a full list."
28745 msgstr ""
28746
28747 # type: =head2
28748 #. type: =head2
28749 #: ../fish/guestfish-actions.pod:3361
28750 msgid "part-init"
28751 msgstr ""
28752
28753 # type: verbatim
28754 #. type: verbatim
28755 #: ../fish/guestfish-actions.pod:3363
28756 #, no-wrap
28757 msgid ""
28758 " part-init device parttype\n"
28759 "\n"
28760 msgstr ""
28761
28762 # type: textblock
28763 #. type: textblock
28764 #: ../fish/guestfish-actions.pod:3369
28765 msgid ""
28766 "Initially there are no partitions.  Following this, you should call L</part-"
28767 "add> for each partition required."
28768 msgstr ""
28769
28770 # type: =head2
28771 #. type: =head2
28772 #: ../fish/guestfish-actions.pod:3432
28773 msgid "part-list"
28774 msgstr ""
28775
28776 # type: verbatim
28777 #. type: verbatim
28778 #: ../fish/guestfish-actions.pod:3434
28779 #, no-wrap
28780 msgid ""
28781 " part-list device\n"
28782 "\n"
28783 msgstr ""
28784
28785 # type: textblock
28786 #. type: textblock
28787 #: ../fish/guestfish-actions.pod:3449
28788 msgid ""
28789 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
28790 "the device's sector size, see L</blockdev-getss>."
28791 msgstr ""
28792
28793 # type: =head2
28794 #. type: =head2
28795 #: ../fish/guestfish-actions.pod:3462
28796 msgid "part-set-bootable"
28797 msgstr ""
28798
28799 # type: verbatim
28800 #. type: verbatim
28801 #: ../fish/guestfish-actions.pod:3464
28802 #, no-wrap
28803 msgid ""
28804 " part-set-bootable device partnum true|false\n"
28805 "\n"
28806 msgstr ""
28807
28808 # type: =head2
28809 #. type: =head2
28810 #: ../fish/guestfish-actions.pod:3473
28811 msgid "part-set-mbr-id"
28812 msgstr ""
28813
28814 # type: verbatim
28815 #. type: verbatim
28816 #: ../fish/guestfish-actions.pod:3475
28817 #, no-wrap
28818 msgid ""
28819 " part-set-mbr-id device partnum idbyte\n"
28820 "\n"
28821 msgstr ""
28822
28823 # type: =head2
28824 #. type: =head2
28825 #: ../fish/guestfish-actions.pod:3487
28826 msgid "part-set-name"
28827 msgstr ""
28828
28829 # type: verbatim
28830 #. type: verbatim
28831 #: ../fish/guestfish-actions.pod:3489
28832 #, no-wrap
28833 msgid ""
28834 " part-set-name device partnum name\n"
28835 "\n"
28836 msgstr ""
28837
28838 # type: =head2
28839 #. type: =head2
28840 #: ../fish/guestfish-actions.pod:3497
28841 msgid "part-to-dev"
28842 msgstr ""
28843
28844 # type: verbatim
28845 #. type: verbatim
28846 #: ../fish/guestfish-actions.pod:3499
28847 #, no-wrap
28848 msgid ""
28849 " part-to-dev partition\n"
28850 "\n"
28851 msgstr ""
28852
28853 # type: textblock
28854 #. type: textblock
28855 #: ../fish/guestfish-actions.pod:3505
28856 msgid ""
28857 "The named partition must exist, for example as a string returned from L</"
28858 "list-partitions>."
28859 msgstr ""
28860
28861 # type: =head2
28862 #. type: =head2
28863 #: ../fish/guestfish-actions.pod:3508
28864 msgid "ping-daemon"
28865 msgstr ""
28866
28867 # type: verbatim
28868 #. type: verbatim
28869 #: ../fish/guestfish-actions.pod:3510
28870 #, no-wrap
28871 msgid ""
28872 " ping-daemon\n"
28873 "\n"
28874 msgstr ""
28875
28876 # type: =head2
28877 #. type: =head2
28878 #: ../fish/guestfish-actions.pod:3517
28879 msgid "pread"
28880 msgstr ""
28881
28882 # type: verbatim
28883 #. type: verbatim
28884 #: ../fish/guestfish-actions.pod:3519
28885 #, no-wrap
28886 msgid ""
28887 " pread path count offset\n"
28888 "\n"
28889 msgstr ""
28890
28891 # type: textblock
28892 #. type: textblock
28893 #: ../fish/guestfish-actions.pod:3527
28894 msgid "See also L</pwrite>, L</pread-device>."
28895 msgstr ""
28896
28897 # type: =head2
28898 #. type: =head2
28899 #: ../fish/guestfish-actions.pod:3532
28900 msgid "pread-device"
28901 msgstr ""
28902
28903 # type: verbatim
28904 #. type: verbatim
28905 #: ../fish/guestfish-actions.pod:3534
28906 #, no-wrap
28907 msgid ""
28908 " pread-device device count offset\n"
28909 "\n"
28910 msgstr ""
28911
28912 # type: textblock
28913 #. type: textblock
28914 #: ../fish/guestfish-actions.pod:3542
28915 msgid "See also L</pread>."
28916 msgstr ""
28917
28918 # type: =head2
28919 #. type: =head2
28920 #: ../fish/guestfish-actions.pod:3547
28921 msgid "pvcreate"
28922 msgstr ""
28923
28924 # type: verbatim
28925 #. type: verbatim
28926 #: ../fish/guestfish-actions.pod:3549
28927 #, no-wrap
28928 msgid ""
28929 " pvcreate device\n"
28930 "\n"
28931 msgstr ""
28932
28933 # type: =head2
28934 #. type: =head2
28935 #: ../fish/guestfish-actions.pod:3555
28936 msgid "pvremove"
28937 msgstr ""
28938
28939 # type: verbatim
28940 #. type: verbatim
28941 #: ../fish/guestfish-actions.pod:3557
28942 #, no-wrap
28943 msgid ""
28944 " pvremove device\n"
28945 "\n"
28946 msgstr ""
28947
28948 # type: =head2
28949 #. type: =head2
28950 #: ../fish/guestfish-actions.pod:3566
28951 msgid "pvresize"
28952 msgstr ""
28953
28954 # type: verbatim
28955 #. type: verbatim
28956 #: ../fish/guestfish-actions.pod:3568
28957 #, no-wrap
28958 msgid ""
28959 " pvresize device\n"
28960 "\n"
28961 msgstr ""
28962
28963 # type: =head2
28964 #. type: =head2
28965 #: ../fish/guestfish-actions.pod:3573
28966 msgid "pvresize-size"
28967 msgstr ""
28968
28969 # type: verbatim
28970 #. type: verbatim
28971 #: ../fish/guestfish-actions.pod:3575
28972 #, no-wrap
28973 msgid ""
28974 " pvresize-size device size\n"
28975 "\n"
28976 msgstr ""
28977
28978 # type: textblock
28979 #. type: textblock
28980 #: ../fish/guestfish-actions.pod:3577
28981 msgid ""
28982 "This command is the same as L</pvresize> except that it allows you to "
28983 "specify the new size (in bytes) explicitly."
28984 msgstr ""
28985
28986 # type: =head2
28987 #. type: =head2
28988 #: ../fish/guestfish-actions.pod:3580
28989 msgid "pvs"
28990 msgstr ""
28991
28992 # type: verbatim
28993 #. type: verbatim
28994 #: ../fish/guestfish-actions.pod:3582
28995 #, no-wrap
28996 msgid ""
28997 " pvs\n"
28998 "\n"
28999 msgstr ""
29000
29001 # type: textblock
29002 #. type: textblock
29003 #: ../fish/guestfish-actions.pod:3590
29004 msgid "See also L</pvs-full>."
29005 msgstr ""
29006
29007 # type: =head2
29008 #. type: =head2
29009 #: ../fish/guestfish-actions.pod:3592
29010 msgid "pvs-full"
29011 msgstr ""
29012
29013 # type: verbatim
29014 #. type: verbatim
29015 #: ../fish/guestfish-actions.pod:3594
29016 #, no-wrap
29017 msgid ""
29018 " pvs-full\n"
29019 "\n"
29020 msgstr ""
29021
29022 # type: =head2
29023 #. type: =head2
29024 #: ../fish/guestfish-actions.pod:3599
29025 msgid "pvuuid"
29026 msgstr ""
29027
29028 # type: verbatim
29029 #. type: verbatim
29030 #: ../fish/guestfish-actions.pod:3601
29031 #, no-wrap
29032 msgid ""
29033 " pvuuid device\n"
29034 "\n"
29035 msgstr ""
29036
29037 # type: =head2
29038 #. type: =head2
29039 #: ../fish/guestfish-actions.pod:3605
29040 msgid "pwrite"
29041 msgstr ""
29042
29043 # type: verbatim
29044 #. type: verbatim
29045 #: ../fish/guestfish-actions.pod:3607
29046 #, no-wrap
29047 msgid ""
29048 " pwrite path content offset\n"
29049 "\n"
29050 msgstr ""
29051
29052 # type: textblock
29053 #. type: textblock
29054 #: ../fish/guestfish-actions.pod:3618
29055 msgid "See also L</pread>, L</pwrite-device>."
29056 msgstr ""
29057
29058 # type: =head2
29059 #. type: =head2
29060 #: ../fish/guestfish-actions.pod:3623
29061 msgid "pwrite-device"
29062 msgstr ""
29063
29064 # type: verbatim
29065 #. type: verbatim
29066 #: ../fish/guestfish-actions.pod:3625
29067 #, no-wrap
29068 msgid ""
29069 " pwrite-device device content offset\n"
29070 "\n"
29071 msgstr ""
29072
29073 # type: textblock
29074 #. type: textblock
29075 #: ../fish/guestfish-actions.pod:3635
29076 msgid "See also L</pwrite>."
29077 msgstr ""
29078
29079 # type: =head2
29080 #. type: =head2
29081 #: ../fish/guestfish-actions.pod:3640
29082 msgid "read-file"
29083 msgstr ""
29084
29085 # type: verbatim
29086 #. type: verbatim
29087 #: ../fish/guestfish-actions.pod:3642
29088 #, no-wrap
29089 msgid ""
29090 " read-file path\n"
29091 "\n"
29092 msgstr ""
29093
29094 # type: textblock
29095 #. type: textblock
29096 #: ../fish/guestfish-actions.pod:3647
29097 msgid ""
29098 "Unlike L</cat>, this function can correctly handle files that contain "
29099 "embedded ASCII NUL characters.  However unlike L</download>, this function "
29100 "is limited in the total size of file that can be handled."
29101 msgstr ""
29102
29103 # type: =head2
29104 #. type: =head2
29105 #: ../fish/guestfish-actions.pod:3655
29106 msgid "read-lines"
29107 msgstr ""
29108
29109 # type: verbatim
29110 #. type: verbatim
29111 #: ../fish/guestfish-actions.pod:3657
29112 #, no-wrap
29113 msgid ""
29114 " read-lines path\n"
29115 "\n"
29116 msgstr ""
29117
29118 # type: textblock
29119 #. type: textblock
29120 #: ../fish/guestfish-actions.pod:3664
29121 msgid ""
29122 "Note that this function cannot correctly handle binary files (specifically, "
29123 "files containing C<\\0> character which is treated as end of line).  For "
29124 "those you need to use the L</read-file> function which has a more complex "
29125 "interface."
29126 msgstr ""
29127
29128 # type: =head2
29129 #. type: =head2
29130 #: ../fish/guestfish-actions.pod:3669
29131 msgid "readdir"
29132 msgstr ""
29133
29134 # type: verbatim
29135 #. type: verbatim
29136 #: ../fish/guestfish-actions.pod:3671
29137 #, no-wrap
29138 msgid ""
29139 " readdir dir\n"
29140 "\n"
29141 msgstr ""
29142
29143 # type: textblock
29144 #. type: textblock
29145 #: ../fish/guestfish-actions.pod:3723
29146 msgid ""
29147 "This function is primarily intended for use by programs.  To get a simple "
29148 "list of names, use L</ls>.  To get a printable directory for human "
29149 "consumption, use L</ll>."
29150 msgstr ""
29151
29152 # type: =head2
29153 #. type: =head2
29154 #: ../fish/guestfish-actions.pod:3727
29155 msgid "readlink"
29156 msgstr ""
29157
29158 # type: verbatim
29159 #. type: verbatim
29160 #: ../fish/guestfish-actions.pod:3729
29161 #, no-wrap
29162 msgid ""
29163 " readlink path\n"
29164 "\n"
29165 msgstr ""
29166
29167 # type: =head2
29168 #. type: =head2
29169 #: ../fish/guestfish-actions.pod:3733
29170 msgid "readlinklist"
29171 msgstr ""
29172
29173 # type: verbatim
29174 #. type: verbatim
29175 #: ../fish/guestfish-actions.pod:3735
29176 #, no-wrap
29177 msgid ""
29178 " readlinklist path 'names ...'\n"
29179 "\n"
29180 msgstr ""
29181
29182 # type: =head2
29183 #. type: =head2
29184 #: ../fish/guestfish-actions.pod:3759
29185 msgid "realpath"
29186 msgstr ""
29187
29188 # type: verbatim
29189 #. type: verbatim
29190 #: ../fish/guestfish-actions.pod:3761
29191 #, no-wrap
29192 msgid ""
29193 " realpath path\n"
29194 "\n"
29195 msgstr ""
29196
29197 # type: =head2
29198 #. type: =head2
29199 #: ../fish/guestfish-actions.pod:3766
29200 msgid "removexattr"
29201 msgstr ""
29202
29203 # type: verbatim
29204 #. type: verbatim
29205 #: ../fish/guestfish-actions.pod:3768
29206 #, no-wrap
29207 msgid ""
29208 " removexattr xattr path\n"
29209 "\n"
29210 msgstr ""
29211
29212 # type: textblock
29213 #. type: textblock
29214 #: ../fish/guestfish-actions.pod:3773
29215 msgid "See also: L</lremovexattr>, L<attr(5)>."
29216 msgstr ""
29217
29218 # type: =head2
29219 #. type: =head2
29220 #: ../fish/guestfish-actions.pod:3775
29221 msgid "resize2fs"
29222 msgstr ""
29223
29224 # type: verbatim
29225 #. type: verbatim
29226 #: ../fish/guestfish-actions.pod:3777
29227 #, no-wrap
29228 msgid ""
29229 " resize2fs device\n"
29230 "\n"
29231 msgstr ""
29232
29233 # type: textblock
29234 #. type: textblock
29235 #: ../fish/guestfish-actions.pod:3782
29236 msgid ""
29237 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
29238 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
29239 "gives an error about this and sometimes not.  In any case, it is always safe "
29240 "to call L</e2fsck-f> before calling this function."
29241 msgstr ""
29242
29243 #. type: =head2
29244 #: ../fish/guestfish-actions.pod:3788
29245 msgid "resize2fs-M"
29246 msgstr ""
29247
29248 #. type: verbatim
29249 #: ../fish/guestfish-actions.pod:3790
29250 #, no-wrap
29251 msgid ""
29252 " resize2fs-M device\n"
29253 "\n"
29254 msgstr ""
29255
29256 #. type: textblock
29257 #: ../fish/guestfish-actions.pod:3792
29258 msgid ""
29259 "This command is the same as L</resize2fs>, but the filesystem is resized to "
29260 "its minimum size.  This works like the C<-M> option to the C<resize2fs> "
29261 "command."
29262 msgstr ""
29263
29264 #. type: textblock
29265 #: ../fish/guestfish-actions.pod:3796
29266 msgid ""
29267 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
29268 "and read the C<Block size> and C<Block count> values.  These two numbers, "
29269 "multiplied together, give the resulting size of the minimal filesystem in "
29270 "bytes."
29271 msgstr ""
29272
29273 # type: =head2
29274 #. type: =head2
29275 #: ../fish/guestfish-actions.pod:3801
29276 msgid "resize2fs-size"
29277 msgstr ""
29278
29279 # type: verbatim
29280 #. type: verbatim
29281 #: ../fish/guestfish-actions.pod:3803
29282 #, no-wrap
29283 msgid ""
29284 " resize2fs-size device size\n"
29285 "\n"
29286 msgstr ""
29287
29288 # type: textblock
29289 #. type: textblock
29290 #: ../fish/guestfish-actions.pod:3805
29291 msgid ""
29292 "This command is the same as L</resize2fs> except that it allows you to "
29293 "specify the new size (in bytes) explicitly."
29294 msgstr ""
29295
29296 # type: =head2
29297 #. type: =head2
29298 #: ../fish/guestfish-actions.pod:3808
29299 msgid "rm"
29300 msgstr ""
29301
29302 # type: verbatim
29303 #. type: verbatim
29304 #: ../fish/guestfish-actions.pod:3810
29305 #, no-wrap
29306 msgid ""
29307 " rm path\n"
29308 "\n"
29309 msgstr ""
29310
29311 # type: =head2
29312 #. type: =head2
29313 #: ../fish/guestfish-actions.pod:3814
29314 msgid "rm-rf"
29315 msgstr ""
29316
29317 # type: verbatim
29318 #. type: verbatim
29319 #: ../fish/guestfish-actions.pod:3816
29320 #, no-wrap
29321 msgid ""
29322 " rm-rf path\n"
29323 "\n"
29324 msgstr ""
29325
29326 # type: =head2
29327 #. type: =head2
29328 #: ../fish/guestfish-actions.pod:3822
29329 msgid "rmdir"
29330 msgstr ""
29331
29332 # type: verbatim
29333 #. type: verbatim
29334 #: ../fish/guestfish-actions.pod:3824
29335 #, no-wrap
29336 msgid ""
29337 " rmdir path\n"
29338 "\n"
29339 msgstr ""
29340
29341 # type: =head2
29342 #. type: =head2
29343 #: ../fish/guestfish-actions.pod:3828
29344 msgid "rmmountpoint"
29345 msgstr ""
29346
29347 # type: verbatim
29348 #. type: verbatim
29349 #: ../fish/guestfish-actions.pod:3830
29350 #, no-wrap
29351 msgid ""
29352 " rmmountpoint exemptpath\n"
29353 "\n"
29354 msgstr ""
29355
29356 # type: textblock
29357 #. type: textblock
29358 #: ../fish/guestfish-actions.pod:3832
29359 msgid ""
29360 "This calls removes a mountpoint that was previously created with L</"
29361 "mkmountpoint>.  See L</mkmountpoint> for full details."
29362 msgstr ""
29363
29364 # type: =head2
29365 #. type: =head2
29366 #: ../fish/guestfish-actions.pod:3836
29367 msgid "scrub-device"
29368 msgstr ""
29369
29370 # type: verbatim
29371 #. type: verbatim
29372 #: ../fish/guestfish-actions.pod:3838
29373 #, no-wrap
29374 msgid ""
29375 " scrub-device device\n"
29376 "\n"
29377 msgstr ""
29378
29379 # type: =head2
29380 #. type: =head2
29381 #: ../fish/guestfish-actions.pod:3849
29382 msgid "scrub-file"
29383 msgstr ""
29384
29385 # type: verbatim
29386 #. type: verbatim
29387 #: ../fish/guestfish-actions.pod:3851
29388 #, no-wrap
29389 msgid ""
29390 " scrub-file file\n"
29391 "\n"
29392 msgstr ""
29393
29394 # type: =head2
29395 #. type: =head2
29396 #: ../fish/guestfish-actions.pod:3861
29397 msgid "scrub-freespace"
29398 msgstr ""
29399
29400 # type: verbatim
29401 #. type: verbatim
29402 #: ../fish/guestfish-actions.pod:3863
29403 #, no-wrap
29404 msgid ""
29405 " scrub-freespace dir\n"
29406 "\n"
29407 msgstr ""
29408
29409 # type: textblock
29410 #. type: textblock
29411 #: ../fish/guestfish-actions.pod:3865
29412 msgid ""
29413 "This command creates the directory C<dir> and then fills it with files until "
29414 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
29415 "deletes them.  The intention is to scrub any free space on the partition "
29416 "containing C<dir>."
29417 msgstr ""
29418
29419 # type: =head2
29420 #. type: =head2
29421 #: ../fish/guestfish-actions.pod:3874
29422 msgid "set-append"
29423 msgstr ""
29424
29425 # type: =head2
29426 #. type: =head2
29427 #: ../fish/guestfish-actions.pod:3876
29428 msgid "append"
29429 msgstr ""
29430
29431 # type: verbatim
29432 #. type: verbatim
29433 #: ../fish/guestfish-actions.pod:3878
29434 #, no-wrap
29435 msgid ""
29436 " set-append append\n"
29437 "\n"
29438 msgstr ""
29439
29440 #. type: =head2
29441 #: ../fish/guestfish-actions.pod:3889
29442 msgid "set-attach-method"
29443 msgstr ""
29444
29445 #. type: =head2
29446 #: ../fish/guestfish-actions.pod:3891
29447 msgid "attach-method"
29448 msgstr ""
29449
29450 #. type: verbatim
29451 #: ../fish/guestfish-actions.pod:3893
29452 #, no-wrap
29453 msgid ""
29454 " set-attach-method attachmethod\n"
29455 "\n"
29456 msgstr ""
29457
29458 # type: =head2
29459 #. type: =head2
29460 #: ../fish/guestfish-actions.pod:3915
29461 msgid "set-autosync"
29462 msgstr ""
29463
29464 # type: =head2
29465 #. type: =head2
29466 #: ../fish/guestfish-actions.pod:3917
29467 msgid "autosync"
29468 msgstr ""
29469
29470 # type: verbatim
29471 #. type: verbatim
29472 #: ../fish/guestfish-actions.pod:3919
29473 #, no-wrap
29474 msgid ""
29475 " set-autosync true|false\n"
29476 "\n"
29477 msgstr ""
29478
29479 # type: =head2
29480 #. type: =head2
29481 #: ../fish/guestfish-actions.pod:3929
29482 msgid "set-direct"
29483 msgstr ""
29484
29485 # type: =head2
29486 #. type: =head2
29487 #: ../fish/guestfish-actions.pod:3931
29488 msgid "direct"
29489 msgstr ""
29490
29491 # type: verbatim
29492 #. type: verbatim
29493 #: ../fish/guestfish-actions.pod:3933
29494 #, no-wrap
29495 msgid ""
29496 " set-direct true|false\n"
29497 "\n"
29498 msgstr ""
29499
29500 # type: textblock
29501 #. type: textblock
29502 #: ../fish/guestfish-actions.pod:3939
29503 msgid ""
29504 "One consequence of this is that log messages aren't caught by the library "
29505 "and handled by L</set-log-message-callback>, but go straight to stdout."
29506 msgstr ""
29507
29508 # type: =head2
29509 #. type: =head2
29510 #: ../fish/guestfish-actions.pod:3948
29511 msgid "set-e2label"
29512 msgstr ""
29513
29514 # type: verbatim
29515 #. type: verbatim
29516 #: ../fish/guestfish-actions.pod:3950
29517 #, no-wrap
29518 msgid ""
29519 " set-e2label device label\n"
29520 "\n"
29521 msgstr ""
29522
29523 # type: textblock
29524 #. type: textblock
29525 #: ../fish/guestfish-actions.pod:3956
29526 msgid ""
29527 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
29528 "label on a filesystem."
29529 msgstr ""
29530
29531 # type: =head2
29532 #. type: =head2
29533 #: ../fish/guestfish-actions.pod:3959
29534 msgid "set-e2uuid"
29535 msgstr ""
29536
29537 # type: verbatim
29538 #. type: verbatim
29539 #: ../fish/guestfish-actions.pod:3961
29540 #, no-wrap
29541 msgid ""
29542 " set-e2uuid device uuid\n"
29543 "\n"
29544 msgstr ""
29545
29546 # type: textblock
29547 #. type: textblock
29548 #: ../fish/guestfish-actions.pod:3968
29549 msgid ""
29550 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
29551 "UUID of a filesystem."
29552 msgstr ""
29553
29554 # type: =head2
29555 #. type: =head2
29556 #: ../fish/guestfish-actions.pod:3971
29557 msgid "set-memsize"
29558 msgstr ""
29559
29560 # type: =head2
29561 #. type: =head2
29562 #: ../fish/guestfish-actions.pod:3973
29563 msgid "memsize"
29564 msgstr ""
29565
29566 # type: verbatim
29567 #. type: verbatim
29568 #: ../fish/guestfish-actions.pod:3975
29569 #, no-wrap
29570 msgid ""
29571 " set-memsize memsize\n"
29572 "\n"
29573 msgstr ""
29574
29575 # type: textblock
29576 #. type: textblock
29577 #: ../fish/guestfish-actions.pod:3977
29578 msgid ""
29579 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
29580 "This only has any effect if called before L</launch>."
29581 msgstr ""
29582
29583 # type: =head2
29584 #. type: =head2
29585 #: ../fish/guestfish-actions.pod:3988
29586 msgid "set-network"
29587 msgstr ""
29588
29589 # type: =head2
29590 #. type: =head2
29591 #: ../fish/guestfish-actions.pod:3990
29592 msgid "network"
29593 msgstr ""
29594
29595 # type: verbatim
29596 #. type: verbatim
29597 #: ../fish/guestfish-actions.pod:3992
29598 #, no-wrap
29599 msgid ""
29600 " set-network true|false\n"
29601 "\n"
29602 msgstr ""
29603
29604 # type: textblock
29605 #. type: textblock
29606 #: ../fish/guestfish-actions.pod:4000
29607 msgid ""
29608 "You must call this before calling L</launch>, otherwise it has no effect."
29609 msgstr ""
29610
29611 # type: =head2
29612 #. type: =head2
29613 #: ../fish/guestfish-actions.pod:4003
29614 msgid "set-path"
29615 msgstr ""
29616
29617 # type: =head2
29618 #. type: =head2
29619 #: ../fish/guestfish-actions.pod:4005
29620 msgid "path"
29621 msgstr ""
29622
29623 # type: verbatim
29624 #. type: verbatim
29625 #: ../fish/guestfish-actions.pod:4007
29626 #, no-wrap
29627 msgid ""
29628 " set-path searchpath\n"
29629 "\n"
29630 msgstr ""
29631
29632 # type: =head2
29633 #. type: =head2
29634 #: ../fish/guestfish-actions.pod:4016
29635 msgid "set-qemu"
29636 msgstr ""
29637
29638 # type: =head2
29639 #. type: =head2
29640 #: ../fish/guestfish-actions.pod:4018
29641 msgid "qemu"
29642 msgstr ""
29643
29644 # type: verbatim
29645 #. type: verbatim
29646 #: ../fish/guestfish-actions.pod:4020
29647 #, no-wrap
29648 msgid ""
29649 " set-qemu qemu\n"
29650 "\n"
29651 msgstr ""
29652
29653 # type: =head2
29654 #. type: =head2
29655 #: ../fish/guestfish-actions.pod:4040
29656 msgid "set-recovery-proc"
29657 msgstr ""
29658
29659 # type: =head2
29660 #. type: =head2
29661 #: ../fish/guestfish-actions.pod:4042
29662 msgid "recovery-proc"
29663 msgstr ""
29664
29665 # type: verbatim
29666 #. type: verbatim
29667 #: ../fish/guestfish-actions.pod:4044
29668 #, no-wrap
29669 msgid ""
29670 " set-recovery-proc true|false\n"
29671 "\n"
29672 msgstr ""
29673
29674 # type: textblock
29675 #. type: textblock
29676 #: ../fish/guestfish-actions.pod:4046
29677 msgid ""
29678 "If this is called with the parameter C<false> then L</launch> does not "
29679 "create a recovery process.  The purpose of the recovery process is to stop "
29680 "runaway qemu processes in the case where the main program aborts abruptly."
29681 msgstr ""
29682
29683 # type: textblock
29684 #. type: textblock
29685 #: ../fish/guestfish-actions.pod:4051
29686 msgid ""
29687 "This only has any effect if called before L</launch>, and the default is "
29688 "true."
29689 msgstr ""
29690
29691 # type: =head2
29692 #. type: =head2
29693 #: ../fish/guestfish-actions.pod:4060
29694 msgid "set-selinux"
29695 msgstr ""
29696
29697 # type: =head2
29698 #. type: =head2
29699 #: ../fish/guestfish-actions.pod:4062
29700 msgid "selinux"
29701 msgstr ""
29702
29703 # type: verbatim
29704 #. type: verbatim
29705 #: ../fish/guestfish-actions.pod:4064
29706 #, no-wrap
29707 msgid ""
29708 " set-selinux true|false\n"
29709 "\n"
29710 msgstr ""
29711
29712 # type: =head2
29713 #. type: =head2
29714 #: ../fish/guestfish-actions.pod:4075
29715 msgid "set-trace"
29716 msgstr ""
29717
29718 # type: =head2
29719 #. type: =head2
29720 #: ../fish/guestfish-actions.pod:4077
29721 msgid "trace"
29722 msgstr ""
29723
29724 # type: verbatim
29725 #. type: verbatim
29726 #: ../fish/guestfish-actions.pod:4079
29727 #, no-wrap
29728 msgid ""
29729 " set-trace true|false\n"
29730 "\n"
29731 msgstr ""
29732
29733 #. type: textblock
29734 #: ../fish/guestfish-actions.pod:4091
29735 msgid ""
29736 "Trace messages are normally sent to C<stderr>, unless you register a "
29737 "callback to send them somewhere else (see L</set-event-callback>)."
29738 msgstr ""
29739
29740 # type: =head2
29741 #. type: =head2
29742 #: ../fish/guestfish-actions.pod:4095
29743 msgid "set-verbose"
29744 msgstr ""
29745
29746 # type: =head2
29747 #. type: =head2
29748 #: ../fish/guestfish-actions.pod:4097
29749 msgid "verbose"
29750 msgstr ""
29751
29752 # type: verbatim
29753 #. type: verbatim
29754 #: ../fish/guestfish-actions.pod:4099
29755 #, no-wrap
29756 msgid ""
29757 " set-verbose true|false\n"
29758 "\n"
29759 msgstr ""
29760
29761 #. type: textblock
29762 #: ../fish/guestfish-actions.pod:4106
29763 msgid ""
29764 "Verbose messages are normally sent to C<stderr>, unless you register a "
29765 "callback to send them somewhere else (see L</set-event-callback>)."
29766 msgstr ""
29767
29768 # type: =head2
29769 #. type: =head2
29770 #: ../fish/guestfish-actions.pod:4110
29771 msgid "setcon"
29772 msgstr ""
29773
29774 # type: verbatim
29775 #. type: verbatim
29776 #: ../fish/guestfish-actions.pod:4112
29777 #, no-wrap
29778 msgid ""
29779 " setcon context\n"
29780 "\n"
29781 msgstr ""
29782
29783 # type: =head2
29784 #. type: =head2
29785 #: ../fish/guestfish-actions.pod:4119
29786 msgid "setxattr"
29787 msgstr ""
29788
29789 # type: verbatim
29790 #. type: verbatim
29791 #: ../fish/guestfish-actions.pod:4121
29792 #, no-wrap
29793 msgid ""
29794 " setxattr xattr val vallen path\n"
29795 "\n"
29796 msgstr ""
29797
29798 # type: textblock
29799 #. type: textblock
29800 #: ../fish/guestfish-actions.pod:4127
29801 msgid "See also: L</lsetxattr>, L<attr(5)>."
29802 msgstr ""
29803
29804 # type: =head2
29805 #. type: =head2
29806 #: ../fish/guestfish-actions.pod:4129
29807 msgid "sfdisk"
29808 msgstr ""
29809
29810 # type: verbatim
29811 #. type: verbatim
29812 #: ../fish/guestfish-actions.pod:4131
29813 #, no-wrap
29814 msgid ""
29815 " sfdisk device cyls heads sectors 'lines ...'\n"
29816 "\n"
29817 msgstr ""
29818
29819 # type: textblock
29820 #. type: textblock
29821 #: ../fish/guestfish-actions.pod:4153
29822 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
29823 msgstr ""
29824
29825 # type: =head2
29826 #. type: =head2
29827 #: ../fish/guestfish-actions.pod:4159
29828 msgid "sfdiskM"
29829 msgstr ""
29830
29831 # type: verbatim
29832 #. type: verbatim
29833 #: ../fish/guestfish-actions.pod:4161
29834 #, no-wrap
29835 msgid ""
29836 " sfdiskM device 'lines ...'\n"
29837 "\n"
29838 msgstr ""
29839
29840 # type: textblock
29841 #. type: textblock
29842 #: ../fish/guestfish-actions.pod:4163
29843 msgid ""
29844 "This is a simplified interface to the L</sfdisk> command, where partition "
29845 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
29846 "you don't need to specify the cyls, heads and sectors parameters which were "
29847 "rarely if ever used anyway."
29848 msgstr ""
29849
29850 # type: textblock
29851 #. type: textblock
29852 #: ../fish/guestfish-actions.pod:4169
29853 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
29854 msgstr ""
29855
29856 # type: =head2
29857 #. type: =head2
29858 #: ../fish/guestfish-actions.pod:4175
29859 msgid "sfdisk-N"
29860 msgstr ""
29861
29862 # type: verbatim
29863 #. type: verbatim
29864 #: ../fish/guestfish-actions.pod:4177
29865 #, no-wrap
29866 msgid ""
29867 " sfdisk-N device partnum cyls heads sectors line\n"
29868 "\n"
29869 msgstr ""
29870
29871 # type: textblock
29872 #. type: textblock
29873 #: ../fish/guestfish-actions.pod:4182
29874 msgid ""
29875 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
29876 "cyls/heads/sectors parameters."
29877 msgstr ""
29878
29879 # type: textblock
29880 #. type: textblock
29881 #: ../fish/guestfish-actions.pod:4185
29882 msgid "See also: L</part-add>"
29883 msgstr ""
29884
29885 # type: =head2
29886 #. type: =head2
29887 #: ../fish/guestfish-actions.pod:4190
29888 msgid "sfdisk-disk-geometry"
29889 msgstr ""
29890
29891 # type: verbatim
29892 #. type: verbatim
29893 #: ../fish/guestfish-actions.pod:4192
29894 #, no-wrap
29895 msgid ""
29896 " sfdisk-disk-geometry device\n"
29897 "\n"
29898 msgstr ""
29899
29900 # type: textblock
29901 #. type: textblock
29902 #: ../fish/guestfish-actions.pod:4194
29903 msgid ""
29904 "This displays the disk geometry of C<device> read from the partition table.  "
29905 "Especially in the case where the underlying block device has been resized, "
29906 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
29907 "kernel-geometry>)."
29908 msgstr ""
29909
29910 # type: =head2
29911 #. type: =head2
29912 #: ../fish/guestfish-actions.pod:4202
29913 msgid "sfdisk-kernel-geometry"
29914 msgstr ""
29915
29916 # type: verbatim
29917 #. type: verbatim
29918 #: ../fish/guestfish-actions.pod:4204
29919 #, no-wrap
29920 msgid ""
29921 " sfdisk-kernel-geometry device\n"
29922 "\n"
29923 msgstr ""
29924
29925 # type: =head2
29926 #. type: =head2
29927 #: ../fish/guestfish-actions.pod:4211
29928 msgid "sfdisk-l"
29929 msgstr ""
29930
29931 # type: verbatim
29932 #. type: verbatim
29933 #: ../fish/guestfish-actions.pod:4213
29934 #, no-wrap
29935 msgid ""
29936 " sfdisk-l device\n"
29937 "\n"
29938 msgstr ""
29939
29940 # type: textblock
29941 #. type: textblock
29942 #: ../fish/guestfish-actions.pod:4219
29943 msgid "See also: L</part-list>"
29944 msgstr ""
29945
29946 # type: =head2
29947 #. type: =head2
29948 #: ../fish/guestfish-actions.pod:4221
29949 msgid "sh"
29950 msgstr ""
29951
29952 # type: verbatim
29953 #. type: verbatim
29954 #: ../fish/guestfish-actions.pod:4223
29955 #, no-wrap
29956 msgid ""
29957 " sh command\n"
29958 "\n"
29959 msgstr ""
29960
29961 # type: textblock
29962 #. type: textblock
29963 #: ../fish/guestfish-actions.pod:4228
29964 msgid "This is like L</command>, but passes the command to:"
29965 msgstr ""
29966
29967 # type: textblock
29968 #. type: textblock
29969 #: ../fish/guestfish-actions.pod:4236
29970 msgid "All the provisos about L</command> apply to this call."
29971 msgstr ""
29972
29973 # type: =head2
29974 #. type: =head2
29975 #: ../fish/guestfish-actions.pod:4238
29976 msgid "sh-lines"
29977 msgstr ""
29978
29979 # type: verbatim
29980 #. type: verbatim
29981 #: ../fish/guestfish-actions.pod:4240
29982 #, no-wrap
29983 msgid ""
29984 " sh-lines command\n"
29985 "\n"
29986 msgstr ""
29987
29988 # type: textblock
29989 #. type: textblock
29990 #: ../fish/guestfish-actions.pod:4242
29991 msgid "This is the same as L</sh>, but splits the result into a list of lines."
29992 msgstr ""
29993
29994 # type: textblock
29995 #. type: textblock
29996 #: ../fish/guestfish-actions.pod:4245
29997 msgid "See also: L</command-lines>"
29998 msgstr ""
29999
30000 # type: =head2
30001 #. type: =head2
30002 #: ../fish/guestfish-actions.pod:4247
30003 msgid "sleep"
30004 msgstr ""
30005
30006 # type: verbatim
30007 #. type: verbatim
30008 #: ../fish/guestfish-actions.pod:4249
30009 #, no-wrap
30010 msgid ""
30011 " sleep secs\n"
30012 "\n"
30013 msgstr ""
30014
30015 # type: =head2
30016 #. type: =head2
30017 #: ../fish/guestfish-actions.pod:4253
30018 msgid "stat"
30019 msgstr ""
30020
30021 # type: verbatim
30022 #. type: verbatim
30023 #: ../fish/guestfish-actions.pod:4255
30024 #, no-wrap
30025 msgid ""
30026 " stat path\n"
30027 "\n"
30028 msgstr ""
30029
30030 # type: =head2
30031 #. type: =head2
30032 #: ../fish/guestfish-actions.pod:4261
30033 msgid "statvfs"
30034 msgstr ""
30035
30036 # type: verbatim
30037 #. type: verbatim
30038 #: ../fish/guestfish-actions.pod:4263
30039 #, no-wrap
30040 msgid ""
30041 " statvfs path\n"
30042 "\n"
30043 msgstr ""
30044
30045 # type: =head2
30046 #. type: =head2
30047 #: ../fish/guestfish-actions.pod:4271
30048 msgid "strings"
30049 msgstr ""
30050
30051 # type: verbatim
30052 #. type: verbatim
30053 #: ../fish/guestfish-actions.pod:4273
30054 #, no-wrap
30055 msgid ""
30056 " strings path\n"
30057 "\n"
30058 msgstr ""
30059
30060 # type: =head2
30061 #. type: =head2
30062 #: ../fish/guestfish-actions.pod:4281
30063 msgid "strings-e"
30064 msgstr ""
30065
30066 # type: verbatim
30067 #. type: verbatim
30068 #: ../fish/guestfish-actions.pod:4283
30069 #, no-wrap
30070 msgid ""
30071 " strings-e encoding path\n"
30072 "\n"
30073 msgstr ""
30074
30075 # type: textblock
30076 #. type: textblock
30077 #: ../fish/guestfish-actions.pod:4285
30078 msgid ""
30079 "This is like the L</strings> command, but allows you to specify the encoding "
30080 "of strings that are looked for in the source file C<path>."
30081 msgstr ""
30082
30083 # type: textblock
30084 #. type: textblock
30085 #: ../fish/guestfish-actions.pod:4295
30086 msgid ""
30087 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
30088 "ISO-8859-X (this is what L</strings> uses)."
30089 msgstr ""
30090
30091 # type: =head2
30092 #. type: =head2
30093 #: ../fish/guestfish-actions.pod:4327
30094 msgid "swapoff-device"
30095 msgstr ""
30096
30097 # type: verbatim
30098 #. type: verbatim
30099 #: ../fish/guestfish-actions.pod:4329
30100 #, no-wrap
30101 msgid ""
30102 " swapoff-device device\n"
30103 "\n"
30104 msgstr ""
30105
30106 # type: textblock
30107 #. type: textblock
30108 #: ../fish/guestfish-actions.pod:4331
30109 msgid ""
30110 "This command disables the libguestfs appliance swap device or partition "
30111 "named C<device>.  See L</swapon-device>."
30112 msgstr ""
30113
30114 # type: =head2
30115 #. type: =head2
30116 #: ../fish/guestfish-actions.pod:4335
30117 msgid "swapoff-file"
30118 msgstr ""
30119
30120 # type: verbatim
30121 #. type: verbatim
30122 #: ../fish/guestfish-actions.pod:4337
30123 #, no-wrap
30124 msgid ""
30125 " swapoff-file file\n"
30126 "\n"
30127 msgstr ""
30128
30129 # type: =head2
30130 #. type: =head2
30131 #: ../fish/guestfish-actions.pod:4341
30132 msgid "swapoff-label"
30133 msgstr ""
30134
30135 # type: verbatim
30136 #. type: verbatim
30137 #: ../fish/guestfish-actions.pod:4343
30138 #, no-wrap
30139 msgid ""
30140 " swapoff-label label\n"
30141 "\n"
30142 msgstr ""
30143
30144 # type: =head2
30145 #. type: =head2
30146 #: ../fish/guestfish-actions.pod:4348
30147 msgid "swapoff-uuid"
30148 msgstr ""
30149
30150 # type: verbatim
30151 #. type: verbatim
30152 #: ../fish/guestfish-actions.pod:4350
30153 #, no-wrap
30154 msgid ""
30155 " swapoff-uuid uuid\n"
30156 "\n"
30157 msgstr ""
30158
30159 # type: =head2
30160 #. type: =head2
30161 #: ../fish/guestfish-actions.pod:4355
30162 msgid "swapon-device"
30163 msgstr ""
30164
30165 # type: verbatim
30166 #. type: verbatim
30167 #: ../fish/guestfish-actions.pod:4357
30168 #, no-wrap
30169 msgid ""
30170 " swapon-device device\n"
30171 "\n"
30172 msgstr ""
30173
30174 # type: textblock
30175 #. type: textblock
30176 #: ../fish/guestfish-actions.pod:4359
30177 msgid ""
30178 "This command enables the libguestfs appliance to use the swap device or "
30179 "partition named C<device>.  The increased memory is made available for all "
30180 "commands, for example those run using L</command> or L</sh>."
30181 msgstr ""
30182
30183 # type: =head2
30184 #. type: =head2
30185 #: ../fish/guestfish-actions.pod:4371
30186 msgid "swapon-file"
30187 msgstr ""
30188
30189 # type: verbatim
30190 #. type: verbatim
30191 #: ../fish/guestfish-actions.pod:4373
30192 #, no-wrap
30193 msgid ""
30194 " swapon-file file\n"
30195 "\n"
30196 msgstr ""
30197
30198 # type: textblock
30199 #. type: textblock
30200 #: ../fish/guestfish-actions.pod:4375
30201 msgid ""
30202 "This command enables swap to a file.  See L</swapon-device> for other notes."
30203 msgstr ""
30204
30205 # type: =head2
30206 #. type: =head2
30207 #: ../fish/guestfish-actions.pod:4378
30208 msgid "swapon-label"
30209 msgstr ""
30210
30211 # type: verbatim
30212 #. type: verbatim
30213 #: ../fish/guestfish-actions.pod:4380
30214 #, no-wrap
30215 msgid ""
30216 " swapon-label label\n"
30217 "\n"
30218 msgstr ""
30219
30220 # type: textblock
30221 #. type: textblock
30222 #: ../fish/guestfish-actions.pod:4382
30223 msgid ""
30224 "This command enables swap to a labeled swap partition.  See L</swapon-"
30225 "device> for other notes."
30226 msgstr ""
30227
30228 # type: =head2
30229 #. type: =head2
30230 #: ../fish/guestfish-actions.pod:4385
30231 msgid "swapon-uuid"
30232 msgstr ""
30233
30234 # type: verbatim
30235 #. type: verbatim
30236 #: ../fish/guestfish-actions.pod:4387
30237 #, no-wrap
30238 msgid ""
30239 " swapon-uuid uuid\n"
30240 "\n"
30241 msgstr ""
30242
30243 # type: textblock
30244 #. type: textblock
30245 #: ../fish/guestfish-actions.pod:4389
30246 msgid ""
30247 "This command enables swap to a swap partition with the given UUID.  See L</"
30248 "swapon-device> for other notes."
30249 msgstr ""
30250
30251 # type: =head2
30252 #. type: =head2
30253 #: ../fish/guestfish-actions.pod:4392
30254 msgid "sync"
30255 msgstr ""
30256
30257 # type: verbatim
30258 #. type: verbatim
30259 #: ../fish/guestfish-actions.pod:4394
30260 #, no-wrap
30261 msgid ""
30262 " sync\n"
30263 "\n"
30264 msgstr ""
30265
30266 # type: =head2
30267 #. type: =head2
30268 #: ../fish/guestfish-actions.pod:4402
30269 msgid "tail"
30270 msgstr ""
30271
30272 # type: verbatim
30273 #. type: verbatim
30274 #: ../fish/guestfish-actions.pod:4404
30275 #, no-wrap
30276 msgid ""
30277 " tail path\n"
30278 "\n"
30279 msgstr ""
30280
30281 # type: =head2
30282 #. type: =head2
30283 #: ../fish/guestfish-actions.pod:4412
30284 msgid "tail-n"
30285 msgstr ""
30286
30287 # type: verbatim
30288 #. type: verbatim
30289 #: ../fish/guestfish-actions.pod:4414
30290 #, no-wrap
30291 msgid ""
30292 " tail-n nrlines path\n"
30293 "\n"
30294 msgstr ""
30295
30296 # type: =head2
30297 #. type: =head2
30298 #: ../fish/guestfish-actions.pod:4427
30299 msgid "tar-in"
30300 msgstr ""
30301
30302 # type: verbatim
30303 #. type: verbatim
30304 #: ../fish/guestfish-actions.pod:4429
30305 #, no-wrap
30306 msgid ""
30307 " tar-in (tarfile|-) directory\n"
30308 "\n"
30309 msgstr ""
30310
30311 # type: textblock
30312 #. type: textblock
30313 #: ../fish/guestfish-actions.pod:4434
30314 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
30315 msgstr ""
30316
30317 # type: =head2
30318 #. type: =head2
30319 #: ../fish/guestfish-actions.pod:4439
30320 msgid "tar-out"
30321 msgstr ""
30322
30323 # type: verbatim
30324 #. type: verbatim
30325 #: ../fish/guestfish-actions.pod:4441
30326 #, no-wrap
30327 msgid ""
30328 " tar-out directory (tarfile|-)\n"
30329 "\n"
30330 msgstr ""
30331
30332 # type: textblock
30333 #. type: textblock
30334 #: ../fish/guestfish-actions.pod:4446
30335 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
30336 msgstr ""
30337
30338 # type: =head2
30339 #. type: =head2
30340 #: ../fish/guestfish-actions.pod:4451
30341 msgid "tgz-in"
30342 msgstr ""
30343
30344 # type: verbatim
30345 #. type: verbatim
30346 #: ../fish/guestfish-actions.pod:4453
30347 #, no-wrap
30348 msgid ""
30349 " tgz-in (tarball|-) directory\n"
30350 "\n"
30351 msgstr ""
30352
30353 # type: textblock
30354 #. type: textblock
30355 #: ../fish/guestfish-actions.pod:4458
30356 msgid "To upload an uncompressed tarball, use L</tar-in>."
30357 msgstr ""
30358
30359 # type: =head2
30360 #. type: =head2
30361 #: ../fish/guestfish-actions.pod:4462
30362 msgid "tgz-out"
30363 msgstr ""
30364
30365 # type: verbatim
30366 #. type: verbatim
30367 #: ../fish/guestfish-actions.pod:4464
30368 #, no-wrap
30369 msgid ""
30370 " tgz-out directory (tarball|-)\n"
30371 "\n"
30372 msgstr ""
30373
30374 # type: textblock
30375 #. type: textblock
30376 #: ../fish/guestfish-actions.pod:4469
30377 msgid "To download an uncompressed tarball, use L</tar-out>."
30378 msgstr ""
30379
30380 # type: =head2
30381 #. type: =head2
30382 #: ../fish/guestfish-actions.pod:4473
30383 msgid "touch"
30384 msgstr ""
30385
30386 # type: verbatim
30387 #. type: verbatim
30388 #: ../fish/guestfish-actions.pod:4475
30389 #, no-wrap
30390 msgid ""
30391 " touch path\n"
30392 "\n"
30393 msgstr ""
30394
30395 # type: =head2
30396 #. type: =head2
30397 #: ../fish/guestfish-actions.pod:4484
30398 msgid "truncate"
30399 msgstr ""
30400
30401 # type: verbatim
30402 #. type: verbatim
30403 #: ../fish/guestfish-actions.pod:4486
30404 #, no-wrap
30405 msgid ""
30406 " truncate path\n"
30407 "\n"
30408 msgstr ""
30409
30410 # type: =head2
30411 #. type: =head2
30412 #: ../fish/guestfish-actions.pod:4491
30413 msgid "truncate-size"
30414 msgstr ""
30415
30416 # type: verbatim
30417 #. type: verbatim
30418 #: ../fish/guestfish-actions.pod:4493
30419 #, no-wrap
30420 msgid ""
30421 " truncate-size path size\n"
30422 "\n"
30423 msgstr ""
30424
30425 # type: textblock
30426 #. type: textblock
30427 #: ../fish/guestfish-actions.pod:4498
30428 msgid ""
30429 "If the current file size is less than C<size> then the file is extended to "
30430 "the required size with zero bytes.  This creates a sparse file (ie. disk "
30431 "blocks are not allocated for the file until you write to it).  To create a "
30432 "non-sparse file of zeroes, use L</fallocate64> instead."
30433 msgstr ""
30434
30435 # type: =head2
30436 #. type: =head2
30437 #: ../fish/guestfish-actions.pod:4504
30438 msgid "tune2fs-l"
30439 msgstr ""
30440
30441 # type: verbatim
30442 #. type: verbatim
30443 #: ../fish/guestfish-actions.pod:4506
30444 #, no-wrap
30445 msgid ""
30446 " tune2fs-l device\n"
30447 "\n"
30448 msgstr ""
30449
30450 # type: =head2
30451 #. type: =head2
30452 #: ../fish/guestfish-actions.pod:4516
30453 msgid "txz-in"
30454 msgstr ""
30455
30456 # type: verbatim
30457 #. type: verbatim
30458 #: ../fish/guestfish-actions.pod:4518
30459 #, no-wrap
30460 msgid ""
30461 " txz-in (tarball|-) directory\n"
30462 "\n"
30463 msgstr ""
30464
30465 # type: =head2
30466 #. type: =head2
30467 #: ../fish/guestfish-actions.pod:4525
30468 msgid "txz-out"
30469 msgstr ""
30470
30471 # type: verbatim
30472 #. type: verbatim
30473 #: ../fish/guestfish-actions.pod:4527
30474 #, no-wrap
30475 msgid ""
30476 " txz-out directory (tarball|-)\n"
30477 "\n"
30478 msgstr ""
30479
30480 # type: =head2
30481 #. type: =head2
30482 #: ../fish/guestfish-actions.pod:4534
30483 msgid "umask"
30484 msgstr ""
30485
30486 # type: verbatim
30487 #. type: verbatim
30488 #: ../fish/guestfish-actions.pod:4536
30489 #, no-wrap
30490 msgid ""
30491 " umask mask\n"
30492 "\n"
30493 msgstr ""
30494
30495 # type: textblock
30496 #. type: textblock
30497 #: ../fish/guestfish-actions.pod:4550
30498 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
30499 msgstr ""
30500
30501 # type: =head2
30502 #. type: =head2
30503 #: ../fish/guestfish-actions.pod:4555
30504 msgid "umount"
30505 msgstr ""
30506
30507 # type: =head2
30508 #. type: =head2
30509 #: ../fish/guestfish-actions.pod:4557
30510 msgid "unmount"
30511 msgstr ""
30512
30513 # type: verbatim
30514 #. type: verbatim
30515 #: ../fish/guestfish-actions.pod:4559
30516 #, no-wrap
30517 msgid ""
30518 " umount pathordevice\n"
30519 "\n"
30520 msgstr ""
30521
30522 # type: =head2
30523 #. type: =head2
30524 #: ../fish/guestfish-actions.pod:4565
30525 msgid "umount-all"
30526 msgstr ""
30527
30528 # type: =head2
30529 #. type: =head2
30530 #: ../fish/guestfish-actions.pod:4567
30531 msgid "unmount-all"
30532 msgstr ""
30533
30534 # type: verbatim
30535 #. type: verbatim
30536 #: ../fish/guestfish-actions.pod:4569
30537 #, no-wrap
30538 msgid ""
30539 " umount-all\n"
30540 "\n"
30541 msgstr ""
30542
30543 # type: =head2
30544 #. type: =head2
30545 #: ../fish/guestfish-actions.pod:4575
30546 msgid "upload"
30547 msgstr ""
30548
30549 # type: verbatim
30550 #. type: verbatim
30551 #: ../fish/guestfish-actions.pod:4577
30552 #, no-wrap
30553 msgid ""
30554 " upload (filename|-) remotefilename\n"
30555 "\n"
30556 msgstr ""
30557
30558 # type: textblock
30559 #. type: textblock
30560 #: ../fish/guestfish-actions.pod:4584
30561 msgid "See also L</download>."
30562 msgstr ""
30563
30564 # type: =head2
30565 #. type: =head2
30566 #: ../fish/guestfish-actions.pod:4588
30567 msgid "upload-offset"
30568 msgstr ""
30569
30570 # type: verbatim
30571 #. type: verbatim
30572 #: ../fish/guestfish-actions.pod:4590
30573 #, no-wrap
30574 msgid ""
30575 " upload-offset (filename|-) remotefilename offset\n"
30576 "\n"
30577 msgstr ""
30578
30579 # type: textblock
30580 #. type: textblock
30581 #: ../fish/guestfish-actions.pod:4602
30582 msgid ""
30583 "Note that there is no limit on the amount of data that can be uploaded with "
30584 "this call, unlike with L</pwrite>, and this call always writes the full "
30585 "amount unless an error occurs."
30586 msgstr ""
30587
30588 # type: textblock
30589 #. type: textblock
30590 #: ../fish/guestfish-actions.pod:4607
30591 msgid "See also L</upload>, L</pwrite>."
30592 msgstr ""
30593
30594 # type: =head2
30595 #. type: =head2
30596 #: ../fish/guestfish-actions.pod:4611
30597 msgid "utimens"
30598 msgstr ""
30599
30600 # type: verbatim
30601 #. type: verbatim
30602 #: ../fish/guestfish-actions.pod:4613
30603 #, no-wrap
30604 msgid ""
30605 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
30606 "\n"
30607 msgstr ""
30608
30609 # type: =head2
30610 #. type: =head2
30611 #: ../fish/guestfish-actions.pod:4632
30612 msgid "version"
30613 msgstr ""
30614
30615 # type: verbatim
30616 #. type: verbatim
30617 #: ../fish/guestfish-actions.pod:4634
30618 #, no-wrap
30619 msgid ""
30620 " version\n"
30621 "\n"
30622 msgstr ""
30623
30624 # type: textblock
30625 #. type: textblock
30626 #: ../fish/guestfish-actions.pod:4661
30627 msgid ""
30628 "I<Note:> Don't use this call to test for availability of features.  In "
30629 "enterprise distributions we backport features from later versions into "
30630 "earlier versions, making this an unreliable way to test for features.  Use "
30631 "L</available> instead."
30632 msgstr ""
30633
30634 # type: =head2
30635 #. type: =head2
30636 #: ../fish/guestfish-actions.pod:4667
30637 msgid "vfs-label"
30638 msgstr ""
30639
30640 # type: verbatim
30641 #. type: verbatim
30642 #: ../fish/guestfish-actions.pod:4669
30643 #, no-wrap
30644 msgid ""
30645 " vfs-label device\n"
30646 "\n"
30647 msgstr ""
30648
30649 # type: textblock
30650 #. type: textblock
30651 #: ../fish/guestfish-actions.pod:4676
30652 msgid "To find a filesystem from the label, use L</findfs-label>."
30653 msgstr ""
30654
30655 # type: =head2
30656 #. type: =head2
30657 #: ../fish/guestfish-actions.pod:4678
30658 msgid "vfs-type"
30659 msgstr ""
30660
30661 # type: verbatim
30662 #. type: verbatim
30663 #: ../fish/guestfish-actions.pod:4680
30664 #, no-wrap
30665 msgid ""
30666 " vfs-type device\n"
30667 "\n"
30668 msgstr ""
30669
30670 # type: =head2
30671 #. type: =head2
30672 #: ../fish/guestfish-actions.pod:4690
30673 msgid "vfs-uuid"
30674 msgstr ""
30675
30676 # type: verbatim
30677 #. type: verbatim
30678 #: ../fish/guestfish-actions.pod:4692
30679 #, no-wrap
30680 msgid ""
30681 " vfs-uuid device\n"
30682 "\n"
30683 msgstr ""
30684
30685 # type: textblock
30686 #. type: textblock
30687 #: ../fish/guestfish-actions.pod:4699
30688 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
30689 msgstr ""
30690
30691 # type: =head2
30692 #. type: =head2
30693 #: ../fish/guestfish-actions.pod:4701
30694 msgid "vg-activate"
30695 msgstr ""
30696
30697 # type: verbatim
30698 #. type: verbatim
30699 #: ../fish/guestfish-actions.pod:4703
30700 #, no-wrap
30701 msgid ""
30702 " vg-activate true|false 'volgroups ...'\n"
30703 "\n"
30704 msgstr ""
30705
30706 # type: =head2
30707 #. type: =head2
30708 #: ../fish/guestfish-actions.pod:4716
30709 msgid "vg-activate-all"
30710 msgstr ""
30711
30712 # type: verbatim
30713 #. type: verbatim
30714 #: ../fish/guestfish-actions.pod:4718
30715 #, no-wrap
30716 msgid ""
30717 " vg-activate-all true|false\n"
30718 "\n"
30719 msgstr ""
30720
30721 # type: =head2
30722 #. type: =head2
30723 #: ../fish/guestfish-actions.pod:4728
30724 msgid "vgcreate"
30725 msgstr ""
30726
30727 # type: verbatim
30728 #. type: verbatim
30729 #: ../fish/guestfish-actions.pod:4730
30730 #, no-wrap
30731 msgid ""
30732 " vgcreate volgroup 'physvols ...'\n"
30733 "\n"
30734 msgstr ""
30735
30736 # type: =head2
30737 #. type: =head2
30738 #: ../fish/guestfish-actions.pod:4735
30739 msgid "vglvuuids"
30740 msgstr ""
30741
30742 # type: verbatim
30743 #. type: verbatim
30744 #: ../fish/guestfish-actions.pod:4737
30745 #, no-wrap
30746 msgid ""
30747 " vglvuuids vgname\n"
30748 "\n"
30749 msgstr ""
30750
30751 # type: textblock
30752 #. type: textblock
30753 #: ../fish/guestfish-actions.pod:4742
30754 msgid ""
30755 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
30756 "logical volumes and volume groups."
30757 msgstr ""
30758
30759 # type: textblock
30760 #. type: textblock
30761 #: ../fish/guestfish-actions.pod:4745
30762 msgid "See also L</vgpvuuids>."
30763 msgstr ""
30764
30765 # type: =head2
30766 #. type: =head2
30767 #: ../fish/guestfish-actions.pod:4747
30768 msgid "vgpvuuids"
30769 msgstr ""
30770
30771 # type: verbatim
30772 #. type: verbatim
30773 #: ../fish/guestfish-actions.pod:4749
30774 #, no-wrap
30775 msgid ""
30776 " vgpvuuids vgname\n"
30777 "\n"
30778 msgstr ""
30779
30780 # type: textblock
30781 #. type: textblock
30782 #: ../fish/guestfish-actions.pod:4754
30783 msgid ""
30784 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
30785 "physical volumes and volume groups."
30786 msgstr ""
30787
30788 # type: textblock
30789 #. type: textblock
30790 #: ../fish/guestfish-actions.pod:4757
30791 msgid "See also L</vglvuuids>."
30792 msgstr ""
30793
30794 # type: =head2
30795 #. type: =head2
30796 #: ../fish/guestfish-actions.pod:4759
30797 msgid "vgremove"
30798 msgstr ""
30799
30800 # type: verbatim
30801 #. type: verbatim
30802 #: ../fish/guestfish-actions.pod:4761
30803 #, no-wrap
30804 msgid ""
30805 " vgremove vgname\n"
30806 "\n"
30807 msgstr ""
30808
30809 # type: =head2
30810 #. type: =head2
30811 #: ../fish/guestfish-actions.pod:4768
30812 msgid "vgrename"
30813 msgstr ""
30814
30815 # type: verbatim
30816 #. type: verbatim
30817 #: ../fish/guestfish-actions.pod:4770
30818 #, no-wrap
30819 msgid ""
30820 " vgrename volgroup newvolgroup\n"
30821 "\n"
30822 msgstr ""
30823
30824 # type: =head2
30825 #. type: =head2
30826 #: ../fish/guestfish-actions.pod:4774
30827 msgid "vgs"
30828 msgstr ""
30829
30830 # type: verbatim
30831 #. type: verbatim
30832 #: ../fish/guestfish-actions.pod:4776
30833 #, no-wrap
30834 msgid ""
30835 " vgs\n"
30836 "\n"
30837 msgstr ""
30838
30839 # type: textblock
30840 #. type: textblock
30841 #: ../fish/guestfish-actions.pod:4784
30842 msgid "See also L</vgs-full>."
30843 msgstr ""
30844
30845 # type: =head2
30846 #. type: =head2
30847 #: ../fish/guestfish-actions.pod:4786
30848 msgid "vgs-full"
30849 msgstr ""
30850
30851 # type: verbatim
30852 #. type: verbatim
30853 #: ../fish/guestfish-actions.pod:4788
30854 #, no-wrap
30855 msgid ""
30856 " vgs-full\n"
30857 "\n"
30858 msgstr ""
30859
30860 # type: =head2
30861 #. type: =head2
30862 #: ../fish/guestfish-actions.pod:4793
30863 msgid "vgscan"
30864 msgstr ""
30865
30866 # type: verbatim
30867 #. type: verbatim
30868 #: ../fish/guestfish-actions.pod:4795
30869 #, no-wrap
30870 msgid ""
30871 " vgscan\n"
30872 "\n"
30873 msgstr ""
30874
30875 # type: =head2
30876 #. type: =head2
30877 #: ../fish/guestfish-actions.pod:4800
30878 msgid "vguuid"
30879 msgstr ""
30880
30881 # type: verbatim
30882 #. type: verbatim
30883 #: ../fish/guestfish-actions.pod:4802
30884 #, no-wrap
30885 msgid ""
30886 " vguuid vgname\n"
30887 "\n"
30888 msgstr ""
30889
30890 # type: =head2
30891 #. type: =head2
30892 #: ../fish/guestfish-actions.pod:4806
30893 msgid "wc-c"
30894 msgstr ""
30895
30896 # type: verbatim
30897 #. type: verbatim
30898 #: ../fish/guestfish-actions.pod:4808
30899 #, no-wrap
30900 msgid ""
30901 " wc-c path\n"
30902 "\n"
30903 msgstr ""
30904
30905 # type: =head2
30906 #. type: =head2
30907 #: ../fish/guestfish-actions.pod:4813
30908 msgid "wc-l"
30909 msgstr ""
30910
30911 # type: verbatim
30912 #. type: verbatim
30913 #: ../fish/guestfish-actions.pod:4815
30914 #, no-wrap
30915 msgid ""
30916 " wc-l path\n"
30917 "\n"
30918 msgstr ""
30919
30920 # type: =head2
30921 #. type: =head2
30922 #: ../fish/guestfish-actions.pod:4820
30923 msgid "wc-w"
30924 msgstr ""
30925
30926 # type: verbatim
30927 #. type: verbatim
30928 #: ../fish/guestfish-actions.pod:4822
30929 #, no-wrap
30930 msgid ""
30931 " wc-w path\n"
30932 "\n"
30933 msgstr ""
30934
30935 # type: =head2
30936 #. type: =head2
30937 #: ../fish/guestfish-actions.pod:4827
30938 msgid "write"
30939 msgstr ""
30940
30941 # type: verbatim
30942 #. type: verbatim
30943 #: ../fish/guestfish-actions.pod:4829
30944 #, no-wrap
30945 msgid ""
30946 " write path content\n"
30947 "\n"
30948 msgstr ""
30949
30950 # type: =head2
30951 #. type: =head2
30952 #: ../fish/guestfish-actions.pod:4837
30953 msgid "write-file"
30954 msgstr ""
30955
30956 # type: verbatim
30957 #. type: verbatim
30958 #: ../fish/guestfish-actions.pod:4839
30959 #, no-wrap
30960 msgid ""
30961 " write-file path content size\n"
30962 "\n"
30963 msgstr ""
30964
30965 # type: =head2
30966 #. type: =head2
30967 #: ../fish/guestfish-actions.pod:4862
30968 msgid "zegrep"
30969 msgstr ""
30970
30971 # type: verbatim
30972 #. type: verbatim
30973 #: ../fish/guestfish-actions.pod:4864
30974 #, no-wrap
30975 msgid ""
30976 " zegrep regex path\n"
30977 "\n"
30978 msgstr ""
30979
30980 # type: =head2
30981 #. type: =head2
30982 #: ../fish/guestfish-actions.pod:4872
30983 msgid "zegrepi"
30984 msgstr ""
30985
30986 # type: verbatim
30987 #. type: verbatim
30988 #: ../fish/guestfish-actions.pod:4874
30989 #, no-wrap
30990 msgid ""
30991 " zegrepi regex path\n"
30992 "\n"
30993 msgstr ""
30994
30995 # type: =head2
30996 #. type: =head2
30997 #: ../fish/guestfish-actions.pod:4882
30998 msgid "zero"
30999 msgstr ""
31000
31001 # type: verbatim
31002 #. type: verbatim
31003 #: ../fish/guestfish-actions.pod:4884
31004 #, no-wrap
31005 msgid ""
31006 " zero device\n"
31007 "\n"
31008 msgstr ""
31009
31010 # type: textblock
31011 #. type: textblock
31012 #: ../fish/guestfish-actions.pod:4892
31013 msgid "See also: L</zero-device>, L</scrub-device>."
31014 msgstr ""
31015
31016 # type: =head2
31017 #. type: =head2
31018 #: ../fish/guestfish-actions.pod:4894
31019 msgid "zero-device"
31020 msgstr ""
31021
31022 # type: verbatim
31023 #. type: verbatim
31024 #: ../fish/guestfish-actions.pod:4896
31025 #, no-wrap
31026 msgid ""
31027 " zero-device device\n"
31028 "\n"
31029 msgstr ""
31030
31031 # type: textblock
31032 #. type: textblock
31033 #: ../fish/guestfish-actions.pod:4898
31034 msgid ""
31035 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
31036 "which just zeroes the first few blocks of a device."
31037 msgstr ""
31038
31039 # type: =head2
31040 #. type: =head2
31041 #: ../fish/guestfish-actions.pod:4905
31042 msgid "zerofree"
31043 msgstr ""
31044
31045 # type: verbatim
31046 #. type: verbatim
31047 #: ../fish/guestfish-actions.pod:4907
31048 #, no-wrap
31049 msgid ""
31050 " zerofree device\n"
31051 "\n"
31052 msgstr ""
31053
31054 # type: =head2
31055 #. type: =head2
31056 #: ../fish/guestfish-actions.pod:4920
31057 msgid "zfgrep"
31058 msgstr ""
31059
31060 # type: verbatim
31061 #. type: verbatim
31062 #: ../fish/guestfish-actions.pod:4922
31063 #, no-wrap
31064 msgid ""
31065 " zfgrep pattern path\n"
31066 "\n"
31067 msgstr ""
31068
31069 # type: =head2
31070 #. type: =head2
31071 #: ../fish/guestfish-actions.pod:4930
31072 msgid "zfgrepi"
31073 msgstr ""
31074
31075 # type: verbatim
31076 #. type: verbatim
31077 #: ../fish/guestfish-actions.pod:4932
31078 #, no-wrap
31079 msgid ""
31080 " zfgrepi pattern path\n"
31081 "\n"
31082 msgstr ""
31083
31084 # type: =head2
31085 #. type: =head2
31086 #: ../fish/guestfish-actions.pod:4940
31087 msgid "zfile"
31088 msgstr ""
31089
31090 # type: verbatim
31091 #. type: verbatim
31092 #: ../fish/guestfish-actions.pod:4942
31093 #, no-wrap
31094 msgid ""
31095 " zfile meth path\n"
31096 "\n"
31097 msgstr ""
31098
31099 # type: textblock
31100 #. type: textblock
31101 #: ../fish/guestfish-actions.pod:4949
31102 msgid ""
31103 "Since 1.0.63, use L</file> instead which can now process compressed files."
31104 msgstr ""
31105
31106 # type: =head2
31107 #. type: =head2
31108 #: ../fish/guestfish-actions.pod:4959
31109 msgid "zgrep"
31110 msgstr ""
31111
31112 # type: verbatim
31113 #. type: verbatim
31114 #: ../fish/guestfish-actions.pod:4961
31115 #, no-wrap
31116 msgid ""
31117 " zgrep regex path\n"
31118 "\n"
31119 msgstr ""
31120
31121 # type: =head2
31122 #. type: =head2
31123 #: ../fish/guestfish-actions.pod:4969
31124 msgid "zgrepi"
31125 msgstr ""
31126
31127 # type: verbatim
31128 #. type: verbatim
31129 #: ../fish/guestfish-actions.pod:4971
31130 #, no-wrap
31131 msgid ""
31132 " zgrepi regex path\n"
31133 "\n"
31134 msgstr ""
31135
31136 # type: =head2
31137 #. type: =head2
31138 #: ../fish/guestfish-commands.pod:1
31139 msgid "alloc"
31140 msgstr ""
31141
31142 # type: =head2
31143 #. type: =head2
31144 #: ../fish/guestfish-commands.pod:3
31145 msgid "allocate"
31146 msgstr ""
31147
31148 # type: verbatim
31149 #. type: verbatim
31150 #: ../fish/guestfish-commands.pod:5
31151 #, no-wrap
31152 msgid ""
31153 " alloc filename size\n"
31154 "\n"
31155 msgstr ""
31156
31157 # type: textblock
31158 #. type: textblock
31159 #: ../fish/guestfish-commands.pod:7
31160 msgid ""
31161 "This creates an empty (zeroed) file of the given size, and then adds so it "
31162 "can be further examined."
31163 msgstr ""
31164
31165 # type: textblock
31166 #. type: textblock
31167 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
31168 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
31169 msgstr ""
31170
31171 # type: textblock
31172 #. type: textblock
31173 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
31174 msgid "Size can be specified using standard suffixes, eg. C<1M>."
31175 msgstr ""
31176
31177 # type: textblock
31178 #. type: textblock
31179 #: ../fish/guestfish-commands.pod:14
31180 msgid ""
31181 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
31182 "image, see L</PREPARED DISK IMAGES>."
31183 msgstr ""
31184
31185 # type: =head2
31186 #. type: =head2
31187 #: ../fish/guestfish-commands.pod:17
31188 msgid "copy-in"
31189 msgstr ""
31190
31191 # type: verbatim
31192 #. type: verbatim
31193 #: ../fish/guestfish-commands.pod:19
31194 #, no-wrap
31195 msgid ""
31196 " copy-in local [local ...] /remotedir\n"
31197 "\n"
31198 msgstr ""
31199
31200 # type: textblock
31201 #. type: textblock
31202 #: ../fish/guestfish-commands.pod:21
31203 msgid ""
31204 "C<copy-in> copies local files or directories recursively into the disk "
31205 "image, placing them in the directory called C</remotedir> (which must "
31206 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
31207 "other commands as necessary."
31208 msgstr ""
31209
31210 # type: textblock
31211 #. type: textblock
31212 #: ../fish/guestfish-commands.pod:26
31213 msgid ""
31214 "Multiple local files and directories can be specified, but the last "
31215 "parameter must always be a remote directory.  Wildcards cannot be used."
31216 msgstr ""
31217
31218 # type: =head2
31219 #. type: =head2
31220 #: ../fish/guestfish-commands.pod:30
31221 msgid "copy-out"
31222 msgstr ""
31223
31224 # type: verbatim
31225 #. type: verbatim
31226 #: ../fish/guestfish-commands.pod:32
31227 #, no-wrap
31228 msgid ""
31229 " copy-out remote [remote ...] localdir\n"
31230 "\n"
31231 msgstr ""
31232
31233 # type: textblock
31234 #. type: textblock
31235 #: ../fish/guestfish-commands.pod:34
31236 msgid ""
31237 "C<copy-out> copies remote files or directories recursively out of the disk "
31238 "image, placing them on the host disk in a local directory called C<localdir> "
31239 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
31240 "download>, L</tar-out> and other commands as necessary."
31241 msgstr ""
31242
31243 # type: textblock
31244 #. type: textblock
31245 #: ../fish/guestfish-commands.pod:40
31246 msgid ""
31247 "Multiple remote files and directories can be specified, but the last "
31248 "parameter must always be a local directory.  To download to the current "
31249 "directory, use C<.> as in:"
31250 msgstr ""
31251
31252 # type: verbatim
31253 #. type: verbatim
31254 #: ../fish/guestfish-commands.pod:44
31255 #, no-wrap
31256 msgid ""
31257 " copy-out /home .\n"
31258 "\n"
31259 msgstr ""
31260
31261 # type: textblock
31262 #. type: textblock
31263 #: ../fish/guestfish-commands.pod:46
31264 msgid ""
31265 "Wildcards cannot be used in the ordinary command, but you can use them with "
31266 "the help of L</glob> like this:"
31267 msgstr ""
31268
31269 # type: verbatim
31270 #. type: verbatim
31271 #: ../fish/guestfish-commands.pod:49
31272 #, no-wrap
31273 msgid ""
31274 " glob copy-out /home/* .\n"
31275 "\n"
31276 msgstr ""
31277
31278 # type: =head2
31279 #. type: =head2
31280 #: ../fish/guestfish-commands.pod:51
31281 msgid "echo"
31282 msgstr ""
31283
31284 # type: verbatim
31285 #. type: verbatim
31286 #: ../fish/guestfish-commands.pod:53
31287 #, no-wrap
31288 msgid ""
31289 " echo [params ...]\n"
31290 "\n"
31291 msgstr ""
31292
31293 # type: textblock
31294 #. type: textblock
31295 #: ../fish/guestfish-commands.pod:55
31296 msgid "This echos the parameters to the terminal."
31297 msgstr ""
31298
31299 # type: =head2
31300 #. type: =head2
31301 #: ../fish/guestfish-commands.pod:57
31302 msgid "edit"
31303 msgstr ""
31304
31305 # type: =head2
31306 #. type: =head2
31307 #: ../fish/guestfish-commands.pod:59
31308 msgid "vi"
31309 msgstr ""
31310
31311 # type: =head2
31312 #. type: =head2
31313 #: ../fish/guestfish-commands.pod:61
31314 msgid "emacs"
31315 msgstr ""
31316
31317 # type: verbatim
31318 #. type: verbatim
31319 #: ../fish/guestfish-commands.pod:63
31320 #, no-wrap
31321 msgid ""
31322 " edit filename\n"
31323 "\n"
31324 msgstr ""
31325
31326 # type: textblock
31327 #. type: textblock
31328 #: ../fish/guestfish-commands.pod:65
31329 msgid ""
31330 "This is used to edit a file.  It downloads the file, edits it locally using "
31331 "your editor, then uploads the result."
31332 msgstr ""
31333
31334 # type: textblock
31335 #. type: textblock
31336 #: ../fish/guestfish-commands.pod:68
31337 msgid ""
31338 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
31339 "or C<emacs> you will get those corresponding editors."
31340 msgstr ""
31341
31342 # type: =head2
31343 #. type: =head2
31344 #: ../fish/guestfish-commands.pod:72
31345 msgid "glob"
31346 msgstr ""
31347
31348 # type: verbatim
31349 #. type: verbatim
31350 #: ../fish/guestfish-commands.pod:74
31351 #, no-wrap
31352 msgid ""
31353 " glob command args...\n"
31354 "\n"
31355 msgstr ""
31356
31357 # type: textblock
31358 #. type: textblock
31359 #: ../fish/guestfish-commands.pod:76
31360 msgid ""
31361 "Expand wildcards in any paths in the args list, and run C<command> "
31362 "repeatedly on each matching path."
31363 msgstr ""
31364
31365 # type: textblock
31366 #. type: textblock
31367 #: ../fish/guestfish-commands.pod:79
31368 msgid "See L</WILDCARDS AND GLOBBING>."
31369 msgstr ""
31370
31371 # type: =head2
31372 #. type: =head2
31373 #: ../fish/guestfish-commands.pod:81
31374 msgid "hexedit"
31375 msgstr ""
31376
31377 # type: verbatim
31378 #. type: verbatim
31379 #: ../fish/guestfish-commands.pod:83
31380 #, no-wrap
31381 msgid ""
31382 " hexedit <filename|device>\n"
31383 " hexedit <filename|device> <max>\n"
31384 " hexedit <filename|device> <start> <max>\n"
31385 "\n"
31386 msgstr ""
31387
31388 # type: textblock
31389 #. type: textblock
31390 #: ../fish/guestfish-commands.pod:87
31391 msgid ""
31392 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
31393 "device."
31394 msgstr ""
31395
31396 # type: textblock
31397 #. type: textblock
31398 #: ../fish/guestfish-commands.pod:90
31399 msgid ""
31400 "This command works by downloading potentially the whole file or device, "
31401 "editing it locally, then uploading it.  If the file or device is large, you "
31402 "have to specify which part you wish to edit by using C<max> and/or C<start> "
31403 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
31404 "usual modifiers allowed such as C<1M> (1 megabyte)."
31405 msgstr ""
31406
31407 # type: textblock
31408 #. type: textblock
31409 #: ../fish/guestfish-commands.pod:97
31410 msgid "For example to edit the first few sectors of a disk you might do:"
31411 msgstr ""
31412
31413 # type: verbatim
31414 #. type: verbatim
31415 #: ../fish/guestfish-commands.pod:100
31416 #, no-wrap
31417 msgid ""
31418 " hexedit /dev/sda 1M\n"
31419 "\n"
31420 msgstr ""
31421
31422 # type: textblock
31423 #. type: textblock
31424 #: ../fish/guestfish-commands.pod:102
31425 msgid ""
31426 "which would allow you to edit anywhere within the first megabyte of the disk."
31427 msgstr ""
31428
31429 # type: textblock
31430 #. type: textblock
31431 #: ../fish/guestfish-commands.pod:105
31432 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
31433 msgstr ""
31434
31435 # type: verbatim
31436 #. type: verbatim
31437 #: ../fish/guestfish-commands.pod:107
31438 #, no-wrap
31439 msgid ""
31440 " hexedit /dev/sda1 0x400 0x400\n"
31441 "\n"
31442 msgstr ""
31443
31444 # type: textblock
31445 #. type: textblock
31446 #: ../fish/guestfish-commands.pod:109
31447 msgid "(assuming the superblock is in the standard location)."
31448 msgstr ""
31449
31450 # type: textblock
31451 #. type: textblock
31452 #: ../fish/guestfish-commands.pod:111
31453 msgid ""
31454 "This command requires the external L<hexedit(1)> program.  You can specify "
31455 "another program to use by setting the C<HEXEDITOR> environment variable."
31456 msgstr ""
31457
31458 # type: textblock
31459 #. type: textblock
31460 #: ../fish/guestfish-commands.pod:115
31461 msgid "See also L</hexdump>."
31462 msgstr ""
31463
31464 # type: =head2
31465 #. type: =head2
31466 #: ../fish/guestfish-commands.pod:117
31467 msgid "lcd"
31468 msgstr ""
31469
31470 # type: verbatim
31471 #. type: verbatim
31472 #: ../fish/guestfish-commands.pod:119
31473 #, no-wrap
31474 msgid ""
31475 " lcd directory\n"
31476 "\n"
31477 msgstr ""
31478
31479 # type: textblock
31480 #. type: textblock
31481 #: ../fish/guestfish-commands.pod:121
31482 msgid ""
31483 "Change the local directory, ie. the current directory of guestfish itself."
31484 msgstr ""
31485
31486 # type: textblock
31487 #. type: textblock
31488 #: ../fish/guestfish-commands.pod:124
31489 msgid "Note that C<!cd> won't do what you might expect."
31490 msgstr ""
31491
31492 # type: =head2
31493 #. type: =head2
31494 #: ../fish/guestfish-commands.pod:126
31495 msgid "man"
31496 msgstr ""
31497
31498 # type: =head2
31499 #. type: =head2
31500 #: ../fish/guestfish-commands.pod:128
31501 msgid "manual"
31502 msgstr ""
31503
31504 # type: verbatim
31505 #. type: verbatim
31506 #: ../fish/guestfish-commands.pod:130
31507 #, no-wrap
31508 msgid ""
31509 "  man\n"
31510 "\n"
31511 msgstr ""
31512
31513 # type: textblock
31514 #. type: textblock
31515 #: ../fish/guestfish-commands.pod:132
31516 msgid "Opens the manual page for guestfish."
31517 msgstr ""
31518
31519 # type: =head2
31520 #. type: =head2
31521 #: ../fish/guestfish-commands.pod:134
31522 msgid "more"
31523 msgstr ""
31524
31525 # type: =head2
31526 #. type: =head2
31527 #: ../fish/guestfish-commands.pod:136
31528 msgid "less"
31529 msgstr ""
31530
31531 # type: verbatim
31532 #. type: verbatim
31533 #: ../fish/guestfish-commands.pod:138
31534 #, no-wrap
31535 msgid ""
31536 " more filename\n"
31537 "\n"
31538 msgstr ""
31539
31540 # type: verbatim
31541 #. type: verbatim
31542 #: ../fish/guestfish-commands.pod:140
31543 #, no-wrap
31544 msgid ""
31545 " less filename\n"
31546 "\n"
31547 msgstr ""
31548
31549 # type: textblock
31550 #. type: textblock
31551 #: ../fish/guestfish-commands.pod:142
31552 msgid "This is used to view a file."
31553 msgstr ""
31554
31555 # type: textblock
31556 #. type: textblock
31557 #: ../fish/guestfish-commands.pod:144
31558 msgid ""
31559 "The default viewer is C<$PAGER>.  However if you use the alternate command "
31560 "C<less> you will get the C<less> command specifically."
31561 msgstr ""
31562
31563 # type: =head2
31564 #. type: =head2
31565 #: ../fish/guestfish-commands.pod:147
31566 msgid "reopen"
31567 msgstr ""
31568
31569 # type: verbatim
31570 #. type: verbatim
31571 #: ../fish/guestfish-commands.pod:149
31572 #, no-wrap
31573 msgid ""
31574 "  reopen\n"
31575 "\n"
31576 msgstr ""
31577
31578 # type: textblock
31579 #. type: textblock
31580 #: ../fish/guestfish-commands.pod:151
31581 msgid ""
31582 "Close and reopen the libguestfs handle.  It is not necessary to use this "
31583 "normally, because the handle is closed properly when guestfish exits.  "
31584 "However this is occasionally useful for testing."
31585 msgstr ""
31586
31587 # type: =head2
31588 #. type: =head2
31589 #: ../fish/guestfish-commands.pod:155
31590 msgid "sparse"
31591 msgstr ""
31592
31593 # type: verbatim
31594 #. type: verbatim
31595 #: ../fish/guestfish-commands.pod:157
31596 #, no-wrap
31597 msgid ""
31598 " sparse filename size\n"
31599 "\n"
31600 msgstr ""
31601
31602 # type: textblock
31603 #. type: textblock
31604 #: ../fish/guestfish-commands.pod:159
31605 msgid ""
31606 "This creates an empty sparse file of the given size, and then adds so it can "
31607 "be further examined."
31608 msgstr ""
31609
31610 # type: textblock
31611 #. type: textblock
31612 #: ../fish/guestfish-commands.pod:162
31613 msgid ""
31614 "In all respects it works the same as the L</alloc> command, except that the "
31615 "image file is allocated sparsely, which means that disk blocks are not "
31616 "assigned to the file until they are needed.  Sparse disk files only use "
31617 "space when written to, but they are slower and there is a danger you could "
31618 "run out of real disk space during a write operation."
31619 msgstr ""
31620
31621 # type: =head2
31622 #. type: =head2
31623 #: ../fish/guestfish-commands.pod:172
31624 msgid "supported"
31625 msgstr ""
31626
31627 # type: verbatim
31628 #. type: verbatim
31629 #: ../fish/guestfish-commands.pod:174
31630 #, no-wrap
31631 msgid ""
31632 " supported\n"
31633 "\n"
31634 msgstr ""
31635
31636 # type: textblock
31637 #. type: textblock
31638 #: ../fish/guestfish-commands.pod:176
31639 msgid ""
31640 "This command returns a list of the optional groups known to the daemon, and "
31641 "indicates which ones are supported by this build of the libguestfs appliance."
31642 msgstr ""
31643
31644 # type: textblock
31645 #. type: textblock
31646 #: ../fish/guestfish-commands.pod:180
31647 msgid "See also L<guestfs(3)/AVAILABILITY>."
31648 msgstr ""
31649
31650 # type: =head2
31651 #. type: =head2
31652 #: ../fish/guestfish-commands.pod:182
31653 msgid "time"
31654 msgstr ""
31655
31656 # type: verbatim
31657 #. type: verbatim
31658 #: ../fish/guestfish-commands.pod:184
31659 #, no-wrap
31660 msgid ""
31661 " time command args...\n"
31662 "\n"
31663 msgstr ""
31664
31665 # type: textblock
31666 #. type: textblock
31667 #: ../fish/guestfish-commands.pod:186
31668 msgid ""
31669 "Run the command as usual, but print the elapsed time afterwards.  This can "
31670 "be useful for benchmarking operations."
31671 msgstr ""
31672
31673 # type: textblock
31674 #. type: textblock
31675 #: ../test-tool/libguestfs-test-tool.pod:5
31676 msgid "libguestfs-test-tool - End user tests for libguestfs"
31677 msgstr ""
31678
31679 # type: verbatim
31680 #. type: verbatim
31681 #: ../test-tool/libguestfs-test-tool.pod:9
31682 #, no-wrap
31683 msgid ""
31684 " libguestfs-test-tool [--options]\n"
31685 "\n"
31686 msgstr ""
31687
31688 # type: textblock
31689 #. type: textblock
31690 #: ../test-tool/libguestfs-test-tool.pod:13
31691 msgid ""
31692 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
31693 "and developers, to allow them to check basic libguestfs functionality is "
31694 "working.  This is needed because libguestfs occasionally breaks for reasons "
31695 "beyond our control: usually because of changes in the underlying qemu or "
31696 "kernel packages, or the host environment."
31697 msgstr ""
31698
31699 # type: textblock
31700 #. type: textblock
31701 #: ../test-tool/libguestfs-test-tool.pod:20
31702 msgid "If you suspect a problem in libguestfs, then just run:"
31703 msgstr ""
31704
31705 # type: verbatim
31706 #. type: verbatim
31707 #: ../test-tool/libguestfs-test-tool.pod:22
31708 #, no-wrap
31709 msgid ""
31710 " libguestfs-test-tool\n"
31711 "\n"
31712 msgstr ""
31713
31714 # type: textblock
31715 #. type: textblock
31716 #: ../test-tool/libguestfs-test-tool.pod:24
31717 msgid "It will print lots of diagnostic messages."
31718 msgstr ""
31719
31720 # type: textblock
31721 #. type: textblock
31722 #: ../test-tool/libguestfs-test-tool.pod:26
31723 msgid "If it runs to completion successfully, you will see this near the end:"
31724 msgstr ""
31725
31726 # type: verbatim
31727 #. type: verbatim
31728 #: ../test-tool/libguestfs-test-tool.pod:28
31729 #, no-wrap
31730 msgid ""
31731 " ===== TEST FINISHED OK =====\n"
31732 "\n"
31733 msgstr ""
31734
31735 # type: textblock
31736 #. type: textblock
31737 #: ../test-tool/libguestfs-test-tool.pod:30
31738 msgid "and the test tool will exit with code 0."
31739 msgstr ""
31740
31741 # type: textblock
31742 #. type: textblock
31743 #: ../test-tool/libguestfs-test-tool.pod:32
31744 msgid ""
31745 "If it fails (and/or exits with non-zero error code), please paste the "
31746 "B<complete, unedited> output of the test tool into a bug report.  More "
31747 "information about reporting bugs can be found on the L<http://libguestfs.org/"
31748 "> website."
31749 msgstr ""
31750
31751 # type: =item
31752 #. type: =item
31753 #: ../test-tool/libguestfs-test-tool.pod:41
31754 msgid "I<--help>"
31755 msgstr ""
31756
31757 # type: textblock
31758 #. type: textblock
31759 #: ../test-tool/libguestfs-test-tool.pod:43
31760 msgid "Display short usage information and exit."
31761 msgstr ""
31762
31763 # type: =item
31764 #. type: =item
31765 #: ../test-tool/libguestfs-test-tool.pod:45
31766 msgid "I<--qemu qemu_binary>"
31767 msgstr ""
31768
31769 # type: textblock
31770 #. type: textblock
31771 #: ../test-tool/libguestfs-test-tool.pod:47
31772 msgid ""
31773 "If you have downloaded another qemu binary, point this option at the full "
31774 "path of the binary to try it."
31775 msgstr ""
31776
31777 # type: =item
31778 #. type: =item
31779 #: ../test-tool/libguestfs-test-tool.pod:50
31780 msgid "I<--qemudir qemu_source_dir>"
31781 msgstr ""
31782
31783 # type: textblock
31784 #. type: textblock
31785 #: ../test-tool/libguestfs-test-tool.pod:52
31786 msgid ""
31787 "If you have compiled qemu from source, point this option at the source "
31788 "directory to try it."
31789 msgstr ""
31790
31791 # type: =item
31792 #. type: =item
31793 #: ../test-tool/libguestfs-test-tool.pod:55
31794 msgid "I<--timeout N>"
31795 msgstr ""
31796
31797 # type: textblock
31798 #. type: textblock
31799 #: ../test-tool/libguestfs-test-tool.pod:57
31800 msgid ""
31801 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
31802 "does not usually need to be adjusted unless your machine is very slow."
31803 msgstr ""
31804
31805 # type: =head1
31806 #. type: =head1
31807 #: ../test-tool/libguestfs-test-tool.pod:63
31808 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
31809 msgstr ""
31810
31811 # type: textblock
31812 #. type: textblock
31813 #: ../test-tool/libguestfs-test-tool.pod:65
31814 msgid ""
31815 "If you have compiled another version of qemu from source and would like to "
31816 "try that, then you can use the I<--qemudir> option to point to the qemu "
31817 "source directory."
31818 msgstr ""
31819
31820 # type: textblock
31821 #. type: textblock
31822 #: ../test-tool/libguestfs-test-tool.pod:69
31823 msgid ""
31824 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
31825 "option to point to the binary."
31826 msgstr ""
31827
31828 # type: textblock
31829 #. type: textblock
31830 #: ../test-tool/libguestfs-test-tool.pod:72
31831 msgid ""
31832 "When using an alternate qemu with libguestfs, usually you would need to "
31833 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
31834 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
31835 "use either of the I<--qemudir> or I<--qemu> options."
31836 msgstr ""
31837
31838 # type: textblock
31839 #. type: textblock
31840 #: ../test-tool/libguestfs-test-tool.pod:79
31841 msgid ""
31842 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
31843 "I<1> if there was an error."
31844 msgstr ""
31845
31846 # type: textblock
31847 #. type: textblock
31848 #: ../test-tool/libguestfs-test-tool.pod:84
31849 msgid ""
31850 "For the full list of environment variables which may affect libguestfs, "
31851 "please see the L<guestfs(3)> manual page."
31852 msgstr ""
31853
31854 # type: textblock
31855 #. type: textblock
31856 #: ../test-tool/libguestfs-test-tool.pod:89
31857 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
31858 msgstr ""
31859
31860 # type: textblock
31861 #. type: textblock
31862 #: ../fuse/guestmount.pod:5
31863 msgid ""
31864 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
31865 msgstr ""
31866
31867 # type: verbatim
31868 #. type: verbatim
31869 #: ../fuse/guestmount.pod:9
31870 #, no-wrap
31871 msgid ""
31872 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
31873 "\n"
31874 msgstr ""
31875
31876 # type: verbatim
31877 #. type: verbatim
31878 #: ../fuse/guestmount.pod:11
31879 #, no-wrap
31880 msgid ""
31881 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
31882 "\n"
31883 msgstr ""
31884
31885 # type: verbatim
31886 #. type: verbatim
31887 #: ../fuse/guestmount.pod:13
31888 #, no-wrap
31889 msgid ""
31890 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
31891 "\n"
31892 msgstr ""
31893
31894 # type: textblock
31895 #. type: textblock
31896 #: ../fuse/guestmount.pod:17
31897 msgid ""
31898 "You must I<not> use C<guestmount> in read-write mode on live virtual "
31899 "machines.  If you do this, you risk disk corruption in the VM."
31900 msgstr ""
31901
31902 # type: textblock
31903 #. type: textblock
31904 #: ../fuse/guestmount.pod:22
31905 msgid ""
31906 "The guestmount program can be used to mount virtual machine filesystems and "
31907 "other disk images on the host.  It uses libguestfs for access to the guest "
31908 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
31909 "a mountable device."
31910 msgstr ""
31911
31912 # type: textblock
31913 #. type: textblock
31914 #: ../fuse/guestmount.pod:27
31915 msgid ""
31916 "Along with other options, you have to give at least one device (I<-a> "
31917 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
31918 "option) or use the I<-i> inspection option.  How this works is better "
31919 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
31920 "below."
31921 msgstr ""
31922
31923 # type: textblock
31924 #. type: textblock
31925 #: ../fuse/guestmount.pod:33
31926 msgid ""
31927 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
31928 "by you, and the filesystem will not be visible to any other users unless you "
31929 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
31930 "the filesystem, use the C<fusermount -u> command."
31931 msgstr ""
31932
31933 # type: textblock
31934 #. type: textblock
31935 #: ../fuse/guestmount.pod:41
31936 msgid ""
31937 "For a typical Windows guest which has its main filesystem on the first "
31938 "partition:"
31939 msgstr ""
31940
31941 # type: verbatim
31942 #. type: verbatim
31943 #: ../fuse/guestmount.pod:44
31944 #, no-wrap
31945 msgid ""
31946 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
31947 "\n"
31948 msgstr ""
31949
31950 # type: textblock
31951 #. type: textblock
31952 #: ../fuse/guestmount.pod:46
31953 msgid ""
31954 "For a typical Linux guest which has a /boot filesystem on the first "
31955 "partition, and the root filesystem on a logical volume:"
31956 msgstr ""
31957
31958 # type: verbatim
31959 #. type: verbatim
31960 #: ../fuse/guestmount.pod:49
31961 #, no-wrap
31962 msgid ""
31963 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
31964 "\n"
31965 msgstr ""
31966
31967 # type: textblock
31968 #. type: textblock
31969 #: ../fuse/guestmount.pod:51
31970 msgid "To get libguestfs to detect guest mountpoints for you:"
31971 msgstr ""
31972
31973 # type: verbatim
31974 #. type: verbatim
31975 #: ../fuse/guestmount.pod:53
31976 #, no-wrap
31977 msgid ""
31978 " guestmount -a guest.img -i --ro /mnt\n"
31979 "\n"
31980 msgstr ""
31981
31982 # type: textblock
31983 #. type: textblock
31984 #: ../fuse/guestmount.pod:55
31985 msgid "For a libvirt guest called \"Guest\" you could do:"
31986 msgstr ""
31987
31988 # type: verbatim
31989 #. type: verbatim
31990 #: ../fuse/guestmount.pod:57
31991 #, no-wrap
31992 msgid ""
31993 " guestmount -d Guest -i --ro /mnt\n"
31994 "\n"
31995 msgstr ""
31996
31997 # type: textblock
31998 #. type: textblock
31999 #: ../fuse/guestmount.pod:59
32000 msgid ""
32001 "If you don't know what filesystems are contained in a guest or disk image, "
32002 "use L<virt-filesystems(1)> first:"
32003 msgstr ""
32004
32005 # type: verbatim
32006 #. type: verbatim
32007 #: ../fuse/guestmount.pod:62
32008 #, no-wrap
32009 msgid ""
32010 " virt-filesystems MyGuest\n"
32011 "\n"
32012 msgstr ""
32013
32014 # type: textblock
32015 #. type: textblock
32016 #: ../fuse/guestmount.pod:64
32017 msgid ""
32018 "If you want to trace the libguestfs calls but without excessive debugging "
32019 "information, we recommend:"
32020 msgstr ""
32021
32022 # type: verbatim
32023 #. type: verbatim
32024 #: ../fuse/guestmount.pod:67
32025 #, no-wrap
32026 msgid ""
32027 " guestmount [...] --trace /mnt\n"
32028 "\n"
32029 msgstr ""
32030
32031 # type: textblock
32032 #. type: textblock
32033 #: ../fuse/guestmount.pod:69
32034 msgid "If you want to debug the program, we recommend:"
32035 msgstr ""
32036
32037 # type: verbatim
32038 #. type: verbatim
32039 #: ../fuse/guestmount.pod:71
32040 #, no-wrap
32041 msgid ""
32042 " guestmount [...] --trace --verbose /mnt\n"
32043 "\n"
32044 msgstr ""
32045
32046 # type: =item
32047 #. type: =item
32048 #: ../fuse/guestmount.pod:77
32049 msgid "B<-a image> | B<--add image>"
32050 msgstr ""
32051
32052 # type: textblock
32053 #. type: textblock
32054 #: ../fuse/guestmount.pod:79
32055 msgid "Add a block device or virtual machine image."
32056 msgstr ""
32057
32058 # type: =item
32059 #. type: =item
32060 #: ../fuse/guestmount.pod:84
32061 msgid "B<-c URI> | B<--connect URI>"
32062 msgstr ""
32063
32064 # type: =item
32065 #. type: =item
32066 #: ../fuse/guestmount.pod:90
32067 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
32068 msgstr ""
32069
32070 # type: =item
32071 #. type: =item
32072 #: ../fuse/guestmount.pod:96
32073 msgid "B<--dir-cache-timeout N>"
32074 msgstr ""
32075
32076 # type: textblock
32077 #. type: textblock
32078 #: ../fuse/guestmount.pod:98
32079 msgid ""
32080 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
32081 "seconds.  The readdir cache [actually, there are several semi-independent "
32082 "caches] is populated after a readdir(2) call with the stat and extended "
32083 "attributes of the files in the directory, in anticipation that they will be "
32084 "requested soon after."
32085 msgstr ""
32086
32087 # type: textblock
32088 #. type: textblock
32089 #: ../fuse/guestmount.pod:104
32090 msgid ""
32091 "There is also a different attribute cache implemented by FUSE (see the FUSE "
32092 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
32093 "requests, only cache existing ones."
32094 msgstr ""
32095
32096 # type: =item
32097 #. type: =item
32098 #: ../fuse/guestmount.pod:115
32099 msgid "B<--format=raw|qcow2|..> | B<--format>"
32100 msgstr ""
32101
32102 # type: textblock
32103 #. type: textblock
32104 #: ../fuse/guestmount.pod:122
32105 msgid ""
32106 "If you have untrusted raw-format guest disk images, you should use this "
32107 "option to specify the disk format.  This avoids a possible security problem "
32108 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
32109 "guestfs_add_drive_opts>."
32110 msgstr ""
32111
32112 # type: =item
32113 #. type: =item
32114 #: ../fuse/guestmount.pod:127
32115 msgid "B<--fuse-help>"
32116 msgstr ""
32117
32118 # type: textblock
32119 #. type: textblock
32120 #: ../fuse/guestmount.pod:129
32121 msgid "Display help on special FUSE options (see I<-o> below)."
32122 msgstr ""
32123
32124 # type: textblock
32125 #. type: textblock
32126 #: ../fuse/guestmount.pod:133
32127 msgid "Display brief help and exit."
32128 msgstr ""
32129
32130 # type: =item
32131 #. type: =item
32132 #: ../fuse/guestmount.pod:135
32133 msgid "B<-i> | B<--inspector>"
32134 msgstr ""
32135
32136 # type: textblock
32137 #. type: textblock
32138 #: ../fuse/guestmount.pod:155
32139 msgid ""
32140 "Mount the named partition or logical volume on the given mountpoint B<in the "
32141 "guest> (this has nothing to do with mountpoints in the host)."
32142 msgstr ""
32143
32144 # type: textblock
32145 #. type: textblock
32146 #: ../fuse/guestmount.pod:158
32147 msgid ""
32148 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
32149 "something on C</>."
32150 msgstr ""
32151
32152 # type: =item
32153 #. type: =item
32154 #: ../fuse/guestmount.pod:171
32155 msgid "B<-n> | B<--no-sync>"
32156 msgstr ""
32157
32158 # type: textblock
32159 #. type: textblock
32160 #: ../fuse/guestmount.pod:173
32161 msgid ""
32162 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
32163 "unmounted.  If you specify this option, then we don't attempt to sync the "
32164 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
32165 msgstr ""
32166
32167 # type: =item
32168 #. type: =item
32169 #: ../fuse/guestmount.pod:178
32170 msgid "B<-o option> | B<--option option>"
32171 msgstr ""
32172
32173 # type: textblock
32174 #. type: textblock
32175 #: ../fuse/guestmount.pod:180
32176 msgid "Pass extra options to FUSE."
32177 msgstr ""
32178
32179 # type: textblock
32180 #. type: textblock
32181 #: ../fuse/guestmount.pod:182
32182 msgid ""
32183 "To get a list of all the extra options supported by FUSE, use the command "
32184 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
32185 "of them are a good idea."
32186 msgstr ""
32187
32188 # type: verbatim
32189 #. type: verbatim
32190 #: ../fuse/guestmount.pod:186
32191 #, no-wrap
32192 msgid ""
32193 " guestmount --fuse-help\n"
32194 "\n"
32195 msgstr ""
32196
32197 # type: textblock
32198 #. type: textblock
32199 #: ../fuse/guestmount.pod:188
32200 msgid "Some potentially useful FUSE options:"
32201 msgstr ""
32202
32203 # type: =item
32204 #. type: =item
32205 #: ../fuse/guestmount.pod:192
32206 msgid "B<-o allow_other>"
32207 msgstr ""
32208
32209 # type: textblock
32210 #. type: textblock
32211 #: ../fuse/guestmount.pod:194
32212 msgid "Allow other users to see the filesystem."
32213 msgstr ""
32214
32215 # type: =item
32216 #. type: =item
32217 #: ../fuse/guestmount.pod:196
32218 msgid "B<-o attr_timeout=N>"
32219 msgstr ""
32220
32221 # type: textblock
32222 #. type: textblock
32223 #: ../fuse/guestmount.pod:198
32224 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
32225 msgstr ""
32226
32227 # type: =item
32228 #. type: =item
32229 #: ../fuse/guestmount.pod:200
32230 msgid "B<-o kernel_cache>"
32231 msgstr ""
32232
32233 # type: textblock
32234 #. type: textblock
32235 #: ../fuse/guestmount.pod:202
32236 msgid ""
32237 "Allow the kernel to cache files (reduces the number of reads that have to go "
32238 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
32239 "afford the extra memory usage."
32240 msgstr ""
32241
32242 # type: =item
32243 #. type: =item
32244 #: ../fuse/guestmount.pod:206
32245 msgid "B<-o uid=N> B<-o gid=N>"
32246 msgstr ""
32247
32248 # type: textblock
32249 #. type: textblock
32250 #: ../fuse/guestmount.pod:208
32251 msgid ""
32252 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
32253 "the chosen values."
32254 msgstr ""
32255
32256 # type: =item
32257 #. type: =item
32258 #: ../fuse/guestmount.pod:213
32259 msgid "B<-r> | B<--ro>"
32260 msgstr ""
32261
32262 # type: textblock
32263 #. type: textblock
32264 #: ../fuse/guestmount.pod:215
32265 msgid ""
32266 "Add devices and mount everything read-only.  Also disallow writes and make "
32267 "the disk appear read-only to FUSE."
32268 msgstr ""
32269
32270 # type: textblock
32271 #. type: textblock
32272 #: ../fuse/guestmount.pod:218
32273 msgid ""
32274 "This is highly recommended if you are not going to edit the guest disk.  If "
32275 "the guest is running and this option is I<not> supplied, then there is a "
32276 "strong risk of disk corruption in the guest.  We try to prevent this from "
32277 "happening, but it is not always possible."
32278 msgstr ""
32279
32280 # type: textblock
32281 #. type: textblock
32282 #: ../fuse/guestmount.pod:223
32283 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32284 msgstr ""
32285
32286 # type: textblock
32287 #. type: textblock
32288 #: ../fuse/guestmount.pod:227
32289 msgid "Enable SELinux support for the guest."
32290 msgstr ""
32291
32292 # type: =item
32293 #. type: =item
32294 #: ../fuse/guestmount.pod:229
32295 msgid "B<-v> | B<--verbose>"
32296 msgstr ""
32297
32298 # type: textblock
32299 #. type: textblock
32300 #: ../fuse/guestmount.pod:231
32301 msgid "Enable verbose messages from underlying libguestfs."
32302 msgstr ""
32303
32304 # type: =item
32305 #. type: =item
32306 #: ../fuse/guestmount.pod:233
32307 msgid "B<-V> | B<--version>"
32308 msgstr ""
32309
32310 # type: textblock
32311 #. type: textblock
32312 #: ../fuse/guestmount.pod:235
32313 msgid "Display the program version and exit."
32314 msgstr ""
32315
32316 # type: =item
32317 #. type: =item
32318 #: ../fuse/guestmount.pod:237
32319 msgid "B<-w> | B<--rw>"
32320 msgstr ""
32321
32322 #. type: textblock
32323 #: ../fuse/guestmount.pod:242 ../fuse/guestmount.pod:263
32324 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
32325 msgstr ""
32326
32327 # type: =item
32328 #. type: =item
32329 #: ../fuse/guestmount.pod:244
32330 msgid "B<-x> | B<--trace>"
32331 msgstr ""
32332
32333 # type: textblock
32334 #. type: textblock
32335 #: ../fuse/guestmount.pod:246
32336 msgid "Trace libguestfs calls and entry into each FUSE function."
32337 msgstr ""
32338
32339 # type: textblock
32340 #. type: textblock
32341 #: ../fuse/guestmount.pod:248
32342 msgid "This also stops the daemon from forking into the background."
32343 msgstr ""
32344
32345 # type: textblock
32346 #. type: textblock
32347 #: ../fuse/guestmount.pod:269
32348 msgid ""
32349 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
32350 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
32351 "net/>."
32352 msgstr ""
32353
32354 # type: textblock
32355 #. type: textblock
32356 #: ../fuse/guestmount.pod:284
32357 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
32358 msgstr ""
32359
32360 # type: textblock
32361 #. type: textblock
32362 #: ../tools/virt-edit.pl:34
32363 msgid "virt-edit - Edit a file in a virtual machine"
32364 msgstr ""
32365
32366 # type: verbatim
32367 #. type: verbatim
32368 #: ../tools/virt-edit.pl:38
32369 #, no-wrap
32370 msgid ""
32371 " virt-edit [--options] domname file\n"
32372 "\n"
32373 msgstr ""
32374
32375 # type: verbatim
32376 #. type: verbatim
32377 #: ../tools/virt-edit.pl:40
32378 #, no-wrap
32379 msgid ""
32380 " virt-edit [--options] disk.img [disk.img ...] file\n"
32381 "\n"
32382 msgstr ""
32383
32384 # type: verbatim
32385 #. type: verbatim
32386 #: ../tools/virt-edit.pl:42
32387 #, no-wrap
32388 msgid ""
32389 " virt-edit [domname|disk.img] file -e 'expr'\n"
32390 "\n"
32391 msgstr ""
32392
32393 # type: textblock
32394 #. type: textblock
32395 #: ../tools/virt-edit.pl:46
32396 msgid ""
32397 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
32398 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
32399 "doing this, but doesn't catch all cases."
32400 msgstr ""
32401
32402 # type: textblock
32403 #. type: textblock
32404 #: ../tools/virt-edit.pl:52
32405 msgid ""
32406 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
32407 "the named virtual machine (or disk image)."
32408 msgstr ""
32409
32410 #. type: textblock
32411 #: ../tools/virt-edit.pl:55
32412 msgid "If you want to just view a file, use L<virt-cat(1)>."
32413 msgstr ""
32414
32415 #. type: textblock
32416 #: ../tools/virt-edit.pl:57
32417 msgid ""
32418 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
32419 "USING GUESTFISH> below)."
32420 msgstr ""
32421
32422 #. type: textblock
32423 #: ../tools/virt-edit.pl:60
32424 msgid ""
32425 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
32426 "files.  L<guestfish(1)> can do that and much more."
32427 msgstr ""
32428
32429 # type: textblock
32430 #. type: textblock
32431 #: ../tools/virt-edit.pl:65
32432 msgid "Edit the named files interactively:"
32433 msgstr ""
32434
32435 # type: verbatim
32436 #. type: verbatim
32437 #: ../tools/virt-edit.pl:67
32438 #, no-wrap
32439 msgid ""
32440 " virt-edit mydomain /boot/grub/grub.conf\n"
32441 "\n"
32442 msgstr ""
32443
32444 # type: verbatim
32445 #. type: verbatim
32446 #: ../tools/virt-edit.pl:69
32447 #, no-wrap
32448 msgid ""
32449 " virt-edit mydomain /etc/passwd\n"
32450 "\n"
32451 msgstr ""
32452
32453 #. type: textblock
32454 #: ../tools/virt-edit.pl:71
32455 msgid "For Windows guests, some Windows paths are understood:"
32456 msgstr ""
32457
32458 #. type: verbatim
32459 #: ../tools/virt-edit.pl:73
32460 #, no-wrap
32461 msgid ""
32462 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
32463 "\n"
32464 msgstr ""
32465
32466 # type: textblock
32467 #. type: textblock
32468 #: ../tools/virt-edit.pl:75
32469 msgid ""
32470 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
32471 "below).  To change the init default level to 5:"
32472 msgstr ""
32473
32474 # type: verbatim
32475 #. type: verbatim
32476 #: ../tools/virt-edit.pl:79
32477 #, no-wrap
32478 msgid ""
32479 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
32480 "\n"
32481 msgstr ""
32482
32483 # type: textblock
32484 #. type: textblock
32485 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
32486 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
32487 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
32488 msgid "Display brief help."
32489 msgstr ""
32490
32491 # type: textblock
32492 #. type: textblock
32493 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
32494 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
32495 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
32496 msgid "Display version number and exit."
32497 msgstr ""
32498
32499 # type: =item
32500 #. type: =item
32501 #: ../tools/virt-edit.pl:105
32502 msgid "B<--backup extension> | B<-b extension>"
32503 msgstr ""
32504
32505 # type: textblock
32506 #. type: textblock
32507 #: ../tools/virt-edit.pl:107
32508 msgid ""
32509 "Create a backup of the original file I<in the guest disk image>.  The backup "
32510 "has the original filename with C<extension> added."
32511 msgstr ""
32512
32513 # type: textblock
32514 #. type: textblock
32515 #: ../tools/virt-edit.pl:110
32516 msgid ""
32517 "Usually the first character of C<extension> would be a dot C<.> so you would "
32518 "write:"
32519 msgstr ""
32520
32521 # type: verbatim
32522 #. type: verbatim
32523 #: ../tools/virt-edit.pl:113
32524 #, no-wrap
32525 msgid ""
32526 " virt-edit -b .orig [etc]\n"
32527 "\n"
32528 msgstr ""
32529
32530 # type: textblock
32531 #. type: textblock
32532 #: ../tools/virt-edit.pl:115
32533 msgid "By default, no backup file is made."
32534 msgstr ""
32535
32536 # type: =item
32537 #. type: =item
32538 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
32539 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
32540 #: ../tools/virt-list-partitions.pl:78
32541 msgid "B<--connect URI> | B<-c URI>"
32542 msgstr ""
32543
32544 # type: textblock
32545 #. type: textblock
32546 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
32547 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
32548 #: ../tools/virt-list-partitions.pl:80
32549 msgid ""
32550 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
32551 "to the default libvirt hypervisor."
32552 msgstr ""
32553
32554 # type: textblock
32555 #. type: textblock
32556 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
32557 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
32558 #: ../tools/virt-list-partitions.pl:83
32559 msgid ""
32560 "If you specify guest block devices directly, then libvirt is not used at all."
32561 msgstr ""
32562
32563 # type: =item
32564 #. type: =item
32565 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
32566 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
32567 #: ../tools/virt-list-partitions.pl:90
32568 msgid "B<--format> raw"
32569 msgstr ""
32570
32571 # type: textblock
32572 #. type: textblock
32573 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
32574 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
32575 #: ../tools/virt-list-partitions.pl:92
32576 msgid ""
32577 "Specify the format of disk images given on the command line.  If this is "
32578 "omitted then the format is autodetected from the content of the disk image."
32579 msgstr ""
32580
32581 # type: textblock
32582 #. type: textblock
32583 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
32584 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
32585 #: ../tools/virt-list-partitions.pl:96
32586 msgid ""
32587 "If disk images are requested from libvirt, then this program asks libvirt "
32588 "for this information.  In this case, the value of the format parameter is "
32589 "ignored."
32590 msgstr ""
32591
32592 # type: textblock
32593 #. type: textblock
32594 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
32595 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
32596 #: ../tools/virt-list-partitions.pl:100
32597 msgid ""
32598 "If working with untrusted raw-format guest disk images, you should ensure "
32599 "the format is always specified."
32600 msgstr ""
32601
32602 # type: =item
32603 #. type: =item
32604 #: ../tools/virt-edit.pl:150
32605 msgid "B<--expr EXPR> | B<-e EXPR>"
32606 msgstr ""
32607
32608 # type: textblock
32609 #. type: textblock
32610 #: ../tools/virt-edit.pl:152
32611 msgid ""
32612 "Instead of launching the external editor, non-interactively apply the Perl "
32613 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
32614 "EDITING> below."
32615 msgstr ""
32616
32617 # type: textblock
32618 #. type: textblock
32619 #: ../tools/virt-edit.pl:156
32620 msgid ""
32621 "Be careful to properly quote the expression to prevent it from being altered "
32622 "by the shell."
32623 msgstr ""
32624
32625 # type: =head1
32626 #. type: =head1
32627 #: ../tools/virt-edit.pl:280
32628 msgid "NON-INTERACTIVE EDITING"
32629 msgstr ""
32630
32631 # type: textblock
32632 #. type: textblock
32633 #: ../tools/virt-edit.pl:282
32634 msgid ""
32635 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
32636 "administrator can interactively edit the file."
32637 msgstr ""
32638
32639 # type: textblock
32640 #. type: textblock
32641 #: ../tools/virt-edit.pl:285
32642 msgid ""
32643 "There are two ways also to use C<virt-edit> from scripts in order to make "
32644 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
32645 "like this, it's less error-prone to write scripts directly using the "
32646 "libguestfs API and Augeas for configuration file editing.)"
32647 msgstr ""
32648
32649 # type: textblock
32650 #. type: textblock
32651 #: ../tools/virt-edit.pl:291
32652 msgid ""
32653 "The first method is to temporarily set C<$EDITOR> to any script or program "
32654 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
32655 "update C<tmpfile> in place however it likes."
32656 msgstr ""
32657
32658 # type: textblock
32659 #. type: textblock
32660 #: ../tools/virt-edit.pl:295
32661 msgid ""
32662 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
32663 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
32664 "instances of C<foo> with C<bar> in a file:"
32665 msgstr ""
32666
32667 # type: verbatim
32668 #. type: verbatim
32669 #: ../tools/virt-edit.pl:299
32670 #, no-wrap
32671 msgid ""
32672 " virt-edit domname filename -e 's/foo/bar/'\n"
32673 "\n"
32674 msgstr ""
32675
32676 # type: textblock
32677 #. type: textblock
32678 #: ../tools/virt-edit.pl:301
32679 msgid ""
32680 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
32681 "For example to delete root's password you could do:"
32682 msgstr ""
32683
32684 # type: verbatim
32685 #. type: verbatim
32686 #: ../tools/virt-edit.pl:304
32687 #, no-wrap
32688 msgid ""
32689 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
32690 "\n"
32691 msgstr ""
32692
32693 # type: textblock
32694 #. type: textblock
32695 #: ../tools/virt-edit.pl:306
32696 msgid ""
32697 "What really happens is that the snippet is evaluated as a Perl expression "
32698 "for each line of the file.  The line, including the final C<\\n>, is passed "
32699 "in C<$_> and the expression should update C<$_> or leave it unchanged."
32700 msgstr ""
32701
32702 # type: textblock
32703 #. type: textblock
32704 #: ../tools/virt-edit.pl:311
32705 msgid ""
32706 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
32707 "C<apache> user account from the password file you can do:"
32708 msgstr ""
32709
32710 # type: verbatim
32711 #. type: verbatim
32712 #: ../tools/virt-edit.pl:314
32713 #, no-wrap
32714 msgid ""
32715 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
32716 "\n"
32717 msgstr ""
32718
32719 # type: textblock
32720 #. type: textblock
32721 #: ../tools/virt-edit.pl:316
32722 msgid ""
32723 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
32724 "the end of the file is rather difficult this way since there is no concept "
32725 "of \"last line of the file\" - your expression just doesn't get called "
32726 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
32727 "want to do this."
32728 msgstr ""
32729
32730 # type: textblock
32731 #. type: textblock
32732 #: ../tools/virt-edit.pl:322
32733 msgid ""
32734 "The variable C<$lineno> contains the current line number.  As is "
32735 "traditional, the first line in the file is number C<1>."
32736 msgstr ""
32737
32738 # type: textblock
32739 #. type: textblock
32740 #: ../tools/virt-edit.pl:325
32741 msgid ""
32742 "The return value from the expression is ignored, but the expression may call "
32743 "C<die> in order to abort the whole program, leaving the original file "
32744 "untouched."
32745 msgstr ""
32746
32747 # type: textblock
32748 #. type: textblock
32749 #: ../tools/virt-edit.pl:329
32750 msgid ""
32751 "Remember when matching the end of a line that C<$_> may contain the final C<"
32752 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
32753 "newline then neither of these.  Thus to match or substitute some text at the "
32754 "end of a line, use this regular expression:"
32755 msgstr ""
32756
32757 # type: verbatim
32758 #. type: verbatim
32759 #: ../tools/virt-edit.pl:334
32760 #, no-wrap
32761 msgid ""
32762 " /some text(\\r?\\n)?$/\n"
32763 "\n"
32764 msgstr ""
32765
32766 # type: textblock
32767 #. type: textblock
32768 #: ../tools/virt-edit.pl:336
32769 msgid ""
32770 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
32771 "$_> itself (since that would remove all newlines from the file):"
32772 msgstr ""
32773
32774 # type: verbatim
32775 #. type: verbatim
32776 #: ../tools/virt-edit.pl:340
32777 #, no-wrap
32778 msgid ""
32779 " my $m = $_; chomp $m; $m =~ /some text$/\n"
32780 "\n"
32781 msgstr ""
32782
32783 #. type: textblock
32784 #: ../tools/virt-edit.pl:344
32785 msgid ""
32786 "C<virt-edit> has a limited ability to understand Windows drive letters and "
32787 "paths (eg. C<E:\\foo\\bar.txt>)."
32788 msgstr ""
32789
32790 #. type: textblock
32791 #: ../tools/virt-edit.pl:347
32792 msgid "If and only if the guest is running Windows then:"
32793 msgstr ""
32794
32795 #. type: textblock
32796 #: ../tools/virt-edit.pl:353
32797 msgid ""
32798 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
32799 "to the correct filesystem."
32800 msgstr ""
32801
32802 #. type: textblock
32803 #: ../tools/virt-edit.pl:358
32804 msgid ""
32805 "Any backslash (C<\\>) characters in the path are replaced with forward "
32806 "slashes so that libguestfs can process it."
32807 msgstr ""
32808
32809 #. type: textblock
32810 #: ../tools/virt-edit.pl:363
32811 msgid ""
32812 "The path is resolved case insensitively to locate the file that should be "
32813 "edited."
32814 msgstr ""
32815
32816 #. type: textblock
32817 #: ../tools/virt-edit.pl:368
32818 msgid "There are some known shortcomings:"
32819 msgstr ""
32820
32821 #. type: textblock
32822 #: ../tools/virt-edit.pl:374
32823 msgid "Some NTFS symbolic links may not be followed correctly."
32824 msgstr ""
32825
32826 #. type: textblock
32827 #: ../tools/virt-edit.pl:378
32828 msgid "NTFS junction points that cross filesystems are not followed."
32829 msgstr ""
32830
32831 #. type: =head1
32832 #: ../tools/virt-edit.pl:435
32833 msgid "USING GUESTFISH"
32834 msgstr ""
32835
32836 #. type: textblock
32837 #: ../tools/virt-edit.pl:437
32838 msgid ""
32839 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
32840 "C<virt-edit> doesn't work."
32841 msgstr ""
32842
32843 #. type: textblock
32844 #: ../tools/virt-edit.pl:440
32845 msgid "Using C<virt-edit> is approximately equivalent to doing:"
32846 msgstr ""
32847
32848 #. type: verbatim
32849 #: ../tools/virt-edit.pl:442
32850 #, no-wrap
32851 msgid ""
32852 " guestfish --rw -i -d domname edit /file\n"
32853 "\n"
32854 msgstr ""
32855
32856 #. type: textblock
32857 #: ../tools/virt-edit.pl:444
32858 msgid ""
32859 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
32860 "path to the file."
32861 msgstr ""
32862
32863 #. type: textblock
32864 #: ../tools/virt-edit.pl:447
32865 msgid ""
32866 "The command above uses libguestfs's guest inspection feature and so does not "
32867 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
32868 "disk images that don't contain guests.  To edit a file on a disk image "
32869 "directly, use:"
32870 msgstr ""
32871
32872 #. type: verbatim
32873 #: ../tools/virt-edit.pl:452
32874 #, no-wrap
32875 msgid ""
32876 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
32877 "\n"
32878 msgstr ""
32879
32880 #. type: textblock
32881 #: ../tools/virt-edit.pl:454
32882 msgid ""
32883 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
32884 "the disk image to edit, and C</file> is the full path to the file."
32885 msgstr ""
32886
32887 #. type: textblock
32888 #: ../tools/virt-edit.pl:458
32889 msgid ""
32890 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
32891 "C<write> or C<upload> instead:"
32892 msgstr ""
32893
32894 #. type: verbatim
32895 #: ../tools/virt-edit.pl:461
32896 #, no-wrap
32897 msgid ""
32898 " guestfish --rw -i -d domname touch /newfile\n"
32899 "\n"
32900 msgstr ""
32901
32902 #. type: verbatim
32903 #: ../tools/virt-edit.pl:463
32904 #, no-wrap
32905 msgid ""
32906 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
32907 "\n"
32908 msgstr ""
32909
32910 #. type: verbatim
32911 #: ../tools/virt-edit.pl:465
32912 #, no-wrap
32913 msgid ""
32914 " guestfish --rw -i -d domname upload localfile /newfile\n"
32915 "\n"
32916 msgstr ""
32917
32918 #. type: textblock
32919 #: ../tools/virt-edit.pl:467
32920 msgid ""
32921 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
32922 msgstr ""
32923
32924 #. type: verbatim
32925 #: ../tools/virt-edit.pl:470
32926 #, no-wrap
32927 msgid ""
32928 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
32929 "\n"
32930 msgstr ""
32931
32932 # type: =item
32933 #. type: =item
32934 #: ../tools/virt-edit.pl:480
32935 msgid "C<EDITOR>"
32936 msgstr ""
32937
32938 # type: textblock
32939 #. type: textblock
32940 #: ../tools/virt-edit.pl:482
32941 msgid ""
32942 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
32943 "\"emacs -nw\">"
32944 msgstr ""
32945
32946 # type: textblock
32947 #. type: textblock
32948 #: ../tools/virt-edit.pl:485
32949 msgid "If not set, C<vi> is used."
32950 msgstr ""
32951
32952 # type: =head2
32953 #. type: =head1
32954 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
32955 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
32956 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
32957 msgid "SHELL QUOTING"
32958 msgstr ""
32959
32960 # type: textblock
32961 #. type: textblock
32962 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
32963 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
32964 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
32965 msgid ""
32966 "Libvirt guest names can contain arbitrary characters, some of which have "
32967 "meaning to the shell such as C<#> and space.  You may need to quote or "
32968 "escape these characters on the command line.  See the shell manual page L<sh"
32969 "(1)> for details."
32970 msgstr ""
32971
32972 #. type: textblock
32973 #: ../tools/virt-edit.pl:498
32974 msgid ""
32975 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
32976 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
32977 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
32978 msgstr ""
32979
32980 # type: =head1
32981 #. type: =head1
32982 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
32983 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
32984 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
32985 msgid "AUTHOR"
32986 msgstr ""
32987
32988 # type: textblock
32989 #. type: textblock
32990 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
32991 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
32992 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
32993 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
32994 msgstr ""
32995
32996 #. type: textblock
32997 #: ../tools/virt-edit.pl:516
32998 msgid "Copyright (C) 2009-2011 Red Hat Inc."
32999 msgstr ""
33000
33001 # type: textblock
33002 #. type: textblock
33003 #: ../tools/virt-win-reg.pl:37
33004 msgid ""
33005 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
33006 msgstr ""
33007
33008 # type: verbatim
33009 #. type: verbatim
33010 #: ../tools/virt-win-reg.pl:41
33011 #, no-wrap
33012 msgid ""
33013 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
33014 "\n"
33015 msgstr ""
33016
33017 # type: verbatim
33018 #. type: verbatim
33019 #: ../tools/virt-win-reg.pl:43
33020 #, no-wrap
33021 msgid ""
33022 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
33023 "\n"
33024 msgstr ""
33025
33026 # type: verbatim
33027 #. type: verbatim
33028 #: ../tools/virt-win-reg.pl:45
33029 #, no-wrap
33030 msgid ""
33031 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
33032 "\n"
33033 msgstr ""
33034
33035 # type: verbatim
33036 #. type: verbatim
33037 #: ../tools/virt-win-reg.pl:47
33038 #, no-wrap
33039 msgid ""
33040 " virt-win-reg --merge domname [input.reg ...]\n"
33041 "\n"
33042 msgstr ""
33043
33044 # type: verbatim
33045 #. type: verbatim
33046 #: ../tools/virt-win-reg.pl:49
33047 #, no-wrap
33048 msgid ""
33049 " virt-win-reg [--options] disk.img ... # instead of domname\n"
33050 "\n"
33051 msgstr ""
33052
33053 # type: textblock
33054 #. type: textblock
33055 #: ../tools/virt-win-reg.pl:53
33056 msgid ""
33057 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
33058 "virtual machines.  If you do this, you I<will> get irreversible disk "
33059 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
33060 "but doesn't catch all cases."
33061 msgstr ""
33062
33063 # type: textblock
33064 #. type: textblock
33065 #: ../tools/virt-win-reg.pl:58
33066 msgid ""
33067 "Modifying the Windows Registry is an inherently risky operation.  The format "
33068 "is deliberately obscure and undocumented, and Registry changes can leave the "
33069 "system unbootable.  Therefore when using the C<--merge> option, make sure "
33070 "you have a reliable backup first."
33071 msgstr ""
33072
33073 # type: textblock
33074 #. type: textblock
33075 #: ../tools/virt-win-reg.pl:65
33076 msgid ""
33077 "This program can export and merge Windows Registry entries from a Windows "
33078 "guest."
33079 msgstr ""
33080
33081 # type: textblock
33082 #. type: textblock
33083 #: ../tools/virt-win-reg.pl:68
33084 msgid ""
33085 "The first parameter is the libvirt guest name or the raw disk image of a "
33086 "Windows guest."
33087 msgstr ""
33088
33089 # type: textblock
33090 #. type: textblock
33091 #: ../tools/virt-win-reg.pl:71
33092 msgid ""
33093 "If C<--merge> is I<not> specified, then the chosen registry key is displayed/"
33094 "exported (recursively).  For example:"
33095 msgstr ""
33096
33097 # type: verbatim
33098 #. type: verbatim
33099 #: ../tools/virt-win-reg.pl:74
33100 #, no-wrap
33101 msgid ""
33102 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
33103 "\n"
33104 msgstr ""
33105
33106 # type: textblock
33107 #. type: textblock
33108 #: ../tools/virt-win-reg.pl:76
33109 msgid ""
33110 "You can also display single values from within registry keys, for example:"
33111 msgstr ""
33112
33113 # type: verbatim
33114 #. type: verbatim
33115 #: ../tools/virt-win-reg.pl:79
33116 #, no-wrap
33117 msgid ""
33118 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
33119 " $ virt-win-reg Windows7 $cvkey ProductName\n"
33120 " Windows 7 Enterprise\n"
33121 "\n"
33122 msgstr ""
33123
33124 # type: textblock
33125 #. type: textblock
33126 #: ../tools/virt-win-reg.pl:83
33127 msgid ""
33128 "With C<--merge>, you can merge a textual regedit file into the Windows "
33129 "Registry:"
33130 msgstr ""
33131
33132 # type: verbatim
33133 #. type: verbatim
33134 #: ../tools/virt-win-reg.pl:86
33135 #, no-wrap
33136 msgid ""
33137 " $ virt-win-reg --merge Windows7 changes.reg\n"
33138 "\n"
33139 msgstr ""
33140
33141 # type: =head2
33142 #. type: =head1
33143 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
33144 msgid "NOTE"
33145 msgstr ""
33146
33147 # type: textblock
33148 #. type: textblock
33149 #: ../tools/virt-win-reg.pl:90
33150 msgid ""
33151 "This program is only meant for simple access to the registry.  If you want "
33152 "to do complicated things with the registry, we suggest you download the "
33153 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
33154 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
33155 "L<hivexregedit(1)>."
33156 msgstr ""
33157
33158 # type: =item
33159 #. type: =item
33160 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
33161 msgid "B<--debug>"
33162 msgstr ""
33163
33164 # type: textblock
33165 #. type: textblock
33166 #: ../tools/virt-win-reg.pl:122
33167 msgid "Enable debugging messages."
33168 msgstr ""
33169
33170 # type: =item
33171 #. type: =item
33172 #: ../tools/virt-win-reg.pl:157
33173 msgid "B<--merge>"
33174 msgstr ""
33175
33176 # type: textblock
33177 #. type: textblock
33178 #: ../tools/virt-win-reg.pl:159
33179 msgid ""
33180 "In merge mode, this merges a textual regedit file into the Windows Registry "
33181 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
33182 "displays or exports Registry entries instead."
33183 msgstr ""
33184
33185 # type: textblock
33186 #. type: textblock
33187 #: ../tools/virt-win-reg.pl:163
33188 msgid ""
33189 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
33190 "result in disk corruption.  However exporting (without this flag)  is always "
33191 "safe."
33192 msgstr ""
33193
33194 # type: =item
33195 #. type: =item
33196 #: ../tools/virt-win-reg.pl:171
33197 msgid "B<--encoding> UTF-16LE|ASCII"
33198 msgstr ""
33199
33200 # type: textblock
33201 #. type: textblock
33202 #: ../tools/virt-win-reg.pl:173
33203 msgid ""
33204 "When merging (only), you may need to specify the encoding for strings to be "
33205 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
33206 "(3)/ENCODING STRINGS>."
33207 msgstr ""
33208
33209 # type: textblock
33210 #. type: textblock
33211 #: ../tools/virt-win-reg.pl:177
33212 msgid ""
33213 "The default is to use UTF-16LE, which should work with recent versions of "
33214 "Windows."
33215 msgstr ""
33216
33217 # type: =head2
33218 #. type: =head1
33219 #: ../tools/virt-win-reg.pl:402
33220 msgid "SUPPORTED SYSTEMS"
33221 msgstr ""
33222
33223 # type: textblock
33224 #. type: textblock
33225 #: ../tools/virt-win-reg.pl:404
33226 msgid ""
33227 "The program currently supports Windows NT-derived guests starting with "
33228 "Windows XP through to at least Windows 7."
33229 msgstr ""
33230
33231 # type: textblock
33232 #. type: textblock
33233 #: ../tools/virt-win-reg.pl:407
33234 msgid ""
33235 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
33236 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
33237 "and C<HKEY_USERS\\.DEFAULT>."
33238 msgstr ""
33239
33240 # type: textblock
33241 #. type: textblock
33242 #: ../tools/virt-win-reg.pl:411
33243 msgid ""
33244 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
33245 "C<HKEY_USERS>."
33246 msgstr ""
33247
33248 # type: textblock
33249 #. type: textblock
33250 #: ../tools/virt-win-reg.pl:414
33251 msgid ""
33252 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
33253 "time."
33254 msgstr ""
33255
33256 # type: =head2
33257 #. type: =head1
33258 #: ../tools/virt-win-reg.pl:417
33259 msgid "ENCODING"
33260 msgstr ""
33261
33262 # type: textblock
33263 #. type: textblock
33264 #: ../tools/virt-win-reg.pl:419
33265 msgid ""
33266 "C<virt-win-reg> expects that regedit files have already been reencoded in "
33267 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
33268 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
33269 "Windows-style line endings, you may need to reencode the whole file before "
33270 "or after processing."
33271 msgstr ""
33272
33273 # type: textblock
33274 #. type: textblock
33275 #: ../tools/virt-win-reg.pl:425
33276 msgid ""
33277 "To reencode a file from Windows format to Linux (before processing it with "
33278 "the C<--merge> option), you would do something like this:"
33279 msgstr ""
33280
33281 # type: verbatim
33282 #. type: verbatim
33283 #: ../tools/virt-win-reg.pl:428
33284 #, no-wrap
33285 msgid ""
33286 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
33287 "\n"
33288 msgstr ""
33289
33290 # type: textblock
33291 #. type: textblock
33292 #: ../tools/virt-win-reg.pl:430
33293 msgid ""
33294 "To go in the opposite direction, after exporting and before sending the file "
33295 "to a Windows user, do something like this:"
33296 msgstr ""
33297
33298 # type: verbatim
33299 #. type: verbatim
33300 #: ../tools/virt-win-reg.pl:433
33301 #, no-wrap
33302 msgid ""
33303 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
33304 "\n"
33305 msgstr ""
33306
33307 # type: textblock
33308 #. type: textblock
33309 #: ../tools/virt-win-reg.pl:435
33310 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
33311 msgstr ""
33312
33313 # type: textblock
33314 #. type: textblock
33315 #: ../tools/virt-win-reg.pl:437
33316 msgid ""
33317 "If you are unsure about the current encoding, use the L<file(1)> command.  "
33318 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
33319 "style (CRLF) line endings, like this:"
33320 msgstr ""
33321
33322 # type: verbatim
33323 #. type: verbatim
33324 #: ../tools/virt-win-reg.pl:441
33325 #, no-wrap
33326 msgid ""
33327 " $ file software.reg\n"
33328 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
33329 " with CRLF line terminators\n"
33330 "\n"
33331 msgstr ""
33332
33333 # type: textblock
33334 #. type: textblock
33335 #: ../tools/virt-win-reg.pl:445
33336 msgid "This file would need conversion before you could C<--merge> it."
33337 msgstr ""
33338
33339 # type: =head2
33340 #. type: =head1
33341 #: ../tools/virt-win-reg.pl:447
33342 msgid "CurrentControlSet etc."
33343 msgstr ""
33344
33345 # type: textblock
33346 #. type: textblock
33347 #: ../tools/virt-win-reg.pl:449
33348 msgid ""
33349 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
33350 "Registry at the level of the hive file, and therefore you cannot modify "
33351 "these."
33352 msgstr ""
33353
33354 # type: textblock
33355 #. type: textblock
33356 #: ../tools/virt-win-reg.pl:453
33357 msgid ""
33358 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
33359 "circumstances it might refer to another control set.  The way to find out is "
33360 "to look at the C<HKLM\\SYSTEM\\Select> key:"
33361 msgstr ""
33362
33363 # type: verbatim
33364 #. type: verbatim
33365 #: ../tools/virt-win-reg.pl:457
33366 #, no-wrap
33367 msgid ""
33368 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
33369 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
33370 " \"Current\"=dword:00000001\n"
33371 " \"Default\"=dword:00000001\n"
33372 " \"Failed\"=dword:00000000\n"
33373 " \"LastKnownGood\"=dword:00000002\n"
33374 "\n"
33375 msgstr ""
33376
33377 # type: textblock
33378 #. type: textblock
33379 #: ../tools/virt-win-reg.pl:464
33380 msgid "\"Current\" is the one which Windows will choose when it boots."
33381 msgstr ""
33382
33383 # type: textblock
33384 #. type: textblock
33385 #: ../tools/virt-win-reg.pl:466
33386 msgid ""
33387 "Similarly, other C<Current...> keys in the path may need to be replaced."
33388 msgstr ""
33389
33390 # type: =head1
33391 #. type: =head1
33392 #: ../tools/virt-win-reg.pl:469
33393 msgid "WINDOWS TIPS"
33394 msgstr ""
33395
33396 # type: textblock
33397 #. type: textblock
33398 #: ../tools/virt-win-reg.pl:471
33399 msgid ""
33400 "Note that some of these tips modify the guest disk image.  The guest I<must> "
33401 "be shut off, else you will get disk corruption."
33402 msgstr ""
33403
33404 # type: =head2
33405 #. type: =head2
33406 #: ../tools/virt-win-reg.pl:474
33407 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
33408 msgstr ""
33409
33410 # type: textblock
33411 #. type: textblock
33412 #: ../tools/virt-win-reg.pl:476
33413 msgid ""
33414 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
33415 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
33416 "is uploaded into C<C:\\>:"
33417 msgstr ""
33418
33419 # type: verbatim
33420 #. type: verbatim
33421 #: ../tools/virt-win-reg.pl:480
33422 #, no-wrap
33423 msgid ""
33424 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
33425 "\n"
33426 msgstr ""
33427
33428 # type: textblock
33429 #. type: textblock
33430 #: ../tools/virt-win-reg.pl:482
33431 msgid "Prepare a regedit file containing the registry change:"
33432 msgstr ""
33433
33434 # type: verbatim
33435 #. type: verbatim
33436 #: ../tools/virt-win-reg.pl:484
33437 #, no-wrap
33438 msgid ""
33439 " cat > test.reg <<'EOF'\n"
33440 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
33441 " \"Test\"=\"c:\\\\test.bat\"\n"
33442 " EOF\n"
33443 "\n"
33444 msgstr ""
33445
33446 # type: textblock
33447 #. type: textblock
33448 #: ../tools/virt-win-reg.pl:489
33449 msgid ""
33450 "In this example we use the key C<RunOnce> which means that the script will "
33451 "run precisely once when the first user logs in.  If you want it to run every "
33452 "time a user logs in, replace C<RunOnce> with C<Run>."
33453 msgstr ""
33454
33455 # type: textblock
33456 #. type: textblock
33457 #: ../tools/virt-win-reg.pl:493
33458 msgid "Now update the registry:"
33459 msgstr ""
33460
33461 # type: verbatim
33462 #. type: verbatim
33463 #: ../tools/virt-win-reg.pl:495
33464 #, no-wrap
33465 msgid ""
33466 " virt-win-reg --merge WindowsGuest test.reg\n"
33467 "\n"
33468 msgstr ""
33469
33470 # type: =head2
33471 #. type: =head2
33472 #: ../tools/virt-win-reg.pl:497
33473 msgid "INSTALLING A SERVICE"
33474 msgstr ""
33475
33476 # type: textblock
33477 #. type: textblock
33478 #: ../tools/virt-win-reg.pl:499
33479 msgid ""
33480 "This section assumes you are familiar with Windows services, and you either "
33481 "have a program which handles the Windows Service Control Protocol directly "
33482 "or you want to run any program using a service wrapper like SrvAny or the "
33483 "free RHSrvAny."
33484 msgstr ""
33485
33486 # type: textblock
33487 #. type: textblock
33488 #: ../tools/virt-win-reg.pl:504
33489 msgid ""
33490 "First upload the program and optionally the service wrapper.  In this case "
33491 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
33492 msgstr ""
33493
33494 # type: verbatim
33495 #. type: verbatim
33496 #: ../tools/virt-win-reg.pl:508
33497 #, no-wrap
33498 msgid ""
33499 " guestfish -i -d WindowsGuest <<EOF\n"
33500 "   upload rhsrvany.exe /rhsrvany.exe\n"
33501 "   upload test.exe /test.exe\n"
33502 " EOF\n"
33503 "\n"
33504 msgstr ""
33505
33506 # type: textblock
33507 #. type: textblock
33508 #: ../tools/virt-win-reg.pl:513
33509 msgid ""
33510 "Prepare a regedit file containing the registry changes.  In this example, "
33511 "the first registry change is needed for the service itself or the service "
33512 "wrapper (if used).  The second registry change is only needed because I am "
33513 "using the RHSrvAny service wrapper."
33514 msgstr ""
33515
33516 # type: verbatim
33517 #. type: verbatim
33518 #: ../tools/virt-win-reg.pl:518
33519 #, no-wrap
33520 msgid ""
33521 " cat > service.reg <<'EOF'\n"
33522 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
33523 " \"Type\"=dword:00000010\n"
33524 " \"Start\"=dword:00000002\n"
33525 " \"ErrorControl\"=dword:00000001\n"
33526 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
33527 " \"DisplayName\"=\"RHSrvAny\"\n"
33528 " \"ObjectName\"=\"NetworkService\"\n"
33529 " \n"
33530 msgstr ""
33531
33532 # type: verbatim
33533 #. type: verbatim
33534 #: ../tools/virt-win-reg.pl:527
33535 #, no-wrap
33536 msgid ""
33537 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
33538 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
33539 " \"PWD\"=\"c:\\\\Temp\"\n"
33540 " EOF\n"
33541 "\n"
33542 msgstr ""
33543
33544 # type: textblock
33545 #. type: textblock
33546 #: ../tools/virt-win-reg.pl:538
33547 msgid ""
33548 "For use of C<ControlSet001> see the section above in this manual page.  You "
33549 "may need to adjust this according to the control set that is in use by the "
33550 "guest."
33551 msgstr ""
33552
33553 # type: textblock
33554 #. type: textblock
33555 #: ../tools/virt-win-reg.pl:544
33556 msgid ""
33557 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
33558 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
33559 "privileged account."
33560 msgstr ""
33561
33562 # type: textblock
33563 #. type: textblock
33564 #: ../tools/virt-win-reg.pl:550
33565 msgid ""
33566 "For the meaning of the magic numbers, see this Microsoft KB article: "
33567 "L<http://support.microsoft.com/kb/103000>."
33568 msgstr ""
33569
33570 # type: textblock
33571 #. type: textblock
33572 #: ../tools/virt-win-reg.pl:555
33573 msgid "Update the registry:"
33574 msgstr ""
33575
33576 # type: verbatim
33577 #. type: verbatim
33578 #: ../tools/virt-win-reg.pl:557
33579 #, no-wrap
33580 msgid ""
33581 " virt-win-reg --merge WindowsGuest service.reg\n"
33582 "\n"
33583 msgstr ""
33584
33585 # type: textblock
33586 #. type: textblock
33587 #: ../tools/virt-win-reg.pl:561
33588 msgid ""
33589 "Be careful when passing parameters containing C<\\> (backslash) in the "
33590 "shell.  Usually you will have to use 'single quotes' or double backslashes "
33591 "(but not both) to protect them from the shell."
33592 msgstr ""
33593
33594 # type: textblock
33595 #. type: textblock
33596 #: ../tools/virt-win-reg.pl:565
33597 msgid "Paths and value names are case-insensitive."
33598 msgstr ""
33599
33600 # type: textblock
33601 #. type: textblock
33602 #: ../tools/virt-win-reg.pl:574
33603 msgid ""
33604 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
33605 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
33606 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33607 msgstr ""
33608
33609 # type: textblock
33610 #. type: textblock
33611 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
33612 msgid ""
33613 "When reporting bugs, please enable debugging and capture the I<complete> "
33614 "output:"
33615 msgstr ""
33616
33617 # type: verbatim
33618 #. type: verbatim
33619 #: ../tools/virt-win-reg.pl:592
33620 #, no-wrap
33621 msgid ""
33622 " export LIBGUESTFS_DEBUG=1\n"
33623 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
33624 "\n"
33625 msgstr ""
33626
33627 # type: textblock
33628 #. type: textblock
33629 #: ../tools/virt-win-reg.pl:595
33630 msgid ""
33631 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
33632 "redhat.com/>"
33633 msgstr ""
33634
33635 # type: textblock
33636 #. type: textblock
33637 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
33638 msgid "Copyright (C) 2010 Red Hat Inc."
33639 msgstr ""
33640
33641 # type: textblock
33642 #. type: textblock
33643 #: ../tools/virt-list-filesystems.pl:32
33644 msgid ""
33645 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
33646 msgstr ""
33647
33648 # type: verbatim
33649 #. type: verbatim
33650 #: ../tools/virt-list-filesystems.pl:36
33651 #, no-wrap
33652 msgid ""
33653 " virt-list-filesystems [--options] domname\n"
33654 "\n"
33655 msgstr ""
33656
33657 # type: verbatim
33658 #. type: verbatim
33659 #: ../tools/virt-list-filesystems.pl:38
33660 #, no-wrap
33661 msgid ""
33662 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
33663 "\n"
33664 msgstr ""
33665
33666 # type: textblock
33667 #. type: textblock
33668 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
33669 msgid ""
33670 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
33671 "replacement."
33672 msgstr ""
33673
33674 # type: textblock
33675 #. type: textblock
33676 #: ../tools/virt-list-filesystems.pl:45
33677 msgid ""
33678 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
33679 "are contained in a virtual machine or disk image."
33680 msgstr ""
33681
33682 # type: textblock
33683 #. type: textblock
33684 #: ../tools/virt-list-filesystems.pl:49
33685 msgid ""
33686 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
33687 "functionality.  For more complex cases you should look at the L<guestfish(1)"
33688 "> tool."
33689 msgstr ""
33690
33691 # type: =item
33692 #. type: =item
33693 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
33694 msgid "B<-l> | B<--long>"
33695 msgstr ""
33696
33697 # type: textblock
33698 #. type: textblock
33699 #: ../tools/virt-list-filesystems.pl:108
33700 msgid ""
33701 "With this option, C<virt-list-filesystems> displays the type of each "
33702 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
33703 msgstr ""
33704
33705 # type: =item
33706 #. type: =item
33707 #: ../tools/virt-list-filesystems.pl:115
33708 msgid "B<-a> | B<--all>"
33709 msgstr ""
33710
33711 # type: textblock
33712 #. type: textblock
33713 #: ../tools/virt-list-filesystems.pl:117
33714 msgid ""
33715 "Normally we only show mountable filesystems.  If this option is given then "
33716 "swap devices are shown too."
33717 msgstr ""
33718
33719 # type: textblock
33720 #. type: textblock
33721 #: ../tools/virt-list-filesystems.pl:191
33722 msgid ""
33723 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
33724 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
33725 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
33726 msgstr ""
33727
33728 # type: textblock
33729 #. type: textblock
33730 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
33731 msgid "Copyright (C) 2009 Red Hat Inc."
33732 msgstr ""
33733
33734 # type: textblock
33735 #. type: textblock
33736 #: ../tools/virt-tar.pl:33
33737 msgid "virt-tar - Extract or upload files to a virtual machine"
33738 msgstr ""
33739
33740 # type: verbatim
33741 #. type: verbatim
33742 #: ../tools/virt-tar.pl:37
33743 #, no-wrap
33744 msgid ""
33745 " virt-tar [--options] -x domname directory tarball\n"
33746 "\n"
33747 msgstr ""
33748
33749 # type: verbatim
33750 #. type: verbatim
33751 #: ../tools/virt-tar.pl:39
33752 #, no-wrap
33753 msgid ""
33754 " virt-tar [--options] -u domname tarball directory\n"
33755 "\n"
33756 msgstr ""
33757
33758 # type: verbatim
33759 #. type: verbatim
33760 #: ../tools/virt-tar.pl:41
33761 #, no-wrap
33762 msgid ""
33763 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
33764 "\n"
33765 msgstr ""
33766
33767 # type: verbatim
33768 #. type: verbatim
33769 #: ../tools/virt-tar.pl:43
33770 #, no-wrap
33771 msgid ""
33772 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
33773 "\n"
33774 msgstr ""
33775
33776 #. type: textblock
33777 #: ../tools/virt-tar.pl:47
33778 msgid ""
33779 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
33780 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
33781 msgstr ""
33782
33783 # type: textblock
33784 #. type: textblock
33785 #: ../tools/virt-tar.pl:52
33786 msgid "Download C</home> from the VM into a local tarball:"
33787 msgstr ""
33788
33789 # type: verbatim
33790 #. type: verbatim
33791 #: ../tools/virt-tar.pl:54
33792 #, no-wrap
33793 msgid ""
33794 " virt-tar -x domname /home home.tar\n"
33795 "\n"
33796 msgstr ""
33797
33798 # type: verbatim
33799 #. type: verbatim
33800 #: ../tools/virt-tar.pl:56
33801 #, no-wrap
33802 msgid ""
33803 " virt-tar -zx domname /home home.tar.gz\n"
33804 "\n"
33805 msgstr ""
33806
33807 # type: textblock
33808 #. type: textblock
33809 #: ../tools/virt-tar.pl:58
33810 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
33811 msgstr ""
33812
33813 # type: verbatim
33814 #. type: verbatim
33815 #: ../tools/virt-tar.pl:60
33816 #, no-wrap
33817 msgid ""
33818 " virt-tar -u domname uploadstuff.tar /tmp\n"
33819 "\n"
33820 msgstr ""
33821
33822 # type: verbatim
33823 #. type: verbatim
33824 #: ../tools/virt-tar.pl:62
33825 #, no-wrap
33826 msgid ""
33827 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
33828 "\n"
33829 msgstr ""
33830
33831 # type: textblock
33832 #. type: textblock
33833 #: ../tools/virt-tar.pl:66
33834 msgid ""
33835 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
33836 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
33837 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
33838 msgstr ""
33839
33840 # type: textblock
33841 #. type: textblock
33842 #: ../tools/virt-tar.pl:71
33843 msgid ""
33844 "You can use C<-x> (extract) on live virtual machines, but you might get "
33845 "inconsistent results or errors if there is filesystem activity inside the "
33846 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
33847 "work, but the only way to guarantee consistent results is if the virtual "
33848 "machine is shut down."
33849 msgstr ""
33850
33851 # type: textblock
33852 #. type: textblock
33853 #: ../tools/virt-tar.pl:79
33854 msgid ""
33855 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
33856 "parts of a guest filesystem.  There are many possibilities: making backups, "
33857 "uploading data files, snooping on guest activity, fixing or customizing "
33858 "guests, etc."
33859 msgstr ""
33860
33861 # type: textblock
33862 #. type: textblock
33863 #: ../tools/virt-tar.pl:84
33864 msgid ""
33865 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
33866 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
33867 "should look at the L<guestfish(1)> tool."
33868 msgstr ""
33869
33870 # type: textblock
33871 #. type: textblock
33872 #: ../tools/virt-tar.pl:88
33873 msgid ""
33874 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
33875 "its contents (recursively) from the virtual machine into a local tarball.  "
33876 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
33877 "virtual machine.  You cannot use these two options together."
33878 msgstr ""
33879
33880 # type: textblock
33881 #. type: textblock
33882 #: ../tools/virt-tar.pl:94
33883 msgid ""
33884 "In addition, you may need to use the C<-z> (gZip) option to enable "
33885 "compression.  When uploading, you have to specify C<-z> if the upload file "
33886 "is compressed because virt-tar won't detect this on its own."
33887 msgstr ""
33888
33889 # type: textblock
33890 #. type: textblock
33891 #: ../tools/virt-tar.pl:98
33892 msgid ""
33893 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
33894 "example it cannot do PKZip files or bzip2 compression.  If you want that "
33895 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
33896 "the L<libguestfs(3)> API)."
33897 msgstr ""
33898
33899 # type: =item
33900 #. type: =item
33901 #: ../tools/virt-tar.pl:156
33902 msgid "B<-x> | B<--extract> | B<--download>"
33903 msgstr ""
33904
33905 # type: =item
33906 #. type: =item
33907 #: ../tools/virt-tar.pl:158
33908 msgid "B<-u> | B<--upload>"
33909 msgstr ""
33910
33911 # type: textblock
33912 #. type: textblock
33913 #: ../tools/virt-tar.pl:160
33914 msgid ""
33915 "Use C<-x> to extract (download) a directory from a virtual machine to a "
33916 "local tarball."
33917 msgstr ""
33918
33919 # type: textblock
33920 #. type: textblock
33921 #: ../tools/virt-tar.pl:163
33922 msgid ""
33923 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
33924 "Please read the L</WARNING> section above before using this option."
33925 msgstr ""
33926
33927 # type: textblock
33928 #. type: textblock
33929 #: ../tools/virt-tar.pl:167
33930 msgid "You must specify exactly one of these options."
33931 msgstr ""
33932
33933 # type: =item
33934 #. type: =item
33935 #: ../tools/virt-tar.pl:173
33936 msgid "B<-z> | B<--gzip>"
33937 msgstr ""
33938
33939 # type: textblock
33940 #. type: textblock
33941 #: ../tools/virt-tar.pl:175
33942 msgid "Specify that the input or output tarball is gzip-compressed."
33943 msgstr ""
33944
33945 #. type: textblock
33946 #: ../tools/virt-tar.pl:288
33947 msgid ""
33948 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
33949 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
33950 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
33951 "org/>."
33952 msgstr ""
33953
33954 # type: textblock
33955 #. type: textblock
33956 #: ../tools/virt-make-fs.pl:37
33957 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
33958 msgstr ""
33959
33960 # type: verbatim
33961 #. type: verbatim
33962 #: ../tools/virt-make-fs.pl:41
33963 #, no-wrap
33964 msgid ""
33965 " virt-make-fs [--options] input.tar output.img\n"
33966 "\n"
33967 msgstr ""
33968
33969 # type: verbatim
33970 #. type: verbatim
33971 #: ../tools/virt-make-fs.pl:43
33972 #, no-wrap
33973 msgid ""
33974 " virt-make-fs [--options] input.tar.gz output.img\n"
33975 "\n"
33976 msgstr ""
33977
33978 # type: verbatim
33979 #. type: verbatim
33980 #: ../tools/virt-make-fs.pl:45
33981 #, no-wrap
33982 msgid ""
33983 " virt-make-fs [--options] directory output.img\n"
33984 "\n"
33985 msgstr ""
33986
33987 # type: textblock
33988 #. type: textblock
33989 #: ../tools/virt-make-fs.pl:49
33990 msgid ""
33991 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
33992 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
33993 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
33994 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
33995 "you want to attach these filesystems to existing virtual machines (eg. to "
33996 "import large amounts of read-only data to a VM)."
33997 msgstr ""
33998
33999 # type: textblock
34000 #. type: textblock
34001 #: ../tools/virt-make-fs.pl:57
34002 msgid "Basic usage is:"
34003 msgstr ""
34004
34005 # type: verbatim
34006 #. type: verbatim
34007 #: ../tools/virt-make-fs.pl:59
34008 #, no-wrap
34009 msgid ""
34010 " virt-make-fs input output\n"
34011 "\n"
34012 msgstr ""
34013
34014 # type: textblock
34015 #. type: textblock
34016 #: ../tools/virt-make-fs.pl:61
34017 msgid ""
34018 "where C<input> is either a directory containing files that you want to add, "
34019 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
34020 "C<output> is a disk image.  The input type is detected automatically.  The "
34021 "output disk image defaults to a raw ext2 image unless you specify extra "
34022 "flags (see L</OPTIONS> below)."
34023 msgstr ""
34024
34025 # type: =head2
34026 #. type: =head2
34027 #: ../tools/virt-make-fs.pl:67
34028 msgid "EXTRA SPACE"
34029 msgstr ""
34030
34031 # type: textblock
34032 #. type: textblock
34033 #: ../tools/virt-make-fs.pl:69
34034 msgid ""
34035 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
34036 "the files that it contains, but might have extra space.  Depending on how "
34037 "you are going to use the output, you might think this extra space is wasted "
34038 "and want to minimize it, or you might want to leave space so that more files "
34039 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
34040 "but you can use the C<--size> flag to leave space in the filesystem if you "
34041 "want it."
34042 msgstr ""
34043
34044 # type: textblock
34045 #. type: textblock
34046 #: ../tools/virt-make-fs.pl:77
34047 msgid ""
34048 "An alternative way to leave extra space but not make the output image any "
34049 "bigger is to use an alternative disk image format (instead of the default "
34050 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
34051 "image format (check your hypervisor supports this before using it).  This "
34052 "allows you to choose a large C<--size> but the extra space won't actually be "
34053 "allocated in the image until you try to store something in it."
34054 msgstr ""
34055
34056 #. type: textblock
34057 #: ../tools/virt-make-fs.pl:85
34058 msgid ""
34059 "Don't forget that you can also use local commands including L<resize2fs(8)> "
34060 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
34061 "to build another image from scratch."
34062 msgstr ""
34063
34064 # type: =head3
34065 #. type: =head3
34066 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
34067 #: ../tools/virt-make-fs.pl:142
34068 msgid "EXAMPLE"
34069 msgstr ""
34070
34071 # type: verbatim
34072 #. type: verbatim
34073 #: ../tools/virt-make-fs.pl:91
34074 #, no-wrap
34075 msgid ""
34076 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
34077 "\n"
34078 msgstr ""
34079
34080 # type: =head2
34081 #. type: =head2
34082 #: ../tools/virt-make-fs.pl:93
34083 msgid "FILESYSTEM TYPE"
34084 msgstr ""
34085
34086 # type: textblock
34087 #. type: textblock
34088 #: ../tools/virt-make-fs.pl:95
34089 msgid ""
34090 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
34091 "libguestfs supports can be used (but I<not> read-only formats like "
34092 "ISO9660).  Here are some of the more common choices:"
34093 msgstr ""
34094
34095 # type: =item
34096 #. type: =item
34097 #: ../tools/virt-make-fs.pl:101
34098 msgid "I<ext3>"
34099 msgstr ""
34100
34101 # type: textblock
34102 #. type: textblock
34103 #: ../tools/virt-make-fs.pl:103
34104 msgid ""
34105 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
34106 "you are not going to use the filesystem in a way that requires the journal, "
34107 "then this is just wasted overhead."
34108 msgstr ""
34109
34110 # type: =item
34111 #. type: =item
34112 #: ../tools/virt-make-fs.pl:107
34113 msgid "I<ntfs> or I<vfat>"
34114 msgstr ""
34115
34116 # type: textblock
34117 #. type: textblock
34118 #: ../tools/virt-make-fs.pl:109
34119 msgid "Useful if exporting data to a Windows guest."
34120 msgstr ""
34121
34122 # type: textblock
34123 #. type: textblock
34124 #: ../tools/virt-make-fs.pl:111
34125 msgid ""
34126 "I<Note for vfat>: The tar archive or local directory must only contain files "
34127 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
34128 "program running within libguestfs is unable to change the ownership of non-"
34129 "root files, since vfat itself does not support this."
34130 msgstr ""
34131
34132 # type: =item
34133 #. type: =item
34134 #: ../tools/virt-make-fs.pl:116
34135 msgid "I<minix>"
34136 msgstr ""
34137
34138 # type: textblock
34139 #. type: textblock
34140 #: ../tools/virt-make-fs.pl:118
34141 msgid ""
34142 "Lower overhead than C<ext2>, but certain limitations on filename length and "
34143 "total filesystem size."
34144 msgstr ""
34145
34146 # type: verbatim
34147 #. type: verbatim
34148 #: ../tools/virt-make-fs.pl:125
34149 #, no-wrap
34150 msgid ""
34151 " virt-make-fs --type=minix input minixfs.img\n"
34152 "\n"
34153 msgstr ""
34154
34155 # type: =head2
34156 #. type: =head2
34157 #: ../tools/virt-make-fs.pl:127
34158 msgid "TO PARTITION OR NOT TO PARTITION"
34159 msgstr ""
34160
34161 # type: textblock
34162 #. type: textblock
34163 #: ../tools/virt-make-fs.pl:129
34164 msgid "Optionally virt-make-fs can add a partition table to the output disk."
34165 msgstr ""
34166
34167 # type: textblock
34168 #. type: textblock
34169 #: ../tools/virt-make-fs.pl:131
34170 msgid ""
34171 "Adding a partition can make the disk image more compatible with certain "
34172 "virtualized operating systems which don't expect to see a filesystem "
34173 "directly located on a block device (Linux doesn't care and will happily "
34174 "handle both types)."
34175 msgstr ""
34176
34177 # type: textblock
34178 #. type: textblock
34179 #: ../tools/virt-make-fs.pl:136
34180 msgid ""
34181 "On the other hand, if you have a partition table then the output image is no "
34182 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
34183 "directly on a partitioned disk image.  (However libguestfs tools such as "
34184 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
34185 msgstr ""
34186
34187 # type: textblock
34188 #. type: textblock
34189 #: ../tools/virt-make-fs.pl:144
34190 msgid "Add an MBR partition:"
34191 msgstr ""
34192
34193 # type: verbatim
34194 #. type: verbatim
34195 #: ../tools/virt-make-fs.pl:146
34196 #, no-wrap
34197 msgid ""
34198 " virt-make-fs --partition -- input disk.img\n"
34199 "\n"
34200 msgstr ""
34201
34202 # type: textblock
34203 #. type: textblock
34204 #: ../tools/virt-make-fs.pl:148
34205 msgid ""
34206 "If the output disk image could be terabyte-sized or larger, it's better to "
34207 "use an EFI/GPT-compatible partition table:"
34208 msgstr ""
34209
34210 # type: verbatim
34211 #. type: verbatim
34212 #: ../tools/virt-make-fs.pl:151
34213 #, no-wrap
34214 msgid ""
34215 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
34216 "\n"
34217 msgstr ""
34218
34219 # type: textblock
34220 #. type: textblock
34221 #: ../tools/virt-make-fs.pl:179
34222 msgid "Enable debugging information."
34223 msgstr ""
34224
34225 # type: =item
34226 #. type: =item
34227 #: ../tools/virt-make-fs.pl:185
34228 msgid "B<--size=E<lt>NE<gt>>"
34229 msgstr ""
34230
34231 # type: =item
34232 #. type: =item
34233 #: ../tools/virt-make-fs.pl:187
34234 msgid "B<--size=+E<lt>NE<gt>>"
34235 msgstr ""
34236
34237 # type: =item
34238 #. type: =item
34239 #: ../tools/virt-make-fs.pl:189
34240 msgid "B<-s E<lt>NE<gt>>"
34241 msgstr ""
34242
34243 # type: =item
34244 #. type: =item
34245 #: ../tools/virt-make-fs.pl:191
34246 msgid "B<-s +E<lt>NE<gt>>"
34247 msgstr ""
34248
34249 # type: textblock
34250 #. type: textblock
34251 #: ../tools/virt-make-fs.pl:193
34252 msgid ""
34253 "Use the C<--size> (or C<-s>) option to choose the size of the output image."
34254 msgstr ""
34255
34256 # type: textblock
34257 #. type: textblock
34258 #: ../tools/virt-make-fs.pl:196
34259 msgid ""
34260 "If this option is I<not> given, then the output image will be just large "
34261 "enough to contain all the files, with not much wasted space."
34262 msgstr ""
34263
34264 # type: textblock
34265 #. type: textblock
34266 #: ../tools/virt-make-fs.pl:199
34267 msgid ""
34268 "To choose a fixed size output disk, specify an absolute number followed by b/"
34269 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34270 "Petabytes or Exabytes.  This must be large enough to contain all the input "
34271 "files, else you will get an error."
34272 msgstr ""
34273
34274 # type: textblock
34275 #. type: textblock
34276 #: ../tools/virt-make-fs.pl:204
34277 msgid ""
34278 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
34279 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
34280 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
34281 "the input files, and (approximately) an extra 200 MB free space."
34282 msgstr ""
34283
34284 # type: textblock
34285 #. type: textblock
34286 #: ../tools/virt-make-fs.pl:210
34287 msgid ""
34288 "Note that virt-make-fs estimates free space, and therefore will not produce "
34289 "filesystems containing precisely the free space requested.  (It is much more "
34290 "expensive and time-consuming to produce a filesystem which has precisely the "
34291 "desired free space)."
34292 msgstr ""
34293
34294 # type: =item
34295 #. type: =item
34296 #: ../tools/virt-make-fs.pl:219
34297 msgid "B<--format=E<lt>fmtE<gt>>"
34298 msgstr ""
34299
34300 # type: =item
34301 #. type: =item
34302 #: ../tools/virt-make-fs.pl:221
34303 msgid "B<-F E<lt>fmtE<gt>>"
34304 msgstr ""
34305
34306 # type: textblock
34307 #. type: textblock
34308 #: ../tools/virt-make-fs.pl:223
34309 msgid "Choose the output disk image format."
34310 msgstr ""
34311
34312 # type: textblock
34313 #. type: textblock
34314 #: ../tools/virt-make-fs.pl:225
34315 msgid "The default is C<raw> (raw disk image)."
34316 msgstr ""
34317
34318 # type: textblock
34319 #. type: textblock
34320 #: ../tools/virt-make-fs.pl:227
34321 msgid ""
34322 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
34323 "that would really make sense here is C<qcow2>."
34324 msgstr ""
34325
34326 # type: =item
34327 #. type: =item
34328 #: ../tools/virt-make-fs.pl:234
34329 msgid "B<--type=E<lt>fsE<gt>>"
34330 msgstr ""
34331
34332 # type: =item
34333 #. type: =item
34334 #: ../tools/virt-make-fs.pl:236
34335 msgid "B<-t E<lt>fsE<gt>>"
34336 msgstr ""
34337
34338 # type: textblock
34339 #. type: textblock
34340 #: ../tools/virt-make-fs.pl:238
34341 msgid "Choose the output filesystem type."
34342 msgstr ""
34343
34344 # type: textblock
34345 #. type: textblock
34346 #: ../tools/virt-make-fs.pl:240
34347 msgid "The default is C<ext2>."
34348 msgstr ""
34349
34350 # type: textblock
34351 #. type: textblock
34352 #: ../tools/virt-make-fs.pl:242
34353 msgid ""
34354 "Any filesystem which is supported read-write by libguestfs can be used here."
34355 msgstr ""
34356
34357 # type: =item
34358 #. type: =item
34359 #: ../tools/virt-make-fs.pl:249
34360 msgid "B<--partition>"
34361 msgstr ""
34362
34363 # type: =item
34364 #. type: =item
34365 #: ../tools/virt-make-fs.pl:251
34366 msgid "B<--partition=E<lt>parttypeE<gt>>"
34367 msgstr ""
34368
34369 # type: textblock
34370 #. type: textblock
34371 #: ../tools/virt-make-fs.pl:253
34372 msgid ""
34373 "If specified, this flag adds an MBR partition table to the output disk image."
34374 msgstr ""
34375
34376 # type: textblock
34377 #. type: textblock
34378 #: ../tools/virt-make-fs.pl:256
34379 msgid ""
34380 "You can change the partition table type, eg. C<--partition=gpt> for large "
34381 "disks."
34382 msgstr ""
34383
34384 # type: textblock
34385 #. type: textblock
34386 #: ../tools/virt-make-fs.pl:259
34387 msgid ""
34388 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
34389 "might consider the next parameter to be the partition type.  For example:"
34390 msgstr ""
34391
34392 # type: verbatim
34393 #. type: verbatim
34394 #: ../tools/virt-make-fs.pl:263
34395 #, no-wrap
34396 msgid ""
34397 " virt-make-fs --partition input.tar ...\n"
34398 "\n"
34399 msgstr ""
34400
34401 # type: textblock
34402 #. type: textblock
34403 #: ../tools/virt-make-fs.pl:265
34404 msgid ""
34405 "would cause virt-make-fs to think you wanted to use a partition type of "
34406 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
34407 "dash) between options and the input file argument:"
34408 msgstr ""
34409
34410 # type: verbatim
34411 #. type: verbatim
34412 #: ../tools/virt-make-fs.pl:269
34413 #, no-wrap
34414 msgid ""
34415 " virt-make-fs --partition -- input.tar ...\n"
34416 "\n"
34417 msgstr ""
34418
34419 #. type: textblock
34420 #: ../tools/virt-make-fs.pl:541
34421 msgid ""
34422 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
34423 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
34424 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
34425 msgstr ""
34426
34427 # type: verbatim
34428 #. type: verbatim
34429 #: ../tools/virt-make-fs.pl:558
34430 #, no-wrap
34431 msgid ""
34432 " export LIBGUESTFS_DEBUG=1\n"
34433 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
34434 "\n"
34435 msgstr ""
34436
34437 # type: textblock
34438 #. type: textblock
34439 #: ../tools/virt-make-fs.pl:561
34440 msgid ""
34441 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
34442 "redhat.com/>"
34443 msgstr ""
34444
34445 # type: textblock
34446 #. type: textblock
34447 #: ../tools/virt-list-partitions.pl:32
34448 msgid ""
34449 "virt-list-partitions - List partitions in a virtual machine or disk image"
34450 msgstr ""
34451
34452 # type: verbatim
34453 #. type: verbatim
34454 #: ../tools/virt-list-partitions.pl:36
34455 #, no-wrap
34456 msgid ""
34457 " virt-list-partitions [--options] domname\n"
34458 "\n"
34459 msgstr ""
34460
34461 # type: verbatim
34462 #. type: verbatim
34463 #: ../tools/virt-list-partitions.pl:38
34464 #, no-wrap
34465 msgid ""
34466 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
34467 "\n"
34468 msgstr ""
34469
34470 # type: textblock
34471 #. type: textblock
34472 #: ../tools/virt-list-partitions.pl:45
34473 msgid ""
34474 "C<virt-list-partitions> is a command line tool to list the partitions that "
34475 "are contained in a virtual machine or disk image.  It is mainly useful as a "
34476 "first step to using L<virt-resize(1)>."
34477 msgstr ""
34478
34479 # type: textblock
34480 #. type: textblock
34481 #: ../tools/virt-list-partitions.pl:50
34482 msgid ""
34483 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
34484 "functionality.  For more complex cases you should look at the L<guestfish(1)"
34485 "> tool."
34486 msgstr ""
34487
34488 # type: =item
34489 #. type: =item
34490 #: ../tools/virt-list-partitions.pl:107
34491 msgid "B<-h> | B<--human-readable>"
34492 msgstr ""
34493
34494 # type: textblock
34495 #. type: textblock
34496 #: ../tools/virt-list-partitions.pl:109
34497 msgid "Show sizes in human-readable form (eg. \"1G\")."
34498 msgstr ""
34499
34500 # type: textblock
34501 #. type: textblock
34502 #: ../tools/virt-list-partitions.pl:117
34503 msgid ""
34504 "With this option, C<virt-list-partitions> displays the type and size of each "
34505 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
34506 msgstr ""
34507
34508 # type: =item
34509 #. type: =item
34510 #: ../tools/virt-list-partitions.pl:124
34511 msgid "B<-t> | B<--total>"
34512 msgstr ""
34513
34514 # type: textblock
34515 #. type: textblock
34516 #: ../tools/virt-list-partitions.pl:126
34517 msgid ""
34518 "Display the total size of each block device (as a separate row or rows)."
34519 msgstr ""
34520
34521 # type: textblock
34522 #. type: textblock
34523 #: ../tools/virt-list-partitions.pl:259
34524 msgid ""
34525 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
34526 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
34527 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
34528 msgstr ""
34529
34530 # type: textblock
34531 #. type: textblock
34532 #: ../tools/virt-list-partitions.pl:275
34533 msgid "Copyright (C) 2009-2010 Red Hat Inc."
34534 msgstr ""