Version 1.11.13.
[libguestfs.git] / po-docs / uk.po
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Red Hat Inc.
3 # This file is distributed under the same license as the libguestfs package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libguestfs\n"
9 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
10 "POT-Creation-Date: 2011-06-30 15:51+0200\n"
11 "PO-Revision-Date: 2011-04-01 15:39+0000\n"
12 "Last-Translator: yurchor <yurchor@ukr.net>\n"
13 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
14 "Language: uk\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
20
21 #. type: =head1
22 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
23 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
24 #: ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30
25 #: ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35
26 #: ../tools/virt-list-partitions.pl:30
27 msgid "NAME"
28 msgstr "НАЗВА"
29
30 #. type: textblock
31 #: ../src/guestfs.pod:5
32 msgid "guestfs - Library for accessing and modifying virtual machine images"
33 msgstr ""
34 "guestfs — бібліотека для доступу та внесення змін до образів віртуальних "
35 "машин"
36
37 #. type: =head1
38 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
39 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
40 #: ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34
41 #: ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39
42 #: ../tools/virt-list-partitions.pl:34
43 msgid "SYNOPSIS"
44 msgstr "КОРОТКИЙ ОПИС"
45
46 #. type: verbatim
47 #: ../src/guestfs.pod:9
48 #, no-wrap
49 msgid ""
50 " #include <guestfs.h>\n"
51 " \n"
52 msgstr ""
53 " #include <guestfs.h>\n"
54 " \n"
55
56 #. type: verbatim
57 #: ../src/guestfs.pod:11
58 #, no-wrap
59 msgid ""
60 " guestfs_h *g = guestfs_create ();\n"
61 " guestfs_add_drive (g, \"guest.img\");\n"
62 " guestfs_launch (g);\n"
63 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
64 " guestfs_touch (g, \"/hello\");\n"
65 " guestfs_umount (g, \"/\");\n"
66 " guestfs_close (g);\n"
67 "\n"
68 msgstr ""
69 " guestfs_h *g = guestfs_create ();\n"
70 " guestfs_add_drive (g, \"guest.img\");\n"
71 " guestfs_launch (g);\n"
72 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
73 " guestfs_touch (g, \"/hello\");\n"
74 " guestfs_umount (g, \"/\");\n"
75 " guestfs_close (g);\n"
76 "\n"
77
78 #. type: verbatim
79 #: ../src/guestfs.pod:19
80 #, no-wrap
81 msgid ""
82 " cc prog.c -o prog -lguestfs\n"
83 "or:\n"
84 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
85 "\n"
86 msgstr ""
87 " cc prog.c -o prog -lguestfs\n"
88 "або:\n"
89 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
90 "\n"
91
92 #. type: =head1
93 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
94 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
95 #: ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40
96 #: ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47
97 #: ../tools/virt-list-partitions.pl:40
98 msgid "DESCRIPTION"
99 msgstr "ОПИС"
100
101 #. type: textblock
102 #: ../src/guestfs.pod:25
103 msgid ""
104 "Libguestfs is a library for accessing and modifying guest disk images.  "
105 "Amongst the things this is good for: making batch configuration changes to "
106 "guests, getting disk used/free statistics (see also: virt-df), migrating "
107 "between virtualization systems (see also: virt-p2v), performing partial "
108 "backups, performing partial guest clones, cloning guests and changing "
109 "registry/UUID/hostname info, and much else besides."
110 msgstr ""
111
112 #. type: textblock
113 #: ../src/guestfs.pod:33
114 msgid ""
115 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
116 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
117 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
118 "qcow2, vmdk."
119 msgstr ""
120
121 #. type: textblock
122 #: ../src/guestfs.pod:38
123 msgid ""
124 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
125 "what filesystem is in each LV, etc.).  It can also run commands in the "
126 "context of the guest.  Also you can access filesystems over FUSE."
127 msgstr ""
128
129 #. type: textblock
130 #: ../src/guestfs.pod:43
131 msgid ""
132 "Libguestfs is a library that can be linked with C and C++ management "
133 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
134 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
135 "line."
136 msgstr ""
137
138 #. type: textblock
139 #: ../src/guestfs.pod:48
140 msgid ""
141 "You don't need to be root to use libguestfs, although obviously you do need "
142 "enough permissions to access the disk images."
143 msgstr ""
144
145 #. type: textblock
146 #: ../src/guestfs.pod:51
147 msgid ""
148 "Libguestfs is a large API because it can do many things.  For a gentle "
149 "introduction, please read the L</API OVERVIEW> section next."
150 msgstr ""
151
152 #. type: textblock
153 #: ../src/guestfs.pod:54
154 msgid ""
155 "There are also some example programs in the L<guestfs-examples(3)> manual "
156 "page."
157 msgstr ""
158
159 #. type: =head1
160 #: ../src/guestfs.pod:57
161 msgid "API OVERVIEW"
162 msgstr "ОГЛЯД API"
163
164 #. type: textblock
165 #: ../src/guestfs.pod:59
166 msgid ""
167 "This section provides a gentler overview of the libguestfs API.  We also try "
168 "to group API calls together, where that may not be obvious from reading "
169 "about the individual calls in the main section of this manual."
170 msgstr ""
171
172 #. type: =head2
173 #: ../src/guestfs.pod:64
174 msgid "HANDLES"
175 msgstr "ОБРОБНИКИ"
176
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 #: ../src/guestfs.pod:73
189 msgid "The general structure of all libguestfs-using programs looks like this:"
190 msgstr ""
191
192 #. type: verbatim
193 #: ../src/guestfs.pod:76
194 #, no-wrap
195 msgid ""
196 " guestfs_h *g = guestfs_create ();\n"
197 " \n"
198 msgstr ""
199 " guestfs_h *g = guestfs_create ();\n"
200 " \n"
201
202 #. type: verbatim
203 #: ../src/guestfs.pod:78
204 #, no-wrap
205 msgid ""
206 " /* Call guestfs_add_drive additional times if there are\n"
207 "  * multiple disk images.\n"
208 "  */\n"
209 " guestfs_add_drive (g, \"guest.img\");\n"
210 " \n"
211 msgstr ""
212
213 #. type: verbatim
214 #: ../src/guestfs.pod:83
215 #, no-wrap
216 msgid ""
217 " /* Most manipulation calls won't work until you've launched\n"
218 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
219 "  * and _before_ other commands.\n"
220 "  */\n"
221 " guestfs_launch (g);\n"
222 " \n"
223 msgstr ""
224
225 #. type: verbatim
226 #: ../src/guestfs.pod:89
227 #, no-wrap
228 msgid ""
229 " /* Now you can examine what partitions, LVs etc are available.\n"
230 "  */\n"
231 " char **partitions = guestfs_list_partitions (g);\n"
232 " char **logvols = guestfs_lvs (g);\n"
233 " \n"
234 msgstr ""
235
236 #. type: verbatim
237 #: ../src/guestfs.pod:94
238 #, no-wrap
239 msgid ""
240 " /* To access a filesystem in the image, you must mount it.\n"
241 "  */\n"
242 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
243 " \n"
244 msgstr ""
245 " /* Щоб отримати доступ до файлової системи на образі, вам слід його змонтувати.\n"
246 "  */\n"
247 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
248 " \n"
249
250 #. type: verbatim
251 #: ../src/guestfs.pod:98
252 #, fuzzy, 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 msgid ""
260 " /* Now you can perform filesystem actions on the guest\n"
261 "  * disk image.\n"
262 "  */\n"
263 " guestfs_touch (g, \"/hello\");\n"
264 " \n"
265 msgstr ""
266 " /* Тепер ви можете виконувати дії з файловою системою на\n"
267 "  * образі диска операційної системи.\n"
268 "  */\n"
269 " guestfs_touch (g, \"/hello\");\n"
270 "\n"
271
272 #. type: verbatim
273 #: ../src/guestfs.pod:103
274 #, no-wrap
275 msgid ""
276 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
277 "  * it is done automatically when you close the handle.  See\n"
278 "  * discussion of autosync in this page.\n"
279 "  */\n"
280 " guestfs_sync (g);\n"
281 " \n"
282 msgstr ""
283
284 #. type: verbatim
285 #: ../src/guestfs.pod:109
286 #, no-wrap
287 msgid ""
288 " /* Close the handle 'g'. */\n"
289 " guestfs_close (g);\n"
290 "\n"
291 msgstr ""
292
293 #. type: textblock
294 #: ../src/guestfs.pod:112
295 msgid ""
296 "The code above doesn't include any error checking.  In real code you should "
297 "check return values carefully for errors.  In general all functions that "
298 "return integers return C<-1> on error, and all functions that return "
299 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
300 "how to handle errors, and consult the documentation for each function call "
301 "below to see precisely how they return error indications.  See L<guestfs-"
302 "examples(3)> for fully worked examples."
303 msgstr ""
304
305 #. type: =head2
306 #: ../src/guestfs.pod:121
307 msgid "DISK IMAGES"
308 msgstr ""
309
310 #. type: textblock
311 #: ../src/guestfs.pod:123
312 msgid ""
313 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
314 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
315 "actual block device, or simply an empty file of zeroes that you have created "
316 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
317 "of these."
318 msgstr ""
319
320 #. type: textblock
321 #: ../src/guestfs.pod:129
322 msgid ""
323 "The call you should use in modern code for adding drives is L</"
324 "guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
325 "specifying that the format is raw, do:"
326 msgstr ""
327
328 #. type: verbatim
329 #: ../src/guestfs.pod:133
330 #, no-wrap
331 msgid ""
332 " guestfs_add_drive_opts (g, filename,\n"
333 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
334 "                         -1);\n"
335 "\n"
336 msgstr ""
337
338 #. type: textblock
339 #: ../src/guestfs.pod:137
340 msgid "You can add a disk read-only using:"
341 msgstr ""
342
343 #. type: verbatim
344 #: ../src/guestfs.pod:139
345 #, no-wrap
346 msgid ""
347 " guestfs_add_drive_opts (g, filename,\n"
348 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
349 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
350 "                         -1);\n"
351 "\n"
352 msgstr ""
353
354 #. type: textblock
355 #: ../src/guestfs.pod:144
356 msgid ""
357 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
358 "libguestfs won't modify the file."
359 msgstr ""
360
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 #: ../src/guestfs.pod:151
371 msgid ""
372 "You must add at least one disk image, and you may add multiple disk images.  "
373 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
374 "first one you added), C</dev/sdb> (for the second one you added), etc."
375 msgstr ""
376
377 #. type: textblock
378 #: ../src/guestfs.pod:156
379 msgid ""
380 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
381 "can call L</guestfs_list_devices> to get a list of the device names, in the "
382 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
383 msgstr ""
384
385 #. type: =head2
386 #: ../src/guestfs.pod:161
387 msgid "MOUNTING"
388 msgstr "МОНТУВАННЯ"
389
390 #. type: textblock
391 #: ../src/guestfs.pod:163
392 msgid ""
393 "Before you can read or write files, create directories and so on in a disk "
394 "image that contains filesystems, you have to mount those filesystems using "
395 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
396 "a disk image contains (for example) one partition with a filesystem on that "
397 "partition, then you can mount it directly:"
398 msgstr ""
399
400 #. type: verbatim
401 #: ../src/guestfs.pod:170
402 #, no-wrap
403 msgid ""
404 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
405 "\n"
406 msgstr ""
407
408 #. type: textblock
409 #: ../src/guestfs.pod:172
410 msgid ""
411 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
412 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
413 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
414 "that these are libguestfs virtual devices, and are nothing to do with host "
415 "devices."
416 msgstr ""
417
418 #. type: textblock
419 #: ../src/guestfs.pod:178
420 msgid ""
421 "If you are given a disk image and you don't know what it contains then you "
422 "have to find out.  Libguestfs can do that too: use L</"
423 "guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
424 "LVs, and either try mounting each to see what is mountable, or else examine "
425 "them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
426 "filesystems, use L</guestfs_list_filesystems>."
427 msgstr ""
428
429 #. type: textblock
430 #: ../src/guestfs.pod:186
431 msgid ""
432 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
433 "L</INSPECTION> below).  But you might find it easier to look at higher level "
434 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
435 msgstr ""
436
437 #. type: textblock
438 #: ../src/guestfs.pod:191
439 msgid ""
440 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
441 "several other variations of the C<guestfs_mount_*> call."
442 msgstr ""
443
444 #. type: =head2
445 #: ../src/guestfs.pod:194
446 msgid "FILESYSTEM ACCESS AND MODIFICATION"
447 msgstr ""
448
449 #. type: textblock
450 #: ../src/guestfs.pod:196
451 msgid ""
452 "The majority of the libguestfs API consists of fairly low-level calls for "
453 "accessing and modifying the files, directories, symlinks etc on mounted "
454 "filesystems.  There are over a hundred such calls which you can find listed "
455 "in detail below in this man page, and we don't even pretend to cover them "
456 "all in this overview."
457 msgstr ""
458
459 #. type: textblock
460 #: ../src/guestfs.pod:202
461 msgid ""
462 "Specify filenames as full paths, starting with C<\"/\"> and including the "
463 "mount point."
464 msgstr ""
465
466 #. type: textblock
467 #: ../src/guestfs.pod:205
468 msgid ""
469 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
470 "the file called C<\"etc/passwd\"> then you could do:"
471 msgstr ""
472
473 #. type: verbatim
474 #: ../src/guestfs.pod:208
475 #, no-wrap
476 msgid ""
477 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
478 "\n"
479 msgstr ""
480
481 #. type: textblock
482 #: ../src/guestfs.pod:210
483 msgid ""
484 "This would return C<data> as a newly allocated buffer containing the full "
485 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
486 "or C<NULL> if there was an error."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:214
491 msgid ""
492 "As another example, to create a top-level directory on that filesystem "
493 "called C<\"var\"> you would do:"
494 msgstr ""
495
496 #. type: verbatim
497 #: ../src/guestfs.pod:217
498 #, no-wrap
499 msgid ""
500 " guestfs_mkdir (g, \"/var\");\n"
501 "\n"
502 msgstr ""
503
504 #. type: textblock
505 #: ../src/guestfs.pod:219
506 msgid "To create a symlink you could do:"
507 msgstr ""
508
509 #. type: verbatim
510 #: ../src/guestfs.pod:221
511 #, no-wrap
512 msgid ""
513 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
514 "               \"/etc/rc3.d/S30portmap\");\n"
515 "\n"
516 msgstr ""
517
518 #. type: textblock
519 #: ../src/guestfs.pod:224
520 msgid ""
521 "Libguestfs will reject attempts to use relative paths and there is no "
522 "concept of a current working directory."
523 msgstr ""
524
525 #. type: textblock
526 #: ../src/guestfs.pod:227
527 msgid ""
528 "Libguestfs can return errors in many situations: for example if the "
529 "filesystem isn't writable, or if a file or directory that you requested "
530 "doesn't exist.  If you are using the C API (documented here)  you have to "
531 "check for those error conditions after each call.  (Other language bindings "
532 "turn these errors into exceptions)."
533 msgstr ""
534
535 #. type: textblock
536 #: ../src/guestfs.pod:233
537 msgid ""
538 "File writes are affected by the per-handle umask, set by calling L</"
539 "guestfs_umask> and defaulting to 022.  See L</UMASK>."
540 msgstr ""
541
542 #. type: =head2
543 #: ../src/guestfs.pod:236
544 msgid "PARTITIONING"
545 msgstr "ПОДІЛ НА РОЗДІЛИ"
546
547 #. type: textblock
548 #: ../src/guestfs.pod:238
549 msgid ""
550 "Libguestfs contains API calls to read, create and modify partition tables on "
551 "disk images."
552 msgstr ""
553
554 #. type: textblock
555 #: ../src/guestfs.pod:241
556 msgid ""
557 "In the common case where you want to create a single partition covering the "
558 "whole disk, you should use the L</guestfs_part_disk> call:"
559 msgstr ""
560
561 #. type: verbatim
562 #: ../src/guestfs.pod:245
563 #, no-wrap
564 msgid ""
565 " const char *parttype = \"mbr\";\n"
566 " if (disk_is_larger_than_2TB)\n"
567 "   parttype = \"gpt\";\n"
568 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
569 "\n"
570 msgstr ""
571
572 #. type: textblock
573 #: ../src/guestfs.pod:250
574 msgid ""
575 "Obviously this effectively wipes anything that was on that disk image before."
576 msgstr ""
577
578 #. type: =head2
579 #: ../src/guestfs.pod:253
580 msgid "LVM2"
581 msgstr "LVM2"
582
583 #. type: textblock
584 #: ../src/guestfs.pod:255
585 msgid ""
586 "Libguestfs provides access to a large part of the LVM2 API, such as L</"
587 "guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense unless "
588 "you familiarize yourself with the concepts of physical volumes, volume "
589 "groups and logical volumes."
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:260
594 msgid ""
595 "This author strongly recommends reading the LVM HOWTO, online at L<http://"
596 "tldp.org/HOWTO/LVM-HOWTO/>."
597 msgstr ""
598
599 #. type: =head2
600 #: ../src/guestfs.pod:263
601 msgid "DOWNLOADING"
602 msgstr ""
603
604 #. type: textblock
605 #: ../src/guestfs.pod:265
606 msgid ""
607 "Use L</guestfs_cat> to download small, text only files.  This call is "
608 "limited to files which are less than 2 MB and which cannot contain any ASCII "
609 "NUL (C<\\0>) characters.  However the API is very simple to use."
610 msgstr ""
611
612 #. type: textblock
613 #: ../src/guestfs.pod:269
614 msgid ""
615 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
616 "bit data, since it returns a (pointer, size) pair.  However it is still "
617 "limited to \"small\" files, less than 2 MB."
618 msgstr ""
619
620 #. type: textblock
621 #: ../src/guestfs.pod:273
622 msgid ""
623 "L</guestfs_download> can be used to download any file, with no limits on "
624 "content or size (even files larger than 4 GB)."
625 msgstr ""
626
627 #. type: textblock
628 #: ../src/guestfs.pod:276
629 msgid ""
630 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
631 msgstr ""
632
633 #. type: =head2
634 #: ../src/guestfs.pod:279
635 msgid "UPLOADING"
636 msgstr "ВИВАНТАЖЕННЯ"
637
638 #. type: textblock
639 #: ../src/guestfs.pod:281
640 msgid ""
641 "It's often the case that you want to write a file or files to the disk image."
642 msgstr ""
643
644 #. type: textblock
645 #: ../src/guestfs.pod:284
646 msgid ""
647 "To write a small file with fixed content, use L</guestfs_write>.  To create "
648 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
649 "guestfs_fallocate64> (with all disk blocks allocated).  There are a variety "
650 "of other functions for creating test files, for example L</guestfs_fill> and "
651 "L</guestfs_fill_pattern>."
652 msgstr ""
653
654 #. type: textblock
655 #: ../src/guestfs.pod:290
656 msgid ""
657 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
658 "file content or size (even files larger than 4 GB)."
659 msgstr ""
660
661 #. type: textblock
662 #: ../src/guestfs.pod:293
663 msgid ""
664 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
665 msgstr ""
666
667 #. type: textblock
668 #: ../src/guestfs.pod:295
669 msgid ""
670 "However the fastest way to upload I<large numbers of arbitrary files> is to "
671 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
672 ">), then attach this using L</guestfs_add_drive_ro>.  If you add the drive "
673 "in a predictable way (eg. adding it last after all other drives) then you "
674 "can get the device name from L</guestfs_list_devices> and mount it directly "
675 "using L</guestfs_mount_ro>.  Note that squashfs images are sometimes non-"
676 "portable between kernel versions, and they don't support labels or UUIDs.  "
677 "If you want to pre-build an image or you need to mount it using a label or "
678 "UUID, use an ISO image instead."
679 msgstr ""
680
681 #. type: =head2
682 #: ../src/guestfs.pod:306
683 msgid "COPYING"
684 msgstr "КОПІЮВАННЯ"
685
686 #. type: textblock
687 #: ../src/guestfs.pod:308
688 msgid ""
689 "There are various different commands for copying between files and devices "
690 "and in and out of the guest filesystem.  These are summarised in the table "
691 "below."
692 msgstr ""
693
694 #. type: =item
695 #: ../src/guestfs.pod:314
696 msgid "B<file> to B<file>"
697 msgstr ""
698
699 #. type: textblock
700 #: ../src/guestfs.pod:316
701 msgid ""
702 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
703 "directories recursively."
704 msgstr ""
705
706 #. type: =item
707 #: ../src/guestfs.pod:319
708 msgid "B<file or device> to B<file or device>"
709 msgstr ""
710
711 #. type: textblock
712 #: ../src/guestfs.pod:321
713 msgid ""
714 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
715 "devices in the guest."
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:324
720 msgid "Example: duplicate the contents of an LV:"
721 msgstr ""
722
723 #. type: verbatim
724 #: ../src/guestfs.pod:326
725 #, no-wrap
726 msgid ""
727 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
728 "\n"
729 msgstr ""
730
731 #. type: textblock
732 #: ../src/guestfs.pod:328
733 msgid ""
734 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
735 "(C</dev/VG/Original>).  To copy less than the whole source device, use L</"
736 "guestfs_copy_size>."
737 msgstr ""
738
739 #. type: =item
740 #: ../src/guestfs.pod:332
741 msgid "B<file on the host> to B<file or device>"
742 msgstr ""
743
744 #. type: textblock
745 #: ../src/guestfs.pod:334
746 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
747 msgstr ""
748
749 #. type: =item
750 #: ../src/guestfs.pod:336
751 msgid "B<file or device> to B<file on the host>"
752 msgstr ""
753
754 #. type: textblock
755 #: ../src/guestfs.pod:338
756 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
757 msgstr ""
758
759 #. type: =head2
760 #: ../src/guestfs.pod:342
761 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
762 msgstr ""
763
764 #. type: textblock
765 #: ../src/guestfs.pod:344
766 msgid ""
767 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
768 "guestfs_tar_out> etc appear to only take filenames as arguments, so it "
769 "appears you can only upload and download to files.  However many Un*x-like "
770 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
771 "dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
772 "and arbitrary file descriptor N."
773 msgstr ""
774
775 #. type: textblock
776 #: ../src/guestfs.pod:352
777 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
778 msgstr ""
779
780 #. type: verbatim
781 #: ../src/guestfs.pod:355
782 #, no-wrap
783 msgid ""
784 " guestfs_download (g, filename, \"/dev/stdout\");\n"
785 "\n"
786 msgstr ""
787
788 #. type: textblock
789 #: ../src/guestfs.pod:357
790 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
791 msgstr ""
792
793 #. type: verbatim
794 #: ../src/guestfs.pod:359
795 #, no-wrap
796 msgid ""
797 " char devfd[64];\n"
798 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
799 " guestfs_tar_out (g, \"/\", devfd);\n"
800 "\n"
801 msgstr ""
802
803 #. type: =head2
804 #: ../src/guestfs.pod:363
805 msgid "LISTING FILES"
806 msgstr ""
807
808 #. type: textblock
809 #: ../src/guestfs.pod:365
810 msgid ""
811 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
812 "L<guestfish(1)>-equivalent command C<ll>)."
813 msgstr ""
814
815 #. type: textblock
816 #: ../src/guestfs.pod:368
817 msgid ""
818 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
819 "programs, as a flat list of strings."
820 msgstr ""
821
822 #. type: textblock
823 #: ../src/guestfs.pod:371
824 msgid ""
825 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
826 "directory, plus additional information about each one.  It is more "
827 "equivalent to using the L<readdir(3)> call on a local filesystem."
828 msgstr ""
829
830 #. type: textblock
831 #: ../src/guestfs.pod:375
832 msgid ""
833 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
834 msgstr ""
835
836 #. type: =head2
837 #: ../src/guestfs.pod:378
838 msgid "RUNNING COMMANDS"
839 msgstr ""
840
841 #. type: textblock
842 #: ../src/guestfs.pod:380
843 msgid ""
844 "Although libguestfs is primarily an API for manipulating files inside guest "
845 "images, we also provide some limited facilities for running commands inside "
846 "guests."
847 msgstr ""
848
849 #. type: textblock
850 #: ../src/guestfs.pod:384
851 msgid "There are many limitations to this:"
852 msgstr ""
853
854 #. type: =item
855 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
856 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
857 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
858 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
859 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
860 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
861 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
862 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
863 #: ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763
864 #: ../src/guestfs.pod:1773 ../src/guestfs.pod:2008 ../src/guestfs.pod:2013
865 #: ../src/guestfs.pod:2019 ../src/guestfs.pod:2027 ../src/guestfs.pod:2381
866 #: ../src/guestfs.pod:2387 ../src/guestfs.pod:2392 ../src/guestfs.pod:2398
867 #: ../src/guestfs.pod:2972 ../src/guestfs.pod:2976 ../src/guestfs.pod:2980
868 #: ../src/guestfs.pod:2984 ../src/guestfs-actions.pod:15
869 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583
870 #: ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598
871 #: ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1603
872 #: ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1611
873 #: ../src/guestfs-actions.pod:1615 ../src/guestfs-actions.pod:1623
874 #: ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1631
875 #: ../src/guestfs-actions.pod:1641 ../src/guestfs-actions.pod:1645
876 #: ../src/guestfs-actions.pod:1649 ../src/guestfs-actions.pod:1787
877 #: ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1796
878 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:1862
879 #: ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:1871
880 #: ../src/guestfs-actions.pod:2789 ../src/guestfs-actions.pod:2795
881 #: ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2810
882 #: ../src/guestfs-actions.pod:2817 ../fish/guestfish.pod:445
883 #: ../fish/guestfish.pod:449 ../fish/guestfish.pod:453
884 #: ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13
885 #: ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385
886 #: ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400
887 #: ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074
888 #: ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082
889 #: ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094
890 #: ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102
891 #: ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116
892 #: ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210
893 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
894 #: ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266
895 #: ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275
896 #: ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1908
897 #: ../fish/guestfish-actions.pod:1916 ../fish/guestfish-actions.pod:1923
898 #: ../fish/guestfish-actions.pod:1930 ../tools/virt-win-reg.pl:195
899 #: ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206
900 #: ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714
901 #: ../tools/virt-win-reg.pl:720
902 msgid "*"
903 msgstr ""
904
905 #. type: textblock
906 #: ../src/guestfs.pod:390
907 msgid ""
908 "The kernel version that the command runs under will be different from what "
909 "it expects."
910 msgstr ""
911
912 #. type: textblock
913 #: ../src/guestfs.pod:395
914 msgid ""
915 "If the command needs to communicate with daemons, then most likely they "
916 "won't be running."
917 msgstr ""
918
919 #. type: textblock
920 #: ../src/guestfs.pod:400
921 msgid "The command will be running in limited memory."
922 msgstr ""
923
924 #. type: textblock
925 #: ../src/guestfs.pod:404
926 msgid ""
927 "The network may not be available unless you enable it (see L</"
928 "guestfs_set_network>)."
929 msgstr ""
930
931 #. type: textblock
932 #: ../src/guestfs.pod:409
933 msgid "Only supports Linux guests (not Windows, BSD, etc)."
934 msgstr ""
935
936 #. type: textblock
937 #: ../src/guestfs.pod:413
938 msgid ""
939 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
940 msgstr ""
941
942 #. type: textblock
943 #: ../src/guestfs.pod:418
944 msgid ""
945 "For SELinux guests, you may need to enable SELinux and load policy first.  "
946 "See L</SELINUX> in this manpage."
947 msgstr ""
948
949 #. type: textblock
950 #: ../src/guestfs.pod:423
951 msgid ""
952 "I<Security:> It is not safe to run commands from untrusted, possibly "
953 "malicious guests.  These commands may attempt to exploit your program by "
954 "sending unexpected output.  They could also try to exploit the Linux kernel "
955 "or qemu provided by the libguestfs appliance.  They could use the network "
956 "provided by the libguestfs appliance to bypass ordinary network partitions "
957 "and firewalls.  They could use the elevated privileges or different SELinux "
958 "context of your program to their advantage."
959 msgstr ""
960
961 #. type: textblock
962 #: ../src/guestfs.pod:432
963 msgid ""
964 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
965 "(a script which runs when the guest next boots normally), and to have this "
966 "script run the commands you want in the normal context of the running guest, "
967 "network security and so on.  For information about other security issues, "
968 "see L</SECURITY>."
969 msgstr ""
970
971 #. type: textblock
972 #: ../src/guestfs.pod:440
973 msgid ""
974 "The two main API calls to run commands are L</guestfs_command> and L</"
975 "guestfs_sh> (there are also variations)."
976 msgstr ""
977
978 #. type: textblock
979 #: ../src/guestfs.pod:443
980 msgid ""
981 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
982 "shell globs, redirections, etc will work."
983 msgstr ""
984
985 #. type: =head2
986 #: ../src/guestfs.pod:446
987 msgid "CONFIGURATION FILES"
988 msgstr "ФАЙЛИ НАЛАШТУВАННЯ"
989
990 #. type: textblock
991 #: ../src/guestfs.pod:448
992 msgid ""
993 "To read and write configuration files in Linux guest filesystems, we "
994 "strongly recommend using Augeas.  For example, Augeas understands how to "
995 "read and write, say, a Linux shadow password file or X.org configuration "
996 "file, and so avoids you having to write that code."
997 msgstr ""
998
999 #. type: textblock
1000 #: ../src/guestfs.pod:453
1001 msgid ""
1002 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1003 "document Augeas itself here because there is excellent documentation on the "
1004 "L<http://augeas.net/> website."
1005 msgstr ""
1006
1007 #. type: textblock
1008 #: ../src/guestfs.pod:457
1009 msgid ""
1010 "If you don't want to use Augeas (you fool!) then try calling L</"
1011 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1012 "over."
1013 msgstr ""
1014
1015 #. type: =head2
1016 #: ../src/guestfs.pod:461
1017 msgid "SELINUX"
1018 msgstr "SELINUX"
1019
1020 #. type: textblock
1021 #: ../src/guestfs.pod:463
1022 msgid ""
1023 "We support SELinux guests.  To ensure that labeling happens correctly in "
1024 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1025 msgstr ""
1026
1027 #. type: =item
1028 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1029 #: ../src/guestfs.pod:2426
1030 msgid "1."
1031 msgstr ""
1032
1033 #. type: textblock
1034 #: ../src/guestfs.pod:471
1035 msgid "Before launching, do:"
1036 msgstr ""
1037
1038 #. type: verbatim
1039 #: ../src/guestfs.pod:473
1040 #, no-wrap
1041 msgid ""
1042 " guestfs_set_selinux (g, 1);\n"
1043 "\n"
1044 msgstr ""
1045
1046 #. type: =item
1047 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1048 #: ../src/guestfs.pod:2451
1049 msgid "2."
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:477
1054 msgid ""
1055 "After mounting the guest's filesystem(s), load the policy.  This is best "
1056 "done by running the L<load_policy(8)> command in the guest itself:"
1057 msgstr ""
1058
1059 #. type: verbatim
1060 #: ../src/guestfs.pod:481
1061 #, no-wrap
1062 msgid ""
1063 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1064 "\n"
1065 msgstr ""
1066
1067 #. type: textblock
1068 #: ../src/guestfs.pod:483
1069 msgid ""
1070 "(Older versions of C<load_policy> require you to specify the name of the "
1071 "policy file)."
1072 msgstr ""
1073
1074 #. type: =item
1075 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1076 msgid "3."
1077 msgstr ""
1078
1079 #. type: textblock
1080 #: ../src/guestfs.pod:488
1081 msgid ""
1082 "Optionally, set the security context for the API.  The correct security "
1083 "context to use can only be known by inspecting the guest.  As an example:"
1084 msgstr ""
1085
1086 #. type: verbatim
1087 #: ../src/guestfs.pod:492
1088 #, no-wrap
1089 msgid ""
1090 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1091 "\n"
1092 msgstr ""
1093
1094 #. type: textblock
1095 #: ../src/guestfs.pod:496
1096 msgid "This will work for running commands and editing existing files."
1097 msgstr ""
1098
1099 #. type: textblock
1100 #: ../src/guestfs.pod:498
1101 msgid ""
1102 "When new files are created, you may need to label them explicitly, for "
1103 "example by running the external command C<restorecon pathname>."
1104 msgstr ""
1105
1106 #. type: =head2
1107 #: ../src/guestfs.pod:502
1108 msgid "UMASK"
1109 msgstr ""
1110
1111 #. type: textblock
1112 #: ../src/guestfs.pod:504
1113 msgid ""
1114 "Certain calls are affected by the current file mode creation mask (the "
1115 "\"umask\").  In particular ones which create files or directories, such as "
1116 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1117 "either the default mode that the file is created with or modifies the mode "
1118 "that you supply."
1119 msgstr ""
1120
1121 #. type: textblock
1122 #: ../src/guestfs.pod:510
1123 msgid ""
1124 "The default umask is C<022>, so files are created with modes such as C<0644> "
1125 "and directories with C<0755>."
1126 msgstr ""
1127
1128 #. type: textblock
1129 #: ../src/guestfs.pod:513
1130 msgid ""
1131 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1132 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1133 "guestfs_chmod> after creating each file or directory."
1134 msgstr ""
1135
1136 #. type: textblock
1137 #: ../src/guestfs.pod:517
1138 msgid "For more information about umask, see L<umask(2)>."
1139 msgstr ""
1140
1141 #. type: =head1
1142 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1143 msgid "ENCRYPTED DISKS"
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:521
1148 msgid ""
1149 "Libguestfs allows you to access Linux guests which have been encrypted using "
1150 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1151 "standard.  This includes nearly all whole disk encryption systems used by "
1152 "modern Linux guests."
1153 msgstr ""
1154
1155 #. type: textblock
1156 #: ../src/guestfs.pod:527
1157 msgid ""
1158 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1159 "returns the string C<crypto_LUKS>)."
1160 msgstr ""
1161
1162 #. type: textblock
1163 #: ../src/guestfs.pod:530
1164 msgid ""
1165 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1166 "will require the passphrase!"
1167 msgstr ""
1168
1169 #. type: textblock
1170 #: ../src/guestfs.pod:533
1171 msgid ""
1172 "Opening a LUKS device creates a new device mapper device called C</dev/"
1173 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1174 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1175 "from and encrypted to the underlying block device respectively."
1176 msgstr ""
1177
1178 #. type: textblock
1179 #: ../src/guestfs.pod:539
1180 msgid ""
1181 "LVM volume groups on the device can be made visible by calling L</"
1182 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1183 "(s) can now be mounted in the usual way."
1184 msgstr ""
1185
1186 #. type: textblock
1187 #: ../src/guestfs.pod:543
1188 msgid ""
1189 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1190 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1191 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1192 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1193 "underlying encrypted block device)."
1194 msgstr ""
1195
1196 #. type: =head2
1197 #: ../src/guestfs.pod:550
1198 msgid "INSPECTION"
1199 msgstr "ПЕРЕВІРКА"
1200
1201 #. type: textblock
1202 #: ../src/guestfs.pod:552
1203 msgid ""
1204 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1205 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1206 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1207 "version 1.5.3 the most frequently used part of this library has been "
1208 "rewritten in C and moved into the core code)."
1209 msgstr ""
1210
1211 #. type: textblock
1212 #: ../src/guestfs.pod:559
1213 msgid ""
1214 "Add all disks belonging to the unknown virtual machine and call L</"
1215 "guestfs_launch> in the usual way."
1216 msgstr ""
1217
1218 #. type: textblock
1219 #: ../src/guestfs.pod:562
1220 msgid ""
1221 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1222 "and certain heuristics, and returns a list of operating systems that were "
1223 "found.  An empty list means none were found.  A single element is the root "
1224 "filesystem of the operating system.  For dual- or multi-boot guests, "
1225 "multiple roots can be returned, each one corresponding to a separate "
1226 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1227 "world of virtualization, but since this scenario can happen, we have built "
1228 "libguestfs to deal with it.)"
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:571
1233 msgid ""
1234 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1235 "to get additional details about that operating system.  For example, call L</"
1236 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1237 "Windows and Linux-based operating systems respectively."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:577
1242 msgid ""
1243 "Un*x-like and Linux-based operating systems usually consist of several "
1244 "filesystems which are mounted at boot time (for example, a separate boot "
1245 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1246 "filesystems correspond to mount points.  Call "
1247 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1248 "hash table like this example:"
1249 msgstr ""
1250
1251 #. type: verbatim
1252 #: ../src/guestfs.pod:584
1253 #, no-wrap
1254 msgid ""
1255 " /boot => /dev/sda1\n"
1256 " /     => /dev/vg_guest/lv_root\n"
1257 " /usr  => /dev/vg_guest/lv_usr\n"
1258 "\n"
1259 msgstr ""
1260
1261 #. type: textblock
1262 #: ../src/guestfs.pod:588
1263 msgid ""
1264 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1265 "filesystems as suggested."
1266 msgstr ""
1267
1268 #. type: textblock
1269 #: ../src/guestfs.pod:591
1270 msgid ""
1271 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1272 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:595
1277 msgid ""
1278 "Inspection currently only works for some common operating systems.  "
1279 "Contributors are welcome to send patches for other operating systems that we "
1280 "currently cannot detect."
1281 msgstr ""
1282
1283 #. type: textblock
1284 #: ../src/guestfs.pod:599
1285 msgid ""
1286 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1287 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1288 "encrypted devices."
1289 msgstr ""
1290
1291 #. type: textblock
1292 #: ../src/guestfs.pod:603
1293 msgid ""
1294 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1295 "inspection and caches the results in the guest handle.  Subsequent calls to "
1296 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1297 "read the disks.  If you change the content of the guest disks, you can redo "
1298 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1299 "guestfs_inspect_list_applications> works a little differently from the other "
1300 "calls and does read the disks.  See documentation for that function for "
1301 "details)."
1302 msgstr ""
1303
1304 #. type: =head3
1305 #: ../src/guestfs.pod:612
1306 msgid "INSPECTING INSTALL DISKS"
1307 msgstr ""
1308
1309 #. type: textblock
1310 #: ../src/guestfs.pod:614
1311 msgid ""
1312 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1313 "CDs and more."
1314 msgstr ""
1315
1316 #. type: textblock
1317 #: ../src/guestfs.pod:617
1318 msgid ""
1319 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1320 "system, which currently can be C<installed> (a regular operating system) or "
1321 "C<installer> (some sort of install disk)."
1322 msgstr ""
1323
1324 #. type: textblock
1325 #: ../src/guestfs.pod:621
1326 msgid ""
1327 "Further information is available about the operating system that can be "
1328 "installed using the regular inspection APIs like L</"
1329 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1330 msgstr ""
1331
1332 #. type: textblock
1333 #: ../src/guestfs.pod:626
1334 msgid ""
1335 "Some additional information specific to installer disks is also available "
1336 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1337 "guestfs_inspect_is_multipart> calls."
1338 msgstr ""
1339
1340 #. type: =head2
1341 #: ../src/guestfs.pod:631
1342 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1343 msgstr ""
1344
1345 #. type: textblock
1346 #: ../src/guestfs.pod:633
1347 msgid ""
1348 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1349 "ntfs-3g.org/> driver."
1350 msgstr ""
1351
1352 #. type: =head3
1353 #: ../src/guestfs.pod:636
1354 msgid "DRIVE LETTERS AND PATHS"
1355 msgstr ""
1356
1357 #. type: textblock
1358 #: ../src/guestfs.pod:638
1359 msgid ""
1360 "DOS and Windows still use drive letters, and the filesystems are always "
1361 "treated as case insensitive by Windows itself, and therefore you might find "
1362 "a Windows configuration file referring to a path like C<c:\\windows"
1363 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1364 "might be referred to as C</WINDOWS/System32>."
1365 msgstr ""
1366
1367 #. type: textblock
1368 #: ../src/guestfs.pod:644
1369 msgid ""
1370 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1371 "L</guestfs_inspect_get_drive_mappings>)"
1372 msgstr ""
1373
1374 #. type: textblock
1375 #: ../src/guestfs.pod:647
1376 msgid ""
1377 "Dealing with separator characters (backslash vs forward slash) is outside "
1378 "the scope of libguestfs, but usually a simple character replacement will "
1379 "work."
1380 msgstr ""
1381
1382 #. type: textblock
1383 #: ../src/guestfs.pod:651
1384 msgid ""
1385 "To resolve the case insensitivity of paths, call L</"
1386 "guestfs_case_sensitive_path>."
1387 msgstr ""
1388
1389 #. type: =head3
1390 #: ../src/guestfs.pod:654
1391 msgid "ACCESSING THE WINDOWS REGISTRY"
1392 msgstr ""
1393
1394 #. type: textblock
1395 #: ../src/guestfs.pod:656
1396 msgid ""
1397 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1398 "files, through the library C<hivex> which is part of the libguestfs project "
1399 "although ships as a separate tarball.  You have to locate and download the "
1400 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1401 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1402 "reg(1)> for more help on this issue."
1403 msgstr ""
1404
1405 #. type: =head3
1406 #: ../src/guestfs.pod:664
1407 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1408 msgstr ""
1409
1410 #. type: textblock
1411 #: ../src/guestfs.pod:666
1412 msgid ""
1413 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1414 "provide something which looks like a Linux symlink.  The way it tries to do "
1415 "the rewriting is described here:"
1416 msgstr ""
1417
1418 #. type: textblock
1419 #: ../src/guestfs.pod:670
1420 msgid ""
1421 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1422 "symbolic-links/>"
1423 msgstr ""
1424 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1425 "symbolic-links/>"
1426
1427 #. type: textblock
1428 #: ../src/guestfs.pod:672
1429 msgid ""
1430 "The essential problem is that ntfs-3g simply does not have enough "
1431 "information to do a correct job.  NTFS links can contain drive letters and "
1432 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1433 "It is almost certainly the case that libguestfs callers should ignore what "
1434 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1435 msgstr ""
1436
1437 #. type: textblock
1438 #: ../src/guestfs.pod:679
1439 msgid ""
1440 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1441 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1442 "attribute, and read the raw reparse data from that (you can find the format "
1443 "documented in various places around the web)."
1444 msgstr ""
1445
1446 #. type: =head3
1447 #: ../src/guestfs.pod:684
1448 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1449 msgstr ""
1450
1451 #. type: textblock
1452 #: ../src/guestfs.pod:686
1453 msgid ""
1454 "There are other useful extended attributes that can be read from ntfs-3g "
1455 "filesystems (using L</guestfs_getxattr>).  See:"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:689
1460 msgid ""
1461 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1462 msgstr ""
1463 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1464
1465 #. type: =head2
1466 #: ../src/guestfs.pod:691
1467 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1468 msgstr ""
1469
1470 #. type: textblock
1471 #: ../src/guestfs.pod:693
1472 msgid ""
1473 "Although we don't want to discourage you from using the C API, we will "
1474 "mention here that the same API is also available in other languages."
1475 msgstr ""
1476
1477 #. type: textblock
1478 #: ../src/guestfs.pod:696
1479 msgid ""
1480 "The API is broadly identical in all supported languages.  This means that "
1481 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1482 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1483 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1484 "each language."
1485 msgstr ""
1486
1487 #. type: textblock
1488 #: ../src/guestfs.pod:702
1489 msgid ""
1490 "Error messages are automatically transformed into exceptions if the language "
1491 "supports it."
1492 msgstr ""
1493
1494 #. type: textblock
1495 #: ../src/guestfs.pod:705
1496 msgid ""
1497 "We don't try to \"object orientify\" parts of the API in OO languages, "
1498 "although contributors are welcome to write higher level APIs above what we "
1499 "provide in their favourite languages if they wish."
1500 msgstr ""
1501
1502 #. type: =item
1503 #: ../src/guestfs.pod:711
1504 msgid "B<C++>"
1505 msgstr "B<C++>"
1506
1507 #. type: textblock
1508 #: ../src/guestfs.pod:713
1509 msgid ""
1510 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1511 "identical to the C API.  C++ classes and exceptions are not used."
1512 msgstr ""
1513
1514 #. type: =item
1515 #: ../src/guestfs.pod:717
1516 msgid "B<C#>"
1517 msgstr "B<C#>"
1518
1519 #. type: textblock
1520 #: ../src/guestfs.pod:719
1521 msgid ""
1522 "The C# bindings are highly experimental.  Please read the warnings at the "
1523 "top of C<csharp/Libguestfs.cs>."
1524 msgstr ""
1525
1526 #. type: =item
1527 #: ../src/guestfs.pod:722
1528 msgid "B<Haskell>"
1529 msgstr "B<Haskell>"
1530
1531 #. type: textblock
1532 #: ../src/guestfs.pod:724
1533 msgid ""
1534 "This is the only language binding that is working but incomplete.  Only "
1535 "calls which return simple integers have been bound in Haskell, and we are "
1536 "looking for help to complete this binding."
1537 msgstr ""
1538
1539 #. type: =item
1540 #: ../src/guestfs.pod:728
1541 msgid "B<Java>"
1542 msgstr "B<Java>"
1543
1544 #. type: textblock
1545 #: ../src/guestfs.pod:730
1546 msgid ""
1547 "Full documentation is contained in the Javadoc which is distributed with "
1548 "libguestfs."
1549 msgstr ""
1550
1551 #. type: =item
1552 #: ../src/guestfs.pod:733
1553 msgid "B<OCaml>"
1554 msgstr "B<OCaml>"
1555
1556 #. type: textblock
1557 #: ../src/guestfs.pod:735
1558 msgid "See L<guestfs-ocaml(3)>."
1559 msgstr "Див. L<guestfs-ocaml(3)>."
1560
1561 #. type: =item
1562 #: ../src/guestfs.pod:737
1563 msgid "B<Perl>"
1564 msgstr "B<Perl>"
1565
1566 #. type: textblock
1567 #: ../src/guestfs.pod:739
1568 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1569 msgstr "Див. L<guestfs-perl(3)> та L<Sys::Guestfs(3)>."
1570
1571 #. type: =item
1572 #: ../src/guestfs.pod:741
1573 msgid "B<PHP>"
1574 msgstr "B<PHP>"
1575
1576 #. type: textblock
1577 #: ../src/guestfs.pod:743
1578 msgid ""
1579 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1580 "the php-libguestfs package for your distribution."
1581 msgstr ""
1582
1583 #. type: textblock
1584 #: ../src/guestfs.pod:746
1585 msgid "The PHP binding only works correctly on 64 bit machines."
1586 msgstr ""
1587
1588 #. type: =item
1589 #: ../src/guestfs.pod:748
1590 msgid "B<Python>"
1591 msgstr "B<Python>"
1592
1593 #. type: textblock
1594 #: ../src/guestfs.pod:750
1595 msgid "See L<guestfs-python(3)>."
1596 msgstr "Див. L<guestfs-python(3)>."
1597
1598 #. type: =item
1599 #: ../src/guestfs.pod:752
1600 msgid "B<Ruby>"
1601 msgstr "B<Ruby>"
1602
1603 #. type: textblock
1604 #: ../src/guestfs.pod:754
1605 msgid "See L<guestfs-ruby(3)>."
1606 msgstr "Див. L<guestfs-ruby(3)>."
1607
1608 #. type: =item
1609 #: ../src/guestfs.pod:756
1610 msgid "B<shell scripts>"
1611 msgstr "B<скрипти оболонки>"
1612
1613 #. type: textblock
1614 #: ../src/guestfs.pod:758
1615 msgid "See L<guestfish(1)>."
1616 msgstr "Див. L<guestfish(1)>."
1617
1618 #. type: =head2
1619 #: ../src/guestfs.pod:762
1620 msgid "LIBGUESTFS GOTCHAS"
1621 msgstr ""
1622
1623 #. type: textblock
1624 #: ../src/guestfs.pod:764
1625 msgid ""
1626 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1627 "system [...] that works in the way it is documented but is counterintuitive "
1628 "and almost invites mistakes.\""
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:768
1633 msgid ""
1634 "Since we developed libguestfs and the associated tools, there are several "
1635 "things we would have designed differently, but are now stuck with for "
1636 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1637 "release, you can expect these to change.  Beware of them."
1638 msgstr ""
1639
1640 #. type: =item
1641 #: ../src/guestfs.pod:776
1642 msgid "Autosync / forgetting to sync."
1643 msgstr ""
1644
1645 #. type: textblock
1646 #: ../src/guestfs.pod:778
1647 msgid ""
1648 "I<Update:> Autosync is enabled by default for all API users starting from "
1649 "libguestfs 1.5.24.  This section only applies to older versions."
1650 msgstr ""
1651
1652 #. type: textblock
1653 #: ../src/guestfs.pod:781
1654 msgid ""
1655 "When modifying a filesystem from C or another language, you B<must> unmount "
1656 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1657 "libguestfs handle.  You can also call:"
1658 msgstr ""
1659
1660 #. type: verbatim
1661 #: ../src/guestfs.pod:785
1662 #, no-wrap
1663 msgid ""
1664 " guestfs_set_autosync (g, 1);\n"
1665 "\n"
1666 msgstr ""
1667
1668 #. type: textblock
1669 #: ../src/guestfs.pod:787
1670 msgid ""
1671 "to have the unmount/sync done automatically for you when the handle 'g' is "
1672 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1673 msgstr ""
1674
1675 #. type: textblock
1676 #: ../src/guestfs.pod:791
1677 msgid ""
1678 "If you forget to do this, then it is entirely possible that your changes "
1679 "won't be written out, or will be partially written, or (very rarely) that "
1680 "you'll get disk corruption."
1681 msgstr ""
1682
1683 #. type: textblock
1684 #: ../src/guestfs.pod:795
1685 msgid ""
1686 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1687 "guestfish scripts that forget to sync will work just fine, which can make "
1688 "this very puzzling if you are trying to debug a problem."
1689 msgstr ""
1690
1691 #. type: =item
1692 #: ../src/guestfs.pod:799
1693 msgid "Mount option C<-o sync> should not be the default."
1694 msgstr ""
1695
1696 #. type: textblock
1697 #: ../src/guestfs.pod:801
1698 msgid ""
1699 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1700 "However C<-o sync> does not add any reliability benefit, but does have a "
1701 "very large performance impact."
1702 msgstr ""
1703
1704 #. type: textblock
1705 #: ../src/guestfs.pod:805
1706 msgid ""
1707 "The work around is to use L</guestfs_mount_options> and set the mount "
1708 "options that you actually want to use."
1709 msgstr ""
1710
1711 #. type: =item
1712 #: ../src/guestfs.pod:808
1713 msgid "Read-only should be the default."
1714 msgstr ""
1715
1716 #. type: textblock
1717 #: ../src/guestfs.pod:810
1718 msgid ""
1719 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1720 "specify I<--rw> if you want to make changes to the image."
1721 msgstr ""
1722
1723 #. type: textblock
1724 #: ../src/guestfs.pod:813
1725 msgid "This would reduce the potential to corrupt live VM images."
1726 msgstr ""
1727
1728 #. type: textblock
1729 #: ../src/guestfs.pod:815
1730 msgid ""
1731 "Note that many filesystems change the disk when you just mount and unmount, "
1732 "even if you didn't perform any writes.  You need to use L</"
1733 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1734 msgstr ""
1735
1736 #. type: =item
1737 #: ../src/guestfs.pod:819
1738 msgid "guestfish command line is hard to use."
1739 msgstr ""
1740
1741 #. type: textblock
1742 #: ../src/guestfs.pod:821
1743 msgid ""
1744 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1745 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1746 "exist, so it fails.  In earlier versions of guestfish the error message was "
1747 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1748 "we should have used C<guestfish -c command> to run commands."
1749 msgstr ""
1750
1751 #. type: =item
1752 #: ../src/guestfs.pod:828
1753 msgid "guestfish megabyte modifiers don't work right on all commands"
1754 msgstr ""
1755
1756 #. type: textblock
1757 #: ../src/guestfs.pod:830
1758 msgid ""
1759 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1760 "other modifiers).  What guestfish actually does is to multiply the number "
1761 "part by the modifier part and pass the result to the C API.  However this "
1762 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1763 "expecting some other unit (eg. megabytes)."
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:837
1768 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1769 msgstr ""
1770
1771 #. type: verbatim
1772 #: ../src/guestfs.pod:839
1773 #, no-wrap
1774 msgid ""
1775 " lvcreate LV VG 100M\n"
1776 "\n"
1777 msgstr ""
1778
1779 #. type: textblock
1780 #: ../src/guestfs.pod:841
1781 msgid ""
1782 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1783 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1784 "megabytes * megabytes) logical volume.  The error message you get from this "
1785 "is also a little obscure."
1786 msgstr ""
1787
1788 #. type: textblock
1789 #: ../src/guestfs.pod:846
1790 msgid ""
1791 "This could be fixed in the generator by specially marking parameters and "
1792 "return values which take bytes or other units."
1793 msgstr ""
1794
1795 #. type: =item
1796 #: ../src/guestfs.pod:849
1797 msgid "Ambiguity between devices and paths"
1798 msgstr ""
1799
1800 #. type: textblock
1801 #: ../src/guestfs.pod:851
1802 msgid ""
1803 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1804 "sdb2>) and a similar pathname.  A file might just happen to be called "
1805 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1806 msgstr ""
1807
1808 #. type: textblock
1809 #: ../src/guestfs.pod:856
1810 msgid ""
1811 "In the current API we usually resolve this ambiguity by having two separate "
1812 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1813 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1814 "detecting if the path supplied begins with C</dev/>."
1815 msgstr ""
1816
1817 #. type: textblock
1818 #: ../src/guestfs.pod:862
1819 msgid ""
1820 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1821 "make paths/devices into structured names.  One way to do this would be to "
1822 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1823 "aspect of grub.  Another way would be to use a structured type, equivalent "
1824 "to this OCaml type:"
1825 msgstr ""
1826
1827 #. type: verbatim
1828 #: ../src/guestfs.pod:868
1829 #, no-wrap
1830 msgid ""
1831 " type path = Path of string | Device of int | Partition of int * int\n"
1832 "\n"
1833 msgstr ""
1834
1835 #. type: textblock
1836 #: ../src/guestfs.pod:870
1837 msgid "which would allow you to pass arguments like:"
1838 msgstr ""
1839
1840 #. type: verbatim
1841 #: ../src/guestfs.pod:872
1842 #, no-wrap
1843 msgid ""
1844 " Path \"/foo/bar\"\n"
1845 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1846 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1847 " Path \"/dev/sdb2\"    (* not a device *)\n"
1848 "\n"
1849 msgstr ""
1850
1851 #. type: textblock
1852 #: ../src/guestfs.pod:877
1853 msgid ""
1854 "As you can see there are still problems to resolve even with this "
1855 "representation.  Also consider how it might work in guestfish."
1856 msgstr ""
1857
1858 #. type: =head2
1859 #: ../src/guestfs.pod:882
1860 msgid "KEYS AND PASSPHRASES"
1861 msgstr ""
1862
1863 #. type: textblock
1864 #: ../src/guestfs.pod:884
1865 msgid ""
1866 "Certain libguestfs calls take a parameter that contains sensitive key "
1867 "material, passed in as a C string."
1868 msgstr ""
1869
1870 #. type: textblock
1871 #: ../src/guestfs.pod:887
1872 msgid ""
1873 "In the future we would hope to change the libguestfs implementation so that "
1874 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1875 "swap.  However this is I<not> done at the moment, because of the complexity "
1876 "of such an implementation."
1877 msgstr ""
1878
1879 #. type: textblock
1880 #: ../src/guestfs.pod:892
1881 msgid ""
1882 "Therefore you should be aware that any key parameter you pass to libguestfs "
1883 "might end up being written out to the swap partition.  If this is a concern, "
1884 "scrub the swap partition or don't use libguestfs on encrypted devices."
1885 msgstr ""
1886
1887 #. type: =head2
1888 #: ../src/guestfs.pod:897
1889 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1890 msgstr ""
1891
1892 #. type: textblock
1893 #: ../src/guestfs.pod:899
1894 msgid ""
1895 "All high-level libguestfs actions are synchronous.  If you want to use "
1896 "libguestfs asynchronously then you must create a thread."
1897 msgstr ""
1898
1899 #. type: textblock
1900 #: ../src/guestfs.pod:902
1901 msgid ""
1902 "Only use the handle from a single thread.  Either use the handle exclusively "
1903 "from one thread, or provide your own mutex so that two threads cannot issue "
1904 "calls on the same handle at the same time."
1905 msgstr ""
1906
1907 #. type: textblock
1908 #: ../src/guestfs.pod:906
1909 msgid ""
1910 "See the graphical program guestfs-browser for one possible architecture for "
1911 "multithreaded programs using libvirt and libguestfs."
1912 msgstr ""
1913
1914 #. type: =head2
1915 #: ../src/guestfs.pod:909
1916 msgid "PATH"
1917 msgstr "ШЛЯХ"
1918
1919 #. type: textblock
1920 #: ../src/guestfs.pod:911
1921 msgid ""
1922 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1923 "internal path."
1924 msgstr ""
1925
1926 #. type: textblock
1927 #: ../src/guestfs.pod:914
1928 msgid ""
1929 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
1930 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1931 msgstr ""
1932
1933 #. type: textblock
1934 #: ../src/guestfs.pod:917
1935 msgid ""
1936 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1937 "to change the directories that libguestfs will search in.  The value is a "
1938 "colon-separated list of paths.  The current directory is I<not> searched "
1939 "unless the path contains an empty element or C<.>.  For example "
1940 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1941 "then C</usr/lib/guestfs>."
1942 msgstr ""
1943
1944 #. type: =head2
1945 #: ../src/guestfs.pod:924
1946 msgid "QEMU WRAPPERS"
1947 msgstr ""
1948
1949 #. type: textblock
1950 #: ../src/guestfs.pod:926
1951 msgid ""
1952 "If you want to compile your own qemu, run qemu from a non-standard location, "
1953 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1954 "around qemu."
1955 msgstr ""
1956
1957 #. type: textblock
1958 #: ../src/guestfs.pod:930
1959 msgid ""
1960 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1961 "last command in the shell script (so that qemu replaces the shell and "
1962 "becomes the direct child of the libguestfs-using program).  If you don't do "
1963 "this, then the qemu process won't be cleaned up correctly."
1964 msgstr ""
1965
1966 #. type: textblock
1967 #: ../src/guestfs.pod:935
1968 msgid ""
1969 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1970 "source:"
1971 msgstr ""
1972
1973 #. type: verbatim
1974 #: ../src/guestfs.pod:938
1975 #, no-wrap
1976 msgid ""
1977 " #!/bin/sh -\n"
1978 " qemudir=/home/rjones/d/qemu\n"
1979 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1980 "\n"
1981 msgstr ""
1982
1983 #. type: textblock
1984 #: ../src/guestfs.pod:942
1985 msgid ""
1986 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1987 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1988 "example:"
1989 msgstr ""
1990
1991 #. type: verbatim
1992 #: ../src/guestfs.pod:946
1993 #, no-wrap
1994 msgid ""
1995 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1996 "\n"
1997 msgstr ""
1998
1999 #. type: textblock
2000 #: ../src/guestfs.pod:948
2001 msgid ""
2002 "Note that libguestfs also calls qemu with the -help and -version options in "
2003 "order to determine features."
2004 msgstr ""
2005
2006 #. type: =head2
2007 #: ../src/guestfs.pod:951
2008 msgid "ATTACHING TO RUNNING DAEMONS"
2009 msgstr ""
2010
2011 #. type: textblock
2012 #: ../src/guestfs.pod:953
2013 msgid ""
2014 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2015 "babies.  Use with caution."
2016 msgstr ""
2017
2018 #. type: textblock
2019 #: ../src/guestfs.pod:956
2020 msgid ""
2021 "I<Note (2):> This section explains how to attach to a running daemon from a "
2022 "low level perspective.  For most users, simply using virt tools such as "
2023 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2024 msgstr ""
2025
2026 #. type: =head3
2027 #: ../src/guestfs.pod:960
2028 msgid "Using guestfs_set_attach_method"
2029 msgstr ""
2030
2031 #. type: textblock
2032 #: ../src/guestfs.pod:962
2033 msgid ""
2034 "By calling L</guestfs_set_attach_method> you can change how the library "
2035 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2036 "ARCHITECTURE> for some background)."
2037 msgstr ""
2038
2039 #. type: textblock
2040 #: ../src/guestfs.pod:966
2041 msgid ""
2042 "The normal attach method is C<appliance>, where a small appliance is created "
2043 "containing the daemon, and then the library connects to this."
2044 msgstr ""
2045
2046 #. type: textblock
2047 #: ../src/guestfs.pod:969
2048 msgid ""
2049 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2050 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2051 "daemon over the Unix domain socket."
2052 msgstr ""
2053
2054 #. type: textblock
2055 #: ../src/guestfs.pod:973
2056 msgid ""
2057 "The normal use for this is to connect to a running virtual machine that "
2058 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2059 "files inside the live virtual machine."
2060 msgstr ""
2061
2062 #. type: =head3
2063 #: ../src/guestfs.pod:977
2064 msgid "Using guestfs_add_domain with live flag"
2065 msgstr ""
2066
2067 #. type: textblock
2068 #: ../src/guestfs.pod:979
2069 msgid ""
2070 "L</guestfs_add_domain> provides some help for getting the correct attach "
2071 "method.  If you pass the C<live> option to this function, then (if the "
2072 "virtual machine is running) it will examine the libvirt XML looking for a "
2073 "virtio-serial channel to connect to:"
2074 msgstr ""
2075
2076 #. type: verbatim
2077 #: ../src/guestfs.pod:985
2078 #, no-wrap
2079 msgid ""
2080 " <domain>\n"
2081 "   ...\n"
2082 "   <devices>\n"
2083 "     ...\n"
2084 "     <channel type='unix'>\n"
2085 "       <source mode='bind' path='/path/to/socket'/>\n"
2086 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2087 "     </channel>\n"
2088 "     ...\n"
2089 "   </devices>\n"
2090 " </domain>\n"
2091 "\n"
2092 msgstr ""
2093
2094 #. type: textblock
2095 #: ../src/guestfs.pod:997
2096 msgid ""
2097 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2098 "method to C<unix:/path/to/socket>."
2099 msgstr ""
2100
2101 #. type: textblock
2102 #: ../src/guestfs.pod:1000
2103 msgid ""
2104 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2105 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2106 "to attach to and modify live virtual machines."
2107 msgstr ""
2108
2109 #. type: textblock
2110 #: ../src/guestfs.pod:1004
2111 msgid ""
2112 "The virtual machine needs to have been set up beforehand so that it has the "
2113 "virtio-serial channel and so that guestfsd is running inside it."
2114 msgstr ""
2115
2116 #. type: =head2
2117 #: ../src/guestfs.pod:1008
2118 msgid "ABI GUARANTEE"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1010
2123 msgid ""
2124 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2125 "actions as outlined in this section.  Although we will deprecate some "
2126 "actions, for example if they get replaced by newer calls, we will keep the "
2127 "old actions forever.  This allows you the developer to program in confidence "
2128 "against the libguestfs API."
2129 msgstr ""
2130
2131 #. type: =head2
2132 #: ../src/guestfs.pod:1016
2133 msgid "BLOCK DEVICE NAMING"
2134 msgstr ""
2135
2136 #. type: textblock
2137 #: ../src/guestfs.pod:1018
2138 msgid ""
2139 "In the kernel there is now quite a profusion of schemata for naming block "
2140 "devices (in this context, by I<block device> I mean a physical or virtual "
2141 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2142 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2143 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2144 "for the old IDE driver (particularly for SATA devices) those devices also "
2145 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2146 "paravirtualized drivers.  This has created several different naming systems, "
2147 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2148 msgstr ""
2149
2150 #. type: textblock
2151 #: ../src/guestfs.pod:1030
2152 msgid ""
2153 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2154 "Linux kernel to access block devices.  We can run a variety of appliances "
2155 "based on a variety of Linux kernels."
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1034
2160 msgid ""
2161 "This causes a problem for libguestfs because many API calls use device or "
2162 "partition names.  Working scripts and the recipe (example) scripts that we "
2163 "make available over the internet could fail if the naming scheme changes."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1039
2168 msgid ""
2169 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2170 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2171 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2172 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2173 msgstr ""
2174
2175 #. type: textblock
2176 #: ../src/guestfs.pod:1045
2177 msgid ""
2178 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2179 "L</guestfs_list_partitions> and similar calls return the true names of the "
2180 "devices and partitions as known to the appliance."
2181 msgstr ""
2182
2183 #. type: =head3
2184 #: ../src/guestfs.pod:1050
2185 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2186 msgstr ""
2187
2188 #. type: textblock
2189 #: ../src/guestfs.pod:1052
2190 msgid ""
2191 "Usually this translation is transparent.  However in some (very rare)  cases "
2192 "you may need to know the exact algorithm.  Such cases include where you use "
2193 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2194 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1058
2199 msgid ""
2200 "The algorithm is applied only to I<parameters> which are known to be either "
2201 "device or partition names.  Return values from functions such as L</"
2202 "guestfs_list_devices> are never changed."
2203 msgstr ""
2204
2205 #. type: textblock
2206 #: ../src/guestfs.pod:1066
2207 msgid "Is the string a parameter which is a device or partition name?"
2208 msgstr ""
2209
2210 #. type: textblock
2211 #: ../src/guestfs.pod:1070
2212 msgid "Does the string begin with C</dev/sd>?"
2213 msgstr ""
2214
2215 #. type: textblock
2216 #: ../src/guestfs.pod:1074
2217 msgid ""
2218 "Does the named device exist? If so, we use that device.  However if I<not> "
2219 "then we continue with this algorithm."
2220 msgstr ""
2221
2222 #. type: textblock
2223 #: ../src/guestfs.pod:1079
2224 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2225 msgstr ""
2226
2227 #. type: textblock
2228 #: ../src/guestfs.pod:1081
2229 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2230 msgstr ""
2231
2232 #. type: textblock
2233 #: ../src/guestfs.pod:1083
2234 msgid "If that named device exists, use it.  If not, continue."
2235 msgstr ""
2236
2237 #. type: textblock
2238 #: ../src/guestfs.pod:1087
2239 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2240 msgstr ""
2241
2242 #. type: textblock
2243 #: ../src/guestfs.pod:1089
2244 msgid "If that named device exists, use it.  If not, return an error."
2245 msgstr ""
2246
2247 #. type: =head3
2248 #: ../src/guestfs.pod:1093
2249 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2250 msgstr ""
2251
2252 #. type: textblock
2253 #: ../src/guestfs.pod:1095
2254 msgid ""
2255 "Although the standard naming scheme and automatic translation is useful for "
2256 "simple programs and guestfish scripts, for larger programs it is best not to "
2257 "rely on this mechanism."
2258 msgstr ""
2259
2260 #. type: textblock
2261 #: ../src/guestfs.pod:1099
2262 msgid ""
2263 "Where possible for maximum future portability programs using libguestfs "
2264 "should use these future-proof techniques:"
2265 msgstr ""
2266
2267 #. type: textblock
2268 #: ../src/guestfs.pod:1106
2269 msgid ""
2270 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2271 "device names, and then use those names directly."
2272 msgstr ""
2273
2274 #. type: textblock
2275 #: ../src/guestfs.pod:1109
2276 msgid ""
2277 "Since those device names exist by definition, they will never be translated."
2278 msgstr ""
2279
2280 #. type: textblock
2281 #: ../src/guestfs.pod:1114
2282 msgid ""
2283 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2284 "filesystem labels."
2285 msgstr ""
2286
2287 #. type: =head1
2288 #: ../src/guestfs.pod:1119
2289 msgid "SECURITY"
2290 msgstr "БЕЗПЕКА"
2291
2292 #. type: textblock
2293 #: ../src/guestfs.pod:1121
2294 msgid ""
2295 "This section discusses security implications of using libguestfs, "
2296 "particularly with untrusted or malicious guests or disk images."
2297 msgstr ""
2298
2299 #. type: =head2
2300 #: ../src/guestfs.pod:1124
2301 msgid "GENERAL SECURITY CONSIDERATIONS"
2302 msgstr ""
2303
2304 #. type: textblock
2305 #: ../src/guestfs.pod:1126
2306 msgid ""
2307 "Be careful with any files or data that you download from a guest (by "
2308 "\"download\" we mean not just the L</guestfs_download> command but any "
2309 "command that reads files, filenames, directories or anything else from a "
2310 "disk image).  An attacker could manipulate the data to fool your program "
2311 "into doing the wrong thing.  Consider cases such as:"
2312 msgstr ""
2313
2314 #. type: textblock
2315 #: ../src/guestfs.pod:1136
2316 msgid "the data (file etc) not being present"
2317 msgstr ""
2318
2319 #. type: textblock
2320 #: ../src/guestfs.pod:1140
2321 msgid "being present but empty"
2322 msgstr ""
2323
2324 #. type: textblock
2325 #: ../src/guestfs.pod:1144
2326 msgid "being much larger than normal"
2327 msgstr ""
2328
2329 #. type: textblock
2330 #: ../src/guestfs.pod:1148
2331 msgid "containing arbitrary 8 bit data"
2332 msgstr ""
2333
2334 #. type: textblock
2335 #: ../src/guestfs.pod:1152
2336 msgid "being in an unexpected character encoding"
2337 msgstr ""
2338
2339 #. type: textblock
2340 #: ../src/guestfs.pod:1156
2341 msgid "containing homoglyphs."
2342 msgstr ""
2343
2344 #. type: =head2
2345 #: ../src/guestfs.pod:1160
2346 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2347 msgstr ""
2348
2349 #. type: textblock
2350 #: ../src/guestfs.pod:1162
2351 msgid ""
2352 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2353 "(VFS) module can sometimes be escalated into exploits by deliberately "
2354 "creating a malicious, malformed filesystem.  These exploits are very severe "
2355 "for two reasons.  Firstly there are very many filesystem drivers in the "
2356 "kernel, and many of them are infrequently used and not much developer "
2357 "attention has been paid to the code.  Linux userspace helps potential "
2358 "crackers by detecting the filesystem type and automatically choosing the "
2359 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2360 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2361 "exploit (worse in some ways), giving immediate and total access to the "
2362 "system right down to the hardware level."
2363 msgstr ""
2364
2365 #. type: textblock
2366 #: ../src/guestfs.pod:1175
2367 msgid ""
2368 "That explains why you should never mount a filesystem from an untrusted "
2369 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2370 "inside a qemu virtual machine, usually running as a non-root user.  The "
2371 "attacker would need to write a filesystem which first exploited the kernel, "
2372 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2373 "the libguestfs protocol, and finally to be as serious as the host kernel "
2374 "exploit it would need to escalate its privileges to root.  This multi-step "
2375 "escalation, performed by a static piece of data, is thought to be extremely "
2376 "hard to do, although we never say 'never' about security issues."
2377 msgstr ""
2378
2379 #. type: textblock
2380 #: ../src/guestfs.pod:1186
2381 msgid ""
2382 "In any case callers can reduce the attack surface by forcing the filesystem "
2383 "type when mounting (use L</guestfs_mount_vfs>)."
2384 msgstr ""
2385
2386 #. type: =head2
2387 #: ../src/guestfs.pod:1189
2388 msgid "PROTOCOL SECURITY"
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1191
2393 msgid ""
2394 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2395 "defined upper message size.  However a program that uses libguestfs must "
2396 "also take care - for example you can write a program that downloads a binary "
2397 "from a disk image and executes it locally, and no amount of protocol "
2398 "security will save you from the consequences."
2399 msgstr ""
2400
2401 #. type: =head2
2402 #: ../src/guestfs.pod:1197
2403 msgid "INSPECTION SECURITY"
2404 msgstr ""
2405
2406 #. type: textblock
2407 #: ../src/guestfs.pod:1199
2408 msgid ""
2409 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2410 "directly from the guest, and these could contain any 8 bit data.  Callers "
2411 "should be careful to escape these before printing them to a structured file "
2412 "(for example, use HTML escaping if creating a web page)."
2413 msgstr ""
2414
2415 #. type: textblock
2416 #: ../src/guestfs.pod:1205
2417 msgid ""
2418 "Guest configuration may be altered in unusual ways by the administrator of "
2419 "the virtual machine, and may not reflect reality (particularly for untrusted "
2420 "or actively malicious guests).  For example we parse the hostname from "
2421 "configuration files like C</etc/sysconfig/network> that we find in the "
2422 "guest, but the guest administrator can easily manipulate these files to "
2423 "provide the wrong hostname."
2424 msgstr ""
2425
2426 #. type: textblock
2427 #: ../src/guestfs.pod:1213
2428 msgid ""
2429 "The inspection API parses guest configuration using two external libraries: "
2430 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2431 "designed to be robust in the face of malicious data, although denial of "
2432 "service attacks are still possible, for example with oversized configuration "
2433 "files."
2434 msgstr ""
2435
2436 #. type: =head2
2437 #: ../src/guestfs.pod:1219
2438 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2439 msgstr ""
2440
2441 #. type: textblock
2442 #: ../src/guestfs.pod:1221
2443 msgid ""
2444 "Be very cautious about running commands from the guest.  By running a "
2445 "command in the guest, you are giving CPU time to a binary that you do not "
2446 "control, under the same user account as the library, albeit wrapped in qemu "
2447 "virtualization.  More information and alternatives can be found in the "
2448 "section L</RUNNING COMMANDS>."
2449 msgstr ""
2450
2451 #. type: =head2
2452 #: ../src/guestfs.pod:1227
2453 msgid "CVE-2010-3851"
2454 msgstr "CVE-2010-3851"
2455
2456 #. type: textblock
2457 #: ../src/guestfs.pod:1229
2458 msgid "https://bugzilla.redhat.com/642934"
2459 msgstr "https://bugzilla.redhat.com/642934"
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1231
2463 msgid ""
2464 "This security bug concerns the automatic disk format detection that qemu "
2465 "does on disk images."
2466 msgstr ""
2467
2468 #. type: textblock
2469 #: ../src/guestfs.pod:1234
2470 msgid ""
2471 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2472 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2473 "for one of the known headers, and if none is found then assuming the disk "
2474 "image must be raw."
2475 msgstr ""
2476
2477 #. type: textblock
2478 #: ../src/guestfs.pod:1239
2479 msgid ""
2480 "This allows a guest which has been given a raw disk image to write some "
2481 "other header.  At next boot (or when the disk image is accessed by "
2482 "libguestfs) qemu would do autodetection and think the disk image format was, "
2483 "say, qcow2 based on the header written by the guest."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1244
2488 msgid ""
2489 "This in itself would not be a problem, but qcow2 offers many features, one "
2490 "of which is to allow a disk image to refer to another image (called the "
2491 "\"backing disk\").  It does this by placing the path to the backing disk "
2492 "into the qcow2 header.  This path is not validated and could point to any "
2493 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2494 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2495 "control of the attacker."
2496 msgstr ""
2497
2498 #. type: textblock
2499 #: ../src/guestfs.pod:1252
2500 msgid ""
2501 "In libguestfs this is rather hard to exploit except under two circumstances:"
2502 msgstr ""
2503
2504 #. type: textblock
2505 #: ../src/guestfs.pod:1259
2506 msgid "You have enabled the network or have opened the disk in write mode."
2507 msgstr ""
2508
2509 #. type: textblock
2510 #: ../src/guestfs.pod:1263
2511 msgid ""
2512 "You are also running untrusted code from the guest (see L</RUNNING "
2513 "COMMANDS>)."
2514 msgstr ""
2515
2516 #. type: textblock
2517 #: ../src/guestfs.pod:1268
2518 msgid ""
2519 "The way to avoid this is to specify the expected disk format when adding "
2520 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2521 "should always do this if the disk is raw format, and it's a good idea for "
2522 "other cases too."
2523 msgstr ""
2524
2525 #. type: textblock
2526 #: ../src/guestfs.pod:1273
2527 msgid ""
2528 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2529 "format is fetched from libvirt and passed through."
2530 msgstr ""
2531
2532 #. type: textblock
2533 #: ../src/guestfs.pod:1276
2534 msgid ""
2535 "For libguestfs tools, use the I<--format> command line parameter as "
2536 "appropriate."
2537 msgstr ""
2538
2539 #. type: =head1
2540 #: ../src/guestfs.pod:1279
2541 msgid "CONNECTION MANAGEMENT"
2542 msgstr ""
2543
2544 #. type: =head2
2545 #: ../src/guestfs.pod:1281
2546 msgid "guestfs_h *"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1283
2551 msgid ""
2552 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2553 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2554 "handle and release all resources used."
2555 msgstr ""
2556
2557 #. type: textblock
2558 #: ../src/guestfs.pod:1287
2559 msgid ""
2560 "For information on using multiple handles and threads, see the section L</"
2561 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2562 msgstr ""
2563
2564 #. type: =head2
2565 #: ../src/guestfs.pod:1290
2566 msgid "guestfs_create"
2567 msgstr ""
2568
2569 #. type: verbatim
2570 #: ../src/guestfs.pod:1292
2571 #, no-wrap
2572 msgid ""
2573 " guestfs_h *guestfs_create (void);\n"
2574 "\n"
2575 msgstr ""
2576
2577 #. type: textblock
2578 #: ../src/guestfs.pod:1294
2579 msgid "Create a connection handle."
2580 msgstr ""
2581
2582 #. type: textblock
2583 #: ../src/guestfs.pod:1296
2584 msgid ""
2585 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2586 "NULL."
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1299
2591 msgid ""
2592 "You have to \"configure\" the handle after creating it.  This includes "
2593 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2594 "handle at least once."
2595 msgstr ""
2596
2597 #. type: textblock
2598 #: ../src/guestfs.pod:1303
2599 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2600 msgstr ""
2601
2602 #. type: textblock
2603 #: ../src/guestfs.pod:1305
2604 msgid ""
2605 "You may also want to configure error handling for the handle.  See the L</"
2606 "ERROR HANDLING> section below."
2607 msgstr ""
2608
2609 #. type: =head2
2610 #: ../src/guestfs.pod:1308
2611 msgid "guestfs_close"
2612 msgstr ""
2613
2614 #. type: verbatim
2615 #: ../src/guestfs.pod:1310
2616 #, no-wrap
2617 msgid ""
2618 " void guestfs_close (guestfs_h *g);\n"
2619 "\n"
2620 msgstr ""
2621
2622 #. type: textblock
2623 #: ../src/guestfs.pod:1312
2624 msgid "This closes the connection handle and frees up all resources used."
2625 msgstr ""
2626
2627 #. type: textblock
2628 #: ../src/guestfs.pod:1314
2629 msgid ""
2630 "If autosync was set on the handle and the handle was launched, then this "
2631 "implicitly calls various functions to unmount filesystems and sync the "
2632 "disk.  See L</guestfs_set_autosync> for more details."
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1318
2637 msgid "If a close callback was set on the handle, then it is called."
2638 msgstr ""
2639
2640 #. type: =head1
2641 #: ../src/guestfs.pod:1320
2642 msgid "ERROR HANDLING"
2643 msgstr "ОБРОБКА ПОМИЛОК"
2644
2645 #. type: textblock
2646 #: ../src/guestfs.pod:1322
2647 msgid ""
2648 "API functions can return errors.  For example, almost all functions that "
2649 "return C<int> will return C<-1> to indicate an error."
2650 msgstr ""
2651
2652 #. type: textblock
2653 #: ../src/guestfs.pod:1325
2654 msgid ""
2655 "Additional information is available for errors: an error message string and "
2656 "optionally an error number (errno) if the thing that failed was a system "
2657 "call."
2658 msgstr ""
2659
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1329
2662 msgid ""
2663 "You can get at the additional information about the last error on the handle "
2664 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2665 "up an error handler with L</guestfs_set_error_handler>."
2666 msgstr ""
2667
2668 #. type: textblock
2669 #: ../src/guestfs.pod:1334
2670 msgid ""
2671 "When the handle is created, a default error handler is installed which "
2672 "prints the error message string to C<stderr>.  For small short-running "
2673 "command line programs it is sufficient to do:"
2674 msgstr ""
2675
2676 #. type: verbatim
2677 #: ../src/guestfs.pod:1338
2678 #, no-wrap
2679 msgid ""
2680 " if (guestfs_launch (g) == -1)\n"
2681 "   exit (EXIT_FAILURE);\n"
2682 "\n"
2683 msgstr ""
2684
2685 #. type: textblock
2686 #: ../src/guestfs.pod:1341
2687 msgid ""
2688 "since the default error handler will ensure that an error message has been "
2689 "printed to C<stderr> before the program exits."
2690 msgstr ""
2691
2692 #. type: textblock
2693 #: ../src/guestfs.pod:1344
2694 msgid ""
2695 "For other programs the caller will almost certainly want to install an "
2696 "alternate error handler or do error handling in-line like this:"
2697 msgstr ""
2698
2699 #. type: verbatim
2700 #: ../src/guestfs.pod:1347
2701 #, no-wrap
2702 msgid ""
2703 " g = guestfs_create ();\n"
2704 " \n"
2705 msgstr ""
2706
2707 #. type: verbatim
2708 #: ../src/guestfs.pod:1349
2709 #, no-wrap
2710 msgid ""
2711 " /* This disables the default behaviour of printing errors\n"
2712 "    on stderr. */\n"
2713 " guestfs_set_error_handler (g, NULL, NULL);\n"
2714 " \n"
2715 msgstr ""
2716
2717 #. type: verbatim
2718 #: ../src/guestfs.pod:1353
2719 #, no-wrap
2720 msgid ""
2721 " if (guestfs_launch (g) == -1) {\n"
2722 "   /* Examine the error message and print it etc. */\n"
2723 "   char *msg = guestfs_last_error (g);\n"
2724 "   int errnum = guestfs_last_errno (g);\n"
2725 "   fprintf (stderr, \"%s\\n\", msg);\n"
2726 "   /* ... */\n"
2727 "  }\n"
2728 "\n"
2729 msgstr ""
2730
2731 #. type: textblock
2732 #: ../src/guestfs.pod:1361
2733 msgid ""
2734 "Out of memory errors are handled differently.  The default action is to call "
2735 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
2736 "guestfs_set_out_of_memory_handler>."
2737 msgstr ""
2738
2739 #. type: textblock
2740 #: ../src/guestfs.pod:1365
2741 msgid ""
2742 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2743 "because there is no handle if this happens there is no way to get additional "
2744 "error information.  However L</guestfs_create> is supposed to be a "
2745 "lightweight operation which can only fail because of insufficient memory (it "
2746 "returns NULL in this case)."
2747 msgstr ""
2748
2749 #. type: =head2
2750 #: ../src/guestfs.pod:1371
2751 msgid "guestfs_last_error"
2752 msgstr ""
2753
2754 #. type: verbatim
2755 #: ../src/guestfs.pod:1373
2756 #, no-wrap
2757 msgid ""
2758 " const char *guestfs_last_error (guestfs_h *g);\n"
2759 "\n"
2760 msgstr ""
2761
2762 #. type: textblock
2763 #: ../src/guestfs.pod:1375
2764 msgid ""
2765 "This returns the last error message that happened on C<g>.  If there has not "
2766 "been an error since the handle was created, then this returns C<NULL>."
2767 msgstr ""
2768
2769 #. type: textblock
2770 #: ../src/guestfs.pod:1379
2771 msgid ""
2772 "The lifetime of the returned string is until the next error occurs, or L</"
2773 "guestfs_close> is called."
2774 msgstr ""
2775
2776 #. type: =head2
2777 #: ../src/guestfs.pod:1382
2778 msgid "guestfs_last_errno"
2779 msgstr ""
2780
2781 #. type: verbatim
2782 #: ../src/guestfs.pod:1384
2783 #, no-wrap
2784 msgid ""
2785 " int guestfs_last_errno (guestfs_h *g);\n"
2786 "\n"
2787 msgstr ""
2788
2789 #. type: textblock
2790 #: ../src/guestfs.pod:1386
2791 msgid "This returns the last error number (errno) that happened on C<g>."
2792 msgstr ""
2793
2794 #. type: textblock
2795 #: ../src/guestfs.pod:1388
2796 msgid "If successful, an errno integer not equal to zero is returned."
2797 msgstr ""
2798
2799 #. type: textblock
2800 #: ../src/guestfs.pod:1390
2801 msgid ""
2802 "If no error, this returns 0.  This call can return 0 in three situations:"
2803 msgstr ""
2804
2805 #. type: textblock
2806 #: ../src/guestfs.pod:1397
2807 msgid "There has not been any error on the handle."
2808 msgstr ""
2809
2810 #. type: textblock
2811 #: ../src/guestfs.pod:1401
2812 msgid ""
2813 "There has been an error but the errno was meaningless.  This corresponds to "
2814 "the case where the error did not come from a failed system call, but for "
2815 "some other reason."
2816 msgstr ""
2817
2818 #. type: textblock
2819 #: ../src/guestfs.pod:1407
2820 msgid ""
2821 "There was an error from a failed system call, but for some reason the errno "
2822 "was not captured and returned.  This usually indicates a bug in libguestfs."
2823 msgstr ""
2824
2825 #. type: textblock
2826 #: ../src/guestfs.pod:1413
2827 msgid ""
2828 "Libguestfs tries to convert the errno from inside the applicance into a "
2829 "corresponding errno for the caller (not entirely trivial: the appliance "
2830 "might be running a completely different operating system from the library "
2831 "and error numbers are not standardized across Un*xen).  If this could not be "
2832 "done, then the error is translated to C<EINVAL>.  In practice this should "
2833 "only happen in very rare circumstances."
2834 msgstr ""
2835
2836 #. type: =head2
2837 #: ../src/guestfs.pod:1421
2838 msgid "guestfs_set_error_handler"
2839 msgstr ""
2840
2841 #. type: verbatim
2842 #: ../src/guestfs.pod:1423
2843 #, no-wrap
2844 msgid ""
2845 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2846 "                                           void *opaque,\n"
2847 "                                           const char *msg);\n"
2848 " void guestfs_set_error_handler (guestfs_h *g,\n"
2849 "                                 guestfs_error_handler_cb cb,\n"
2850 "                                 void *opaque);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1430
2856 msgid ""
2857 "The callback C<cb> will be called if there is an error.  The parameters "
2858 "passed to the callback are an opaque data pointer and the error message "
2859 "string."
2860 msgstr ""
2861
2862 #. type: textblock
2863 #: ../src/guestfs.pod:1434
2864 msgid ""
2865 "C<errno> is not passed to the callback.  To get that the callback must call "
2866 "L</guestfs_last_errno>."
2867 msgstr ""
2868
2869 #. type: textblock
2870 #: ../src/guestfs.pod:1437
2871 msgid ""
2872 "Note that the message string C<msg> is freed as soon as the callback "
2873 "function returns, so if you want to stash it somewhere you must make your "
2874 "own copy."
2875 msgstr ""
2876
2877 #. type: textblock
2878 #: ../src/guestfs.pod:1441
2879 msgid "The default handler prints messages on C<stderr>."
2880 msgstr ""
2881
2882 #. type: textblock
2883 #: ../src/guestfs.pod:1443
2884 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2885 msgstr ""
2886
2887 #. type: =head2
2888 #: ../src/guestfs.pod:1445
2889 msgid "guestfs_get_error_handler"
2890 msgstr ""
2891
2892 #. type: verbatim
2893 #: ../src/guestfs.pod:1447
2894 #, no-wrap
2895 msgid ""
2896 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2897 "                                                     void **opaque_rtn);\n"
2898 "\n"
2899 msgstr ""
2900
2901 #. type: textblock
2902 #: ../src/guestfs.pod:1450
2903 msgid "Returns the current error handler callback."
2904 msgstr ""
2905
2906 #. type: =head2
2907 #: ../src/guestfs.pod:1452
2908 msgid "guestfs_set_out_of_memory_handler"
2909 msgstr ""
2910
2911 #. type: verbatim
2912 #: ../src/guestfs.pod:1454
2913 #, no-wrap
2914 msgid ""
2915 " typedef void (*guestfs_abort_cb) (void);\n"
2916 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2917 "                                        guestfs_abort_cb);\n"
2918 "\n"
2919 msgstr ""
2920
2921 #. type: textblock
2922 #: ../src/guestfs.pod:1458
2923 msgid ""
2924 "The callback C<cb> will be called if there is an out of memory situation.  "
2925 "I<Note this callback must not return>."
2926 msgstr ""
2927
2928 #. type: textblock
2929 #: ../src/guestfs.pod:1461
2930 msgid "The default is to call L<abort(3)>."
2931 msgstr ""
2932
2933 #. type: textblock
2934 #: ../src/guestfs.pod:1463
2935 msgid ""
2936 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2937 msgstr ""
2938
2939 #. type: =head2
2940 #: ../src/guestfs.pod:1466
2941 msgid "guestfs_get_out_of_memory_handler"
2942 msgstr ""
2943
2944 #. type: verbatim
2945 #: ../src/guestfs.pod:1468
2946 #, no-wrap
2947 msgid ""
2948 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2949 "\n"
2950 msgstr ""
2951
2952 #. type: textblock
2953 #: ../src/guestfs.pod:1470
2954 msgid "This returns the current out of memory handler."
2955 msgstr ""
2956
2957 #. type: =head1
2958 #: ../src/guestfs.pod:1472
2959 msgid "API CALLS"
2960 msgstr ""
2961
2962 #. type: textblock
2963 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2964 msgid "@ACTIONS@"
2965 msgstr "@ACTIONS@"
2966
2967 #. type: =head1
2968 #: ../src/guestfs.pod:1476
2969 msgid "STRUCTURES"
2970 msgstr "СТРУКТУРИ"
2971
2972 #. type: textblock
2973 #: ../src/guestfs.pod:1478
2974 msgid "@STRUCTS@"
2975 msgstr "@STRUCTS@"
2976
2977 #. type: =head1
2978 #: ../src/guestfs.pod:1480
2979 msgid "AVAILABILITY"
2980 msgstr ""
2981
2982 #. type: =head2
2983 #: ../src/guestfs.pod:1482
2984 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2985 msgstr ""
2986
2987 #. type: textblock
2988 #: ../src/guestfs.pod:1484
2989 msgid ""
2990 "Using L</guestfs_available> you can test availability of the following "
2991 "groups of functions.  This test queries the appliance to see if the "
2992 "appliance you are currently using supports the functionality."
2993 msgstr ""
2994
2995 #. type: textblock
2996 #: ../src/guestfs.pod:1489
2997 msgid "@AVAILABILITY@"
2998 msgstr ""
2999
3000 #. type: =head2
3001 #: ../src/guestfs.pod:1491
3002 msgid "GUESTFISH supported COMMAND"
3003 msgstr ""
3004
3005 #. type: textblock
3006 #: ../src/guestfs.pod:1493
3007 msgid ""
3008 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3009 "prints out the available groups and whether they are supported by this build "
3010 "of libguestfs.  Note however that you have to do C<run> first."
3011 msgstr ""
3012
3013 #. type: =head2
3014 #: ../src/guestfs.pod:1498
3015 msgid "SINGLE CALLS AT COMPILE TIME"
3016 msgstr ""
3017
3018 #. type: textblock
3019 #: ../src/guestfs.pod:1500
3020 msgid ""
3021 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3022 "function, such as:"
3023 msgstr ""
3024
3025 #. type: verbatim
3026 #: ../src/guestfs.pod:1503
3027 #, no-wrap
3028 msgid ""
3029 " #define LIBGUESTFS_HAVE_DD 1\n"
3030 "\n"
3031 msgstr ""
3032
3033 #. type: textblock
3034 #: ../src/guestfs.pod:1505
3035 msgid "if L</guestfs_dd> is available."
3036 msgstr ""
3037
3038 #. type: textblock
3039 #: ../src/guestfs.pod:1507
3040 msgid ""
3041 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3042 "function is available at compile time, we recommended using build tools such "
3043 "as autoconf or cmake.  For example in autotools you could use:"
3044 msgstr ""
3045
3046 #. type: verbatim
3047 #: ../src/guestfs.pod:1512
3048 #, no-wrap
3049 msgid ""
3050 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3051 " AC_CHECK_FUNCS([guestfs_dd])\n"
3052 "\n"
3053 msgstr ""
3054
3055 #. type: textblock
3056 #: ../src/guestfs.pod:1515
3057 msgid ""
3058 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3059 "in your program."
3060 msgstr ""
3061
3062 #. type: =head2
3063 #: ../src/guestfs.pod:1518
3064 msgid "SINGLE CALLS AT RUN TIME"
3065 msgstr ""
3066
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1520
3069 msgid ""
3070 "Testing at compile time doesn't guarantee that a function really exists in "
3071 "the library.  The reason is that you might be dynamically linked against a "
3072 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3073 "This situation unfortunately results in a segmentation fault, which is a "
3074 "shortcoming of the C dynamic linking system itself."
3075 msgstr ""
3076
3077 #. type: textblock
3078 #: ../src/guestfs.pod:1527
3079 msgid ""
3080 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3081 "in this example program (note that you still need the compile time check as "
3082 "well):"
3083 msgstr ""
3084
3085 #. type: verbatim
3086 #: ../src/guestfs.pod:1531
3087 #, no-wrap
3088 msgid ""
3089 " #include <stdio.h>\n"
3090 " #include <stdlib.h>\n"
3091 " #include <unistd.h>\n"
3092 " #include <dlfcn.h>\n"
3093 " #include <guestfs.h>\n"
3094 " \n"
3095 msgstr ""
3096
3097 #. type: verbatim
3098 #: ../src/guestfs.pod:1537
3099 #, no-wrap
3100 msgid ""
3101 " main ()\n"
3102 " {\n"
3103 " #ifdef LIBGUESTFS_HAVE_DD\n"
3104 "   void *dl;\n"
3105 "   int has_function;\n"
3106 " \n"
3107 msgstr ""
3108
3109 #. type: verbatim
3110 #: ../src/guestfs.pod:1543
3111 #, no-wrap
3112 msgid ""
3113 "   /* Test if the function guestfs_dd is really available. */\n"
3114 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3115 "   if (!dl) {\n"
3116 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3117 "     exit (EXIT_FAILURE);\n"
3118 "   }\n"
3119 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3120 "   dlclose (dl);\n"
3121 " \n"
3122 msgstr ""
3123
3124 #. type: verbatim
3125 #: ../src/guestfs.pod:1552
3126 #, no-wrap
3127 msgid ""
3128 "   if (!has_function)\n"
3129 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3130 "   else {\n"
3131 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3132 "     /* Now it's safe to call\n"
3133 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3134 "     */\n"
3135 "   }\n"
3136 " #else\n"
3137 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3138 " #endif\n"
3139 "  }\n"
3140 "\n"
3141 msgstr ""
3142
3143 #. type: textblock
3144 #: ../src/guestfs.pod:1565
3145 msgid ""
3146 "You may think the above is an awful lot of hassle, and it is.  There are "
3147 "other ways outside of the C linking system to ensure that this kind of "
3148 "incompatibility never arises, such as using package versioning:"
3149 msgstr ""
3150
3151 #. type: verbatim
3152 #: ../src/guestfs.pod:1570
3153 #, no-wrap
3154 msgid ""
3155 " Requires: libguestfs >= 1.0.80\n"
3156 "\n"
3157 msgstr ""
3158
3159 #. type: =head1
3160 #: ../src/guestfs.pod:1572
3161 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3162 msgstr ""
3163
3164 #. type: textblock
3165 #: ../src/guestfs.pod:1574
3166 msgid ""
3167 "A recent feature of the API is the introduction of calls which take optional "
3168 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3169 "takes variable arguments (ie. C<...>), as in this example:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1579
3174 #, no-wrap
3175 msgid ""
3176 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3177 "\n"
3178 msgstr ""
3179
3180 #. type: textblock
3181 #: ../src/guestfs.pod:1581
3182 msgid ""
3183 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3184 "call with no optional arguments specified:"
3185 msgstr ""
3186
3187 #. type: verbatim
3188 #: ../src/guestfs.pod:1584
3189 #, no-wrap
3190 msgid ""
3191 " guestfs_add_drive_opts (g, filename, -1);\n"
3192 "\n"
3193 msgstr ""
3194
3195 #. type: textblock
3196 #: ../src/guestfs.pod:1586
3197 msgid "With a single optional argument:"
3198 msgstr ""
3199
3200 #. type: verbatim
3201 #: ../src/guestfs.pod:1588
3202 #, no-wrap
3203 msgid ""
3204 " guestfs_add_drive_opts (g, filename,\n"
3205 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3206 "                         -1);\n"
3207 "\n"
3208 msgstr ""
3209
3210 #. type: textblock
3211 #: ../src/guestfs.pod:1592
3212 msgid "With two:"
3213 msgstr ""
3214
3215 #. type: verbatim
3216 #: ../src/guestfs.pod:1594
3217 #, no-wrap
3218 msgid ""
3219 " guestfs_add_drive_opts (g, filename,\n"
3220 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3221 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3222 "                         -1);\n"
3223 "\n"
3224 msgstr ""
3225
3226 #. type: textblock
3227 #: ../src/guestfs.pod:1599
3228 msgid ""
3229 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3230 "happen!"
3231 msgstr ""
3232
3233 #. type: =head2
3234 #: ../src/guestfs.pod:1602
3235 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3236 msgstr ""
3237
3238 #. type: textblock
3239 #: ../src/guestfs.pod:1604
3240 msgid ""
3241 "The second variant has the same name with the suffix C<_va>, which works the "
3242 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3243 "example function, this is declared:"
3244 msgstr ""
3245
3246 #. type: verbatim
3247 #: ../src/guestfs.pod:1608
3248 #, no-wrap
3249 msgid ""
3250 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3251 "                                va_list args);\n"
3252 "\n"
3253 msgstr ""
3254
3255 #. type: =head2
3256 #: ../src/guestfs.pod:1611
3257 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3258 msgstr ""
3259
3260 #. type: textblock
3261 #: ../src/guestfs.pod:1613
3262 msgid ""
3263 "The third variant is useful where you need to construct these calls.  You "
3264 "pass in a structure where you fill in the optional fields.  The structure "
3265 "has a bitmask as the first element which you must set to indicate which "
3266 "fields you have filled in.  For our example function the structure and call "
3267 "are declared:"
3268 msgstr ""
3269
3270 #. type: verbatim
3271 #: ../src/guestfs.pod:1619
3272 #, no-wrap
3273 msgid ""
3274 " struct guestfs_add_drive_opts_argv {\n"
3275 "   uint64_t bitmask;\n"
3276 "   int readonly;\n"
3277 "   const char *format;\n"
3278 "   /* ... */\n"
3279 " };\n"
3280 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3281 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3282 "\n"
3283 msgstr ""
3284
3285 #. type: textblock
3286 #: ../src/guestfs.pod:1628
3287 msgid "You could call it like this:"
3288 msgstr ""
3289
3290 #. type: verbatim
3291 #: ../src/guestfs.pod:1630
3292 #, no-wrap
3293 msgid ""
3294 " struct guestfs_add_drive_opts_argv optargs = {\n"
3295 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3296 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3297 "   .readonly = 1,\n"
3298 "   .format = \"qcow2\"\n"
3299 " };\n"
3300 " \n"
3301 msgstr ""
3302
3303 #. type: verbatim
3304 #: ../src/guestfs.pod:1637
3305 #, no-wrap
3306 msgid ""
3307 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3308 "\n"
3309 msgstr ""
3310
3311 #. type: textblock
3312 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3313 #: ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:2785
3314 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262
3315 #: ../fish/guestfish-actions.pod:1898 ../tools/virt-win-reg.pl:704
3316 msgid "Notes:"
3317 msgstr "Нотатки:"
3318
3319 #. type: textblock
3320 #: ../src/guestfs.pod:1645
3321 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3322 msgstr ""
3323
3324 #. type: textblock
3325 #: ../src/guestfs.pod:1650
3326 msgid "You do not need to fill in all fields of the structure."
3327 msgstr ""
3328
3329 #. type: textblock
3330 #: ../src/guestfs.pod:1654
3331 msgid ""
3332 "There must be a one-to-one correspondence between fields of the structure "
3333 "that are filled in, and bits set in the bitmask."
3334 msgstr ""
3335
3336 #. type: =head2
3337 #: ../src/guestfs.pod:1659
3338 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3339 msgstr ""
3340
3341 #. type: textblock
3342 #: ../src/guestfs.pod:1661
3343 msgid ""
3344 "In other languages, optional arguments are expressed in the way that is "
3345 "natural for that language.  We refer you to the language-specific "
3346 "documentation for more details on that."
3347 msgstr ""
3348
3349 #. type: textblock
3350 #: ../src/guestfs.pod:1665
3351 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3352 msgstr ""
3353
3354 #. type: =head2
3355 #: ../src/guestfs.pod:1667
3356 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3357 msgstr ""
3358
3359 #. type: textblock
3360 #: ../src/guestfs.pod:1669
3361 msgid ""
3362 "B<Note:> This section documents the generic event mechanism introduced in "
3363 "libguestfs 1.10, which you should use in new code if possible.  The old "
3364 "functions C<guestfs_set_log_message_callback>, "
3365 "C<guestfs_set_subprocess_quit_callback>, "
3366 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3367 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3368 "page.  Because of the ABI guarantee, the old functions continue to work."
3369 msgstr ""
3370
3371 #. type: textblock
3372 #: ../src/guestfs.pod:1678
3373 msgid ""
3374 "Handles generate events when certain things happen, such as log messages "
3375 "being generated, progress messages during long-running operations, or the "
3376 "handle being closed.  The API calls described below let you register a "
3377 "callback to be called when events happen.  You can register multiple "
3378 "callbacks (for the same, different or overlapping sets of events), and "
3379 "individually remove callbacks.  If callbacks are not removed, then they "
3380 "remain in force until the handle is closed."
3381 msgstr ""
3382
3383 #. type: textblock
3384 #: ../src/guestfs.pod:1686
3385 msgid ""
3386 "In the current implementation, events are only generated synchronously: that "
3387 "means that events (and hence callbacks) can only happen while you are in the "
3388 "middle of making another libguestfs call.  The callback is called in the "
3389 "same thread."
3390 msgstr ""
3391
3392 #. type: textblock
3393 #: ../src/guestfs.pod:1691
3394 msgid ""
3395 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3396 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3397 msgstr ""
3398
3399 #. type: =head3
3400 #: ../src/guestfs.pod:1695
3401 msgid "CLASSES OF EVENTS"
3402 msgstr ""
3403
3404 #. type: =item
3405 #: ../src/guestfs.pod:1699
3406 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3407 msgstr ""
3408
3409 #. type: textblock
3410 #: ../src/guestfs.pod:1702
3411 msgid ""
3412 "The callback function will be called while the handle is being closed "
3413 "(synchronously from L</guestfs_close>)."
3414 msgstr ""
3415
3416 #. type: textblock
3417 #: ../src/guestfs.pod:1705
3418 msgid ""
3419 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3420 "handles that are open when the program exits.  This means that this callback "
3421 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3422 "problems in higher-level languages (eg. if your HLL interpreter has already "
3423 "been cleaned up by the time this is called, and if your callback then jumps "
3424 "into some HLL function)."
3425 msgstr ""
3426
3427 #. type: textblock
3428 #: ../src/guestfs.pod:1712
3429 msgid ""
3430 "If no callback is registered: the handle is closed without any callback "
3431 "being invoked."
3432 msgstr ""
3433
3434 #. type: =item
3435 #: ../src/guestfs.pod:1715
3436 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3437 msgstr ""
3438
3439 #. type: textblock
3440 #: ../src/guestfs.pod:1718
3441 msgid ""
3442 "The callback function will be called when the child process quits, either "
3443 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3444 "corresponds to a transition from any state to the CONFIG state)."
3445 msgstr ""
3446
3447 #. type: textblock
3448 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3449 msgid "If no callback is registered: the event is ignored."
3450 msgstr ""
3451
3452 #. type: =item
3453 #: ../src/guestfs.pod:1724
3454 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3455 msgstr ""
3456
3457 #. type: textblock
3458 #: ../src/guestfs.pod:1727
3459 msgid ""
3460 "The callback function will be called when the child process becomes ready "
3461 "first time after it has been launched.  (This corresponds to a transition "
3462 "from LAUNCHING to the READY state)."
3463 msgstr ""
3464
3465 #. type: =item
3466 #: ../src/guestfs.pod:1733
3467 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3468 msgstr ""
3469
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1736
3472 msgid ""
3473 "Some long-running operations can generate progress messages.  If this "
3474 "callback is registered, then it will be called each time a progress message "
3475 "is generated (usually two seconds after the operation started, and three "
3476 "times per second thereafter until it completes, although the frequency may "
3477 "change in future versions)."
3478 msgstr ""
3479
3480 #. type: textblock
3481 #: ../src/guestfs.pod:1742
3482 msgid ""
3483 "The callback receives in the payload four unsigned 64 bit numbers which are "
3484 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3485 msgstr ""
3486
3487 #. type: textblock
3488 #: ../src/guestfs.pod:1745
3489 msgid ""
3490 "The units of C<total> are not defined, although for some operations C<total> "
3491 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3492 "or megabytes), and C<position> may be the portion which has been transferred."
3493 msgstr ""
3494
3495 #. type: textblock
3496 #: ../src/guestfs.pod:1750
3497 msgid "The only defined and stable parts of the API are:"
3498 msgstr ""
3499
3500 #. type: textblock
3501 #: ../src/guestfs.pod:1756
3502 msgid ""
3503 "The callback can display to the user some type of progress bar or indicator "
3504 "which shows the ratio of C<position>:C<total>."
3505 msgstr ""
3506
3507 #. type: textblock
3508 #: ../src/guestfs.pod:1761
3509 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3510 msgstr ""
3511
3512 #. type: textblock
3513 #: ../src/guestfs.pod:1765
3514 msgid ""
3515 "If any progress notification is sent during a call, then a final progress "
3516 "notification is always sent when C<position> = C<total> (I<unless> the call "
3517 "fails with an error)."
3518 msgstr ""
3519
3520 #. type: textblock
3521 #: ../src/guestfs.pod:1769
3522 msgid ""
3523 "This is to simplify caller code, so callers can easily set the progress "
3524 "indicator to \"100%\" at the end of the operation, without requiring special "
3525 "code to detect this case."
3526 msgstr ""
3527
3528 #. type: textblock
3529 #: ../src/guestfs.pod:1775
3530 msgid ""
3531 "For some calls we are unable to estimate the progress of the call, but we "
3532 "can still generate progress messages to indicate activity.  This is known as "
3533 "\"pulse mode\", and is directly supported by certain progress bar "
3534 "implementations (eg. GtkProgressBar)."
3535 msgstr ""
3536
3537 #. type: textblock
3538 #: ../src/guestfs.pod:1780
3539 msgid ""
3540 "For these calls, zero or more progress messages are generated with "
3541 "C<position = 0> and C<total = 1>, followed by a final message with "
3542 "C<position = total = 1>."
3543 msgstr ""
3544
3545 #. type: textblock
3546 #: ../src/guestfs.pod:1784
3547 msgid ""
3548 "As noted above, if the call fails with an error then the final message may "
3549 "not be generated."
3550 msgstr ""
3551
3552 #. type: textblock
3553 #: ../src/guestfs.pod:1789
3554 msgid ""
3555 "The callback also receives the procedure number (C<proc_nr>) and serial "
3556 "number (C<serial>) of the call.  These are only useful for debugging "
3557 "protocol issues, and the callback can normally ignore them.  The callback "
3558 "may want to print these numbers in error messages or debugging messages."
3559 msgstr ""
3560
3561 #. type: textblock
3562 #: ../src/guestfs.pod:1795
3563 msgid "If no callback is registered: progress messages are discarded."
3564 msgstr ""
3565
3566 #. type: =item
3567 #: ../src/guestfs.pod:1797
3568 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3569 msgstr ""
3570
3571 #. type: textblock
3572 #: ../src/guestfs.pod:1800
3573 msgid ""
3574 "The callback function is called whenever a log message is generated by qemu, "
3575 "the appliance kernel, guestfsd (daemon), or utility programs."
3576 msgstr ""
3577
3578 #. type: textblock
3579 #: ../src/guestfs.pod:1803
3580 msgid ""
3581 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3582 "guestfs_launch>) then additional debug messages are generated."
3583 msgstr ""
3584
3585 #. type: textblock
3586 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3587 msgid ""
3588 "If no callback is registered: the messages are discarded unless the verbose "
3589 "flag is set in which case they are sent to stderr.  You can override the "
3590 "printing of verbose messages to stderr by setting up a callback."
3591 msgstr ""
3592
3593 #. type: =item
3594 #: ../src/guestfs.pod:1811
3595 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3596 msgstr ""
3597
3598 #. type: textblock
3599 #: ../src/guestfs.pod:1814
3600 msgid ""
3601 "The callback function is called whenever a log message is generated by the "
3602 "library part of libguestfs."
3603 msgstr ""
3604
3605 #. type: textblock
3606 #: ../src/guestfs.pod:1817
3607 msgid ""
3608 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3609 "messages are generated."
3610 msgstr ""
3611
3612 #. type: =item
3613 #: ../src/guestfs.pod:1825
3614 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3615 msgstr ""
3616
3617 #. type: textblock
3618 #: ../src/guestfs.pod:1828
3619 msgid ""
3620 "The callback function is called whenever a trace message is generated.  This "
3621 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3622 msgstr ""
3623
3624 #. type: textblock
3625 #: ../src/guestfs.pod:1831
3626 msgid ""
3627 "If no callback is registered: the messages are sent to stderr.  You can "
3628 "override the printing of trace messages to stderr by setting up a callback."
3629 msgstr ""
3630
3631 #. type: =head3
3632 #: ../src/guestfs.pod:1837
3633 msgid "guestfs_set_event_callback"
3634 msgstr ""
3635
3636 #. type: verbatim
3637 #: ../src/guestfs.pod:1839
3638 #, no-wrap
3639 msgid ""
3640 " int guestfs_set_event_callback (guestfs_h *g,\n"
3641 "                                 guestfs_event_callback cb,\n"
3642 "                                 uint64_t event_bitmask,\n"
3643 "                                 int flags,\n"
3644 "                                 void *opaque);\n"
3645 "\n"
3646 msgstr ""
3647
3648 #. type: textblock
3649 #: ../src/guestfs.pod:1845
3650 msgid ""
3651 "This function registers a callback (C<cb>) for all event classes in the "
3652 "C<event_bitmask>."
3653 msgstr ""
3654
3655 #. type: textblock
3656 #: ../src/guestfs.pod:1848
3657 msgid ""
3658 "For example, to register for all log message events, you could call this "
3659 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3660 "To register a single callback for all possible classes of events, use "
3661 "C<GUESTFS_EVENT_ALL>."
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1854
3666 msgid "C<flags> should always be passed as 0."
3667 msgstr ""
3668
3669 #. type: textblock
3670 #: ../src/guestfs.pod:1856
3671 msgid ""
3672 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3673 "it for any purpose."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1859
3678 msgid ""
3679 "The return value is the event handle (an integer) which you can use to "
3680 "delete the callback (see below)."
3681 msgstr ""
3682
3683 #. type: textblock
3684 #: ../src/guestfs.pod:1862
3685 msgid ""
3686 "If there is an error, this function returns C<-1>, and sets the error in the "
3687 "handle in the usual way (see L</guestfs_last_error> etc.)"
3688 msgstr ""
3689
3690 #. type: textblock
3691 #: ../src/guestfs.pod:1865
3692 msgid ""
3693 "Callbacks remain in effect until they are deleted, or until the handle is "
3694 "closed."
3695 msgstr ""
3696
3697 #. type: textblock
3698 #: ../src/guestfs.pod:1868
3699 msgid ""
3700 "In the case where multiple callbacks are registered for a particular event "
3701 "class, all of the callbacks are called.  The order in which multiple "
3702 "callbacks are called is not defined."
3703 msgstr ""
3704
3705 #. type: =head3
3706 #: ../src/guestfs.pod:1872
3707 msgid "guestfs_delete_event_callback"
3708 msgstr ""
3709
3710 #. type: verbatim
3711 #: ../src/guestfs.pod:1874
3712 #, no-wrap
3713 msgid ""
3714 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3715 "\n"
3716 msgstr ""
3717
3718 #. type: textblock
3719 #: ../src/guestfs.pod:1876
3720 msgid ""
3721 "Delete a callback that was previously registered.  C<event_handle> should be "
3722 "the integer that was returned by a previous call to "
3723 "C<guestfs_set_event_callback> on the same handle."
3724 msgstr ""
3725
3726 #. type: =head3
3727 #: ../src/guestfs.pod:1880
3728 msgid "guestfs_event_callback"
3729 msgstr ""
3730
3731 #. type: verbatim
3732 #: ../src/guestfs.pod:1882
3733 #, no-wrap
3734 msgid ""
3735 " typedef void (*guestfs_event_callback) (\n"
3736 "                  guestfs_h *g,\n"
3737 "                  void *opaque,\n"
3738 "                  uint64_t event,\n"
3739 "                  int event_handle,\n"
3740 "                  int flags,\n"
3741 "                  const char *buf, size_t buf_len,\n"
3742 "                  const uint64_t *array, size_t array_len);\n"
3743 "\n"
3744 msgstr ""
3745
3746 #. type: textblock
3747 #: ../src/guestfs.pod:1891
3748 msgid ""
3749 "This is the type of the event callback function that you have to provide."
3750 msgstr ""
3751
3752 #. type: textblock
3753 #: ../src/guestfs.pod:1894
3754 msgid ""
3755 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3756 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3757 "handle, and C<flags> which in the current API you should ignore."
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1898
3762 msgid ""
3763 "The remaining parameters contain the event payload (if any).  Each event may "
3764 "contain a payload, which usually relates to the event class, but for future "
3765 "proofing your code should be written to handle any payload for any event "
3766 "class."
3767 msgstr ""
3768
3769 #. type: textblock
3770 #: ../src/guestfs.pod:1903
3771 msgid ""
3772 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3773 "there is no message buffer).  Note that this message buffer can contain "
3774 "arbitrary 8 bit data, including NUL bytes."
3775 msgstr ""
3776
3777 #. type: textblock
3778 #: ../src/guestfs.pod:1907
3779 msgid ""
3780 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3781 "moment this is only used for progress messages."
3782 msgstr ""
3783
3784 #. type: =head3
3785 #: ../src/guestfs.pod:1910
3786 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1912
3791 msgid ""
3792 "One motivation for the generic event API was to allow GUI programs to "
3793 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3794 "unconditionally to C<stderr>."
3795 msgstr ""
3796
3797 #. type: textblock
3798 #: ../src/guestfs.pod:1916
3799 msgid ""
3800 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3801 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3802 "messages are not events; you must capture error messages separately)."
3803 msgstr ""
3804
3805 #. type: textblock
3806 #: ../src/guestfs.pod:1921
3807 msgid ""
3808 "Programs have to set up a callback to capture the classes of events of "
3809 "interest:"
3810 msgstr ""
3811
3812 #. type: verbatim
3813 #: ../src/guestfs.pod:1924
3814 #, no-wrap
3815 msgid ""
3816 " int eh =\n"
3817 "   guestfs_set_event_callback\n"
3818 "     (g, message_callback,\n"
3819 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3820 "      GUESTFS_EVENT_TRACE,\n"
3821 "      0, NULL) == -1)\n"
3822 " if (eh == -1) {\n"
3823 "   // handle error in the usual way\n"
3824 " }\n"
3825 "\n"
3826 msgstr ""
3827
3828 #. type: textblock
3829 #: ../src/guestfs.pod:1934
3830 msgid ""
3831 "The callback can then direct messages to the appropriate place.  In this "
3832 "example, messages are directed to syslog:"
3833 msgstr ""
3834
3835 #. type: verbatim
3836 #: ../src/guestfs.pod:1937
3837 #, no-wrap
3838 msgid ""
3839 " static void\n"
3840 " message_callback (\n"
3841 "         guestfs_h *g,\n"
3842 "         void *opaque,\n"
3843 "         uint64_t event,\n"
3844 "         int event_handle,\n"
3845 "         int flags,\n"
3846 "         const char *buf, size_t buf_len,\n"
3847 "         const uint64_t *array, size_t array_len)\n"
3848 " {\n"
3849 "   const int priority = LOG_USER|LOG_INFO;\n"
3850 "   if (buf_len > 0)\n"
3851 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3852 " }\n"
3853 "\n"
3854 msgstr ""
3855
3856 #. type: =head1
3857 #: ../src/guestfs.pod:1952
3858 msgid "PRIVATE DATA AREA"
3859 msgstr ""
3860
3861 #. type: textblock
3862 #: ../src/guestfs.pod:1954
3863 msgid ""
3864 "You can attach named pieces of private data to the libguestfs handle, fetch "
3865 "them by name, and walk over them, for the lifetime of the handle.  This is "
3866 "called the private data area and is only available from the C API."
3867 msgstr ""
3868
3869 #. type: textblock
3870 #: ../src/guestfs.pod:1959
3871 msgid "To attach a named piece of data, use the following call:"
3872 msgstr ""
3873
3874 #. type: verbatim
3875 #: ../src/guestfs.pod:1961
3876 #, no-wrap
3877 msgid ""
3878 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3879 "\n"
3880 msgstr ""
3881
3882 #. type: textblock
3883 #: ../src/guestfs.pod:1963
3884 msgid ""
3885 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3886 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3887 "overwritten."
3888 msgstr ""
3889
3890 #. type: textblock
3891 #: ../src/guestfs.pod:1967
3892 msgid ""
3893 "You can use any C<key> you want, but your key should I<not> start with an "
3894 "underscore character.  Keys beginning with an underscore character are "
3895 "reserved for internal libguestfs purposes (eg. for implementing language "
3896 "bindings).  It is recommended that you prefix the key with some unique "
3897 "string to avoid collisions with other users."
3898 msgstr ""
3899
3900 #. type: textblock
3901 #: ../src/guestfs.pod:1973
3902 msgid "To retrieve the pointer, use:"
3903 msgstr ""
3904
3905 #. type: verbatim
3906 #: ../src/guestfs.pod:1975
3907 #, no-wrap
3908 msgid ""
3909 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3910 "\n"
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:1977
3915 msgid ""
3916 "This function returns C<NULL> if either no data is found associated with "
3917 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3918 "C<NULL>."
3919 msgstr ""
3920
3921 #. type: textblock
3922 #: ../src/guestfs.pod:1981
3923 msgid ""
3924 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3925 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3926 "all.  In particular, libguestfs does I<not> try to free the data when the "
3927 "handle is closed.  If the data must be freed, then the caller must either "
3928 "free it before calling L</guestfs_close> or must set up a close callback to "
3929 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3930 msgstr ""
3931
3932 #. type: textblock
3933 #: ../src/guestfs.pod:1988
3934 msgid "To walk over all entries, use these two functions:"
3935 msgstr ""
3936
3937 #. type: verbatim
3938 #: ../src/guestfs.pod:1990
3939 #, no-wrap
3940 msgid ""
3941 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3942 "\n"
3943 msgstr ""
3944
3945 #. type: verbatim
3946 #: ../src/guestfs.pod:1992
3947 #, no-wrap
3948 msgid ""
3949 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3950 "\n"
3951 msgstr ""
3952
3953 #. type: textblock
3954 #: ../src/guestfs.pod:1994
3955 msgid ""
3956 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3957 "not have any particular meaning -- keys are not returned in any defined "
3958 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3959 "corresponding data pointer is returned from the function.  C<NULL> is "
3960 "returned if there are no keys stored in the handle."
3961 msgstr ""
3962
3963 #. type: textblock
3964 #: ../src/guestfs.pod:2000
3965 msgid ""
3966 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3967 "value of this function is also C<NULL> is there are no further entries to "
3968 "return."
3969 msgstr ""
3970
3971 #. type: textblock
3972 #: ../src/guestfs.pod:2004
3973 msgid "Notes about walking over entries:"
3974 msgstr ""
3975
3976 #. type: textblock
3977 #: ../src/guestfs.pod:2010
3978 msgid ""
3979 "You must not call C<guestfs_set_private> while walking over the entries."
3980 msgstr ""
3981
3982 #. type: textblock
3983 #: ../src/guestfs.pod:2015
3984 msgid ""
3985 "The handle maintains an internal iterator which is reset when you call "
3986 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3987 "call C<guestfs_set_private>."
3988 msgstr ""
3989
3990 #. type: textblock
3991 #: ../src/guestfs.pod:2021
3992 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3993 msgstr ""
3994
3995 #. type: verbatim
3996 #: ../src/guestfs.pod:2023
3997 #, no-wrap
3998 msgid ""
3999 " guestfs_set_private (g, key, NULL);\n"
4000 "\n"
4001 msgstr ""
4002
4003 #. type: textblock
4004 #: ../src/guestfs.pod:2025
4005 msgid "then that C<key> is not returned when walking."
4006 msgstr ""
4007
4008 #. type: textblock
4009 #: ../src/guestfs.pod:2029
4010 msgid ""
4011 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4012 "C<guestfs_next_private> or C<guestfs_set_private>."
4013 msgstr ""
4014
4015 #. type: textblock
4016 #: ../src/guestfs.pod:2035
4017 msgid ""
4018 "The following example code shows how to print all keys and data pointers "
4019 "that are associated with the handle C<g>:"
4020 msgstr ""
4021
4022 #. type: verbatim
4023 #: ../src/guestfs.pod:2038
4024 #, no-wrap
4025 msgid ""
4026 " const char *key;\n"
4027 " void *data = guestfs_first_private (g, &key);\n"
4028 " while (data != NULL)\n"
4029 "   {\n"
4030 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4031 "     data = guestfs_next_private (g, &key);\n"
4032 "   }\n"
4033 "\n"
4034 msgstr ""
4035
4036 #. type: textblock
4037 #: ../src/guestfs.pod:2046
4038 msgid ""
4039 "More commonly you are only interested in keys that begin with an application-"
4040 "specific prefix C<foo_>.  Modify the loop like so:"
4041 msgstr ""
4042
4043 #. type: verbatim
4044 #: ../src/guestfs.pod:2049
4045 #, no-wrap
4046 msgid ""
4047 " const char *key;\n"
4048 " void *data = guestfs_first_private (g, &key);\n"
4049 " while (data != NULL)\n"
4050 "   {\n"
4051 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4052 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4053 "     data = guestfs_next_private (g, &key);\n"
4054 "   }\n"
4055 "\n"
4056 msgstr ""
4057
4058 #. type: textblock
4059 #: ../src/guestfs.pod:2058
4060 msgid ""
4061 "If you need to modify keys while walking, then you have to jump back to the "
4062 "beginning of the loop.  For example, to delete all keys prefixed with "
4063 "C<foo_>:"
4064 msgstr ""
4065
4066 #. type: verbatim
4067 #: ../src/guestfs.pod:2062
4068 #, no-wrap
4069 msgid ""
4070 "  const char *key;\n"
4071 "  void *data;\n"
4072 " again:\n"
4073 "  data = guestfs_first_private (g, &key);\n"
4074 "  while (data != NULL)\n"
4075 "    {\n"
4076 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4077 "        {\n"
4078 "          guestfs_set_private (g, key, NULL);\n"
4079 "          /* note that 'key' pointer is now invalid, and so is\n"
4080 "             the internal iterator */\n"
4081 "          goto again;\n"
4082 "        }\n"
4083 "      data = guestfs_next_private (g, &key);\n"
4084 "    }\n"
4085 "\n"
4086 msgstr ""
4087
4088 #. type: textblock
4089 #: ../src/guestfs.pod:2078
4090 msgid ""
4091 "Note that the above loop is guaranteed to terminate because the keys are "
4092 "being deleted, but other manipulations of keys within the loop might not "
4093 "terminate unless you also maintain an indication of which keys have been "
4094 "visited."
4095 msgstr ""
4096
4097 #. type: =end
4098 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
4099 msgid "html"
4100 msgstr "html"
4101
4102 #. type: textblock
4103 #: ../src/guestfs.pod:2085
4104 msgid ""
4105 "<!-- old anchor for the next section --> <a name="
4106 "\"state_machine_and_low_level_event_api\"/>"
4107 msgstr ""
4108 "<!-- old anchor for the next section --> <a name="
4109 "\"state_machine_and_low_level_event_api\"/>"
4110
4111 #. type: =head1
4112 #: ../src/guestfs.pod:2090
4113 msgid "ARCHITECTURE"
4114 msgstr "АРХІТЕКТУРА"
4115
4116 #. type: textblock
4117 #: ../src/guestfs.pod:2092
4118 msgid ""
4119 "Internally, libguestfs is implemented by running an appliance (a special "
4120 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4121 "process of the main program."
4122 msgstr ""
4123
4124 #. type: verbatim
4125 #: ../src/guestfs.pod:2096
4126 #, no-wrap
4127 msgid ""
4128 "  ___________________\n"
4129 " /                   \\\n"
4130 " | main program      |\n"
4131 " |                   |\n"
4132 " |                   |           child process / appliance\n"
4133 " |                   |           __________________________\n"
4134 " |                   |          / qemu                     \\\n"
4135 " +-------------------+   RPC    |      +-----------------+ |\n"
4136 " | libguestfs     <--------------------> guestfsd        | |\n"
4137 " |                   |          |      +-----------------+ |\n"
4138 " \\___________________/          |      | Linux kernel    | |\n"
4139 "                                |      +--^--------------+ |\n"
4140 "                                \\_________|________________/\n"
4141 "                                          |\n"
4142 "                                   _______v______\n"
4143 "                                  /              \\\n"
4144 "                                  | Device or    |\n"
4145 "                                  | disk image   |\n"
4146 "                                  \\______________/\n"
4147 "\n"
4148 msgstr ""
4149
4150 #. type: textblock
4151 #: ../src/guestfs.pod:2116
4152 msgid ""
4153 "The library, linked to the main program, creates the child process and hence "
4154 "the appliance in the L</guestfs_launch> function."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2119
4159 msgid ""
4160 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4161 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4162 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4163 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4164 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4165 "attached to the qemu process which translates device access by the "
4166 "appliance's Linux kernel into accesses to the image."
4167 msgstr ""
4168
4169 #. type: textblock
4170 #: ../src/guestfs.pod:2128
4171 msgid ""
4172 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4173 "Although the disk image you are attached to might also be used by some "
4174 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4175 "care if both libguestfs's qemu process and your virtual machine are trying "
4176 "to update the disk image at the same time, since these usually results in "
4177 "massive disk corruption)."
4178 msgstr ""
4179
4180 #. type: =head1
4181 #: ../src/guestfs.pod:2135
4182 msgid "STATE MACHINE"
4183 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4184
4185 #. type: textblock
4186 #: ../src/guestfs.pod:2137
4187 msgid "libguestfs uses a state machine to model the child process:"
4188 msgstr ""
4189
4190 #. type: verbatim
4191 #: ../src/guestfs.pod:2139
4192 #, no-wrap
4193 msgid ""
4194 "                         |\n"
4195 "                    guestfs_create\n"
4196 "                         |\n"
4197 "                         |\n"
4198 "                     ____V_____\n"
4199 "                    /          \\\n"
4200 "                    |  CONFIG  |\n"
4201 "                    \\__________/\n"
4202 "                     ^ ^   ^  \\\n"
4203 "                    /  |    \\  \\ guestfs_launch\n"
4204 "                   /   |    _\\__V______\n"
4205 "                  /    |   /           \\\n"
4206 "                 /     |   | LAUNCHING |\n"
4207 "                /      |   \\___________/\n"
4208 "               /       |       /\n"
4209 "              /        |  guestfs_launch\n"
4210 "             /         |     /\n"
4211 "    ______  /        __|____V\n"
4212 "   /      \\ ------> /        \\\n"
4213 "   | BUSY |         | READY  |\n"
4214 "   \\______/ <------ \\________/\n"
4215 "\n"
4216 msgstr ""
4217
4218 #. type: textblock
4219 #: ../src/guestfs.pod:2161
4220 msgid ""
4221 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4222 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4223 "(3) alternating between READY and BUSY as commands are issued to, and "
4224 "carried out by, the child process."
4225 msgstr ""
4226
4227 #. type: textblock
4228 #: ../src/guestfs.pod:2166
4229 msgid ""
4230 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4231 "asynchronously at any time (eg. due to some internal error), and that causes "
4232 "the state to transition back to CONFIG."
4233 msgstr ""
4234
4235 #. type: textblock
4236 #: ../src/guestfs.pod:2170
4237 msgid ""
4238 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4239 "issued when in the CONFIG state."
4240 msgstr ""
4241
4242 #. type: textblock
4243 #: ../src/guestfs.pod:2173
4244 msgid ""
4245 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4246 "L</guestfs_launch> blocks until the child process is READY to accept "
4247 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4248 "moves the state from CONFIG to LAUNCHING while it is running."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2179
4253 msgid ""
4254 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4255 "state.  These API calls block waiting for the command to be carried out (ie. "
4256 "the state to transition to BUSY and then back to READY).  There are no non-"
4257 "blocking versions, and no way to issue more than one command per handle at "
4258 "the same time."
4259 msgstr ""
4260
4261 #. type: textblock
4262 #: ../src/guestfs.pod:2185
4263 msgid ""
4264 "Finally, the child process sends asynchronous messages back to the main "
4265 "program, such as kernel log messages.  You can register a callback to "
4266 "receive these messages."
4267 msgstr ""
4268
4269 #. type: =head1
4270 #: ../src/guestfs.pod:2189
4271 msgid "INTERNALS"
4272 msgstr ""
4273
4274 #. type: =head2
4275 #: ../src/guestfs.pod:2191
4276 msgid "COMMUNICATION PROTOCOL"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2193
4281 msgid ""
4282 "Don't rely on using this protocol directly.  This section documents how it "
4283 "currently works, but it may change at any time."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2196
4288 msgid ""
4289 "The protocol used to talk between the library and the daemon running inside "
4290 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4291 "1014, RFC 1832, RFC 4506)."
4292 msgstr ""
4293
4294 #. type: textblock
4295 #: ../src/guestfs.pod:2200
4296 msgid ""
4297 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4298 "this file is automatically generated)."
4299 msgstr ""
4300
4301 #. type: textblock
4302 #: ../src/guestfs.pod:2203
4303 msgid ""
4304 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4305 "and C<FileOut> parameters, which are handled with very simple request/reply "
4306 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4307 "parameters, which use the same request and reply messages, but they may also "
4308 "be followed by files sent using a chunked encoding."
4309 msgstr ""
4310
4311 #. type: =head3
4312 #: ../src/guestfs.pod:2210
4313 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4314 msgstr ""
4315
4316 #. type: textblock
4317 #: ../src/guestfs.pod:2212
4318 msgid "For ordinary functions, the request message is:"
4319 msgstr ""
4320
4321 #. type: verbatim
4322 #: ../src/guestfs.pod:2214
4323 #, no-wrap
4324 msgid ""
4325 " total length (header + arguments,\n"
4326 "      but not including the length word itself)\n"
4327 " struct guestfs_message_header (encoded as XDR)\n"
4328 " struct guestfs_<foo>_args (encoded as XDR)\n"
4329 "\n"
4330 msgstr ""
4331
4332 #. type: textblock
4333 #: ../src/guestfs.pod:2219
4334 msgid ""
4335 "The total length field allows the daemon to allocate a fixed size buffer "
4336 "into which it slurps the rest of the message.  As a result, the total length "
4337 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4338 "effective size of any request is limited to somewhere under this size."
4339 msgstr ""
4340
4341 #. type: textblock
4342 #: ../src/guestfs.pod:2225
4343 msgid ""
4344 "Note also that many functions don't take any arguments, in which case the "
4345 "C<guestfs_I<foo>_args> is completely omitted."
4346 msgstr ""
4347
4348 #. type: textblock
4349 #: ../src/guestfs.pod:2228
4350 msgid ""
4351 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4352 "receiver knows what type of args structure to expect, or none at all."
4353 msgstr ""
4354
4355 #. type: textblock
4356 #: ../src/guestfs.pod:2232
4357 msgid ""
4358 "For functions that take optional arguments, the optional arguments are "
4359 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4360 "arguments.  A bitmask in the header indicates which optional arguments are "
4361 "meaningful.  The bitmask is also checked to see if it contains bits set "
4362 "which the daemon does not know about (eg. if more optional arguments were "
4363 "added in a later version of the library), and this causes the call to be "
4364 "rejected."
4365 msgstr ""
4366
4367 #. type: textblock
4368 #: ../src/guestfs.pod:2240
4369 msgid "The reply message for ordinary functions is:"
4370 msgstr ""
4371
4372 #. type: verbatim
4373 #: ../src/guestfs.pod:2242
4374 #, no-wrap
4375 msgid ""
4376 " total length (header + ret,\n"
4377 "      but not including the length word itself)\n"
4378 " struct guestfs_message_header (encoded as XDR)\n"
4379 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4380 "\n"
4381 msgstr ""
4382
4383 #. type: textblock
4384 #: ../src/guestfs.pod:2247
4385 msgid ""
4386 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4387 "functions that return no formal return values."
4388 msgstr ""
4389
4390 #. type: textblock
4391 #: ../src/guestfs.pod:2250
4392 msgid ""
4393 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4394 msgstr ""
4395
4396 #. type: textblock
4397 #: ../src/guestfs.pod:2253
4398 msgid ""
4399 "In the case of an error, a flag is set in the header, and the reply message "
4400 "is slightly changed:"
4401 msgstr ""
4402
4403 #. type: verbatim
4404 #: ../src/guestfs.pod:2256
4405 #, no-wrap
4406 msgid ""
4407 " total length (header + error,\n"
4408 "      but not including the length word itself)\n"
4409 " struct guestfs_message_header (encoded as XDR)\n"
4410 " struct guestfs_message_error (encoded as XDR)\n"
4411 "\n"
4412 msgstr ""
4413
4414 #. type: textblock
4415 #: ../src/guestfs.pod:2261
4416 msgid ""
4417 "The C<guestfs_message_error> structure contains the error message as a "
4418 "string."
4419 msgstr ""
4420
4421 #. type: =head3
4422 #: ../src/guestfs.pod:2264
4423 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4424 msgstr ""
4425
4426 #. type: textblock
4427 #: ../src/guestfs.pod:2266
4428 msgid ""
4429 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4430 "The normal request message is sent (see above).  However this is followed by "
4431 "a sequence of file chunks."
4432 msgstr ""
4433
4434 #. type: verbatim
4435 #: ../src/guestfs.pod:2270
4436 #, no-wrap
4437 msgid ""
4438 " total length (header + arguments,\n"
4439 "      but not including the length word itself,\n"
4440 "      and not including the chunks)\n"
4441 " struct guestfs_message_header (encoded as XDR)\n"
4442 " struct guestfs_<foo>_args (encoded as XDR)\n"
4443 " sequence of chunks for FileIn param #0\n"
4444 " sequence of chunks for FileIn param #1 etc.\n"
4445 "\n"
4446 msgstr ""
4447
4448 #. type: textblock
4449 #: ../src/guestfs.pod:2278
4450 msgid "The \"sequence of chunks\" is:"
4451 msgstr ""
4452
4453 #. type: verbatim
4454 #: ../src/guestfs.pod:2280
4455 #, no-wrap
4456 msgid ""
4457 " length of chunk (not including length word itself)\n"
4458 " struct guestfs_chunk (encoded as XDR)\n"
4459 " length of chunk\n"
4460 " struct guestfs_chunk (encoded as XDR)\n"
4461 "   ...\n"
4462 " length of chunk\n"
4463 " struct guestfs_chunk (with data.data_len == 0)\n"
4464 "\n"
4465 msgstr ""
4466
4467 #. type: textblock
4468 #: ../src/guestfs.pod:2288
4469 msgid ""
4470 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4471 "is set in the final chunk to indicate either successful completion or early "
4472 "cancellation."
4473 msgstr ""
4474
4475 #. type: textblock
4476 #: ../src/guestfs.pod:2292
4477 msgid ""
4478 "At time of writing there are no functions that have more than one FileIn "
4479 "parameter.  However this is (theoretically) supported, by sending the "
4480 "sequence of chunks for each FileIn parameter one after another (from left to "
4481 "right)."
4482 msgstr ""
4483
4484 #. type: textblock
4485 #: ../src/guestfs.pod:2297
4486 msgid ""
4487 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4488 "transfer.  The library does this by sending a chunk with a special flag set "
4489 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4490 "RPC, does I<not> send any reply, and goes back to reading the next request."
4491 msgstr ""
4492
4493 #. type: textblock
4494 #: ../src/guestfs.pod:2303
4495 msgid ""
4496 "The daemon may also cancel.  It does this by writing a special word "
4497 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4498 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4499 "cancel chunk).  The special word is chosen so that even if cancellation "
4500 "happens right at the end of the transfer (after the library has finished "
4501 "writing and has started listening for the reply), the \"spurious\" cancel "
4502 "flag will not be confused with the reply message."
4503 msgstr ""
4504
4505 #. type: textblock
4506 #: ../src/guestfs.pod:2312
4507 msgid ""
4508 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4509 "limit), and also files where the size is not known in advance (eg. from "
4510 "pipes or sockets).  However the chunks are rather small "
4511 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4512 "to keep much in memory."
4513 msgstr ""
4514
4515 #. type: =head3
4516 #: ../src/guestfs.pod:2318
4517 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4518 msgstr ""
4519
4520 #. type: textblock
4521 #: ../src/guestfs.pod:2320
4522 msgid ""
4523 "The protocol for FileOut parameters is exactly the same as for FileIn "
4524 "parameters, but with the roles of daemon and library reversed."
4525 msgstr ""
4526
4527 #. type: verbatim
4528 #: ../src/guestfs.pod:2323
4529 #, no-wrap
4530 msgid ""
4531 " total length (header + ret,\n"
4532 "      but not including the length word itself,\n"
4533 "      and not including the chunks)\n"
4534 " struct guestfs_message_header (encoded as XDR)\n"
4535 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4536 " sequence of chunks for FileOut param #0\n"
4537 " sequence of chunks for FileOut param #1 etc.\n"
4538 "\n"
4539 msgstr ""
4540
4541 #. type: =head3
4542 #: ../src/guestfs.pod:2331
4543 msgid "INITIAL MESSAGE"
4544 msgstr ""
4545
4546 #. type: textblock
4547 #: ../src/guestfs.pod:2333
4548 msgid ""
4549 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4550 "which indicates that the guest and daemon is alive.  This is what L</"
4551 "guestfs_launch> waits for."
4552 msgstr ""
4553
4554 #. type: =head3
4555 #: ../src/guestfs.pod:2337
4556 msgid "PROGRESS NOTIFICATION MESSAGES"
4557 msgstr ""
4558
4559 #. type: textblock
4560 #: ../src/guestfs.pod:2339
4561 msgid ""
4562 "The daemon may send progress notification messages at any time.  These are "
4563 "distinguished by the normal length word being replaced by "
4564 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4565 msgstr ""
4566
4567 #. type: textblock
4568 #: ../src/guestfs.pod:2343
4569 msgid ""
4570 "The library turns them into progress callbacks (see L</"
4571 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4572 "if not."
4573 msgstr ""
4574
4575 #. type: textblock
4576 #: ../src/guestfs.pod:2347
4577 msgid ""
4578 "The daemon self-limits the frequency of progress messages it sends (see "
4579 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4580 "messages."
4581 msgstr ""
4582
4583 #. type: =head1
4584 #: ../src/guestfs.pod:2351
4585 msgid "LIBGUESTFS VERSION NUMBERS"
4586 msgstr ""
4587
4588 #. type: textblock
4589 #: ../src/guestfs.pod:2353
4590 msgid ""
4591 "Since April 2010, libguestfs has started to make separate development and "
4592 "stable releases, along with corresponding branches in our git repository.  "
4593 "These separate releases can be identified by version number:"
4594 msgstr ""
4595
4596 #. type: verbatim
4597 #: ../src/guestfs.pod:2358
4598 #, no-wrap
4599 msgid ""
4600 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4601 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4602 "       |\n"
4603 "       v\n"
4604 " 1  .  3  .  5\n"
4605 " ^           ^\n"
4606 " |           |\n"
4607 " |           `-------- sub-version\n"
4608 " |\n"
4609 " `------ always '1' because we don't change the ABI\n"
4610 "\n"
4611 msgstr ""
4612
4613 #. type: textblock
4614 #: ../src/guestfs.pod:2369
4615 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4616 msgstr ""
4617
4618 #. type: textblock
4619 #: ../src/guestfs.pod:2371
4620 msgid ""
4621 "As time passes we cherry pick fixes from the development branch and backport "
4622 "those into the stable branch, the effect being that the stable branch should "
4623 "get more stable and less buggy over time.  So the stable releases are ideal "
4624 "for people who don't need new features but would just like the software to "
4625 "work."
4626 msgstr ""
4627
4628 #. type: textblock
4629 #: ../src/guestfs.pod:2377
4630 msgid "Our criteria for backporting changes are:"
4631 msgstr ""
4632
4633 #. type: textblock
4634 #: ../src/guestfs.pod:2383
4635 msgid ""
4636 "Documentation changes which don't affect any code are backported unless the "
4637 "documentation refers to a future feature which is not in stable."
4638 msgstr ""
4639
4640 #. type: textblock
4641 #: ../src/guestfs.pod:2389
4642 msgid ""
4643 "Bug fixes which are not controversial, fix obvious problems, and have been "
4644 "well tested are backported."
4645 msgstr ""
4646
4647 #. type: textblock
4648 #: ../src/guestfs.pod:2394
4649 msgid ""
4650 "Simple rearrangements of code which shouldn't affect how it works get "
4651 "backported.  This is so that the code in the two branches doesn't get too "
4652 "far out of step, allowing us to backport future fixes more easily."
4653 msgstr ""
4654
4655 #. type: textblock
4656 #: ../src/guestfs.pod:2400
4657 msgid ""
4658 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4659 "exceptional case: the new feature is required in order to implement an "
4660 "important bug fix."
4661 msgstr ""
4662
4663 #. type: textblock
4664 #: ../src/guestfs.pod:2406
4665 msgid ""
4666 "A new stable branch starts when we think the new features in development are "
4667 "substantial and compelling enough over the current stable branch to warrant "
4668 "it.  When that happens we create new stable and development versions 1.N.0 "
4669 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4670 "stable at this point, but by backporting fixes from development, that branch "
4671 "will stabilize over time."
4672 msgstr ""
4673
4674 #. type: =head1
4675 #: ../src/guestfs.pod:2414
4676 msgid "EXTENDING LIBGUESTFS"
4677 msgstr ""
4678
4679 #. type: =head2
4680 #: ../src/guestfs.pod:2416
4681 msgid "ADDING A NEW API ACTION"
4682 msgstr ""
4683
4684 #. type: textblock
4685 #: ../src/guestfs.pod:2418
4686 msgid ""
4687 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4688 "documentation) are generated, and this makes it easy to extend the "
4689 "libguestfs API."
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2422
4694 msgid "To add a new API action there are two changes:"
4695 msgstr ""
4696
4697 #. type: textblock
4698 #: ../src/guestfs.pod:2428
4699 msgid ""
4700 "You need to add a description of the call (name, parameters, return type, "
4701 "tests, documentation) to C<generator/generator_actions.ml>."
4702 msgstr ""
4703
4704 #. type: textblock
4705 #: ../src/guestfs.pod:2431
4706 msgid ""
4707 "There are two sorts of API action, depending on whether the call goes "
4708 "through to the daemon in the appliance, or is serviced entirely by the "
4709 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4710 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4711 "an example of the latter, since a trace flag is maintained in the handle and "
4712 "all tracing is done on the library side."
4713 msgstr ""
4714
4715 #. type: textblock
4716 #: ../src/guestfs.pod:2439
4717 msgid ""
4718 "Most new actions are of the first type, and get added to the "
4719 "C<daemon_functions> list.  Each function has a unique procedure number used "
4720 "in the RPC protocol which is assigned to that action when we publish "
4721 "libguestfs and cannot be reused.  Take the latest procedure number and "
4722 "increment it."
4723 msgstr ""
4724
4725 #. type: textblock
4726 #: ../src/guestfs.pod:2445
4727 msgid ""
4728 "For library-only actions of the second type, add to the "
4729 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4730 "library and do not travel over the RPC mechanism to the daemon, these "
4731 "functions do not need a procedure number, and so the procedure number is set "
4732 "to C<-1>."
4733 msgstr ""
4734
4735 #. type: textblock
4736 #: ../src/guestfs.pod:2453
4737 msgid "Implement the action (in C):"
4738 msgstr ""
4739
4740 #. type: textblock
4741 #: ../src/guestfs.pod:2455
4742 msgid ""
4743 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4744 "C<daemon/> directory."
4745 msgstr ""
4746
4747 #. type: textblock
4748 #: ../src/guestfs.pod:2458
4749 msgid ""
4750 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4751 "(note: double underscore) in the C<src/> directory."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2461
4756 msgid "In either case, use another function as an example of what to do."
4757 msgstr ""
4758
4759 #. type: textblock
4760 #: ../src/guestfs.pod:2465
4761 msgid "After making these changes, use C<make> to compile."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2467
4766 msgid ""
4767 "Note that you don't need to implement the RPC, language bindings, manual "
4768 "pages or anything else.  It's all automatically generated from the OCaml "
4769 "description."
4770 msgstr ""
4771
4772 #. type: =head2
4773 #: ../src/guestfs.pod:2471
4774 msgid "ADDING TESTS FOR AN API ACTION"
4775 msgstr ""
4776
4777 #. type: textblock
4778 #: ../src/guestfs.pod:2473
4779 msgid ""
4780 "You can supply zero or as many tests as you want per API call.  The tests "
4781 "can either be added as part of the API description (C<generator/"
4782 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4783 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4784 "slower, so if possible use the first method."
4785 msgstr ""
4786
4787 #. type: textblock
4788 #: ../src/guestfs.pod:2479
4789 msgid ""
4790 "The following describes the test environment used when you add an API test "
4791 "in C<generator_actions.ml>."
4792 msgstr ""
4793
4794 #. type: textblock
4795 #: ../src/guestfs.pod:2482
4796 msgid "The test environment has 4 block devices:"
4797 msgstr ""
4798
4799 #. type: =item
4800 #: ../src/guestfs.pod:2486
4801 msgid "C</dev/sda> 500MB"
4802 msgstr ""
4803
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2488
4806 msgid "General block device for testing."
4807 msgstr ""
4808
4809 #. type: =item
4810 #: ../src/guestfs.pod:2490
4811 msgid "C</dev/sdb> 50MB"
4812 msgstr ""
4813
4814 #. type: textblock
4815 #: ../src/guestfs.pod:2492
4816 msgid ""
4817 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4818 "operations."
4819 msgstr ""
4820
4821 #. type: =item
4822 #: ../src/guestfs.pod:2495
4823 msgid "C</dev/sdc> 10MB"
4824 msgstr ""
4825
4826 #. type: textblock
4827 #: ../src/guestfs.pod:2497
4828 msgid "Used in a few tests where two block devices are needed."
4829 msgstr ""
4830
4831 #. type: =item
4832 #: ../src/guestfs.pod:2499
4833 msgid "C</dev/sdd>"
4834 msgstr "C</dev/sdd>"
4835
4836 #. type: textblock
4837 #: ../src/guestfs.pod:2501
4838 msgid "ISO with fixed content (see C<images/test.iso>)."
4839 msgstr ""
4840
4841 #. type: textblock
4842 #: ../src/guestfs.pod:2505
4843 msgid ""
4844 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4845 "appliance and block devices are reused between tests.  So don't try testing "
4846 "L</guestfs_kill_subprocess> :-x"
4847 msgstr ""
4848
4849 #. type: textblock
4850 #: ../src/guestfs.pod:2509
4851 msgid ""
4852 "Each test starts with an initial scenario, selected using one of the "
4853 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4854 "initialize the disks mentioned above in a particular way as documented in "
4855 "C<generator_types.ml>.  You should not assume anything about the previous "
4856 "contents of other disks that are not initialized."
4857 msgstr ""
4858
4859 #. type: textblock
4860 #: ../src/guestfs.pod:2515
4861 msgid ""
4862 "You can add a prerequisite clause to any individual test.  This is a run-"
4863 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4864 "testing a command which might not work on all variations of libguestfs "
4865 "builds.  A test that has prerequisite of C<Always> means to run "
4866 "unconditionally."
4867 msgstr ""
4868
4869 #. type: textblock
4870 #: ../src/guestfs.pod:2521
4871 msgid ""
4872 "In addition, packagers can skip individual tests by setting environment "
4873 "variables before running C<make check>."
4874 msgstr ""
4875
4876 #. type: verbatim
4877 #: ../src/guestfs.pod:2524
4878 #, no-wrap
4879 msgid ""
4880 " SKIP_TEST_<CMD>_<NUM>=1\n"
4881 "\n"
4882 msgstr ""
4883
4884 #. type: textblock
4885 #: ../src/guestfs.pod:2526
4886 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4887 msgstr ""
4888
4889 #. type: textblock
4890 #: ../src/guestfs.pod:2528
4891 msgid "or:"
4892 msgstr "або:"
4893
4894 #. type: verbatim
4895 #: ../src/guestfs.pod:2530
4896 #, no-wrap
4897 msgid ""
4898 " SKIP_TEST_<CMD>=1\n"
4899 "\n"
4900 msgstr ""
4901
4902 #. type: textblock
4903 #: ../src/guestfs.pod:2532
4904 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4905 msgstr ""
4906
4907 #. type: textblock
4908 #: ../src/guestfs.pod:2534
4909 msgid "Packagers can run only certain tests by setting for example:"
4910 msgstr ""
4911
4912 #. type: verbatim
4913 #: ../src/guestfs.pod:2536
4914 #, no-wrap
4915 msgid ""
4916 " TEST_ONLY=\"vfs_type zerofree\"\n"
4917 "\n"
4918 msgstr ""
4919
4920 #. type: textblock
4921 #: ../src/guestfs.pod:2538
4922 msgid ""
4923 "See C<capitests/tests.c> for more details of how these environment variables "
4924 "work."
4925 msgstr ""
4926
4927 #. type: =head2
4928 #: ../src/guestfs.pod:2541
4929 msgid "DEBUGGING NEW API ACTIONS"
4930 msgstr ""
4931
4932 #. type: textblock
4933 #: ../src/guestfs.pod:2543
4934 msgid "Test new actions work before submitting them."
4935 msgstr ""
4936
4937 #. type: textblock
4938 #: ../src/guestfs.pod:2545
4939 msgid "You can use guestfish to try out new commands."
4940 msgstr ""
4941
4942 #. type: textblock
4943 #: ../src/guestfs.pod:2547
4944 msgid ""
4945 "Debugging the daemon is a problem because it runs inside a minimal "
4946 "environment.  However you can fprintf messages in the daemon to stderr, and "
4947 "they will show up if you use C<guestfish -v>."
4948 msgstr ""
4949
4950 #. type: =head2
4951 #: ../src/guestfs.pod:2551
4952 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4953 msgstr ""
4954
4955 #. type: textblock
4956 #: ../src/guestfs.pod:2553
4957 msgid ""
4958 "Our C source code generally adheres to some basic code-formatting "
4959 "conventions.  The existing code base is not totally consistent on this "
4960 "front, but we do prefer that contributed code be formatted similarly.  In "
4961 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4962 "indentation level, and other than that, follow the K&R style."
4963 msgstr ""
4964
4965 #. type: textblock
4966 #: ../src/guestfs.pod:2559
4967 msgid ""
4968 "If you use Emacs, add the following to one of one of your start-up files (e."
4969 "g., ~/.emacs), to help ensure that you get indentation right:"
4970 msgstr ""
4971
4972 #. type: verbatim
4973 #: ../src/guestfs.pod:2562
4974 #, no-wrap
4975 msgid ""
4976 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4977 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4978 " (add-hook 'find-file-hook\n"
4979 "     '(lambda () (if (and buffer-file-name\n"
4980 "                          (string-match \"/libguestfs\\\\>\"\n"
4981 "                              (buffer-file-name))\n"
4982 "                          (not (string-equal mode-name \"Change Log\"))\n"
4983 "                          (not (string-equal mode-name \"Makefile\")))\n"
4984 "                     (setq indent-tabs-mode nil))))\n"
4985 " \n"
4986 msgstr ""
4987
4988 #. type: verbatim
4989 #: ../src/guestfs.pod:2572
4990 #, no-wrap
4991 msgid ""
4992 " ;;; When editing C sources in libguestfs, use this style.\n"
4993 " (defun libguestfs-c-mode ()\n"
4994 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4995 "   (interactive)\n"
4996 "   (c-set-style \"K&R\")\n"
4997 "   (setq c-indent-level 2)\n"
4998 "   (setq c-basic-offset 2))\n"
4999 " (add-hook 'c-mode-hook\n"
5000 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5001 "                               (buffer-file-name))\n"
5002 "                           (libguestfs-c-mode))))\n"
5003 "\n"
5004 msgstr ""
5005
5006 #. type: textblock
5007 #: ../src/guestfs.pod:2584
5008 msgid "Enable warnings when compiling (and fix any problems this finds):"
5009 msgstr ""
5010
5011 #. type: verbatim
5012 #: ../src/guestfs.pod:2587
5013 #, no-wrap
5014 msgid ""
5015 " ./configure --enable-gcc-warnings\n"
5016 "\n"
5017 msgstr ""
5018
5019 #. type: textblock
5020 #: ../src/guestfs.pod:2589
5021 msgid "Useful targets are:"
5022 msgstr ""
5023
5024 #. type: verbatim
5025 #: ../src/guestfs.pod:2591
5026 #, no-wrap
5027 msgid ""
5028 " make syntax-check  # checks the syntax of the C code\n"
5029 " make check         # runs the test suite\n"
5030 "\n"
5031 msgstr ""
5032
5033 #. type: =head2
5034 #: ../src/guestfs.pod:2594
5035 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5036 msgstr ""
5037
5038 #. type: textblock
5039 #: ../src/guestfs.pod:2596
5040 msgid ""
5041 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5042 "which are used to do shell quoting."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2601
5047 msgid "%Q"
5048 msgstr "%Q"
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2603
5052 msgid ""
5053 "Simple shell quoted string.  Any spaces or other shell characters are "
5054 "escaped for you."
5055 msgstr ""
5056
5057 #. type: =item
5058 #: ../src/guestfs.pod:2606
5059 msgid "%R"
5060 msgstr "%R"
5061
5062 #. type: textblock
5063 #: ../src/guestfs.pod:2608
5064 msgid ""
5065 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5066 "the sysroot."
5067 msgstr ""
5068
5069 #. type: textblock
5070 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
5071 msgid "For example:"
5072 msgstr "Приклад:"
5073
5074 #. type: verbatim
5075 #: ../src/guestfs.pod:2615
5076 #, no-wrap
5077 msgid ""
5078 " asprintf (&cmd, \"cat %R\", path);\n"
5079 "\n"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2617
5084 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5085 msgstr ""
5086
5087 #. type: textblock
5088 #: ../src/guestfs.pod:2619
5089 msgid ""
5090 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5091 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5092 "they are not passed via the shell (instead, straight to exec).  You probably "
5093 "want to use the C<sysroot_path()> function however."
5094 msgstr ""
5095
5096 #. type: =head2
5097 #: ../src/guestfs.pod:2625
5098 msgid "SUBMITTING YOUR NEW API ACTIONS"
5099 msgstr ""
5100
5101 #. type: textblock
5102 #: ../src/guestfs.pod:2627
5103 msgid ""
5104 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5105 "libguestfs> and CC to L<rjones@redhat.com>."
5106 msgstr ""
5107
5108 #. type: =head2
5109 #: ../src/guestfs.pod:2631
5110 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5111 msgstr ""
5112
5113 #. type: textblock
5114 #: ../src/guestfs.pod:2633
5115 msgid "We support i18n (gettext anyhow) in the library."
5116 msgstr ""
5117
5118 #. type: textblock
5119 #: ../src/guestfs.pod:2635
5120 msgid ""
5121 "However many messages come from the daemon, and we don't translate those at "
5122 "the moment.  One reason is that the appliance generally has all locale files "
5123 "removed from it, because they take up a lot of space.  So we'd have to readd "
5124 "some of those, as well as copying our PO files into the appliance."
5125 msgstr ""
5126
5127 #. type: textblock
5128 #: ../src/guestfs.pod:2641
5129 msgid ""
5130 "Debugging messages are never translated, since they are intended for the "
5131 "programmers."
5132 msgstr ""
5133
5134 #. type: =head2
5135 #: ../src/guestfs.pod:2644
5136 msgid "SOURCE CODE SUBDIRECTORIES"
5137 msgstr ""
5138
5139 #. type: =item
5140 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:5979
5141 #: ../fish/guestfish-actions.pod:3958
5142 msgid "C<appliance>"
5143 msgstr "C<appliance>"
5144
5145 #. type: textblock
5146 #: ../src/guestfs.pod:2650
5147 msgid "The libguestfs appliance, build scripts and so on."
5148 msgstr ""
5149
5150 #. type: =item
5151 #: ../src/guestfs.pod:2652
5152 msgid "C<capitests>"
5153 msgstr "C<capitests>"
5154
5155 #. type: textblock
5156 #: ../src/guestfs.pod:2654
5157 msgid "Automated tests of the C API."
5158 msgstr ""
5159
5160 #. type: =item
5161 #: ../src/guestfs.pod:2656
5162 msgid "C<cat>"
5163 msgstr "C<cat>"
5164
5165 #. type: textblock
5166 #: ../src/guestfs.pod:2658
5167 msgid ""
5168 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5169 "documentation."
5170 msgstr ""
5171
5172 #. type: =item
5173 #: ../src/guestfs.pod:2661
5174 #, fuzzy
5175 #| msgid "C<cat>"
5176 msgid "C<caution>"
5177 msgstr "C<cat>"
5178
5179 #. type: textblock
5180 #: ../src/guestfs.pod:2663
5181 msgid ""
5182 "Safety and liveness tests of components that libguestfs depends upon (not of "
5183 "libguestfs itself).  Mainly this is for qemu and the kernel."
5184 msgstr ""
5185
5186 #. type: =item
5187 #: ../src/guestfs.pod:2666
5188 msgid "C<contrib>"
5189 msgstr "C<contrib>"
5190
5191 #. type: textblock
5192 #: ../src/guestfs.pod:2668
5193 msgid "Outside contributions, experimental parts."
5194 msgstr ""
5195
5196 #. type: =item
5197 #: ../src/guestfs.pod:2670
5198 msgid "C<daemon>"
5199 msgstr "C<daemon>"
5200
5201 #. type: textblock
5202 #: ../src/guestfs.pod:2672
5203 msgid ""
5204 "The daemon that runs inside the libguestfs appliance and carries out actions."
5205 msgstr ""
5206
5207 #. type: =item
5208 #: ../src/guestfs.pod:2675
5209 msgid "C<df>"
5210 msgstr "C<df>"
5211
5212 #. type: textblock
5213 #: ../src/guestfs.pod:2677
5214 msgid "L<virt-df(1)> command and documentation."
5215 msgstr ""
5216
5217 #. type: =item
5218 #: ../src/guestfs.pod:2679
5219 msgid "C<edit>"
5220 msgstr ""
5221
5222 #. type: textblock
5223 #: ../src/guestfs.pod:2681
5224 msgid "L<virt-edit(1)> command and documentation."
5225 msgstr ""
5226
5227 #. type: =item
5228 #: ../src/guestfs.pod:2683
5229 msgid "C<examples>"
5230 msgstr "C<examples>"
5231
5232 #. type: textblock
5233 #: ../src/guestfs.pod:2685
5234 msgid "C API example code."
5235 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5236
5237 #. type: =item
5238 #: ../src/guestfs.pod:2687
5239 msgid "C<fish>"
5240 msgstr "C<fish>"
5241
5242 #. type: textblock
5243 #: ../src/guestfs.pod:2689
5244 msgid ""
5245 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5246 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5247 "L<virt-tar-out(1)>."
5248 msgstr ""
5249
5250 #. type: =item
5251 #: ../src/guestfs.pod:2693
5252 msgid "C<fuse>"
5253 msgstr "C<fuse>"
5254
5255 #. type: textblock
5256 #: ../src/guestfs.pod:2695
5257 msgid ""
5258 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5259 msgstr ""
5260
5261 #. type: =item
5262 #: ../src/guestfs.pod:2697
5263 msgid "C<generator>"
5264 msgstr "C<generator>"
5265
5266 #. type: textblock
5267 #: ../src/guestfs.pod:2699
5268 msgid ""
5269 "The crucially important generator, used to automatically generate large "
5270 "amounts of boilerplate C code for things like RPC and bindings."
5271 msgstr ""
5272
5273 #. type: =item
5274 #: ../src/guestfs.pod:2702
5275 msgid "C<images>"
5276 msgstr "C<images>"
5277
5278 #. type: textblock
5279 #: ../src/guestfs.pod:2704
5280 msgid "Files used by the test suite."
5281 msgstr ""
5282
5283 #. type: textblock
5284 #: ../src/guestfs.pod:2706
5285 msgid "Some \"phony\" guest images which we test against."
5286 msgstr ""
5287
5288 #. type: =item
5289 #: ../src/guestfs.pod:2708
5290 msgid "C<inspector>"
5291 msgstr "C<inspector>"
5292
5293 #. type: textblock
5294 #: ../src/guestfs.pod:2710
5295 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5296 msgstr ""
5297
5298 #. type: =item
5299 #: ../src/guestfs.pod:2712
5300 msgid "C<logo>"
5301 msgstr "C<logo>"
5302
5303 #. type: textblock
5304 #: ../src/guestfs.pod:2714
5305 msgid "Logo used on the website.  The fish is called Arthur by the way."
5306 msgstr ""
5307
5308 #. type: =item
5309 #: ../src/guestfs.pod:2716
5310 msgid "C<m4>"
5311 msgstr "C<m4>"
5312
5313 #. type: textblock
5314 #: ../src/guestfs.pod:2718
5315 msgid "M4 macros used by autoconf."
5316 msgstr ""
5317
5318 #. type: =item
5319 #: ../src/guestfs.pod:2720
5320 msgid "C<po>"
5321 msgstr "C<po>"
5322
5323 #. type: textblock
5324 #: ../src/guestfs.pod:2722
5325 msgid "Translations of simple gettext strings."
5326 msgstr "Переклади простих рядків gettext."
5327
5328 #. type: =item
5329 #: ../src/guestfs.pod:2724
5330 msgid "C<po-docs>"
5331 msgstr "C<po-docs>"
5332
5333 #. type: textblock
5334 #: ../src/guestfs.pod:2726
5335 msgid ""
5336 "The build infrastructure and PO files for translations of manpages and POD "
5337 "files.  Eventually this will be combined with the C<po> directory, but that "
5338 "is rather complicated."
5339 msgstr ""
5340
5341 #. type: =item
5342 #: ../src/guestfs.pod:2730
5343 msgid "C<regressions>"
5344 msgstr "C<regressions>"
5345
5346 #. type: textblock
5347 #: ../src/guestfs.pod:2732
5348 msgid "Regression tests."
5349 msgstr "Тести на регресії."
5350
5351 #. type: =item
5352 #: ../src/guestfs.pod:2734
5353 msgid "C<rescue>"
5354 msgstr "C<rescue>"
5355
5356 #. type: textblock
5357 #: ../src/guestfs.pod:2736
5358 msgid "L<virt-rescue(1)> command and documentation."
5359 msgstr ""
5360
5361 #. type: =item
5362 #: ../src/guestfs.pod:2738
5363 msgid "C<src>"
5364 msgstr "C<src>"
5365
5366 #. type: textblock
5367 #: ../src/guestfs.pod:2740
5368 msgid "Source code to the C library."
5369 msgstr ""
5370
5371 #. type: =item
5372 #: ../src/guestfs.pod:2742
5373 msgid "C<tools>"
5374 msgstr "C<tools>"
5375
5376 #. type: textblock
5377 #: ../src/guestfs.pod:2744
5378 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5379 msgstr ""
5380
5381 #. type: =item
5382 #: ../src/guestfs.pod:2746
5383 msgid "C<test-tool>"
5384 msgstr "C<test-tool>"
5385
5386 #. type: textblock
5387 #: ../src/guestfs.pod:2748
5388 msgid ""
5389 "Test tool for end users to test if their qemu/kernel combination will work "
5390 "with libguestfs."
5391 msgstr ""
5392
5393 #. type: =item
5394 #: ../src/guestfs.pod:2751
5395 msgid "C<csharp>"
5396 msgstr "C<csharp>"
5397
5398 #. type: =item
5399 #: ../src/guestfs.pod:2753
5400 msgid "C<haskell>"
5401 msgstr "C<haskell>"
5402
5403 #. type: =item
5404 #: ../src/guestfs.pod:2755
5405 msgid "C<java>"
5406 msgstr "C<java>"
5407
5408 #. type: =item
5409 #: ../src/guestfs.pod:2757
5410 msgid "C<ocaml>"
5411 msgstr "C<ocaml>"
5412
5413 #. type: =item
5414 #: ../src/guestfs.pod:2759
5415 msgid "C<php>"
5416 msgstr "C<php>"
5417
5418 #. type: =item
5419 #: ../src/guestfs.pod:2761
5420 msgid "C<perl>"
5421 msgstr "C<perl>"
5422
5423 #. type: =item
5424 #: ../src/guestfs.pod:2763
5425 msgid "C<python>"
5426 msgstr "C<python>"
5427
5428 #. type: =item
5429 #: ../src/guestfs.pod:2765
5430 msgid "C<ruby>"
5431 msgstr "C<ruby>"
5432
5433 #. type: textblock
5434 #: ../src/guestfs.pod:2767
5435 msgid "Language bindings."
5436 msgstr "Прив’язки до мов програмування."
5437
5438 #. type: =head1
5439 #: ../src/guestfs.pod:2771
5440 msgid "LIMITS"
5441 msgstr ""
5442
5443 #. type: =head2
5444 #: ../src/guestfs.pod:2773
5445 msgid "PROTOCOL LIMITS"
5446 msgstr ""
5447
5448 #. type: textblock
5449 #: ../src/guestfs.pod:2775
5450 msgid ""
5451 "Internally libguestfs uses a message-based protocol to pass API calls and "
5452 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5453 "plenty more detail about this).  The maximum message size used by the "
5454 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5455 "aware of this limit.  The API calls which may be affected are individually "
5456 "documented, with a link back to this section of the documentation."
5457 msgstr ""
5458
5459 #. type: textblock
5460 #: ../src/guestfs.pod:2783
5461 msgid ""
5462 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5463 "a simple string.  Because this string is at some point internally encoded as "
5464 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5465 "the requested file is larger than this then you will get an error."
5466 msgstr ""
5467
5468 #. type: textblock
5469 #: ../src/guestfs.pod:2789
5470 msgid ""
5471 "In order to transfer large files into and out of the guest filesystem, you "
5472 "need to use particular calls that support this.  The sections L</UPLOADING> "
5473 "and L</DOWNLOADING> document how to do this."
5474 msgstr ""
5475
5476 #. type: textblock
5477 #: ../src/guestfs.pod:2793
5478 msgid ""
5479 "You might also consider mounting the disk image using our FUSE filesystem "
5480 "support (L<guestmount(1)>)."
5481 msgstr ""
5482
5483 #. type: =head2
5484 #: ../src/guestfs.pod:2796
5485 msgid "MAXIMUM NUMBER OF DISKS"
5486 msgstr ""
5487
5488 #. type: textblock
5489 #: ../src/guestfs.pod:2798
5490 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5491 msgstr ""
5492
5493 #. type: textblock
5494 #: ../src/guestfs.pod:2801
5495 msgid ""
5496 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5497 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5498 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5499 "purposes."
5500 msgstr ""
5501
5502 #. type: textblock
5503 #: ../src/guestfs.pod:2806
5504 msgid ""
5505 "We are working to substantially raise this limit in future versions but it "
5506 "requires complex changes to qemu."
5507 msgstr ""
5508
5509 #. type: textblock
5510 #: ../src/guestfs.pod:2809
5511 msgid ""
5512 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5513 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5514 "requires changes to qemu."
5515 msgstr ""
5516
5517 #. type: =head2
5518 #: ../src/guestfs.pod:2813
5519 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs.pod:2815
5524 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5525 msgstr ""
5526
5527 #. type: textblock
5528 #: ../src/guestfs.pod:2817
5529 msgid ""
5530 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5531 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5532 msgstr ""
5533
5534 #. type: textblock
5535 #: ../src/guestfs.pod:2820
5536 msgid ""
5537 "If you attach a disk with more than 15 partitions, the extra partitions are "
5538 "ignored by libguestfs."
5539 msgstr ""
5540
5541 #. type: =head2
5542 #: ../src/guestfs.pod:2823
5543 msgid "MAXIMUM SIZE OF A DISK"
5544 msgstr ""
5545
5546 #. type: textblock
5547 #: ../src/guestfs.pod:2825
5548 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2827
5553 msgid ""
5554 "We have tested block devices up to 1 exabyte (2**60 or "
5555 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5556 "filesystem."
5557 msgstr ""
5558
5559 #. type: textblock
5560 #: ../src/guestfs.pod:2831
5561 msgid ""
5562 "Although libguestfs probably does not impose any limit, the underlying host "
5563 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5564 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5565 "TB).  If you store disk images as host logical volumes then you are limited "
5566 "by the maximum size of an LV."
5567 msgstr ""
5568
5569 #. type: textblock
5570 #: ../src/guestfs.pod:2837
5571 msgid ""
5572 "For the hugest disk image files, we recommend using XFS on the host for "
5573 "storage."
5574 msgstr ""
5575
5576 #. type: =head2
5577 #: ../src/guestfs.pod:2840
5578 msgid "MAXIMUM SIZE OF A PARTITION"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2842
5583 msgid ""
5584 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5585 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5586 "address a partition located beyond 2 TB on the disk."
5587 msgstr ""
5588
5589 #. type: textblock
5590 #: ../src/guestfs.pod:2846
5591 msgid ""
5592 "It is recommended that you use GPT partitions on disks which are larger than "
5593 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5594 "which are theoretically larger than the largest disk we could support."
5595 msgstr ""
5596
5597 #. type: =head2
5598 #: ../src/guestfs.pod:2851
5599 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5600 msgstr ""
5601
5602 #. type: textblock
5603 #: ../src/guestfs.pod:2853
5604 msgid ""
5605 "This depends on the filesystem type.  libguestfs itself does not impose any "
5606 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5607 "what these limits are."
5608 msgstr ""
5609
5610 #. type: =head2
5611 #: ../src/guestfs.pod:2857
5612 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5613 msgstr ""
5614
5615 #. type: textblock
5616 #: ../src/guestfs.pod:2859
5617 msgid ""
5618 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5619 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5620 "uploads and downloads."
5621 msgstr ""
5622
5623 #. type: =head2
5624 #: ../src/guestfs.pod:2863
5625 #, fuzzy
5626 #| msgid "INSPECTION"
5627 msgid "INSPECTION LIMITS"
5628 msgstr "ПЕРЕВІРКА"
5629
5630 #. type: textblock
5631 #: ../src/guestfs.pod:2865
5632 msgid ""
5633 "The inspection code has several arbitrary limits on things like the size of "
5634 "Windows Registry hive it will read, and the length of product name.  These "
5635 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5636 "memory and disk space on the host, and should not be reached in practice.  "
5637 "See the source code for more information."
5638 msgstr ""
5639
5640 #. type: =head1
5641 #: ../src/guestfs.pod:2871 ../fish/guestfish.pod:1017
5642 #: ../test-tool/libguestfs-test-tool.pod:82
5643 msgid "ENVIRONMENT VARIABLES"
5644 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5645
5646 #. type: =item
5647 #: ../src/guestfs.pod:2875 ../fish/guestfish.pod:1048
5648 msgid "LIBGUESTFS_APPEND"
5649 msgstr ""
5650
5651 #. type: textblock
5652 #: ../src/guestfs.pod:2877 ../fish/guestfish.pod:1050
5653 msgid "Pass additional options to the guest kernel."
5654 msgstr ""
5655
5656 #. type: =item
5657 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5658 msgid "LIBGUESTFS_DEBUG"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2881
5663 msgid ""
5664 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5665 "effect as calling C<guestfs_set_verbose (g, 1)>."
5666 msgstr ""
5667
5668 #. type: =item
5669 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5670 msgid "LIBGUESTFS_MEMSIZE"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5675 msgid ""
5676 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5677 msgstr ""
5678
5679 #. type: verbatim
5680 #: ../src/guestfs.pod:2889 ../fish/guestfish.pod:1062
5681 #, no-wrap
5682 msgid ""
5683 " LIBGUESTFS_MEMSIZE=700\n"
5684 "\n"
5685 msgstr ""
5686
5687 #. type: =item
5688 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5689 msgid "LIBGUESTFS_PATH"
5690 msgstr ""
5691
5692 #. type: textblock
5693 #: ../src/guestfs.pod:2893
5694 msgid ""
5695 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5696 "the discussion of paths in section L</PATH> above."
5697 msgstr ""
5698
5699 #. type: =item
5700 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1069
5701 msgid "LIBGUESTFS_QEMU"
5702 msgstr ""
5703
5704 #. type: textblock
5705 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1071
5706 msgid ""
5707 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5708 "which was found at compile time by the configure script is used."
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs.pod:2902
5713 msgid "See also L</QEMU WRAPPERS> above."
5714 msgstr ""
5715
5716 #. type: =item
5717 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1075
5718 msgid "LIBGUESTFS_TRACE"
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs.pod:2906
5723 msgid ""
5724 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5725 "effect as calling C<guestfs_set_trace (g, 1)>."
5726 msgstr ""
5727
5728 #. type: =item
5729 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5730 msgid "TMPDIR"
5731 msgstr ""
5732
5733 #. type: textblock
5734 #: ../src/guestfs.pod:2911 ../fish/guestfish.pod:1086
5735 msgid ""
5736 "Location of temporary directory, defaults to C</tmp> except for the cached "
5737 "supermin appliance which defaults to C</var/tmp>."
5738 msgstr ""
5739
5740 #. type: textblock
5741 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1089
5742 msgid ""
5743 "If libguestfs was compiled to use the supermin appliance then the real "
5744 "appliance is cached in this directory, shared between all handles belonging "
5745 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5746 "use in case C</var/tmp> is not large enough."
5747 msgstr ""
5748
5749 #. type: =head1
5750 #: ../src/guestfs.pod:2922 ../fish/guestfish.pod:1156
5751 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279
5752 #: ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189
5753 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539
5754 #: ../tools/virt-list-partitions.pl:257
5755 msgid "SEE ALSO"
5756 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5757
5758 #. type: textblock
5759 #: ../src/guestfs.pod:2924
5760 msgid ""
5761 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5762 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5763 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5764 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5765 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5766 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5767 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5768 msgstr ""
5769
5770 #. type: textblock
5771 #: ../src/guestfs.pod:2951
5772 msgid ""
5773 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5774 "(8)>, L<disktype(1)>."
5775 msgstr ""
5776
5777 #. type: =head1
5778 #: ../src/guestfs.pod:2958 ../tools/virt-win-reg.pl:759
5779 #: ../tools/virt-make-fs.pl:553
5780 msgid "BUGS"
5781 msgstr "ВАДИ"
5782
5783 #. type: textblock
5784 #: ../src/guestfs.pod:2960
5785 msgid "To get a list of bugs against libguestfs use this link:"
5786 msgstr ""
5787 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5788 "посиланням:"
5789
5790 #. type: textblock
5791 #: ../src/guestfs.pod:2962
5792 msgid ""
5793 "L<https://bugzilla.redhat.com/buglist.cgi?"
5794 "component=libguestfs&product=Virtualization+Tools>"
5795 msgstr ""
5796 "L<https://bugzilla.redhat.com/buglist.cgi?"
5797 "component=libguestfs&product=Virtualization+Tools>"
5798
5799 #. type: textblock
5800 #: ../src/guestfs.pod:2964
5801 msgid "To report a new bug against libguestfs use this link:"
5802 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5803
5804 #. type: textblock
5805 #: ../src/guestfs.pod:2966
5806 msgid ""
5807 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5808 "component=libguestfs&product=Virtualization+Tools>"
5809 msgstr ""
5810 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5811 "component=libguestfs&product=Virtualization+Tools>"
5812
5813 #. type: textblock
5814 #: ../src/guestfs.pod:2968
5815 msgid "When reporting a bug, please check:"
5816 msgstr ""
5817
5818 #. type: textblock
5819 #: ../src/guestfs.pod:2974
5820 msgid "That the bug hasn't been reported already."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs.pod:2978
5825 msgid "That you are testing a recent version."
5826 msgstr ""
5827
5828 #. type: textblock
5829 #: ../src/guestfs.pod:2982
5830 msgid "Describe the bug accurately, and give a way to reproduce it."
5831 msgstr ""
5832
5833 #. type: textblock
5834 #: ../src/guestfs.pod:2986
5835 msgid ""
5836 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5837 "bug report."
5838 msgstr ""
5839
5840 #. type: =head1
5841 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1180
5842 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5843 msgid "AUTHORS"
5844 msgstr "АВТОРИ"
5845
5846 #. type: textblock
5847 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1182
5848 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5849 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5850 msgstr ""
5851
5852 #. type: =head1
5853 #: ../src/guestfs.pod:2995 ../fish/guestfish.pod:1184
5854 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294
5855 #: ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206
5856 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568
5857 #: ../tools/virt-list-partitions.pl:273
5858 msgid "COPYRIGHT"
5859 msgstr "АВТОРСЬКІ ПРАВА"
5860
5861 #. type: textblock
5862 #: ../src/guestfs.pod:2997 ../fish/guestfish.pod:1186
5863 #: ../test-tool/libguestfs-test-tool.pod:99
5864 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5865 msgstr ""
5866
5867 #. type: textblock
5868 #: ../src/guestfs.pod:3000
5869 msgid ""
5870 "This library is free software; you can redistribute it and/or modify it "
5871 "under the terms of the GNU Lesser General Public License as published by the "
5872 "Free Software Foundation; either version 2 of the License, or (at your "
5873 "option) any later version."
5874 msgstr ""
5875
5876 #. type: textblock
5877 #: ../src/guestfs.pod:3005
5878 msgid ""
5879 "This library is distributed in the hope that it will be useful, but WITHOUT "
5880 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5881 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5882 "for more details."
5883 msgstr ""
5884
5885 #. type: textblock
5886 #: ../src/guestfs.pod:3010
5887 msgid ""
5888 "You should have received a copy of the GNU Lesser General Public License "
5889 "along with this library; if not, write to the Free Software Foundation, "
5890 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5891 msgstr ""
5892
5893 #. type: =head2
5894 #: ../src/guestfs-actions.pod:1
5895 msgid "guestfs_add_cdrom"
5896 msgstr ""
5897
5898 #. type: verbatim
5899 #: ../src/guestfs-actions.pod:3
5900 #, no-wrap
5901 msgid ""
5902 " int\n"
5903 " guestfs_add_cdrom (guestfs_h *g,\n"
5904 "                    const char *filename);\n"
5905 "\n"
5906 msgstr ""
5907
5908 #. type: textblock
5909 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5910 msgid "This function adds a virtual CD-ROM disk image to the guest."
5911 msgstr ""
5912
5913 #. type: textblock
5914 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5915 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5916 msgstr ""
5917
5918 #. type: textblock
5919 #: ../src/guestfs-actions.pod:17
5920 msgid ""
5921 "This call checks for the existence of C<filename>.  This stops you from "
5922 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5923 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5924 "instead."
5925 msgstr ""
5926
5927 #. type: textblock
5928 #: ../src/guestfs-actions.pod:24
5929 msgid ""
5930 "If you just want to add an ISO file (often you use this as an efficient way "
5931 "to transfer large files into the guest), then you should probably use "
5932 "C<guestfs_add_drive_ro> instead."
5933 msgstr ""
5934
5935 #. type: textblock
5936 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
5937 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
5938 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
5939 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
5940 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
5941 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
5942 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
5943 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
5944 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
5945 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
5946 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
5947 #: ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002
5948 #: ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104
5949 #: ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141
5950 #: ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175
5951 #: ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276
5952 #: ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343
5953 #: ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483
5954 #: ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1720
5955 #: ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:2271
5956 #: ../src/guestfs-actions.pod:2415 ../src/guestfs-actions.pod:2476
5957 #: ../src/guestfs-actions.pod:2511 ../src/guestfs-actions.pod:3551
5958 #: ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3591
5959 #: ../src/guestfs-actions.pod:3760 ../src/guestfs-actions.pod:3774
5960 #: ../src/guestfs-actions.pod:3787 ../src/guestfs-actions.pod:3801
5961 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3852
5962 #: ../src/guestfs-actions.pod:3924 ../src/guestfs-actions.pod:3944
5963 #: ../src/guestfs-actions.pod:3961 ../src/guestfs-actions.pod:3984
5964 #: ../src/guestfs-actions.pod:4007 ../src/guestfs-actions.pod:4039
5965 #: ../src/guestfs-actions.pod:4058 ../src/guestfs-actions.pod:4077
5966 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4124
5967 #: ../src/guestfs-actions.pod:4160 ../src/guestfs-actions.pod:4176
5968 #: ../src/guestfs-actions.pod:4189 ../src/guestfs-actions.pod:4204
5969 #: ../src/guestfs-actions.pod:4221 ../src/guestfs-actions.pod:4314
5970 #: ../src/guestfs-actions.pod:4334 ../src/guestfs-actions.pod:4347
5971 #: ../src/guestfs-actions.pod:4398 ../src/guestfs-actions.pod:4416
5972 #: ../src/guestfs-actions.pod:4434 ../src/guestfs-actions.pod:4450
5973 #: ../src/guestfs-actions.pod:4464 ../src/guestfs-actions.pod:4478
5974 #: ../src/guestfs-actions.pod:4495 ../src/guestfs-actions.pod:4510
5975 #: ../src/guestfs-actions.pod:4530 ../src/guestfs-actions.pod:4588
5976 #: ../src/guestfs-actions.pod:4661 ../src/guestfs-actions.pod:4692
5977 #: ../src/guestfs-actions.pod:4711 ../src/guestfs-actions.pod:4730
5978 #: ../src/guestfs-actions.pod:4742 ../src/guestfs-actions.pod:4759
5979 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4787
5980 #: ../src/guestfs-actions.pod:4802 ../src/guestfs-actions.pod:4837
5981 #: ../src/guestfs-actions.pod:4870 ../src/guestfs-actions.pod:4909
5982 #: ../src/guestfs-actions.pod:4929 ../src/guestfs-actions.pod:4943
5983 #: ../src/guestfs-actions.pod:4960 ../src/guestfs-actions.pod:5009
5984 #: ../src/guestfs-actions.pod:5046 ../src/guestfs-actions.pod:5060
5985 #: ../src/guestfs-actions.pod:5088 ../src/guestfs-actions.pod:5105
5986 #: ../src/guestfs-actions.pod:5123 ../src/guestfs-actions.pod:5257
5987 #: ../src/guestfs-actions.pod:5314 ../src/guestfs-actions.pod:5336
5988 #: ../src/guestfs-actions.pod:5354 ../src/guestfs-actions.pod:5386
5989 #: ../src/guestfs-actions.pod:5452 ../src/guestfs-actions.pod:5469
5990 #: ../src/guestfs-actions.pod:5482 ../src/guestfs-actions.pod:5496
5991 #: ../src/guestfs-actions.pod:5785 ../src/guestfs-actions.pod:5804
5992 #: ../src/guestfs-actions.pod:5823 ../src/guestfs-actions.pod:5837
5993 #: ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:5863
5994 #: ../src/guestfs-actions.pod:5875 ../src/guestfs-actions.pod:5889
5995 #: ../src/guestfs-actions.pod:5905 ../src/guestfs-actions.pod:5926
5996 #: ../src/guestfs-actions.pod:5945 ../src/guestfs-actions.pod:5964
5997 #: ../src/guestfs-actions.pod:5994 ../src/guestfs-actions.pod:6012
5998 #: ../src/guestfs-actions.pod:6035 ../src/guestfs-actions.pod:6053
5999 #: ../src/guestfs-actions.pod:6072 ../src/guestfs-actions.pod:6093
6000 #: ../src/guestfs-actions.pod:6112 ../src/guestfs-actions.pod:6129
6001 #: ../src/guestfs-actions.pod:6157 ../src/guestfs-actions.pod:6181
6002 #: ../src/guestfs-actions.pod:6200 ../src/guestfs-actions.pod:6224
6003 #: ../src/guestfs-actions.pod:6243 ../src/guestfs-actions.pod:6258
6004 #: ../src/guestfs-actions.pod:6277 ../src/guestfs-actions.pod:6314
6005 #: ../src/guestfs-actions.pod:6344 ../src/guestfs-actions.pod:6377
6006 #: ../src/guestfs-actions.pod:6499 ../src/guestfs-actions.pod:6620
6007 #: ../src/guestfs-actions.pod:6632 ../src/guestfs-actions.pod:6645
6008 #: ../src/guestfs-actions.pod:6658 ../src/guestfs-actions.pod:6680
6009 #: ../src/guestfs-actions.pod:6693 ../src/guestfs-actions.pod:6706
6010 #: ../src/guestfs-actions.pod:6719 ../src/guestfs-actions.pod:6734
6011 #: ../src/guestfs-actions.pod:6793 ../src/guestfs-actions.pod:6810
6012 #: ../src/guestfs-actions.pod:6826 ../src/guestfs-actions.pod:6842
6013 #: ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6872
6014 #: ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6928
6015 #: ../src/guestfs-actions.pod:6942 ../src/guestfs-actions.pod:6983
6016 #: ../src/guestfs-actions.pod:6996 ../src/guestfs-actions.pod:7014
6017 #: ../src/guestfs-actions.pod:7048 ../src/guestfs-actions.pod:7084
6018 #: ../src/guestfs-actions.pod:7203 ../src/guestfs-actions.pod:7221
6019 #: ../src/guestfs-actions.pod:7235 ../src/guestfs-actions.pod:7290
6020 #: ../src/guestfs-actions.pod:7303 ../src/guestfs-actions.pod:7348
6021 #: ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:7442
6022 #: ../src/guestfs-actions.pod:7468 ../src/guestfs-actions.pod:7535
6023 #: ../src/guestfs-actions.pod:7554 ../src/guestfs-actions.pod:7583
6024 msgid "This function returns 0 on success or -1 on error."
6025 msgstr ""
6026
6027 #. type: textblock
6028 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6029 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6030 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6031 msgid ""
6032 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6033 "instead."
6034 msgstr ""
6035
6036 #. type: textblock
6037 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6038 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454
6039 #: ../src/guestfs-actions.pod:1949 ../src/guestfs-actions.pod:1970
6040 #: ../src/guestfs-actions.pod:4535 ../src/guestfs-actions.pod:4842
6041 #: ../src/guestfs-actions.pod:6322 ../src/guestfs-actions.pod:6352
6042 #: ../src/guestfs-actions.pod:6385 ../src/guestfs-actions.pod:6444
6043 #: ../src/guestfs-actions.pod:7386 ../src/guestfs-actions.pod:7476
6044 #: ../src/guestfs-actions.pod:7646 ../fish/guestfish-actions.pod:31
6045 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6046 #: ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321
6047 #: ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3038
6048 #: ../fish/guestfish-actions.pod:3235 ../fish/guestfish-actions.pod:4220
6049 #: ../fish/guestfish-actions.pod:4243 ../fish/guestfish-actions.pod:4265
6050 #: ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:4944
6051 #: ../fish/guestfish-actions.pod:5042
6052 msgid ""
6053 "Deprecated functions will not be removed from the API, but the fact that "
6054 "they are deprecated indicates that there are problems with correct use of "
6055 "these functions."
6056 msgstr ""
6057
6058 #. type: textblock
6059 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6060 #: ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1921
6061 #: ../src/guestfs-actions.pod:2019 ../src/guestfs-actions.pod:2122
6062 #: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3573
6063 #: ../src/guestfs-actions.pod:4846 ../src/guestfs-actions.pod:6014
6064 #: ../src/guestfs-actions.pod:6131 ../src/guestfs-actions.pod:6245
6065 #: ../src/guestfs-actions.pod:6736 ../src/guestfs-actions.pod:6861
6066 #: ../src/guestfs-actions.pod:7390
6067 msgid "(Added in 0.3)"
6068 msgstr ""
6069
6070 #. type: =head2
6071 #: ../src/guestfs-actions.pod:41
6072 msgid "guestfs_add_domain"
6073 msgstr ""
6074
6075 #. type: verbatim
6076 #: ../src/guestfs-actions.pod:43
6077 #, no-wrap
6078 msgid ""
6079 " int\n"
6080 " guestfs_add_domain (guestfs_h *g,\n"
6081 "                     const char *dom,\n"
6082 "                     ...);\n"
6083 "\n"
6084 msgstr ""
6085
6086 #. type: textblock
6087 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6088 #: ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:4549
6089 #: ../src/guestfs-actions.pod:4856
6090 msgid ""
6091 "You may supply a list of optional arguments to this call.  Use zero or more "
6092 "of the following pairs of parameters, and terminate the list with C<-1> on "
6093 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6094 msgstr ""
6095
6096 #. type: verbatim
6097 #: ../src/guestfs-actions.pod:53
6098 #, no-wrap
6099 msgid ""
6100 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6101 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6102 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6103 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6104 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6105 "\n"
6106 msgstr ""
6107
6108 #. type: textblock
6109 #: ../src/guestfs-actions.pod:59
6110 msgid ""
6111 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6112 "It works by connecting to libvirt, requesting the domain and domain XML from "
6113 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6114 "one."
6115 msgstr ""
6116
6117 #. type: textblock
6118 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6119 msgid ""
6120 "The number of disks added is returned.  This operation is atomic: if an "
6121 "error is returned, then no disks are added."
6122 msgstr ""
6123
6124 #. type: textblock
6125 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6126 msgid ""
6127 "This function does some minimal checks to make sure the libvirt domain is "
6128 "not running (unless C<readonly> is true).  In a future version we will try "
6129 "to acquire the libvirt lock on each disk."
6130 msgstr ""
6131
6132 #. type: textblock
6133 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6134 msgid ""
6135 "Disks must be accessible locally.  This often means that adding disks from a "
6136 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6137 "unless those disks are accessible via the same device path locally too."
6138 msgstr ""
6139
6140 #. type: textblock
6141 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6142 msgid ""
6143 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6144 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6145 "libvirt URI (or one set through an environment variable, see the libvirt "
6146 "documentation for full details)."
6147 msgstr ""
6148
6149 #. type: textblock
6150 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6151 msgid ""
6152 "The optional C<live> flag controls whether this call will try to connect to "
6153 "a running virtual machine C<guestfsd> process if it sees a suitable "
6154 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6155 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6156 "DAEMONS> for more information."
6157 msgstr ""
6158
6159 #. type: textblock
6160 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6161 msgid ""
6162 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6163 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6164 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
6165 "as usual."
6166 msgstr ""
6167
6168 #. type: textblock
6169 #: ../src/guestfs-actions.pod:94
6170 msgid ""
6171 "The other optional parameters are passed directly through to "
6172 "C<guestfs_add_drive_opts>."
6173 msgstr ""
6174
6175 #. type: textblock
6176 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6177 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6178 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6179 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321
6180 #: ../src/guestfs-actions.pod:1677 ../src/guestfs-actions.pod:1880
6181 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:2031
6182 #: ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2109
6183 #: ../src/guestfs-actions.pod:2402 ../src/guestfs-actions.pod:2874
6184 #: ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:5032
6185 #: ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5566
6186 #: ../src/guestfs-actions.pod:5592 ../src/guestfs-actions.pod:6969
6187 #: ../src/guestfs-actions.pod:7401 ../src/guestfs-actions.pod:7414
6188 #: ../src/guestfs-actions.pod:7427
6189 msgid "On error this function returns -1."
6190 msgstr ""
6191
6192 #. type: textblock
6193 #: ../src/guestfs-actions.pod:99
6194 msgid "(Added in 1.7.4)"
6195 msgstr ""
6196
6197 #. type: =head2
6198 #: ../src/guestfs-actions.pod:101
6199 msgid "guestfs_add_domain_va"
6200 msgstr ""
6201
6202 #. type: verbatim
6203 #: ../src/guestfs-actions.pod:103
6204 #, no-wrap
6205 msgid ""
6206 " int\n"
6207 " guestfs_add_domain_va (guestfs_h *g,\n"
6208 "                        const char *dom,\n"
6209 "                        va_list args);\n"
6210 "\n"
6211 msgstr ""
6212
6213 #. type: textblock
6214 #: ../src/guestfs-actions.pod:108
6215 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6216 msgstr ""
6217
6218 #. type: textblock
6219 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6220 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6221 #: ../src/guestfs-actions.pod:2840 ../src/guestfs-actions.pod:2852
6222 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4614
6223 #: ../src/guestfs-actions.pod:4884 ../src/guestfs-actions.pod:4896
6224 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6225 msgstr ""
6226
6227 #. type: =head2
6228 #: ../src/guestfs-actions.pod:112
6229 msgid "guestfs_add_domain_argv"
6230 msgstr ""
6231
6232 #. type: verbatim
6233 #: ../src/guestfs-actions.pod:114
6234 #, no-wrap
6235 msgid ""
6236 " int\n"
6237 " guestfs_add_domain_argv (guestfs_h *g,\n"
6238 "                          const char *dom,\n"
6239 "                          const struct guestfs_add_domain_argv *optargs);\n"
6240 "\n"
6241 msgstr ""
6242
6243 #. type: textblock
6244 #: ../src/guestfs-actions.pod:119
6245 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6246 msgstr ""
6247
6248 #. type: =head2
6249 #: ../src/guestfs-actions.pod:123
6250 msgid "guestfs_add_drive"
6251 msgstr ""
6252
6253 #. type: verbatim
6254 #: ../src/guestfs-actions.pod:125
6255 #, no-wrap
6256 msgid ""
6257 " int\n"
6258 " guestfs_add_drive (guestfs_h *g,\n"
6259 "                    const char *filename);\n"
6260 "\n"
6261 msgstr ""
6262
6263 #. type: textblock
6264 #: ../src/guestfs-actions.pod:129
6265 msgid ""
6266 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6267 "optional parameters, so the disk is added writable, with the format being "
6268 "detected automatically."
6269 msgstr ""
6270
6271 #. type: textblock
6272 #: ../src/guestfs-actions.pod:133
6273 msgid ""
6274 "Automatic detection of the format opens you up to a potential security hole "
6275 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6276 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6277 "you should think about replacing calls to this function with calls to "
6278 "C<guestfs_add_drive_opts>, and specifying the format."
6279 msgstr ""
6280
6281 #. type: =head2
6282 #: ../src/guestfs-actions.pod:144
6283 msgid "guestfs_add_drive_opts"
6284 msgstr ""
6285
6286 #. type: verbatim
6287 #: ../src/guestfs-actions.pod:146
6288 #, no-wrap
6289 msgid ""
6290 " int\n"
6291 " guestfs_add_drive_opts (guestfs_h *g,\n"
6292 "                         const char *filename,\n"
6293 "                         ...);\n"
6294 "\n"
6295 msgstr ""
6296
6297 #. type: verbatim
6298 #: ../src/guestfs-actions.pod:156
6299 #, no-wrap
6300 msgid ""
6301 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6302 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6303 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6304 "\n"
6305 msgstr ""
6306
6307 #. type: textblock
6308 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6309 msgid ""
6310 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6311 "The first time you call this function, the disk appears as C</dev/sda>, the "
6312 "second time as C</dev/sdb>, and so on."
6313 msgstr ""
6314
6315 #. type: textblock
6316 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6317 msgid ""
6318 "You don't necessarily need to be root when using libguestfs.  However you "
6319 "obviously do need sufficient permissions to access the filename for whatever "
6320 "operations you want to perform (ie. read access if you just want to read the "
6321 "image or write access if you want to modify the image)."
6322 msgstr ""
6323
6324 #. type: textblock
6325 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6326 msgid "This call checks that C<filename> exists."
6327 msgstr ""
6328
6329 #. type: textblock
6330 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4560
6331 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3049
6332 msgid "The optional arguments are:"
6333 msgstr ""
6334
6335 #. type: =item
6336 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6337 msgid "C<readonly>"
6338 msgstr "C<readonly>"
6339
6340 #. type: textblock
6341 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6342 msgid ""
6343 "If true then the image is treated as read-only.  Writes are still allowed, "
6344 "but they are stored in a temporary snapshot overlay which is discarded at "
6345 "the end.  The disk that you add is not modified."
6346 msgstr ""
6347
6348 #. type: =item
6349 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6350 msgid "C<format>"
6351 msgstr "C<format>"
6352
6353 #. type: textblock
6354 #: ../src/guestfs-actions.pod:185
6355 msgid ""
6356 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6357 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6358 "Possible formats include C<raw> and C<qcow2>."
6359 msgstr ""
6360
6361 #. type: textblock
6362 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6363 msgid ""
6364 "Automatic detection of the format opens you up to a potential security hole "
6365 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6366 "RHBZ#642934.  Specifying the format closes this security hole."
6367 msgstr ""
6368
6369 #. type: =item
6370 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6371 msgid "C<iface>"
6372 msgstr "C<iface>"
6373
6374 #. type: textblock
6375 #: ../src/guestfs-actions.pod:196
6376 msgid ""
6377 "This rarely-used option lets you emulate the behaviour of the deprecated "
6378 "C<guestfs_add_drive_with_if> call (q.v.)"
6379 msgstr ""
6380
6381 #. type: textblock
6382 #: ../src/guestfs-actions.pod:203
6383 msgid "(Added in 1.5.23)"
6384 msgstr ""
6385
6386 #. type: =head2
6387 #: ../src/guestfs-actions.pod:205
6388 msgid "guestfs_add_drive_opts_va"
6389 msgstr ""
6390
6391 #. type: verbatim
6392 #: ../src/guestfs-actions.pod:207
6393 #, no-wrap
6394 msgid ""
6395 " int\n"
6396 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6397 "                            const char *filename,\n"
6398 "                            va_list args);\n"
6399 "\n"
6400 msgstr ""
6401
6402 #. type: textblock
6403 #: ../src/guestfs-actions.pod:212
6404 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6405 msgstr ""
6406
6407 #. type: =head2
6408 #: ../src/guestfs-actions.pod:216
6409 msgid "guestfs_add_drive_opts_argv"
6410 msgstr ""
6411
6412 #. type: verbatim
6413 #: ../src/guestfs-actions.pod:218
6414 #, no-wrap
6415 msgid ""
6416 " int\n"
6417 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6418 "                              const char *filename,\n"
6419 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6420 "\n"
6421 msgstr ""
6422
6423 #. type: textblock
6424 #: ../src/guestfs-actions.pod:223
6425 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6426 msgstr ""
6427
6428 #. type: =head2
6429 #: ../src/guestfs-actions.pod:227
6430 msgid "guestfs_add_drive_ro"
6431 msgstr ""
6432
6433 #. type: verbatim
6434 #: ../src/guestfs-actions.pod:229
6435 #, no-wrap
6436 msgid ""
6437 " int\n"
6438 " guestfs_add_drive_ro (guestfs_h *g,\n"
6439 "                       const char *filename);\n"
6440 "\n"
6441 msgstr ""
6442
6443 #. type: textblock
6444 #: ../src/guestfs-actions.pod:233
6445 msgid ""
6446 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6447 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6448 "disk is added read-only, with the format being detected automatically."
6449 msgstr ""
6450
6451 #. type: textblock
6452 #: ../src/guestfs-actions.pod:240
6453 msgid "(Added in 1.0.38)"
6454 msgstr ""
6455
6456 #. type: =head2
6457 #: ../src/guestfs-actions.pod:242
6458 msgid "guestfs_add_drive_ro_with_if"
6459 msgstr ""
6460
6461 #. type: verbatim
6462 #: ../src/guestfs-actions.pod:244
6463 #, no-wrap
6464 msgid ""
6465 " int\n"
6466 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6467 "                               const char *filename,\n"
6468 "                               const char *iface);\n"
6469 "\n"
6470 msgstr ""
6471
6472 #. type: textblock
6473 #: ../src/guestfs-actions.pod:249
6474 msgid ""
6475 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6476 "QEMU interface emulation to use at run time."
6477 msgstr ""
6478
6479 #. type: textblock
6480 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6481 #: ../src/guestfs-actions.pod:2361
6482 msgid "(Added in 1.0.84)"
6483 msgstr ""
6484
6485 #. type: =head2
6486 #: ../src/guestfs-actions.pod:263
6487 msgid "guestfs_add_drive_with_if"
6488 msgstr ""
6489
6490 #. type: verbatim
6491 #: ../src/guestfs-actions.pod:265
6492 #, no-wrap
6493 msgid ""
6494 " int\n"
6495 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6496 "                            const char *filename,\n"
6497 "                            const char *iface);\n"
6498 "\n"
6499 msgstr ""
6500
6501 #. type: textblock
6502 #: ../src/guestfs-actions.pod:270
6503 msgid ""
6504 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6505 "QEMU interface emulation to use at run time."
6506 msgstr ""
6507
6508 #. type: =head2
6509 #: ../src/guestfs-actions.pod:284
6510 msgid "guestfs_aug_clear"
6511 msgstr ""
6512
6513 #. type: verbatim
6514 #: ../src/guestfs-actions.pod:286
6515 #, no-wrap
6516 msgid ""
6517 " int\n"
6518 " guestfs_aug_clear (guestfs_h *g,\n"
6519 "                    const char *augpath);\n"
6520 "\n"
6521 msgstr ""
6522
6523 #. type: textblock
6524 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6525 msgid ""
6526 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6527 "L<augtool(1)> C<clear> command."
6528 msgstr ""
6529
6530 #. type: textblock
6531 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2111
6532 msgid "(Added in 1.3.4)"
6533 msgstr ""
6534
6535 #. type: =head2
6536 #: ../src/guestfs-actions.pod:297
6537 msgid "guestfs_aug_close"
6538 msgstr ""
6539
6540 #. type: verbatim
6541 #: ../src/guestfs-actions.pod:299
6542 #, no-wrap
6543 msgid ""
6544 " int\n"
6545 " guestfs_aug_close (guestfs_h *g);\n"
6546 "\n"
6547 msgstr ""
6548
6549 #. type: textblock
6550 #: ../src/guestfs-actions.pod:302
6551 msgid ""
6552 "Close the current Augeas handle and free up any resources used by it.  After "
6553 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6554 "any other Augeas functions."
6555 msgstr ""
6556
6557 #. type: textblock
6558 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6559 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6560 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6561 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6562 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6563 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6564 #: ../src/guestfs-actions.pod:5643
6565 msgid "(Added in 0.7)"
6566 msgstr ""
6567
6568 #. type: =head2
6569 #: ../src/guestfs-actions.pod:311
6570 msgid "guestfs_aug_defnode"
6571 msgstr ""
6572
6573 #. type: verbatim
6574 #: ../src/guestfs-actions.pod:313
6575 #, no-wrap
6576 msgid ""
6577 " struct guestfs_int_bool *\n"
6578 " guestfs_aug_defnode (guestfs_h *g,\n"
6579 "                      const char *name,\n"
6580 "                      const char *expr,\n"
6581 "                      const char *val);\n"
6582 "\n"
6583 msgstr ""
6584
6585 #. type: textblock
6586 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6587 msgid ""
6588 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6589 msgstr ""
6590
6591 #. type: textblock
6592 #: ../src/guestfs-actions.pod:322
6593 msgid ""
6594 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6595 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6596 "containing that single node."
6597 msgstr ""
6598
6599 #. type: textblock
6600 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6601 msgid ""
6602 "On success this returns a pair containing the number of nodes in the "
6603 "nodeset, and a boolean flag if a node was created."
6604 msgstr ""
6605
6606 #. type: textblock
6607 #: ../src/guestfs-actions.pod:330
6608 msgid ""
6609 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6610 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6611 msgstr ""
6612
6613 #. type: =head2
6614 #: ../src/guestfs-actions.pod:336
6615 msgid "guestfs_aug_defvar"
6616 msgstr ""
6617
6618 #. type: verbatim
6619 #: ../src/guestfs-actions.pod:338
6620 #, no-wrap
6621 msgid ""
6622 " int\n"
6623 " guestfs_aug_defvar (guestfs_h *g,\n"
6624 "                     const char *name,\n"
6625 "                     const char *expr);\n"
6626 "\n"
6627 msgstr ""
6628
6629 #. type: textblock
6630 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6631 msgid ""
6632 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6633 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6634 msgstr ""
6635
6636 #. type: textblock
6637 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6638 msgid ""
6639 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6640 "evaluates to something which is not a nodeset."
6641 msgstr ""
6642
6643 #. type: =head2
6644 #: ../src/guestfs-actions.pod:354
6645 msgid "guestfs_aug_get"
6646 msgstr ""
6647
6648 #. type: verbatim
6649 #: ../src/guestfs-actions.pod:356
6650 #, no-wrap
6651 msgid ""
6652 " char *\n"
6653 " guestfs_aug_get (guestfs_h *g,\n"
6654 "                  const char *augpath);\n"
6655 "\n"
6656 msgstr ""
6657
6658 #. type: textblock
6659 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6660 msgid ""
6661 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6662 "node, the C<value> is returned."
6663 msgstr ""
6664
6665 #. type: textblock
6666 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863
6667 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941
6668 #: ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060
6669 #: ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207
6670 #: ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360
6671 #: ../src/guestfs-actions.pod:1548 ../src/guestfs-actions.pod:1660
6672 #: ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:1840
6673 #: ../src/guestfs-actions.pod:1907 ../src/guestfs-actions.pod:1943
6674 #: ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2134
6675 #: ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:2530
6676 #: ../src/guestfs-actions.pod:2620 ../src/guestfs-actions.pod:2724
6677 #: ../src/guestfs-actions.pod:2743 ../src/guestfs-actions.pod:2957
6678 #: ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3006
6679 #: ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3099
6680 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3139
6681 #: ../src/guestfs-actions.pod:3746 ../src/guestfs-actions.pod:4096
6682 #: ../src/guestfs-actions.pod:4266 ../src/guestfs-actions.pod:4376
6683 #: ../src/guestfs-actions.pod:5178 ../src/guestfs-actions.pod:5371
6684 #: ../src/guestfs-actions.pod:5541 ../src/guestfs-actions.pod:5719
6685 #: ../src/guestfs-actions.pod:5768 ../src/guestfs-actions.pod:6405
6686 #: ../src/guestfs-actions.pod:6421 ../src/guestfs-actions.pod:6438
6687 #: ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:7143
6688 #: ../src/guestfs-actions.pod:7162 ../src/guestfs-actions.pod:7180
6689 #: ../src/guestfs-actions.pod:7360 ../src/guestfs-actions.pod:7640
6690 msgid ""
6691 "This function returns a string, or NULL on error.  I<The caller must free "
6692 "the returned string after use>."
6693 msgstr ""
6694
6695 #. type: =head2
6696 #: ../src/guestfs-actions.pod:368
6697 msgid "guestfs_aug_init"
6698 msgstr ""
6699
6700 #. type: verbatim
6701 #: ../src/guestfs-actions.pod:370
6702 #, no-wrap
6703 msgid ""
6704 " int\n"
6705 " guestfs_aug_init (guestfs_h *g,\n"
6706 "                   const char *root,\n"
6707 "                   int flags);\n"
6708 "\n"
6709 msgstr ""
6710
6711 #. type: textblock
6712 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6713 msgid ""
6714 "Create a new Augeas handle for editing configuration files.  If there was "
6715 "any previous Augeas handle associated with this guestfs session, then it is "
6716 "closed."
6717 msgstr ""
6718
6719 #. type: textblock
6720 #: ../src/guestfs-actions.pod:379
6721 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6722 msgstr ""
6723
6724 #. type: textblock
6725 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6726 msgid ""
6727 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6728 msgstr ""
6729
6730 #. type: textblock
6731 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6732 msgid ""
6733 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6734 "logical I<or> of the following integers:"
6735 msgstr ""
6736
6737 #. type: =item
6738 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6739 msgid "C<AUG_SAVE_BACKUP> = 1"
6740 msgstr "C<AUG_SAVE_BACKUP> = 1"
6741
6742 #. type: textblock
6743 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6744 msgid "Keep the original file with a C<.augsave> extension."
6745 msgstr ""
6746
6747 #. type: =item
6748 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6749 msgid "C<AUG_SAVE_NEWFILE> = 2"
6750 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6751
6752 #. type: textblock
6753 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6754 msgid ""
6755 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6756 "original.  Overrides C<AUG_SAVE_BACKUP>."
6757 msgstr ""
6758
6759 #. type: =item
6760 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6761 msgid "C<AUG_TYPE_CHECK> = 4"
6762 msgstr "C<AUG_TYPE_CHECK> = 4"
6763
6764 #. type: textblock
6765 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6766 msgid "Typecheck lenses (can be expensive)."
6767 msgstr ""
6768
6769 #. type: =item
6770 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6771 msgid "C<AUG_NO_STDINC> = 8"
6772 msgstr "C<AUG_NO_STDINC> = 8"
6773
6774 #. type: textblock
6775 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6776 msgid "Do not use standard load path for modules."
6777 msgstr ""
6778
6779 #. type: =item
6780 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6781 msgid "C<AUG_SAVE_NOOP> = 16"
6782 msgstr "C<AUG_SAVE_NOOP> = 16"
6783
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6786 msgid "Make save a no-op, just record what would have been changed."
6787 msgstr ""
6788
6789 #. type: =item
6790 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6791 msgid "C<AUG_NO_LOAD> = 32"
6792 msgstr "C<AUG_NO_LOAD> = 32"
6793
6794 #. type: textblock
6795 #: ../src/guestfs-actions.pod:414
6796 msgid "Do not load the tree in C<guestfs_aug_init>."
6797 msgstr ""
6798
6799 #. type: textblock
6800 #: ../src/guestfs-actions.pod:418
6801 msgid "To close the handle, you can call C<guestfs_aug_close>."
6802 msgstr ""
6803
6804 #. type: textblock
6805 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6806 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6807 msgstr ""
6808
6809 #. type: =head2
6810 #: ../src/guestfs-actions.pod:426
6811 msgid "guestfs_aug_insert"
6812 msgstr ""
6813
6814 #. type: verbatim
6815 #: ../src/guestfs-actions.pod:428
6816 #, no-wrap
6817 msgid ""
6818 " int\n"
6819 " guestfs_aug_insert (guestfs_h *g,\n"
6820 "                     const char *augpath,\n"
6821 "                     const char *label,\n"
6822 "                     int before);\n"
6823 "\n"
6824 msgstr ""
6825
6826 #. type: textblock
6827 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6828 msgid ""
6829 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6830 "or after C<path> (depending on the boolean flag C<before>)."
6831 msgstr ""
6832
6833 #. type: textblock
6834 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6835 msgid ""
6836 "C<path> must match exactly one existing node in the tree, and C<label> must "
6837 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6838 msgstr ""
6839
6840 #. type: =head2
6841 #: ../src/guestfs-actions.pod:446
6842 msgid "guestfs_aug_load"
6843 msgstr ""
6844
6845 #. type: verbatim
6846 #: ../src/guestfs-actions.pod:448
6847 #, no-wrap
6848 msgid ""
6849 " int\n"
6850 " guestfs_aug_load (guestfs_h *g);\n"
6851 "\n"
6852 msgstr ""
6853
6854 #. type: textblock
6855 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6856 msgid "Load files into the tree."
6857 msgstr "Завантажити файли до ієрархії."
6858
6859 #. type: textblock
6860 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6861 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6862 msgstr ""
6863
6864 #. type: =head2
6865 #: ../src/guestfs-actions.pod:460
6866 msgid "guestfs_aug_ls"
6867 msgstr ""
6868
6869 #. type: verbatim
6870 #: ../src/guestfs-actions.pod:462
6871 #, no-wrap
6872 msgid ""
6873 " char **\n"
6874 " guestfs_aug_ls (guestfs_h *g,\n"
6875 "                 const char *augpath);\n"
6876 "\n"
6877 msgstr ""
6878
6879 #. type: textblock
6880 #: ../src/guestfs-actions.pod:466
6881 msgid ""
6882 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6883 "sorting the resulting nodes into alphabetical order."
6884 msgstr ""
6885
6886 #. type: textblock
6887 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6888 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079
6889 #: ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394
6890 #: ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516
6891 #: ../src/guestfs-actions.pod:1762 ../src/guestfs-actions.pod:2206
6892 #: ../src/guestfs-actions.pod:2222 ../src/guestfs-actions.pod:2241
6893 #: ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2308
6894 #: ../src/guestfs-actions.pod:2379 ../src/guestfs-actions.pod:2428
6895 #: ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:3059
6896 #: ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:3649
6897 #: ../src/guestfs-actions.pod:3666 ../src/guestfs-actions.pod:3728
6898 #: ../src/guestfs-actions.pod:3833 ../src/guestfs-actions.pod:4238
6899 #: ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5513
6900 #: ../src/guestfs-actions.pod:5639 ../src/guestfs-actions.pod:5753
6901 #: ../src/guestfs-actions.pod:6485 ../src/guestfs-actions.pod:6546
6902 #: ../src/guestfs-actions.pod:6601 ../src/guestfs-actions.pod:6747
6903 #: ../src/guestfs-actions.pod:6771 ../src/guestfs-actions.pod:7253
6904 #: ../src/guestfs-actions.pod:7273 ../src/guestfs-actions.pod:7320
6905 #: ../src/guestfs-actions.pod:7492 ../src/guestfs-actions.pod:7511
6906 #: ../src/guestfs-actions.pod:7597 ../src/guestfs-actions.pod:7616
6907 #: ../src/guestfs-actions.pod:7662 ../src/guestfs-actions.pod:7681
6908 msgid ""
6909 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6910 ">), or NULL if there was an error.  I<The caller must free the strings and "
6911 "the array after use>."
6912 msgstr ""
6913
6914 #. type: textblock
6915 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004
6916 #: ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432
6917 #: ../src/guestfs-actions.pod:3413 ../src/guestfs-actions.pod:3444
6918 #: ../src/guestfs-actions.pod:4079 ../src/guestfs-actions.pod:4129
6919 #: ../src/guestfs-actions.pod:4316 ../src/guestfs-actions.pod:4349
6920 #: ../src/guestfs-actions.pod:4512 ../src/guestfs-actions.pod:4997
6921 #: ../src/guestfs-actions.pod:5454 ../src/guestfs-actions.pod:5851
6922 #: ../src/guestfs-actions.pod:5865 ../src/guestfs-actions.pod:5877
6923 #: ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6985
6924 #: ../src/guestfs-actions.pod:6998 ../src/guestfs-actions.pod:7237
6925 #: ../src/guestfs-actions.pod:7480
6926 msgid "(Added in 0.8)"
6927 msgstr ""
6928
6929 #. type: =head2
6930 #: ../src/guestfs-actions.pod:475
6931 msgid "guestfs_aug_match"
6932 msgstr ""
6933
6934 #. type: verbatim
6935 #: ../src/guestfs-actions.pod:477
6936 #, no-wrap
6937 msgid ""
6938 " char **\n"
6939 " guestfs_aug_match (guestfs_h *g,\n"
6940 "                    const char *augpath);\n"
6941 "\n"
6942 msgstr ""
6943
6944 #. type: textblock
6945 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6946 msgid ""
6947 "Returns a list of paths which match the path expression C<path>.  The "
6948 "returned paths are sufficiently qualified so that they match exactly one "
6949 "node in the current tree."
6950 msgstr ""
6951
6952 #. type: =head2
6953 #: ../src/guestfs-actions.pod:491
6954 msgid "guestfs_aug_mv"
6955 msgstr ""
6956
6957 #. type: verbatim
6958 #: ../src/guestfs-actions.pod:493
6959 #, no-wrap
6960 msgid ""
6961 " int\n"
6962 " guestfs_aug_mv (guestfs_h *g,\n"
6963 "                 const char *src,\n"
6964 "                 const char *dest);\n"
6965 "\n"
6966 msgstr ""
6967
6968 #. type: textblock
6969 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6970 msgid ""
6971 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6972 "C<dest> is overwritten if it exists."
6973 msgstr ""
6974
6975 #. type: =head2
6976 #: ../src/guestfs-actions.pod:505
6977 msgid "guestfs_aug_rm"
6978 msgstr ""
6979
6980 #. type: verbatim
6981 #: ../src/guestfs-actions.pod:507
6982 #, no-wrap
6983 msgid ""
6984 " int\n"
6985 " guestfs_aug_rm (guestfs_h *g,\n"
6986 "                 const char *augpath);\n"
6987 "\n"
6988 msgstr ""
6989
6990 #. type: textblock
6991 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6992 msgid "Remove C<path> and all of its children."
6993 msgstr ""
6994
6995 #. type: textblock
6996 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
6997 msgid "On success this returns the number of entries which were removed."
6998 msgstr ""
6999
7000 #. type: =head2
7001 #: ../src/guestfs-actions.pod:519
7002 msgid "guestfs_aug_save"
7003 msgstr ""
7004
7005 #. type: verbatim
7006 #: ../src/guestfs-actions.pod:521
7007 #, no-wrap
7008 msgid ""
7009 " int\n"
7010 " guestfs_aug_save (guestfs_h *g);\n"
7011 "\n"
7012 msgstr ""
7013
7014 #. type: textblock
7015 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7016 msgid "This writes all pending changes to disk."
7017 msgstr ""
7018
7019 #. type: textblock
7020 #: ../src/guestfs-actions.pod:526
7021 msgid ""
7022 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7023 "are saved."
7024 msgstr ""
7025
7026 #. type: =head2
7027 #: ../src/guestfs-actions.pod:533
7028 msgid "guestfs_aug_set"
7029 msgstr ""
7030
7031 #. type: verbatim
7032 #: ../src/guestfs-actions.pod:535
7033 #, no-wrap
7034 msgid ""
7035 " int\n"
7036 " guestfs_aug_set (guestfs_h *g,\n"
7037 "                  const char *augpath,\n"
7038 "                  const char *val);\n"
7039 "\n"
7040 msgstr ""
7041
7042 #. type: textblock
7043 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7044 msgid "Set the value associated with C<path> to C<val>."
7045 msgstr ""
7046
7047 #. type: textblock
7048 #: ../src/guestfs-actions.pod:542
7049 msgid ""
7050 "In the Augeas API, it is possible to clear a node by setting the value to "
7051 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7052 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7053 msgstr ""
7054
7055 #. type: =head2
7056 #: ../src/guestfs-actions.pod:551
7057 msgid "guestfs_available"
7058 msgstr ""
7059
7060 #. type: verbatim
7061 #: ../src/guestfs-actions.pod:553
7062 #, no-wrap
7063 msgid ""
7064 " int\n"
7065 " guestfs_available (guestfs_h *g,\n"
7066 "                    char *const *groups);\n"
7067 "\n"
7068 msgstr ""
7069
7070 #. type: textblock
7071 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7072 msgid ""
7073 "This command is used to check the availability of some groups of "
7074 "functionality in the appliance, which not all builds of the libguestfs "
7075 "appliance will be able to provide."
7076 msgstr ""
7077
7078 #. type: textblock
7079 #: ../src/guestfs-actions.pod:561
7080 msgid ""
7081 "The libguestfs groups, and the functions that those groups correspond to, "
7082 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7083 "runtime by calling C<guestfs_available_all_groups>."
7084 msgstr ""
7085
7086 #. type: textblock
7087 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7088 msgid ""
7089 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7090 "\"]> would check for the availability of the Linux inotify functions and "
7091 "Augeas (configuration file editing) functions."
7092 msgstr ""
7093
7094 #. type: textblock
7095 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7096 msgid "The command returns no error if I<all> requested groups are available."
7097 msgstr ""
7098
7099 #. type: textblock
7100 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7101 msgid ""
7102 "It fails with an error if one or more of the requested groups is unavailable "
7103 "in the appliance."
7104 msgstr ""
7105
7106 #. type: textblock
7107 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7108 msgid ""
7109 "If an unknown group name is included in the list of groups then an error is "
7110 "always returned."
7111 msgstr ""
7112
7113 #. type: textblock
7114 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7115 msgid "I<Notes:>"
7116 msgstr "I<Нотатки:>"
7117
7118 #. type: textblock
7119 #: ../src/guestfs-actions.pod:585
7120 msgid "You must call C<guestfs_launch> before calling this function."
7121 msgstr ""
7122
7123 #. type: textblock
7124 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7125 msgid ""
7126 "The reason is because we don't know what groups are supported by the "
7127 "appliance/daemon until it is running and can be queried."
7128 msgstr ""
7129
7130 #. type: textblock
7131 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7132 msgid ""
7133 "If a group of functions is available, this does not necessarily mean that "
7134 "they will work.  You still have to check for errors when calling individual "
7135 "API functions even if they are available."
7136 msgstr ""
7137
7138 #. type: textblock
7139 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7140 msgid ""
7141 "It is usually the job of distro packagers to build complete functionality "
7142 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7143 "with all requirements satisfied, will support everything."
7144 msgstr ""
7145
7146 #. type: textblock
7147 #: ../src/guestfs-actions.pod:607
7148 msgid ""
7149 "This call was added in version C<1.0.80>.  In previous versions of "
7150 "libguestfs all you could do would be to speculatively execute a command to "
7151 "find out if the daemon implemented it.  See also C<guestfs_version>."
7152 msgstr ""
7153
7154 #. type: textblock
7155 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
7156 msgid "(Added in 1.0.80)"
7157 msgstr ""
7158
7159 #. type: =head2
7160 #: ../src/guestfs-actions.pod:618
7161 msgid "guestfs_available_all_groups"
7162 msgstr ""
7163
7164 #. type: verbatim
7165 #: ../src/guestfs-actions.pod:620
7166 #, no-wrap
7167 msgid ""
7168 " char **\n"
7169 " guestfs_available_all_groups (guestfs_h *g);\n"
7170 "\n"
7171 msgstr ""
7172
7173 #. type: textblock
7174 #: ../src/guestfs-actions.pod:623
7175 msgid ""
7176 "This command returns a list of all optional groups that this daemon knows "
7177 "about.  Note this returns both supported and unsupported groups.  To find "
7178 "out which ones the daemon can actually support you have to call "
7179 "C<guestfs_available> on each member of the returned list."
7180 msgstr ""
7181
7182 #. type: textblock
7183 #: ../src/guestfs-actions.pod:629
7184 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7185 msgstr ""
7186
7187 #. type: textblock
7188 #: ../src/guestfs-actions.pod:635
7189 msgid "(Added in 1.3.15)"
7190 msgstr ""
7191
7192 #. type: =head2
7193 #: ../src/guestfs-actions.pod:637
7194 msgid "guestfs_base64_in"
7195 msgstr ""
7196
7197 #. type: verbatim
7198 #: ../src/guestfs-actions.pod:639
7199 #, no-wrap
7200 msgid ""
7201 " int\n"
7202 " guestfs_base64_in (guestfs_h *g,\n"
7203 "                    const char *base64file,\n"
7204 "                    const char *filename);\n"
7205 "\n"
7206 msgstr ""
7207
7208 #. type: textblock
7209 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7210 msgid ""
7211 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7212 msgstr ""
7213
7214 #. type: textblock
7215 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7216 msgid "(Added in 1.3.5)"
7217 msgstr ""
7218
7219 #. type: =head2
7220 #: ../src/guestfs-actions.pod:651
7221 msgid "guestfs_base64_out"
7222 msgstr ""
7223
7224 #. type: verbatim
7225 #: ../src/guestfs-actions.pod:653
7226 #, no-wrap
7227 msgid ""
7228 " int\n"
7229 " guestfs_base64_out (guestfs_h *g,\n"
7230 "                     const char *filename,\n"
7231 "                     const char *base64file);\n"
7232 "\n"
7233 msgstr ""
7234
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7237 msgid ""
7238 "This command downloads the contents of C<filename>, writing it out to local "
7239 "file C<base64file> encoded as base64."
7240 msgstr ""
7241
7242 #. type: =head2
7243 #: ../src/guestfs-actions.pod:665
7244 msgid "guestfs_blockdev_flushbufs"
7245 msgstr ""
7246
7247 #. type: verbatim
7248 #: ../src/guestfs-actions.pod:667
7249 #, no-wrap
7250 msgid ""
7251 " int\n"
7252 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7253 "                             const char *device);\n"
7254 "\n"
7255 msgstr ""
7256
7257 #. type: textblock
7258 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7259 msgid ""
7260 "This tells the kernel to flush internal buffers associated with C<device>."
7261 msgstr ""
7262
7263 #. type: textblock
7264 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7265 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7266 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7267 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7268 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7269 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7270 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7271 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7272 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7273 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7274 msgid "This uses the L<blockdev(8)> command."
7275 msgstr ""
7276
7277 #. type: textblock
7278 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7279 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7280 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7281 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7282 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7283 msgid "(Added in 0.9.3)"
7284 msgstr ""
7285
7286 #. type: =head2
7287 #: ../src/guestfs-actions.pod:680
7288 msgid "guestfs_blockdev_getbsz"
7289 msgstr ""
7290
7291 #. type: verbatim
7292 #: ../src/guestfs-actions.pod:682
7293 #, no-wrap
7294 msgid ""
7295 " int\n"
7296 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7297 "                          const char *device);\n"
7298 "\n"
7299 msgstr ""
7300
7301 #. type: textblock
7302 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7303 msgid "This returns the block size of a device."
7304 msgstr ""
7305
7306 #. type: textblock
7307 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7308 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7309 msgid ""
7310 "(Note this is different from both I<size in blocks> and I<filesystem block "
7311 "size>)."
7312 msgstr ""
7313
7314 #. type: =head2
7315 #: ../src/guestfs-actions.pod:697
7316 msgid "guestfs_blockdev_getro"
7317 msgstr ""
7318
7319 #. type: verbatim
7320 #: ../src/guestfs-actions.pod:699
7321 #, no-wrap
7322 msgid ""
7323 " int\n"
7324 " guestfs_blockdev_getro (guestfs_h *g,\n"
7325 "                         const char *device);\n"
7326 "\n"
7327 msgstr ""
7328
7329 #. type: textblock
7330 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7331 msgid ""
7332 "Returns a boolean indicating if the block device is read-only (true if read-"
7333 "only, false if not)."
7334 msgstr ""
7335
7336 #. type: textblock
7337 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415
7338 #: ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1919
7339 #: ../src/guestfs-actions.pod:1930 ../src/guestfs-actions.pod:2002
7340 #: ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:2072
7341 #: ../src/guestfs-actions.pod:2097 ../src/guestfs-actions.pod:2120
7342 #: ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3172
7343 #: ../src/guestfs-actions.pod:3190 ../src/guestfs-actions.pod:3352
7344 #: ../src/guestfs-actions.pod:3366 ../src/guestfs-actions.pod:3381
7345 #: ../src/guestfs-actions.pod:3395 ../src/guestfs-actions.pod:3411
7346 #: ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:3442
7347 #: ../src/guestfs-actions.pod:3456 ../src/guestfs-actions.pod:3469
7348 #: ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3498
7349 #: ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526
7350 #: ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:5142
7351 msgid "This function returns a C truth value on success or -1 on error."
7352 msgstr ""
7353
7354 #. type: =head2
7355 #: ../src/guestfs-actions.pod:712
7356 msgid "guestfs_blockdev_getsize64"
7357 msgstr ""
7358
7359 #. type: verbatim
7360 #: ../src/guestfs-actions.pod:714
7361 #, no-wrap
7362 msgid ""
7363 " int64_t\n"
7364 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7365 "                             const char *device);\n"
7366 "\n"
7367 msgstr ""
7368
7369 #. type: textblock
7370 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7371 msgid "This returns the size of the device in bytes."
7372 msgstr ""
7373
7374 #. type: textblock
7375 #: ../src/guestfs-actions.pod:720
7376 msgid "See also C<guestfs_blockdev_getsz>."
7377 msgstr ""
7378
7379 #. type: =head2
7380 #: ../src/guestfs-actions.pod:728
7381 msgid "guestfs_blockdev_getss"
7382 msgstr ""
7383
7384 #. type: verbatim
7385 #: ../src/guestfs-actions.pod:730
7386 #, no-wrap
7387 msgid ""
7388 " int\n"
7389 " guestfs_blockdev_getss (guestfs_h *g,\n"
7390 "                         const char *device);\n"
7391 "\n"
7392 msgstr ""
7393
7394 #. type: textblock
7395 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7396 msgid ""
7397 "This returns the size of sectors on a block device.  Usually 512, but can be "
7398 "larger for modern devices."
7399 msgstr ""
7400
7401 #. type: textblock
7402 #: ../src/guestfs-actions.pod:737
7403 msgid ""
7404 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7405 "that)."
7406 msgstr ""
7407
7408 #. type: =head2
7409 #: ../src/guestfs-actions.pod:746
7410 msgid "guestfs_blockdev_getsz"
7411 msgstr ""
7412
7413 #. type: verbatim
7414 #: ../src/guestfs-actions.pod:748
7415 #, no-wrap
7416 msgid ""
7417 " int64_t\n"
7418 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7419 "                         const char *device);\n"
7420 "\n"
7421 msgstr ""
7422
7423 #. type: textblock
7424 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7425 msgid ""
7426 "This returns the size of the device in units of 512-byte sectors (even if "
7427 "the sectorsize isn't 512 bytes ... weird)."
7428 msgstr ""
7429
7430 #. type: textblock
7431 #: ../src/guestfs-actions.pod:755
7432 msgid ""
7433 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7434 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7435 msgstr ""
7436
7437 #. type: =head2
7438 #: ../src/guestfs-actions.pod:765
7439 msgid "guestfs_blockdev_rereadpt"
7440 msgstr ""
7441
7442 #. type: verbatim
7443 #: ../src/guestfs-actions.pod:767
7444 #, no-wrap
7445 msgid ""
7446 " int\n"
7447 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7448 "                            const char *device);\n"
7449 "\n"
7450 msgstr ""
7451
7452 #. type: textblock
7453 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7454 msgid "Reread the partition table on C<device>."
7455 msgstr ""
7456
7457 #. type: =head2
7458 #: ../src/guestfs-actions.pod:779
7459 msgid "guestfs_blockdev_setbsz"
7460 msgstr ""
7461
7462 #. type: verbatim
7463 #: ../src/guestfs-actions.pod:781
7464 #, no-wrap
7465 msgid ""
7466 " int\n"
7467 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7468 "                          const char *device,\n"
7469 "                          int blocksize);\n"
7470 "\n"
7471 msgstr ""
7472
7473 #. type: textblock
7474 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7475 msgid "This sets the block size of a device."
7476 msgstr ""
7477
7478 #. type: =head2
7479 #: ../src/guestfs-actions.pod:797
7480 msgid "guestfs_blockdev_setro"
7481 msgstr ""
7482
7483 #. type: verbatim
7484 #: ../src/guestfs-actions.pod:799
7485 #, no-wrap
7486 msgid ""
7487 " int\n"
7488 " guestfs_blockdev_setro (guestfs_h *g,\n"
7489 "                         const char *device);\n"
7490 "\n"
7491 msgstr ""
7492
7493 #. type: textblock
7494 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7495 msgid "Sets the block device named C<device> to read-only."
7496 msgstr ""
7497
7498 #. type: =head2
7499 #: ../src/guestfs-actions.pod:811
7500 msgid "guestfs_blockdev_setrw"
7501 msgstr ""
7502
7503 #. type: verbatim
7504 #: ../src/guestfs-actions.pod:813
7505 #, no-wrap
7506 msgid ""
7507 " int\n"
7508 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7509 "                         const char *device);\n"
7510 "\n"
7511 msgstr ""
7512
7513 #. type: textblock
7514 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7515 msgid "Sets the block device named C<device> to read-write."
7516 msgstr ""
7517
7518 #. type: =head2
7519 #: ../src/guestfs-actions.pod:825
7520 msgid "guestfs_case_sensitive_path"
7521 msgstr ""
7522
7523 #. type: verbatim
7524 #: ../src/guestfs-actions.pod:827
7525 #, no-wrap
7526 msgid ""
7527 " char *\n"
7528 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7529 "                              const char *path);\n"
7530 "\n"
7531 msgstr ""
7532
7533 #. type: textblock
7534 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7535 msgid ""
7536 "This can be used to resolve case insensitive paths on a filesystem which is "
7537 "case sensitive.  The use case is to resolve paths which you have read from "
7538 "Windows configuration files or the Windows Registry, to the true path."
7539 msgstr ""
7540
7541 #. type: textblock
7542 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7543 msgid ""
7544 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7545 "(and probably others), which is that although the underlying filesystem is "
7546 "case-insensitive, the driver exports the filesystem to Linux as case-"
7547 "sensitive."
7548 msgstr ""
7549
7550 #. type: textblock
7551 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7552 msgid ""
7553 "One consequence of this is that special directories such as C<c:\\windows> "
7554 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7555 "precise details of how they were created.  In Windows itself this would not "
7556 "be a problem."
7557 msgstr ""
7558
7559 #. type: textblock
7560 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7561 msgid ""
7562 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7563 "#posixfilenames1>"
7564 msgstr ""
7565
7566 #. type: textblock
7567 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7568 msgid ""
7569 "This function resolves the true case of each element in the path and returns "
7570 "the case-sensitive path."
7571 msgstr ""
7572
7573 #. type: textblock
7574 #: ../src/guestfs-actions.pod:853
7575 msgid ""
7576 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7577 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7578 "how the directories were originally created under Windows)."
7579 msgstr ""
7580
7581 #. type: textblock
7582 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7583 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7584 msgstr ""
7585
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:861
7588 msgid "See also C<guestfs_realpath>."
7589 msgstr ""
7590
7591 #. type: textblock
7592 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7165
7593 msgid "(Added in 1.0.75)"
7594 msgstr ""
7595
7596 #. type: =head2
7597 #: ../src/guestfs-actions.pod:868
7598 msgid "guestfs_cat"
7599 msgstr ""
7600
7601 #. type: verbatim
7602 #: ../src/guestfs-actions.pod:870
7603 #, no-wrap
7604 msgid ""
7605 " char *\n"
7606 " guestfs_cat (guestfs_h *g,\n"
7607 "              const char *path);\n"
7608 "\n"
7609 msgstr ""
7610
7611 #. type: textblock
7612 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5629
7613 #: ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3717
7614 msgid "Return the contents of the file named C<path>."
7615 msgstr ""
7616
7617 #. type: textblock
7618 #: ../src/guestfs-actions.pod:876
7619 msgid ""
7620 "Note that this function cannot correctly handle binary files (specifically, "
7621 "files containing C<\\0> character which is treated as end of string).  For "
7622 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7623 "functions which have a more complex interface."
7624 msgstr ""
7625
7626 #. type: textblock
7627 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063
7628 #: ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379
7629 #: ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501
7630 #: ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1766
7631 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:2245
7632 #: ../src/guestfs-actions.pod:2288 ../src/guestfs-actions.pod:2312
7633 #: ../src/guestfs-actions.pod:2329 ../src/guestfs-actions.pod:2358
7634 #: ../src/guestfs-actions.pod:5411 ../src/guestfs-actions.pod:5437
7635 #: ../src/guestfs-actions.pod:5568 ../src/guestfs-actions.pod:5594
7636 #: ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6550
7637 #: ../src/guestfs-actions.pod:6605 ../src/guestfs-actions.pod:6751
7638 #: ../src/guestfs-actions.pod:6775 ../src/guestfs-actions.pod:7444
7639 #: ../src/guestfs-actions.pod:7470 ../src/guestfs-actions.pod:7496
7640 #: ../src/guestfs-actions.pod:7515 ../src/guestfs-actions.pod:7601
7641 #: ../src/guestfs-actions.pod:7620 ../src/guestfs-actions.pod:7666
7642 #: ../src/guestfs-actions.pod:7685 ../fish/guestfish-actions.pod:592
7643 #: ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739
7644 #: ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925
7645 #: ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002
7646 #: ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495
7647 #: ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533
7648 #: ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558
7649 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3587
7650 #: ../fish/guestfish-actions.pod:3602 ../fish/guestfish-actions.pod:3678
7651 #: ../fish/guestfish-actions.pod:3695 ../fish/guestfish-actions.pod:3710
7652 #: ../fish/guestfish-actions.pod:4364 ../fish/guestfish-actions.pod:4410
7653 #: ../fish/guestfish-actions.pod:4495 ../fish/guestfish-actions.pod:4510
7654 #: ../fish/guestfish-actions.pod:4920 ../fish/guestfish-actions.pod:4938
7655 #: ../fish/guestfish-actions.pod:4955 ../fish/guestfish-actions.pod:4965
7656 #: ../fish/guestfish-actions.pod:5014 ../fish/guestfish-actions.pod:5024
7657 #: ../fish/guestfish-actions.pod:5053 ../fish/guestfish-actions.pod:5063
7658 msgid ""
7659 "Because of the message protocol, there is a transfer limit of somewhere "
7660 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7661 msgstr ""
7662
7663 #. type: textblock
7664 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3670
7665 #: ../src/guestfs-actions.pod:3732 ../src/guestfs-actions.pod:3749
7666 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:4242
7667 #: ../src/guestfs-actions.pod:4256 ../src/guestfs-actions.pod:5517
7668 #: ../src/guestfs-actions.pod:5531 ../src/guestfs-actions.pod:7324
7669 #: ../src/guestfs-actions.pod:7338
7670 msgid "(Added in 0.4)"
7671 msgstr ""
7672
7673 #. type: =head2
7674 #: ../src/guestfs-actions.pod:889
7675 msgid "guestfs_checksum"
7676 msgstr ""
7677
7678 #. type: verbatim
7679 #: ../src/guestfs-actions.pod:891
7680 #, no-wrap
7681 msgid ""
7682 " char *\n"
7683 " guestfs_checksum (guestfs_h *g,\n"
7684 "                   const char *csumtype,\n"
7685 "                   const char *path);\n"
7686 "\n"
7687 msgstr ""
7688
7689 #. type: textblock
7690 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7691 msgid ""
7692 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7693 msgstr ""
7694
7695 #. type: textblock
7696 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7697 msgid ""
7698 "The type of checksum to compute is given by the C<csumtype> parameter which "
7699 "must have one of the following values:"
7700 msgstr ""
7701
7702 #. type: =item
7703 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7704 msgid "C<crc>"
7705 msgstr "C<crc>"
7706
7707 #. type: textblock
7708 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7709 msgid ""
7710 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7711 "C<cksum> command."
7712 msgstr ""
7713
7714 #. type: =item
7715 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7716 msgid "C<md5>"
7717 msgstr "C<md5>"
7718
7719 #. type: textblock
7720 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7721 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7722 msgstr ""
7723
7724 #. type: =item
7725 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7726 msgid "C<sha1>"
7727 msgstr "C<sha1>"
7728
7729 #. type: textblock
7730 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7731 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7732 msgstr ""
7733
7734 #. type: =item
7735 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7736 msgid "C<sha224>"
7737 msgstr "C<sha224>"
7738
7739 #. type: textblock
7740 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7741 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7742 msgstr ""
7743
7744 #. type: =item
7745 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7746 msgid "C<sha256>"
7747 msgstr "C<sha256>"
7748
7749 #. type: textblock
7750 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7751 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7752 msgstr ""
7753
7754 #. type: =item
7755 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7756 msgid "C<sha384>"
7757 msgstr "C<sha384>"
7758
7759 #. type: textblock
7760 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7761 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7762 msgstr ""
7763
7764 #. type: =item
7765 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7766 msgid "C<sha512>"
7767 msgstr "C<sha512>"
7768
7769 #. type: textblock
7770 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7771 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7772 msgstr ""
7773
7774 #. type: textblock
7775 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7776 msgid "The checksum is returned as a printable string."
7777 msgstr ""
7778
7779 #. type: textblock
7780 #: ../src/guestfs-actions.pod:937
7781 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7782 msgstr ""
7783
7784 #. type: textblock
7785 #: ../src/guestfs-actions.pod:939
7786 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7787 msgstr ""
7788
7789 #. type: textblock
7790 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252
7791 #: ../src/guestfs-actions.pod:2088 ../src/guestfs-actions.pod:3368
7792 #: ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3458
7793 #: ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:7021
7794 msgid "(Added in 1.0.2)"
7795 msgstr ""
7796
7797 #. type: =head2
7798 #: ../src/guestfs-actions.pod:946
7799 msgid "guestfs_checksum_device"
7800 msgstr ""
7801
7802 #. type: verbatim
7803 #: ../src/guestfs-actions.pod:948
7804 #, no-wrap
7805 msgid ""
7806 " char *\n"
7807 " guestfs_checksum_device (guestfs_h *g,\n"
7808 "                          const char *csumtype,\n"
7809 "                          const char *device);\n"
7810 "\n"
7811 msgstr ""
7812
7813 #. type: textblock
7814 #: ../src/guestfs-actions.pod:953
7815 msgid ""
7816 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7817 "device named C<device>.  For the types of checksums supported see the "
7818 "C<guestfs_checksum> command."
7819 msgstr ""
7820
7821 #. type: textblock
7822 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:5048
7823 #: ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5144
7824 #: ../src/guestfs-actions.pod:5162 ../src/guestfs-actions.pod:5338
7825 #: ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:6944
7826 #: ../src/guestfs-actions.pod:7350
7827 msgid "(Added in 1.3.2)"
7828 msgstr ""
7829
7830 #. type: =head2
7831 #: ../src/guestfs-actions.pod:962
7832 msgid "guestfs_checksums_out"
7833 msgstr ""
7834
7835 #. type: verbatim
7836 #: ../src/guestfs-actions.pod:964
7837 #, no-wrap
7838 msgid ""
7839 " int\n"
7840 " guestfs_checksums_out (guestfs_h *g,\n"
7841 "                        const char *csumtype,\n"
7842 "                        const char *directory,\n"
7843 "                        const char *sumsfile);\n"
7844 "\n"
7845 msgstr ""
7846
7847 #. type: textblock
7848 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7849 msgid ""
7850 "This command computes the checksums of all regular files in C<directory> and "
7851 "then emits a list of those checksums to the local output file C<sumsfile>."
7852 msgstr ""
7853
7854 #. type: textblock
7855 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7856 msgid ""
7857 "This can be used for verifying the integrity of a virtual machine.  However "
7858 "to be properly secure you should pay attention to the output of the checksum "
7859 "command (it uses the ones from GNU coreutils).  In particular when the "
7860 "filename is not printable, coreutils uses a special backslash syntax.  For "
7861 "more information, see the GNU coreutils info file."
7862 msgstr ""
7863
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:984
7866 msgid "(Added in 1.3.7)"
7867 msgstr ""
7868
7869 #. type: =head2
7870 #: ../src/guestfs-actions.pod:986
7871 msgid "guestfs_chmod"
7872 msgstr ""
7873
7874 #. type: verbatim
7875 #: ../src/guestfs-actions.pod:988
7876 #, no-wrap
7877 msgid ""
7878 " int\n"
7879 " guestfs_chmod (guestfs_h *g,\n"
7880 "                int mode,\n"
7881 "                const char *path);\n"
7882 "\n"
7883 msgstr ""
7884
7885 #. type: textblock
7886 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7887 msgid ""
7888 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7889 "supported."
7890 msgstr ""
7891
7892 #. type: textblock
7893 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7894 msgid ""
7895 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7896 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7897 "C<700>."
7898 msgstr ""
7899
7900 #. type: textblock
7901 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4493
7902 #: ../src/guestfs-actions.pod:4690 ../src/guestfs-actions.pod:4709
7903 #: ../src/guestfs-actions.pod:4728 ../fish/guestfish-actions.pod:681
7904 #: ../fish/guestfish-actions.pod:3013 ../fish/guestfish-actions.pod:3142
7905 #: ../fish/guestfish-actions.pod:3152 ../fish/guestfish-actions.pod:3162
7906 msgid "The mode actually set is affected by the umask."
7907 msgstr ""
7908
7909 #. type: =head2
7910 #: ../src/guestfs-actions.pod:1006
7911 msgid "guestfs_chown"
7912 msgstr ""
7913
7914 #. type: verbatim
7915 #: ../src/guestfs-actions.pod:1008
7916 #, no-wrap
7917 msgid ""
7918 " int\n"
7919 " guestfs_chown (guestfs_h *g,\n"
7920 "                int owner,\n"
7921 "                int group,\n"
7922 "                const char *path);\n"
7923 "\n"
7924 msgstr ""
7925
7926 #. type: textblock
7927 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7928 msgid "Change the file owner to C<owner> and group to C<group>."
7929 msgstr ""
7930
7931 #. type: textblock
7932 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3587
7933 #: ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2464
7934 msgid ""
7935 "Only numeric uid and gid are supported.  If you want to use names, you will "
7936 "need to locate and parse the password file yourself (Augeas support makes "
7937 "this relatively easy)."
7938 msgstr ""
7939
7940 #. type: =head2
7941 #: ../src/guestfs-actions.pod:1024
7942 msgid "guestfs_command"
7943 msgstr ""
7944
7945 #. type: verbatim
7946 #: ../src/guestfs-actions.pod:1026
7947 #, no-wrap
7948 msgid ""
7949 " char *\n"
7950 " guestfs_command (guestfs_h *g,\n"
7951 "                  char *const *arguments);\n"
7952 "\n"
7953 msgstr ""
7954
7955 #. type: textblock
7956 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7957 msgid ""
7958 "This call runs a command from the guest filesystem.  The filesystem must be "
7959 "mounted, and must contain a compatible operating system (ie. something "
7960 "Linux, with the same or compatible processor architecture)."
7961 msgstr ""
7962
7963 #. type: textblock
7964 #: ../src/guestfs-actions.pod:1035
7965 msgid ""
7966 "The single parameter is an argv-style list of arguments.  The first element "
7967 "is the name of the program to run.  Subsequent elements are parameters.  The "
7968 "list must be non-empty (ie. must contain a program name).  Note that the "
7969 "command runs directly, and is I<not> invoked via the shell (see "
7970 "C<guestfs_sh>)."
7971 msgstr ""
7972
7973 #. type: textblock
7974 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7975 msgid "The return value is anything printed to I<stdout> by the command."
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7980 msgid ""
7981 "If the command returns a non-zero exit status, then this function returns an "
7982 "error message.  The error message string is the content of I<stderr> from "
7983 "the command."
7984 msgstr ""
7985
7986 #. type: textblock
7987 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7988 msgid ""
7989 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7990 "bin>.  If you require a program from another location, you should provide "
7991 "the full path in the first parameter."
7992 msgstr ""
7993
7994 #. type: textblock
7995 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
7996 msgid ""
7997 "Shared libraries and data files required by the program must be available on "
7998 "filesystems which are mounted in the correct places.  It is the caller's "
7999 "responsibility to ensure all filesystems that are needed are mounted at the "
8000 "right locations."
8001 msgstr ""
8002
8003 #. type: textblock
8004 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086
8005 #: ../src/guestfs-actions.pod:1551
8006 msgid "(Added in 0.9.1)"
8007 msgstr ""
8008
8009 #. type: =head2
8010 #: ../src/guestfs-actions.pod:1068
8011 msgid "guestfs_command_lines"
8012 msgstr ""
8013
8014 #. type: verbatim
8015 #: ../src/guestfs-actions.pod:1070
8016 #, no-wrap
8017 msgid ""
8018 " char **\n"
8019 " guestfs_command_lines (guestfs_h *g,\n"
8020 "                        char *const *arguments);\n"
8021 "\n"
8022 msgstr ""
8023
8024 #. type: textblock
8025 #: ../src/guestfs-actions.pod:1074
8026 msgid ""
8027 "This is the same as C<guestfs_command>, but splits the result into a list of "
8028 "lines."
8029 msgstr ""
8030
8031 #. type: textblock
8032 #: ../src/guestfs-actions.pod:1077
8033 msgid "See also: C<guestfs_sh_lines>"
8034 msgstr ""
8035
8036 #. type: =head2
8037 #: ../src/guestfs-actions.pod:1088
8038 msgid "guestfs_config"
8039 msgstr ""
8040
8041 #. type: verbatim
8042 #: ../src/guestfs-actions.pod:1090
8043 #, no-wrap
8044 msgid ""
8045 " int\n"
8046 " guestfs_config (guestfs_h *g,\n"
8047 "                 const char *qemuparam,\n"
8048 "                 const char *qemuvalue);\n"
8049 "\n"
8050 msgstr ""
8051
8052 #. type: textblock
8053 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
8054 msgid ""
8055 "This can be used to add arbitrary qemu command line parameters of the form "
8056 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8057 "setting some parameters which would interfere with parameters that we use."
8058 msgstr ""
8059
8060 #. type: textblock
8061 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
8062 msgid "The first character of C<param> string must be a C<-> (dash)."
8063 msgstr ""
8064
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
8067 msgid "C<value> can be NULL."
8068 msgstr ""
8069
8070 #. type: =head2
8071 #: ../src/guestfs-actions.pod:1108
8072 msgid "guestfs_copy_size"
8073 msgstr ""
8074
8075 #. type: verbatim
8076 #: ../src/guestfs-actions.pod:1110
8077 #, no-wrap
8078 msgid ""
8079 " int\n"
8080 " guestfs_copy_size (guestfs_h *g,\n"
8081 "                    const char *src,\n"
8082 "                    const char *dest,\n"
8083 "                    int64_t size);\n"
8084 "\n"
8085 msgstr ""
8086
8087 #. type: textblock
8088 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
8089 msgid ""
8090 "This command copies exactly C<size> bytes from one source device or file "
8091 "C<src> to another destination device or file C<dest>."
8092 msgstr ""
8093
8094 #. type: textblock
8095 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
8096 msgid ""
8097 "Note this will fail if the source is too short or if the destination is not "
8098 "large enough."
8099 msgstr ""
8100
8101 #. type: textblock
8102 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247
8103 #: ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323
8104 #: ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1722
8105 #: ../src/guestfs-actions.pod:3568 ../src/guestfs-actions.pod:7016
8106 #: ../src/guestfs-actions.pod:7050 ../src/guestfs-actions.pod:7537
8107 #: ../src/guestfs-actions.pod:7556
8108 msgid ""
8109 "This long-running command can generate progress notification messages so "
8110 "that the caller can display a progress bar or indicator.  To receive these "
8111 "messages, the caller must register a progress event callback.  See L<guestfs"
8112 "(3)/GUESTFS_EVENT_PROGRESS>."
8113 msgstr ""
8114
8115 #. type: textblock
8116 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4269
8117 #: ../src/guestfs-actions.pod:5544 ../src/guestfs-actions.pod:7257
8118 #: ../src/guestfs-actions.pod:7277 ../src/guestfs-actions.pod:7363
8119 msgid "(Added in 1.0.87)"
8120 msgstr ""
8121
8122 #. type: =head2
8123 #: ../src/guestfs-actions.pod:1131
8124 msgid "guestfs_cp"
8125 msgstr ""
8126
8127 #. type: verbatim
8128 #: ../src/guestfs-actions.pod:1133
8129 #, no-wrap
8130 msgid ""
8131 " int\n"
8132 " guestfs_cp (guestfs_h *g,\n"
8133 "             const char *src,\n"
8134 "             const char *dest);\n"
8135 "\n"
8136 msgstr ""
8137
8138 #. type: textblock
8139 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
8140 msgid ""
8141 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8142 "destination filename or destination directory."
8143 msgstr ""
8144
8145 #. type: textblock
8146 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157
8147 #: ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303
8148 #: ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:5011
8149 #: ../src/guestfs-actions.pod:5388
8150 msgid "(Added in 1.0.18)"
8151 msgstr ""
8152
8153 #. type: =head2
8154 #: ../src/guestfs-actions.pod:1145
8155 msgid "guestfs_cp_a"
8156 msgstr ""
8157
8158 #. type: verbatim
8159 #: ../src/guestfs-actions.pod:1147
8160 #, no-wrap
8161 msgid ""
8162 " int\n"
8163 " guestfs_cp_a (guestfs_h *g,\n"
8164 "               const char *src,\n"
8165 "               const char *dest);\n"
8166 "\n"
8167 msgstr ""
8168
8169 #. type: textblock
8170 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
8171 msgid ""
8172 "This copies a file or directory from C<src> to C<dest> recursively using the "
8173 "C<cp -a> command."
8174 msgstr ""
8175
8176 #. type: =head2
8177 #: ../src/guestfs-actions.pod:1159
8178 msgid "guestfs_dd"
8179 msgstr ""
8180
8181 #. type: verbatim
8182 #: ../src/guestfs-actions.pod:1161
8183 #, no-wrap
8184 msgid ""
8185 " int\n"
8186 " guestfs_dd (guestfs_h *g,\n"
8187 "             const char *src,\n"
8188 "             const char *dest);\n"
8189 "\n"
8190 msgstr ""
8191
8192 #. type: textblock
8193 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
8194 msgid ""
8195 "This command copies from one source device or file C<src> to another "
8196 "destination device or file C<dest>.  Normally you would use this to copy to "
8197 "or from a device or partition, for example to duplicate a filesystem."
8198 msgstr ""
8199
8200 #. type: textblock
8201 #: ../src/guestfs-actions.pod:1171
8202 msgid ""
8203 "If the destination is a device, it must be as large or larger than the "
8204 "source file or device, otherwise the copy will fail.  This command cannot do "
8205 "partial copies (see C<guestfs_copy_size>)."
8206 msgstr ""
8207
8208 #. type: =head2
8209 #: ../src/guestfs-actions.pod:1179
8210 msgid "guestfs_df"
8211 msgstr ""
8212
8213 #. type: verbatim
8214 #: ../src/guestfs-actions.pod:1181
8215 #, no-wrap
8216 msgid ""
8217 " char *\n"
8218 " guestfs_df (guestfs_h *g);\n"
8219 "\n"
8220 msgstr ""
8221
8222 #. type: textblock
8223 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
8224 msgid "This command runs the C<df> command to report disk space used."
8225 msgstr ""
8226
8227 #. type: textblock
8228 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
8229 msgid ""
8230 "This command is mostly useful for interactive sessions.  It is I<not> "
8231 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8232 "from programs."
8233 msgstr ""
8234
8235 #. type: textblock
8236 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210
8237 #: ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2291
8238 #: ../src/guestfs-actions.pod:2315 ../src/guestfs-actions.pod:2383
8239 #: ../src/guestfs-actions.pod:4379 ../src/guestfs-actions.pod:4911
8240 #: ../src/guestfs-actions.pod:6754 ../src/guestfs-actions.pod:6778
8241 #: ../src/guestfs-actions.pod:7403 ../src/guestfs-actions.pod:7416
8242 #: ../src/guestfs-actions.pod:7429
8243 msgid "(Added in 1.0.54)"
8244 msgstr ""
8245
8246 #. type: =head2
8247 #: ../src/guestfs-actions.pod:1195
8248 msgid "guestfs_df_h"
8249 msgstr ""
8250
8251 #. type: verbatim
8252 #: ../src/guestfs-actions.pod:1197
8253 #, no-wrap
8254 msgid ""
8255 " char *\n"
8256 " guestfs_df_h (guestfs_h *g);\n"
8257 "\n"
8258 msgstr ""
8259
8260 #. type: textblock
8261 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
8262 msgid ""
8263 "This command runs the C<df -h> command to report disk space used in human-"
8264 "readable format."
8265 msgstr ""
8266
8267 #. type: =head2
8268 #: ../src/guestfs-actions.pod:1212
8269 msgid "guestfs_dmesg"
8270 msgstr ""
8271
8272 #. type: verbatim
8273 #: ../src/guestfs-actions.pod:1214
8274 #, no-wrap
8275 msgid ""
8276 " char *\n"
8277 " guestfs_dmesg (guestfs_h *g);\n"
8278 "\n"
8279 msgstr ""
8280
8281 #. type: textblock
8282 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
8283 msgid ""
8284 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8285 "This is sometimes useful for extended debugging of problems."
8286 msgstr ""
8287
8288 #. type: textblock
8289 #: ../src/guestfs-actions.pod:1221
8290 msgid ""
8291 "Another way to get the same information is to enable verbose messages with "
8292 "C<guestfs_set_verbose> or by setting the environment variable "
8293 "C<LIBGUESTFS_DEBUG=1> before running the program."
8294 msgstr ""
8295
8296 #. type: =head2
8297 #: ../src/guestfs-actions.pod:1231
8298 msgid "guestfs_download"
8299 msgstr ""
8300
8301 #. type: verbatim
8302 #: ../src/guestfs-actions.pod:1233
8303 #, no-wrap
8304 msgid ""
8305 " int\n"
8306 " guestfs_download (guestfs_h *g,\n"
8307 "                   const char *remotefilename,\n"
8308 "                   const char *filename);\n"
8309 "\n"
8310 msgstr ""
8311
8312 #. type: textblock
8313 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263
8314 #: ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
8315 msgid ""
8316 "Download file C<remotefilename> and save it as C<filename> on the local "
8317 "machine."
8318 msgstr ""
8319
8320 #. type: textblock
8321 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:7010
8322 #: ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4668
8323 msgid "C<filename> can also be a named pipe."
8324 msgstr ""
8325
8326 #. type: textblock
8327 #: ../src/guestfs-actions.pod:1243
8328 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8329 msgstr ""
8330
8331 #. type: =head2
8332 #: ../src/guestfs-actions.pod:1254
8333 msgid "guestfs_download_offset"
8334 msgstr ""
8335
8336 #. type: verbatim
8337 #: ../src/guestfs-actions.pod:1256
8338 #, no-wrap
8339 msgid ""
8340 " int\n"
8341 " guestfs_download_offset (guestfs_h *g,\n"
8342 "                          const char *remotefilename,\n"
8343 "                          const char *filename,\n"
8344 "                          int64_t offset,\n"
8345 "                          int64_t size);\n"
8346 "\n"
8347 msgstr ""
8348
8349 #. type: textblock
8350 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
8351 msgid ""
8352 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8353 "region must be within the file or device)."
8354 msgstr ""
8355
8356 #. type: textblock
8357 #: ../src/guestfs-actions.pod:1269
8358 msgid ""
8359 "Note that there is no limit on the amount of data that can be downloaded "
8360 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8361 "full amount unless an error occurs."
8362 msgstr ""
8363
8364 #. type: textblock
8365 #: ../src/guestfs-actions.pod:1274
8366 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8367 msgstr ""
8368
8369 #. type: textblock
8370 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:7055
8371 msgid "(Added in 1.5.17)"
8372 msgstr ""
8373
8374 #. type: =head2
8375 #: ../src/guestfs-actions.pod:1285
8376 msgid "guestfs_drop_caches"
8377 msgstr ""
8378
8379 #. type: verbatim
8380 #: ../src/guestfs-actions.pod:1287
8381 #, no-wrap
8382 msgid ""
8383 " int\n"
8384 " guestfs_drop_caches (guestfs_h *g,\n"
8385 "                      int whattodrop);\n"
8386 "\n"
8387 msgstr ""
8388
8389 #. type: textblock
8390 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
8391 msgid ""
8392 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8393 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8394 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8395 msgstr ""
8396
8397 #. type: textblock
8398 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
8399 msgid "Setting C<whattodrop> to 3 should drop everything."
8400 msgstr ""
8401
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
8404 msgid ""
8405 "This automatically calls L<sync(2)> before the operation, so that the "
8406 "maximum guest memory is freed."
8407 msgstr ""
8408
8409 #. type: =head2
8410 #: ../src/guestfs-actions.pod:1305
8411 msgid "guestfs_du"
8412 msgstr ""
8413
8414 #. type: verbatim
8415 #: ../src/guestfs-actions.pod:1307
8416 #, no-wrap
8417 msgid ""
8418 " int64_t\n"
8419 " guestfs_du (guestfs_h *g,\n"
8420 "             const char *path);\n"
8421 "\n"
8422 msgstr ""
8423
8424 #. type: textblock
8425 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
8426 msgid ""
8427 "This command runs the C<du -s> command to estimate file space usage for "
8428 "C<path>."
8429 msgstr ""
8430
8431 #. type: textblock
8432 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8433 msgid ""
8434 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8435 "estimate includes the contents of the directory and all subdirectories "
8436 "(recursively)."
8437 msgstr ""
8438
8439 #. type: textblock
8440 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8441 msgid ""
8442 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8443 msgstr ""
8444
8445 #. type: =head2
8446 #: ../src/guestfs-actions.pod:1330
8447 msgid "guestfs_e2fsck_f"
8448 msgstr ""
8449
8450 #. type: verbatim
8451 #: ../src/guestfs-actions.pod:1332
8452 #, no-wrap
8453 msgid ""
8454 " int\n"
8455 " guestfs_e2fsck_f (guestfs_h *g,\n"
8456 "                   const char *device);\n"
8457 "\n"
8458 msgstr ""
8459
8460 #. type: textblock
8461 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8462 msgid ""
8463 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8464 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8465 "clean (I<-f>)."
8466 msgstr ""
8467
8468 #. type: textblock
8469 #: ../src/guestfs-actions.pod:1340
8470 msgid ""
8471 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8472 "Normally you should use C<guestfs_fsck>."
8473 msgstr ""
8474
8475 #. type: textblock
8476 #: ../src/guestfs-actions.pod:1345
8477 msgid "(Added in 1.0.29)"
8478 msgstr ""
8479
8480 #. type: =head2
8481 #: ../src/guestfs-actions.pod:1347
8482 msgid "guestfs_echo_daemon"
8483 msgstr ""
8484
8485 #. type: verbatim
8486 #: ../src/guestfs-actions.pod:1349
8487 #, no-wrap
8488 msgid ""
8489 " char *\n"
8490 " guestfs_echo_daemon (guestfs_h *g,\n"
8491 "                      char *const *words);\n"
8492 "\n"
8493 msgstr ""
8494
8495 #. type: textblock
8496 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8497 msgid ""
8498 "This command concatenates the list of C<words> passed with single spaces "
8499 "between them and returns the resulting string."
8500 msgstr ""
8501
8502 #. type: textblock
8503 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8504 msgid "You can use this command to test the connection through to the daemon."
8505 msgstr ""
8506
8507 #. type: textblock
8508 #: ../src/guestfs-actions.pod:1358
8509 msgid "See also C<guestfs_ping_daemon>."
8510 msgstr ""
8511
8512 #. type: textblock
8513 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2099
8514 #: ../src/guestfs-actions.pod:6226
8515 msgid "(Added in 1.0.69)"
8516 msgstr ""
8517
8518 #. type: =head2
8519 #: ../src/guestfs-actions.pod:1365
8520 msgid "guestfs_egrep"
8521 msgstr ""
8522
8523 #. type: verbatim
8524 #: ../src/guestfs-actions.pod:1367
8525 #, no-wrap
8526 msgid ""
8527 " char **\n"
8528 " guestfs_egrep (guestfs_h *g,\n"
8529 "                const char *regex,\n"
8530 "                const char *path);\n"
8531 "\n"
8532 msgstr ""
8533
8534 #. type: textblock
8535 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8536 msgid ""
8537 "This calls the external C<egrep> program and returns the matching lines."
8538 msgstr ""
8539
8540 #. type: textblock
8541 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401
8542 #: ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504
8543 #: ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2229
8544 #: ../src/guestfs-actions.pod:2248 ../src/guestfs-actions.pod:2404
8545 #: ../src/guestfs-actions.pod:2417 ../src/guestfs-actions.pod:2432
8546 #: ../src/guestfs-actions.pod:2478 ../src/guestfs-actions.pod:2500
8547 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:3762
8548 #: ../src/guestfs-actions.pod:3776 ../src/guestfs-actions.pod:3789
8549 #: ../src/guestfs-actions.pod:3803 ../src/guestfs-actions.pod:4789
8550 #: ../src/guestfs-actions.pod:5722 ../src/guestfs-actions.pod:5771
8551 #: ../src/guestfs-actions.pod:6622 ../src/guestfs-actions.pod:6634
8552 #: ../src/guestfs-actions.pod:6647 ../src/guestfs-actions.pod:6660
8553 #: ../src/guestfs-actions.pod:6682 ../src/guestfs-actions.pod:6695
8554 #: ../src/guestfs-actions.pod:6708 ../src/guestfs-actions.pod:6721
8555 #: ../src/guestfs-actions.pod:7499 ../src/guestfs-actions.pod:7518
8556 #: ../src/guestfs-actions.pod:7604 ../src/guestfs-actions.pod:7623
8557 #: ../src/guestfs-actions.pod:7669 ../src/guestfs-actions.pod:7688
8558 msgid "(Added in 1.0.66)"
8559 msgstr ""
8560
8561 #. type: =head2
8562 #: ../src/guestfs-actions.pod:1384
8563 msgid "guestfs_egrepi"
8564 msgstr ""
8565
8566 #. type: verbatim
8567 #: ../src/guestfs-actions.pod:1386
8568 #, no-wrap
8569 msgid ""
8570 " char **\n"
8571 " guestfs_egrepi (guestfs_h *g,\n"
8572 "                 const char *regex,\n"
8573 "                 const char *path);\n"
8574 "\n"
8575 msgstr ""
8576
8577 #. type: textblock
8578 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8579 msgid ""
8580 "This calls the external C<egrep -i> program and returns the matching lines."
8581 msgstr ""
8582
8583 #. type: =head2
8584 #: ../src/guestfs-actions.pod:1403
8585 msgid "guestfs_equal"
8586 msgstr ""
8587
8588 #. type: verbatim
8589 #: ../src/guestfs-actions.pod:1405
8590 #, no-wrap
8591 msgid ""
8592 " int\n"
8593 " guestfs_equal (guestfs_h *g,\n"
8594 "                const char *file1,\n"
8595 "                const char *file2);\n"
8596 "\n"
8597 msgstr ""
8598
8599 #. type: textblock
8600 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8601 msgid ""
8602 "This compares the two files C<file1> and C<file2> and returns true if their "
8603 "content is exactly equal, or false otherwise."
8604 msgstr ""
8605
8606 #. type: textblock
8607 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8608 msgid "The external L<cmp(1)> program is used for the comparison."
8609 msgstr ""
8610
8611 #. type: =head2
8612 #: ../src/guestfs-actions.pod:1419
8613 msgid "guestfs_exists"
8614 msgstr ""
8615
8616 #. type: verbatim
8617 #: ../src/guestfs-actions.pod:1421
8618 #, no-wrap
8619 msgid ""
8620 " int\n"
8621 " guestfs_exists (guestfs_h *g,\n"
8622 "                 const char *path);\n"
8623 "\n"
8624 msgstr ""
8625
8626 #. type: textblock
8627 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8628 msgid ""
8629 "This returns C<true> if and only if there is a file, directory (or anything) "
8630 "with the given C<path> name."
8631 msgstr ""
8632
8633 #. type: textblock
8634 #: ../src/guestfs-actions.pod:1428
8635 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8636 msgstr ""
8637
8638 #. type: =head2
8639 #: ../src/guestfs-actions.pod:1434
8640 msgid "guestfs_fallocate"
8641 msgstr ""
8642
8643 #. type: verbatim
8644 #: ../src/guestfs-actions.pod:1436
8645 #, no-wrap
8646 msgid ""
8647 " int\n"
8648 " guestfs_fallocate (guestfs_h *g,\n"
8649 "                    const char *path,\n"
8650 "                    int len);\n"
8651 "\n"
8652 msgstr ""
8653
8654 #. type: textblock
8655 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467
8656 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8657 msgid ""
8658 "This command preallocates a file (containing zero bytes) named C<path> of "
8659 "size C<len> bytes.  If the file exists already, it is overwritten."
8660 msgstr ""
8661
8662 #. type: textblock
8663 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8664 msgid ""
8665 "Do not confuse this with the guestfish-specific C<alloc> command which "
8666 "allocates a file in the host and attaches it as a device."
8667 msgstr ""
8668
8669 #. type: textblock
8670 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8671 msgid ""
8672 "This function is deprecated.  In new code, use the C<fallocate64> call "
8673 "instead."
8674 msgstr ""
8675
8676 #. type: =head2
8677 #: ../src/guestfs-actions.pod:1460
8678 msgid "guestfs_fallocate64"
8679 msgstr ""
8680
8681 #. type: verbatim
8682 #: ../src/guestfs-actions.pod:1462
8683 #, no-wrap
8684 msgid ""
8685 " int\n"
8686 " guestfs_fallocate64 (guestfs_h *g,\n"
8687 "                      const char *path,\n"
8688 "                      int64_t len);\n"
8689 "\n"
8690 msgstr ""
8691
8692 #. type: textblock
8693 #: ../src/guestfs-actions.pod:1471
8694 msgid ""
8695 "Note that this call allocates disk blocks for the file.  To create a sparse "
8696 "file use C<guestfs_truncate_size> instead."
8697 msgstr ""
8698
8699 #. type: textblock
8700 #: ../src/guestfs-actions.pod:1474
8701 msgid ""
8702 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8703 "oversight it only allowed 30 bit lengths to be specified, effectively "
8704 "limiting the maximum size of files created through that call to 1GB."
8705 msgstr ""
8706
8707 #. type: textblock
8708 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8709 msgid ""
8710 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8711 "commands which create a file in the host and attach it as a device."
8712 msgstr ""
8713
8714 #. type: textblock
8715 #: ../src/guestfs-actions.pod:1485
8716 msgid "(Added in 1.3.17)"
8717 msgstr ""
8718
8719 #. type: =head2
8720 #: ../src/guestfs-actions.pod:1487
8721 msgid "guestfs_fgrep"
8722 msgstr ""
8723
8724 #. type: verbatim
8725 #: ../src/guestfs-actions.pod:1489
8726 #, no-wrap
8727 msgid ""
8728 " char **\n"
8729 " guestfs_fgrep (guestfs_h *g,\n"
8730 "                const char *pattern,\n"
8731 "                const char *path);\n"
8732 "\n"
8733 msgstr ""
8734
8735 #. type: textblock
8736 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8737 msgid ""
8738 "This calls the external C<fgrep> program and returns the matching lines."
8739 msgstr ""
8740
8741 #. type: =head2
8742 #: ../src/guestfs-actions.pod:1506
8743 msgid "guestfs_fgrepi"
8744 msgstr ""
8745
8746 #. type: verbatim
8747 #: ../src/guestfs-actions.pod:1508
8748 #, no-wrap
8749 msgid ""
8750 " char **\n"
8751 " guestfs_fgrepi (guestfs_h *g,\n"
8752 "                 const char *pattern,\n"
8753 "                 const char *path);\n"
8754 "\n"
8755 msgstr ""
8756
8757 #. type: textblock
8758 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8759 msgid ""
8760 "This calls the external C<fgrep -i> program and returns the matching lines."
8761 msgstr ""
8762
8763 #. type: =head2
8764 #: ../src/guestfs-actions.pod:1525
8765 msgid "guestfs_file"
8766 msgstr ""
8767
8768 #. type: verbatim
8769 #: ../src/guestfs-actions.pod:1527
8770 #, no-wrap
8771 msgid ""
8772 " char *\n"
8773 " guestfs_file (guestfs_h *g,\n"
8774 "               const char *path);\n"
8775 "\n"
8776 msgstr ""
8777
8778 #. type: textblock
8779 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8780 msgid ""
8781 "This call uses the standard L<file(1)> command to determine the type or "
8782 "contents of the file."
8783 msgstr ""
8784
8785 #. type: textblock
8786 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8787 msgid ""
8788 "This call will also transparently look inside various types of compressed "
8789 "file."
8790 msgstr ""
8791
8792 #. type: textblock
8793 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8794 msgid ""
8795 "The exact command which runs is C<file -zb path>.  Note in particular that "
8796 "the filename is not prepended to the output (the I<-b> option)."
8797 msgstr ""
8798
8799 #. type: textblock
8800 #: ../src/guestfs-actions.pod:1541 ../fish/guestfish-actions.pod:1019
8801 msgid ""
8802 "The output depends on the output of the underlying L<file(1)> command and it "
8803 "can change in future in ways beyond our control.  In other words, the output "
8804 "is not guaranteed by the ABI."
8805 msgstr ""
8806
8807 #. type: textblock
8808 #: ../src/guestfs-actions.pod:1545
8809 msgid ""
8810 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8811 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8812 msgstr ""
8813
8814 #. type: =head2
8815 #: ../src/guestfs-actions.pod:1553
8816 msgid "guestfs_file_architecture"
8817 msgstr ""
8818
8819 #. type: verbatim
8820 #: ../src/guestfs-actions.pod:1555
8821 #, no-wrap
8822 msgid ""
8823 " char *\n"
8824 " guestfs_file_architecture (guestfs_h *g,\n"
8825 "                            const char *filename);\n"
8826 "\n"
8827 msgstr ""
8828
8829 #. type: textblock
8830 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1030
8831 msgid ""
8832 "This detects the architecture of the binary C<filename>, and returns it if "
8833 "known."
8834 msgstr ""
8835
8836 #. type: textblock
8837 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8838 msgid "Currently defined architectures are:"
8839 msgstr ""
8840
8841 #. type: =item
8842 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1037
8843 msgid "\"i386\""
8844 msgstr "\"i386\""
8845
8846 #. type: textblock
8847 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1039
8848 msgid ""
8849 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8850 "irrespective of the precise processor requirements of the binary."
8851 msgstr ""
8852
8853 #. type: =item
8854 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8855 msgid "\"x86_64\""
8856 msgstr "\"x86_64\""
8857
8858 #. type: textblock
8859 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1044
8860 msgid "64 bit x86-64."
8861 msgstr ""
8862
8863 #. type: =item
8864 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1046
8865 msgid "\"sparc\""
8866 msgstr ""
8867
8868 #. type: textblock
8869 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1048
8870 msgid "32 bit SPARC."
8871 msgstr ""
8872
8873 #. type: =item
8874 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1050
8875 msgid "\"sparc64\""
8876 msgstr ""
8877
8878 #. type: textblock
8879 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1052
8880 msgid "64 bit SPARC V9 and above."
8881 msgstr ""
8882
8883 #. type: =item
8884 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1054
8885 msgid "\"ia64\""
8886 msgstr "\"ia64\""
8887
8888 #. type: textblock
8889 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1056
8890 msgid "Intel Itanium."
8891 msgstr "Intel Itanium."
8892
8893 #. type: =item
8894 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1058
8895 msgid "\"ppc\""
8896 msgstr ""
8897
8898 #. type: textblock
8899 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1060
8900 msgid "32 bit Power PC."
8901 msgstr ""
8902
8903 #. type: =item
8904 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1062
8905 msgid "\"ppc64\""
8906 msgstr ""
8907
8908 #. type: textblock
8909 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1064
8910 msgid "64 bit Power PC."
8911 msgstr ""
8912
8913 #. type: textblock
8914 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1068
8915 msgid "Libguestfs may return other architecture strings in future."
8916 msgstr ""
8917
8918 #. type: textblock
8919 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1070
8920 msgid "The function works on at least the following types of files:"
8921 msgstr ""
8922
8923 #. type: textblock
8924 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1076
8925 msgid "many types of Un*x and Linux binary"
8926 msgstr ""
8927
8928 #. type: textblock
8929 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1080
8930 msgid "many types of Un*x and Linux shared library"
8931 msgstr ""
8932
8933 #. type: textblock
8934 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1084
8935 msgid "Windows Win32 and Win64 binaries"
8936 msgstr ""
8937
8938 #. type: textblock
8939 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1088
8940 msgid "Windows Win32 and Win64 DLLs"
8941 msgstr ""
8942
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1090
8945 msgid "Win32 binaries and DLLs return C<i386>."
8946 msgstr ""
8947
8948 #. type: textblock
8949 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1092
8950 msgid "Win64 binaries and DLLs return C<x86_64>."
8951 msgstr ""
8952
8953 #. type: textblock
8954 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1096
8955 msgid "Linux kernel modules"
8956 msgstr ""
8957
8958 #. type: textblock
8959 #: ../src/guestfs-actions.pod:1629 ../fish/guestfish-actions.pod:1100
8960 msgid "Linux new-style initrd images"
8961 msgstr ""
8962
8963 #. type: textblock
8964 #: ../src/guestfs-actions.pod:1633 ../fish/guestfish-actions.pod:1104
8965 msgid "some non-x86 Linux vmlinuz kernels"
8966 msgstr ""
8967
8968 #. type: textblock
8969 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1108
8970 msgid "What it can't do currently:"
8971 msgstr ""
8972
8973 #. type: textblock
8974 #: ../src/guestfs-actions.pod:1643 ../fish/guestfish-actions.pod:1114
8975 msgid "static libraries (libfoo.a)"
8976 msgstr ""
8977
8978 #. type: textblock
8979 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1118
8980 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8981 msgstr ""
8982
8983 #. type: textblock
8984 #: ../src/guestfs-actions.pod:1651 ../fish/guestfish-actions.pod:1122
8985 msgid "x86 Linux vmlinuz kernels"
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:1653 ../fish/guestfish-actions.pod:1124
8990 msgid ""
8991 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8992 "compressed code, and are horribly hard to unpack.  If you want to find the "
8993 "architecture of a kernel, use the architecture of the associated initrd or "
8994 "kernel module(s) instead."
8995 msgstr ""
8996
8997 #. type: textblock
8998 #: ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826
8999 #: ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:2533
9000 #: ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2689
9001 #: ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2894
9002 #: ../src/guestfs-actions.pod:2934 ../src/guestfs-actions.pod:3009
9003 #: ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3339
9004 #: ../src/guestfs-actions.pod:3471
9005 msgid "(Added in 1.5.3)"
9006 msgstr ""
9007
9008 #. type: =head2
9009 #: ../src/guestfs-actions.pod:1665
9010 msgid "guestfs_filesize"
9011 msgstr ""
9012
9013 #. type: verbatim
9014 #: ../src/guestfs-actions.pod:1667
9015 #, no-wrap
9016 msgid ""
9017 " int64_t\n"
9018 " guestfs_filesize (guestfs_h *g,\n"
9019 "                   const char *file);\n"
9020 "\n"
9021 msgstr ""
9022
9023 #. type: textblock
9024 #: ../src/guestfs-actions.pod:1671 ../fish/guestfish-actions.pod:1135
9025 msgid "This command returns the size of C<file> in bytes."
9026 msgstr ""
9027
9028 #. type: textblock
9029 #: ../src/guestfs-actions.pod:1673
9030 msgid ""
9031 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9032 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9033 "devices, use C<guestfs_blockdev_getsize64>."
9034 msgstr ""
9035
9036 #. type: textblock
9037 #: ../src/guestfs-actions.pod:1679
9038 msgid "(Added in 1.0.82)"
9039 msgstr ""
9040
9041 #. type: =head2
9042 #: ../src/guestfs-actions.pod:1681
9043 msgid "guestfs_fill"
9044 msgstr ""
9045
9046 #. type: verbatim
9047 #: ../src/guestfs-actions.pod:1683
9048 #, no-wrap
9049 msgid ""
9050 " int\n"
9051 " guestfs_fill (guestfs_h *g,\n"
9052 "               int c,\n"
9053 "               int len,\n"
9054 "               const char *path);\n"
9055 "\n"
9056 msgstr ""
9057
9058 #. type: textblock
9059 #: ../src/guestfs-actions.pod:1689 ../fish/guestfish-actions.pod:1145
9060 msgid ""
9061 "This command creates a new file called C<path>.  The initial content of the "
9062 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9063 "[0..255]>."
9064 msgstr ""
9065
9066 #. type: textblock
9067 #: ../src/guestfs-actions.pod:1693
9068 msgid ""
9069 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9070 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9071 "bytes use C<guestfs_fill_pattern>."
9072 msgstr ""
9073
9074 #. type: textblock
9075 #: ../src/guestfs-actions.pod:1705
9076 msgid "(Added in 1.0.79)"
9077 msgstr ""
9078
9079 #. type: =head2
9080 #: ../src/guestfs-actions.pod:1707
9081 msgid "guestfs_fill_pattern"
9082 msgstr ""
9083
9084 #. type: verbatim
9085 #: ../src/guestfs-actions.pod:1709
9086 #, no-wrap
9087 msgid ""
9088 " int\n"
9089 " guestfs_fill_pattern (guestfs_h *g,\n"
9090 "                       const char *pattern,\n"
9091 "                       int len,\n"
9092 "                       const char *path);\n"
9093 "\n"
9094 msgstr ""
9095
9096 #. type: textblock
9097 #: ../src/guestfs-actions.pod:1715
9098 msgid ""
9099 "This function is like C<guestfs_fill> except that it creates a new file of "
9100 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9101 "pattern is truncated if necessary to ensure the length of the file is "
9102 "exactly C<len> bytes."
9103 msgstr ""
9104
9105 #. type: textblock
9106 #: ../src/guestfs-actions.pod:1727
9107 msgid "(Added in 1.3.12)"
9108 msgstr ""
9109
9110 #. type: =head2
9111 #: ../src/guestfs-actions.pod:1729
9112 msgid "guestfs_find"
9113 msgstr ""
9114
9115 #. type: verbatim
9116 #: ../src/guestfs-actions.pod:1731
9117 #, no-wrap
9118 msgid ""
9119 " char **\n"
9120 " guestfs_find (guestfs_h *g,\n"
9121 "               const char *directory);\n"
9122 "\n"
9123 msgstr ""
9124
9125 #. type: textblock
9126 #: ../src/guestfs-actions.pod:1735 ../fish/guestfish-actions.pod:1167
9127 msgid ""
9128 "This command lists out all files and directories, recursively, starting at "
9129 "C<directory>.  It is essentially equivalent to running the shell command "
9130 "C<find directory -print> but some post-processing happens on the output, "
9131 "described below."
9132 msgstr ""
9133
9134 #. type: textblock
9135 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1172
9136 msgid ""
9137 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9138 "structure was:"
9139 msgstr ""
9140
9141 #. type: verbatim
9142 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
9143 #, no-wrap
9144 msgid ""
9145 " /tmp/a\n"
9146 " /tmp/b\n"
9147 " /tmp/c/d\n"
9148 "\n"
9149 msgstr ""
9150
9151 #. type: textblock
9152 #: ../src/guestfs-actions.pod:1747
9153 msgid ""
9154 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9155 msgstr ""
9156
9157 #. type: verbatim
9158 #: ../src/guestfs-actions.pod:1750 ../fish/guestfish-actions.pod:1182
9159 #, no-wrap
9160 msgid ""
9161 " a\n"
9162 " b\n"
9163 " c\n"
9164 " c/d\n"
9165 "\n"
9166 msgstr ""
9167
9168 #. type: textblock
9169 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1187
9170 msgid "If C<directory> is not a directory, then this command returns an error."
9171 msgstr ""
9172
9173 #. type: textblock
9174 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
9175 msgid "The returned list is sorted."
9176 msgstr ""
9177
9178 #. type: textblock
9179 #: ../src/guestfs-actions.pod:1760
9180 msgid "See also C<guestfs_find0>."
9181 msgstr ""
9182
9183 #. type: textblock
9184 #: ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:4206
9185 #: ../src/guestfs-actions.pod:5806
9186 msgid "(Added in 1.0.27)"
9187 msgstr ""
9188
9189 #. type: =head2
9190 #: ../src/guestfs-actions.pod:1771
9191 msgid "guestfs_find0"
9192 msgstr ""
9193
9194 #. type: verbatim
9195 #: ../src/guestfs-actions.pod:1773
9196 #, no-wrap
9197 msgid ""
9198 " int\n"
9199 " guestfs_find0 (guestfs_h *g,\n"
9200 "                const char *directory,\n"
9201 "                const char *files);\n"
9202 "\n"
9203 msgstr ""
9204
9205 #. type: textblock
9206 #: ../src/guestfs-actions.pod:1778 ../fish/guestfish-actions.pod:1201
9207 msgid ""
9208 "This command lists out all files and directories, recursively, starting at "
9209 "C<directory>, placing the resulting list in the external file called "
9210 "C<files>."
9211 msgstr ""
9212
9213 #. type: textblock
9214 #: ../src/guestfs-actions.pod:1782
9215 msgid ""
9216 "This command works the same way as C<guestfs_find> with the following "
9217 "exceptions:"
9218 msgstr ""
9219
9220 #. type: textblock
9221 #: ../src/guestfs-actions.pod:1789 ../fish/guestfish-actions.pod:1212
9222 msgid "The resulting list is written to an external file."
9223 msgstr ""
9224
9225 #. type: textblock
9226 #: ../src/guestfs-actions.pod:1793 ../fish/guestfish-actions.pod:1216
9227 msgid ""
9228 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9229 "L<find(1)> option I<-print0>."
9230 msgstr ""
9231
9232 #. type: textblock
9233 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1221
9234 msgid "This command is not limited in the number of names that it can return."
9235 msgstr ""
9236
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1803 ../fish/guestfish-actions.pod:1226
9239 msgid "The result list is not sorted."
9240 msgstr ""
9241
9242 #. type: textblock
9243 #: ../src/guestfs-actions.pod:1809
9244 msgid "(Added in 1.0.74)"
9245 msgstr ""
9246
9247 #. type: =head2
9248 #: ../src/guestfs-actions.pod:1811
9249 msgid "guestfs_findfs_label"
9250 msgstr ""
9251
9252 #. type: verbatim
9253 #: ../src/guestfs-actions.pod:1813
9254 #, no-wrap
9255 msgid ""
9256 " char *\n"
9257 " guestfs_findfs_label (guestfs_h *g,\n"
9258 "                       const char *label);\n"
9259 "\n"
9260 msgstr ""
9261
9262 #. type: textblock
9263 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1236
9264 msgid ""
9265 "This command searches the filesystems and returns the one which has the "
9266 "given label.  An error is returned if no such filesystem can be found."
9267 msgstr ""
9268
9269 #. type: textblock
9270 #: ../src/guestfs-actions.pod:1821
9271 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9272 msgstr ""
9273
9274 #. type: =head2
9275 #: ../src/guestfs-actions.pod:1828
9276 msgid "guestfs_findfs_uuid"
9277 msgstr ""
9278
9279 #. type: verbatim
9280 #: ../src/guestfs-actions.pod:1830
9281 #, no-wrap
9282 msgid ""
9283 " char *\n"
9284 " guestfs_findfs_uuid (guestfs_h *g,\n"
9285 "                      const char *uuid);\n"
9286 "\n"
9287 msgstr ""
9288
9289 #. type: textblock
9290 #: ../src/guestfs-actions.pod:1834 ../fish/guestfish-actions.pod:1246
9291 msgid ""
9292 "This command searches the filesystems and returns the one which has the "
9293 "given UUID.  An error is returned if no such filesystem can be found."
9294 msgstr ""
9295
9296 #. type: textblock
9297 #: ../src/guestfs-actions.pod:1838
9298 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9299 msgstr ""
9300
9301 #. type: =head2
9302 #: ../src/guestfs-actions.pod:1845
9303 msgid "guestfs_fsck"
9304 msgstr ""
9305
9306 #. type: verbatim
9307 #: ../src/guestfs-actions.pod:1847
9308 #, no-wrap
9309 msgid ""
9310 " int\n"
9311 " guestfs_fsck (guestfs_h *g,\n"
9312 "               const char *fstype,\n"
9313 "               const char *device);\n"
9314 "\n"
9315 msgstr ""
9316
9317 #. type: textblock
9318 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1256
9319 msgid ""
9320 "This runs the filesystem checker (fsck) on C<device> which should have "
9321 "filesystem type C<fstype>."
9322 msgstr ""
9323
9324 #. type: textblock
9325 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
9326 msgid ""
9327 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9328 "codes from C<fsck>."
9329 msgstr ""
9330
9331 #. type: textblock
9332 #: ../src/guestfs-actions.pod:1864 ../fish/guestfish-actions.pod:1268
9333 msgid "Multiple status codes can be summed together."
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:1868 ../fish/guestfish-actions.pod:1272
9338 msgid ""
9339 "A non-zero return code can mean \"success\", for example if errors have been "
9340 "corrected on the filesystem."
9341 msgstr ""
9342
9343 #. type: textblock
9344 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1277
9345 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9346 msgstr ""
9347
9348 #. type: textblock
9349 #: ../src/guestfs-actions.pod:1878 ../fish/guestfish-actions.pod:1282
9350 msgid ""
9351 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9352 msgstr ""
9353
9354 #. type: textblock
9355 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:7542
9356 msgid "(Added in 1.0.16)"
9357 msgstr ""
9358
9359 #. type: =head2
9360 #: ../src/guestfs-actions.pod:1884
9361 msgid "guestfs_get_append"
9362 msgstr ""
9363
9364 #. type: verbatim
9365 #: ../src/guestfs-actions.pod:1886
9366 #, no-wrap
9367 msgid ""
9368 " const char *\n"
9369 " guestfs_get_append (guestfs_h *g);\n"
9370 "\n"
9371 msgstr ""
9372
9373 #. type: textblock
9374 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
9375 msgid ""
9376 "Return the additional kernel options which are added to the guest kernel "
9377 "command line."
9378 msgstr ""
9379
9380 #. type: textblock
9381 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
9382 msgid "If C<NULL> then no options are added."
9383 msgstr ""
9384
9385 #. type: textblock
9386 #: ../src/guestfs-actions.pod:1894
9387 msgid ""
9388 "This function returns a string which may be NULL.  There is no way to return "
9389 "an error from this function.  The string is owned by the guest handle and "
9390 "must I<not> be freed."
9391 msgstr ""
9392
9393 #. type: textblock
9394 #: ../src/guestfs-actions.pod:1898 ../src/guestfs-actions.pod:5484
9395 #: ../src/guestfs-actions.pod:5966 ../src/guestfs-actions.pod:6389
9396 #: ../src/guestfs-actions.pod:6408 ../src/guestfs-actions.pod:6424
9397 #: ../src/guestfs-actions.pod:6448 ../src/guestfs-actions.pod:7205
9398 #: ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7585
9399 msgid "(Added in 1.0.26)"
9400 msgstr ""
9401
9402 #. type: =head2
9403 #: ../src/guestfs-actions.pod:1900
9404 msgid "guestfs_get_attach_method"
9405 msgstr ""
9406
9407 #. type: verbatim
9408 #: ../src/guestfs-actions.pod:1902
9409 #, no-wrap
9410 msgid ""
9411 " char *\n"
9412 " guestfs_get_attach_method (guestfs_h *g);\n"
9413 "\n"
9414 msgstr ""
9415
9416 #. type: textblock
9417 #: ../src/guestfs-actions.pod:1905
9418 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:5996
9423 msgid "(Added in 1.9.8)"
9424 msgstr ""
9425
9426 #. type: =head2
9427 #: ../src/guestfs-actions.pod:1912
9428 msgid "guestfs_get_autosync"
9429 msgstr ""
9430
9431 #. type: verbatim
9432 #: ../src/guestfs-actions.pod:1914
9433 #, no-wrap
9434 msgid ""
9435 " int\n"
9436 " guestfs_get_autosync (guestfs_h *g);\n"
9437 "\n"
9438 msgstr ""
9439
9440 #. type: textblock
9441 #: ../src/guestfs-actions.pod:1917 ../fish/guestfish-actions.pod:1303
9442 msgid "Get the autosync flag."
9443 msgstr ""
9444
9445 #. type: =head2
9446 #: ../src/guestfs-actions.pod:1923
9447 msgid "guestfs_get_direct"
9448 msgstr ""
9449
9450 #. type: verbatim
9451 #: ../src/guestfs-actions.pod:1925
9452 #, no-wrap
9453 msgid ""
9454 " int\n"
9455 " guestfs_get_direct (guestfs_h *g);\n"
9456 "\n"
9457 msgstr ""
9458
9459 #. type: textblock
9460 #: ../src/guestfs-actions.pod:1928 ../fish/guestfish-actions.pod:1309
9461 msgid "Return the direct appliance mode flag."
9462 msgstr ""
9463
9464 #. type: textblock
9465 #: ../src/guestfs-actions.pod:1932 ../src/guestfs-actions.pod:6037
9466 msgid "(Added in 1.0.72)"
9467 msgstr ""
9468
9469 #. type: =head2
9470 #: ../src/guestfs-actions.pod:1934
9471 msgid "guestfs_get_e2label"
9472 msgstr ""
9473
9474 #. type: verbatim
9475 #: ../src/guestfs-actions.pod:1936
9476 #, no-wrap
9477 msgid ""
9478 " char *\n"
9479 " guestfs_get_e2label (guestfs_h *g,\n"
9480 "                      const char *device);\n"
9481 "\n"
9482 msgstr ""
9483
9484 #. type: textblock
9485 #: ../src/guestfs-actions.pod:1940 ../fish/guestfish-actions.pod:1315
9486 msgid ""
9487 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9488 msgstr ""
9489
9490 #. type: textblock
9491 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1318
9492 msgid ""
9493 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9494 msgstr ""
9495
9496 #. type: textblock
9497 #: ../src/guestfs-actions.pod:1953 ../src/guestfs-actions.pod:1974
9498 #: ../src/guestfs-actions.pod:6055 ../src/guestfs-actions.pod:6074
9499 msgid "(Added in 1.0.15)"
9500 msgstr ""
9501
9502 #. type: =head2
9503 #: ../src/guestfs-actions.pod:1955
9504 msgid "guestfs_get_e2uuid"
9505 msgstr ""
9506
9507 #. type: verbatim
9508 #: ../src/guestfs-actions.pod:1957
9509 #, no-wrap
9510 msgid ""
9511 " char *\n"
9512 " guestfs_get_e2uuid (guestfs_h *g,\n"
9513 "                     const char *device);\n"
9514 "\n"
9515 msgstr ""
9516
9517 #. type: textblock
9518 #: ../src/guestfs-actions.pod:1961 ../fish/guestfish-actions.pod:1329
9519 msgid ""
9520 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9521 msgstr ""
9522
9523 #. type: textblock
9524 #: ../src/guestfs-actions.pod:1967 ../fish/guestfish-actions.pod:1332
9525 msgid ""
9526 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9527 msgstr ""
9528
9529 #. type: =head2
9530 #: ../src/guestfs-actions.pod:1976
9531 msgid "guestfs_get_memsize"
9532 msgstr ""
9533
9534 #. type: verbatim
9535 #: ../src/guestfs-actions.pod:1978
9536 #, no-wrap
9537 msgid ""
9538 " int\n"
9539 " guestfs_get_memsize (guestfs_h *g);\n"
9540 "\n"
9541 msgstr ""
9542
9543 #. type: textblock
9544 #: ../src/guestfs-actions.pod:1981 ../fish/guestfish-actions.pod:1343
9545 msgid ""
9546 "This gets the memory size in megabytes allocated to the qemu subprocess."
9547 msgstr ""
9548
9549 #. type: textblock
9550 #: ../src/guestfs-actions.pod:1984
9551 msgid ""
9552 "If C<guestfs_set_memsize> was not called on this handle, and if "
9553 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9554 "value for memsize."
9555 msgstr ""
9556
9557 #. type: textblock
9558 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2069
9559 #: ../src/guestfs-actions.pod:6090 ../src/guestfs-actions.pod:6197
9560 #: ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401
9561 #: ../fish/guestfish-actions.pod:4043 ../fish/guestfish-actions.pod:4130
9562 msgid ""
9563 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9564 msgstr ""
9565
9566 #. type: textblock
9567 #: ../src/guestfs-actions.pod:1993 ../src/guestfs-actions.pod:4497
9568 #: ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:4713
9569 #: ../src/guestfs-actions.pod:4732 ../src/guestfs-actions.pod:4744
9570 #: ../src/guestfs-actions.pod:4761 ../src/guestfs-actions.pod:4774
9571 #: ../src/guestfs-actions.pod:5709 ../src/guestfs-actions.pod:6095
9572 #: ../src/guestfs-actions.pod:6356 ../src/guestfs-actions.pod:6971
9573 msgid "(Added in 1.0.55)"
9574 msgstr ""
9575
9576 #. type: =head2
9577 #: ../src/guestfs-actions.pod:1995
9578 msgid "guestfs_get_network"
9579 msgstr ""
9580
9581 #. type: verbatim
9582 #: ../src/guestfs-actions.pod:1997
9583 #, no-wrap
9584 msgid ""
9585 " int\n"
9586 " guestfs_get_network (guestfs_h *g);\n"
9587 "\n"
9588 msgstr ""
9589
9590 #. type: textblock
9591 #: ../src/guestfs-actions.pod:2000 ../fish/guestfish-actions.pod:1357
9592 msgid "This returns the enable network flag."
9593 msgstr ""
9594
9595 #. type: textblock
9596 #: ../src/guestfs-actions.pod:2004 ../src/guestfs-actions.pod:6114
9597 msgid "(Added in 1.5.4)"
9598 msgstr ""
9599
9600 #. type: =head2
9601 #: ../src/guestfs-actions.pod:2006
9602 msgid "guestfs_get_path"
9603 msgstr ""
9604
9605 #. type: verbatim
9606 #: ../src/guestfs-actions.pod:2008
9607 #, no-wrap
9608 msgid ""
9609 " const char *\n"
9610 " guestfs_get_path (guestfs_h *g);\n"
9611 "\n"
9612 msgstr ""
9613
9614 #. type: textblock
9615 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1363
9616 msgid "Return the current search path."
9617 msgstr ""
9618
9619 #. type: textblock
9620 #: ../src/guestfs-actions.pod:2013 ../fish/guestfish-actions.pod:1365
9621 msgid ""
9622 "This is always non-NULL.  If it wasn't set already, then this will return "
9623 "the default path."
9624 msgstr ""
9625
9626 #. type: textblock
9627 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2045
9628 msgid ""
9629 "This function returns a string, or NULL on error.  The string is owned by "
9630 "the guest handle and must I<not> be freed."
9631 msgstr ""
9632
9633 #. type: =head2
9634 #: ../src/guestfs-actions.pod:2021
9635 msgid "guestfs_get_pid"
9636 msgstr ""
9637
9638 #. type: verbatim
9639 #: ../src/guestfs-actions.pod:2023
9640 #, no-wrap
9641 msgid ""
9642 " int\n"
9643 " guestfs_get_pid (guestfs_h *g);\n"
9644 "\n"
9645 msgstr ""
9646
9647 #. type: textblock
9648 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1374
9649 msgid ""
9650 "Return the process ID of the qemu subprocess.  If there is no qemu "
9651 "subprocess, then this will return an error."
9652 msgstr ""
9653
9654 #. type: textblock
9655 #: ../src/guestfs-actions.pod:2029 ../fish/guestfish-actions.pod:1377
9656 msgid "This is an internal call used for debugging and testing."
9657 msgstr ""
9658
9659 #. type: textblock
9660 #: ../src/guestfs-actions.pod:2033
9661 msgid "(Added in 1.0.56)"
9662 msgstr ""
9663
9664 #. type: =head2
9665 #: ../src/guestfs-actions.pod:2035
9666 msgid "guestfs_get_qemu"
9667 msgstr ""
9668
9669 #. type: verbatim
9670 #: ../src/guestfs-actions.pod:2037
9671 #, no-wrap
9672 msgid ""
9673 " const char *\n"
9674 " guestfs_get_qemu (guestfs_h *g);\n"
9675 "\n"
9676 msgstr ""
9677
9678 #. type: textblock
9679 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1383
9680 msgid "Return the current qemu binary."
9681 msgstr ""
9682
9683 #. type: textblock
9684 #: ../src/guestfs-actions.pod:2042 ../fish/guestfish-actions.pod:1385
9685 msgid ""
9686 "This is always non-NULL.  If it wasn't set already, then this will return "
9687 "the default qemu binary name."
9688 msgstr ""
9689
9690 #. type: textblock
9691 #: ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:6159
9692 msgid "(Added in 1.0.6)"
9693 msgstr ""
9694
9695 #. type: =head2
9696 #: ../src/guestfs-actions.pod:2050
9697 msgid "guestfs_get_recovery_proc"
9698 msgstr ""
9699
9700 #. type: verbatim
9701 #: ../src/guestfs-actions.pod:2052
9702 #, no-wrap
9703 msgid ""
9704 " int\n"
9705 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9706 "\n"
9707 msgstr ""
9708
9709 #. type: textblock
9710 #: ../src/guestfs-actions.pod:2055 ../fish/guestfish-actions.pod:1392
9711 msgid "Return the recovery process enabled flag."
9712 msgstr ""
9713
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:2059 ../src/guestfs-actions.pod:3593
9716 #: ../src/guestfs-actions.pod:3904 ../src/guestfs-actions.pod:4304
9717 #: ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:5414
9718 #: ../src/guestfs-actions.pod:5757 ../src/guestfs-actions.pod:6183
9719 #: ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6894
9720 #: ../src/guestfs-actions.pod:7086
9721 msgid "(Added in 1.0.77)"
9722 msgstr ""
9723
9724 #. type: =head2
9725 #: ../src/guestfs-actions.pod:2061
9726 msgid "guestfs_get_selinux"
9727 msgstr ""
9728
9729 #. type: verbatim
9730 #: ../src/guestfs-actions.pod:2063
9731 #, no-wrap
9732 msgid ""
9733 " int\n"
9734 " guestfs_get_selinux (guestfs_h *g);\n"
9735 "\n"
9736 msgstr ""
9737
9738 #. type: textblock
9739 #: ../src/guestfs-actions.pod:2066
9740 msgid ""
9741 "This returns the current setting of the selinux flag which is passed to the "
9742 "appliance at boot time.  See C<guestfs_set_selinux>."
9743 msgstr ""
9744
9745 #. type: textblock
9746 #: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:2137
9747 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6260
9748 msgid "(Added in 1.0.67)"
9749 msgstr ""
9750
9751 #. type: =head2
9752 #: ../src/guestfs-actions.pod:2076
9753 msgid "guestfs_get_state"
9754 msgstr ""
9755
9756 #. type: verbatim
9757 #: ../src/guestfs-actions.pod:2078
9758 #, no-wrap
9759 msgid ""
9760 " int\n"
9761 " guestfs_get_state (guestfs_h *g);\n"
9762 "\n"
9763 msgstr ""
9764
9765 #. type: textblock
9766 #: ../src/guestfs-actions.pod:2081 ../fish/guestfish-actions.pod:1408
9767 msgid ""
9768 "This returns the current state as an opaque integer.  This is only useful "
9769 "for printing debug and internal error messages."
9770 msgstr ""
9771
9772 #. type: textblock
9773 #: ../src/guestfs-actions.pod:2084 ../src/guestfs-actions.pod:3364
9774 #: ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3454
9775 #: ../src/guestfs-actions.pod:3481 ../fish/guestfish-actions.pod:1411
9776 #: ../fish/guestfish-actions.pod:2331 ../fish/guestfish-actions.pod:2349
9777 #: ../fish/guestfish-actions.pod:2387 ../fish/guestfish-actions.pod:2403
9778 msgid "For more information on states, see L<guestfs(3)>."
9779 msgstr ""
9780
9781 #. type: =head2
9782 #: ../src/guestfs-actions.pod:2090
9783 msgid "guestfs_get_trace"
9784 msgstr ""
9785
9786 #. type: verbatim
9787 #: ../src/guestfs-actions.pod:2092
9788 #, no-wrap
9789 msgid ""
9790 " int\n"
9791 " guestfs_get_trace (guestfs_h *g);\n"
9792 "\n"
9793 msgstr ""
9794
9795 #. type: textblock
9796 #: ../src/guestfs-actions.pod:2095 ../fish/guestfish-actions.pod:1417
9797 msgid "Return the command trace flag."
9798 msgstr ""
9799
9800 #. type: =head2
9801 #: ../src/guestfs-actions.pod:2101
9802 msgid "guestfs_get_umask"
9803 msgstr ""
9804
9805 #. type: verbatim
9806 #: ../src/guestfs-actions.pod:2103
9807 #, no-wrap
9808 msgid ""
9809 " int\n"
9810 " guestfs_get_umask (guestfs_h *g);\n"
9811 "\n"
9812 msgstr ""
9813
9814 #. type: textblock
9815 #: ../src/guestfs-actions.pod:2106
9816 msgid ""
9817 "Return the current umask.  By default the umask is C<022> unless it has been "
9818 "set by calling C<guestfs_umask>."
9819 msgstr ""
9820
9821 #. type: =head2
9822 #: ../src/guestfs-actions.pod:2113
9823 msgid "guestfs_get_verbose"
9824 msgstr ""
9825
9826 #. type: verbatim
9827 #: ../src/guestfs-actions.pod:2115
9828 #, no-wrap
9829 msgid ""
9830 " int\n"
9831 " guestfs_get_verbose (guestfs_h *g);\n"
9832 "\n"
9833 msgstr ""
9834
9835 #. type: textblock
9836 #: ../src/guestfs-actions.pod:2118 ../fish/guestfish-actions.pod:1430
9837 msgid "This returns the verbose messages flag."
9838 msgstr ""
9839
9840 #. type: =head2
9841 #: ../src/guestfs-actions.pod:2124
9842 msgid "guestfs_getcon"
9843 msgstr ""
9844
9845 #. type: verbatim
9846 #: ../src/guestfs-actions.pod:2126
9847 #, no-wrap
9848 msgid ""
9849 " char *\n"
9850 " guestfs_getcon (guestfs_h *g);\n"
9851 "\n"
9852 msgstr ""
9853
9854 #. type: textblock
9855 #: ../src/guestfs-actions.pod:2129 ../fish/guestfish-actions.pod:1436
9856 msgid "This gets the SELinux security context of the daemon."
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2131
9861 msgid ""
9862 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9863 msgstr ""
9864
9865 #. type: =head2
9866 #: ../src/guestfs-actions.pod:2139
9867 msgid "guestfs_getxattr"
9868 msgstr ""
9869
9870 #. type: verbatim
9871 #: ../src/guestfs-actions.pod:2141
9872 #, no-wrap
9873 msgid ""
9874 " char *\n"
9875 " guestfs_getxattr (guestfs_h *g,\n"
9876 "                   const char *path,\n"
9877 "                   const char *name,\n"
9878 "                   size_t *size_r);\n"
9879 "\n"
9880 msgstr ""
9881
9882 #. type: textblock
9883 #: ../src/guestfs-actions.pod:2147
9884 msgid ""
9885 "Get a single extended attribute from file C<path> named C<name>.  This call "
9886 "follows symlinks.  If you want to lookup an extended attribute for the "
9887 "symlink itself, use C<guestfs_lgetxattr>."
9888 msgstr ""
9889
9890 #. type: textblock
9891 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:3607
9892 msgid ""
9893 "Normally it is better to get all extended attributes from a file in one go "
9894 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9895 "implementations are buggy and do not provide a way to list out attributes.  "
9896 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9897 "extended attributes you want in advance and call this function."
9898 msgstr ""
9899
9900 #. type: textblock
9901 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:3614
9902 #: ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2483
9903 msgid ""
9904 "Extended attribute values are blobs of binary data.  If there is no extended "
9905 "attribute named C<name>, this returns an error."
9906 msgstr ""
9907
9908 #. type: textblock
9909 #: ../src/guestfs-actions.pod:2161
9910 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9911 msgstr ""
9912
9913 #. type: textblock
9914 #: ../src/guestfs-actions.pod:2163 ../src/guestfs-actions.pod:2354
9915 #: ../src/guestfs-actions.pod:2824 ../src/guestfs-actions.pod:3619
9916 #: ../src/guestfs-actions.pod:5407 ../src/guestfs-actions.pod:5433
9917 #: ../src/guestfs-actions.pod:5614
9918 msgid ""
9919 "This function returns a buffer, or NULL on error.  The size of the returned "
9920 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9921 "after use>."
9922 msgstr ""
9923
9924 #. type: textblock
9925 #: ../src/guestfs-actions.pod:2167 ../src/guestfs-actions.pod:3623
9926 msgid "(Added in 1.7.24)"
9927 msgstr ""
9928
9929 #. type: =head2
9930 #: ../src/guestfs-actions.pod:2169
9931 msgid "guestfs_getxattrs"
9932 msgstr ""
9933
9934 #. type: verbatim
9935 #: ../src/guestfs-actions.pod:2171
9936 #, no-wrap
9937 msgid ""
9938 " struct guestfs_xattr_list *\n"
9939 " guestfs_getxattrs (guestfs_h *g,\n"
9940 "                    const char *path);\n"
9941 "\n"
9942 msgstr ""
9943
9944 #. type: textblock
9945 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1465
9946 msgid ""
9947 "This call lists the extended attributes of the file or directory C<path>."
9948 msgstr ""
9949
9950 #. type: textblock
9951 #: ../src/guestfs-actions.pod:2178 ../fish/guestfish-actions.pod:1468
9952 msgid ""
9953 "At the system call level, this is a combination of the L<listxattr(2)> and "
9954 "L<getxattr(2)> calls."
9955 msgstr ""
9956
9957 #. type: textblock
9958 #: ../src/guestfs-actions.pod:2181
9959 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9960 msgstr ""
9961
9962 #. type: textblock
9963 #: ../src/guestfs-actions.pod:2183 ../src/guestfs-actions.pod:3635
9964 #: ../src/guestfs-actions.pod:4300
9965 msgid ""
9966 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9967 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9968 msgstr ""
9969
9970 #. type: textblock
9971 #: ../src/guestfs-actions.pod:2187 ../src/guestfs-actions.pod:3639
9972 #: ../src/guestfs-actions.pod:3818 ../src/guestfs-actions.pod:3854
9973 #: ../src/guestfs-actions.pod:5787 ../src/guestfs-actions.pod:6279
9974 #: ../src/guestfs-actions.pod:7650
9975 msgid "(Added in 1.0.59)"
9976 msgstr ""
9977
9978 #. type: =head2
9979 #: ../src/guestfs-actions.pod:2189
9980 msgid "guestfs_glob_expand"
9981 msgstr ""
9982
9983 #. type: verbatim
9984 #: ../src/guestfs-actions.pod:2191
9985 #, no-wrap
9986 msgid ""
9987 " char **\n"
9988 " guestfs_glob_expand (guestfs_h *g,\n"
9989 "                      const char *pattern);\n"
9990 "\n"
9991 msgstr ""
9992
9993 #. type: textblock
9994 #: ../src/guestfs-actions.pod:2195 ../fish/guestfish-actions.pod:1477
9995 msgid ""
9996 "This command searches for all the pathnames matching C<pattern> according to "
9997 "the wildcard expansion rules used by the shell."
9998 msgstr ""
9999
10000 #. type: textblock
10001 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1481
10002 msgid ""
10003 "If no paths match, then this returns an empty list (note: not an error)."
10004 msgstr ""
10005
10006 #. type: textblock
10007 #: ../src/guestfs-actions.pod:2202 ../fish/guestfish-actions.pod:1484
10008 msgid ""
10009 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10010 "GLOB_BRACE>.  See that manual page for more details."
10011 msgstr ""
10012
10013 #. type: textblock
10014 #: ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:6472
10015 #: ../src/guestfs-actions.pod:6489
10016 msgid "(Added in 1.0.50)"
10017 msgstr ""
10018
10019 #. type: =head2
10020 #: ../src/guestfs-actions.pod:2212
10021 msgid "guestfs_grep"
10022 msgstr ""
10023
10024 #. type: verbatim
10025 #: ../src/guestfs-actions.pod:2214
10026 #, no-wrap
10027 msgid ""
10028 " char **\n"
10029 " guestfs_grep (guestfs_h *g,\n"
10030 "               const char *regex,\n"
10031 "               const char *path);\n"
10032 "\n"
10033 msgstr ""
10034
10035 #. type: textblock
10036 #: ../src/guestfs-actions.pod:2219 ../fish/guestfish-actions.pod:1492
10037 msgid "This calls the external C<grep> program and returns the matching lines."
10038 msgstr ""
10039
10040 #. type: =head2
10041 #: ../src/guestfs-actions.pod:2231
10042 msgid "guestfs_grepi"
10043 msgstr ""
10044
10045 #. type: verbatim
10046 #: ../src/guestfs-actions.pod:2233
10047 #, no-wrap
10048 msgid ""
10049 " char **\n"
10050 " guestfs_grepi (guestfs_h *g,\n"
10051 "                const char *regex,\n"
10052 "                const char *path);\n"
10053 "\n"
10054 msgstr ""
10055
10056 #. type: textblock
10057 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1502
10058 msgid ""
10059 "This calls the external C<grep -i> program and returns the matching lines."
10060 msgstr ""
10061
10062 #. type: =head2
10063 #: ../src/guestfs-actions.pod:2250
10064 msgid "guestfs_grub_install"
10065 msgstr ""
10066
10067 #. type: verbatim
10068 #: ../src/guestfs-actions.pod:2252
10069 #, no-wrap
10070 msgid ""
10071 " int\n"
10072 " guestfs_grub_install (guestfs_h *g,\n"
10073 "                       const char *root,\n"
10074 "                       const char *device);\n"
10075 "\n"
10076 msgstr ""
10077
10078 #. type: textblock
10079 #: ../src/guestfs-actions.pod:2257 ../fish/guestfish-actions.pod:1512
10080 msgid ""
10081 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10082 "the root directory being C<root>."
10083 msgstr ""
10084
10085 #. type: textblock
10086 #: ../src/guestfs-actions.pod:2260 ../fish/guestfish-actions.pod:1515
10087 msgid ""
10088 "Note: If grub-install reports the error \"No suitable drive was found in the "
10089 "generated device map.\" it may be that you need to create a C</boot/grub/"
10090 "device.map> file first that contains the mapping between grub device names "
10091 "and Linux device names.  It is usually sufficient to create a file "
10092 "containing:"
10093 msgstr ""
10094
10095 #. type: verbatim
10096 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1522
10097 #, no-wrap
10098 msgid ""
10099 " (hd0) /dev/vda\n"
10100 "\n"
10101 msgstr ""
10102
10103 #. type: textblock
10104 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1524
10105 msgid "replacing C</dev/vda> with the name of the installation device."
10106 msgstr ""
10107
10108 #. type: textblock
10109 #: ../src/guestfs-actions.pod:2273
10110 msgid "(Added in 1.0.17)"
10111 msgstr ""
10112
10113 #. type: =head2
10114 #: ../src/guestfs-actions.pod:2275
10115 msgid "guestfs_head"
10116 msgstr ""
10117
10118 #. type: verbatim
10119 #: ../src/guestfs-actions.pod:2277
10120 #, no-wrap
10121 msgid ""
10122 " char **\n"
10123 " guestfs_head (guestfs_h *g,\n"
10124 "               const char *path);\n"
10125 "\n"
10126 msgstr ""
10127
10128 #. type: textblock
10129 #: ../src/guestfs-actions.pod:2281 ../fish/guestfish-actions.pod:1530
10130 msgid ""
10131 "This command returns up to the first 10 lines of a file as a list of strings."
10132 msgstr ""
10133
10134 #. type: =head2
10135 #: ../src/guestfs-actions.pod:2293
10136 msgid "guestfs_head_n"
10137 msgstr ""
10138
10139 #. type: verbatim
10140 #: ../src/guestfs-actions.pod:2295
10141 #, no-wrap
10142 msgid ""
10143 " char **\n"
10144 " guestfs_head_n (guestfs_h *g,\n"
10145 "                 int nrlines,\n"
10146 "                 const char *path);\n"
10147 "\n"
10148 msgstr ""
10149
10150 #. type: textblock
10151 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1540
10152 msgid ""
10153 "If the parameter C<nrlines> is a positive number, this returns the first "
10154 "C<nrlines> lines of the file C<path>."
10155 msgstr ""
10156
10157 #. type: textblock
10158 #: ../src/guestfs-actions.pod:2303 ../fish/guestfish-actions.pod:1543
10159 msgid ""
10160 "If the parameter C<nrlines> is a negative number, this returns lines from "
10161 "the file C<path>, excluding the last C<nrlines> lines."
10162 msgstr ""
10163
10164 #. type: textblock
10165 #: ../src/guestfs-actions.pod:2306 ../src/guestfs-actions.pod:6769
10166 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4508
10167 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10168 msgstr ""
10169
10170 #. type: =head2
10171 #: ../src/guestfs-actions.pod:2317
10172 msgid "guestfs_hexdump"
10173 msgstr ""
10174
10175 #. type: verbatim
10176 #: ../src/guestfs-actions.pod:2319
10177 #, no-wrap
10178 msgid ""
10179 " char *\n"
10180 " guestfs_hexdump (guestfs_h *g,\n"
10181 "                  const char *path);\n"
10182 "\n"
10183 msgstr ""
10184
10185 #. type: textblock
10186 #: ../src/guestfs-actions.pod:2323 ../fish/guestfish-actions.pod:1555
10187 msgid ""
10188 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10189 "readable, canonical hex dump of the file."
10190 msgstr ""
10191
10192 #. type: textblock
10193 #: ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:6553
10194 #: ../src/guestfs-actions.pod:6608
10195 msgid "(Added in 1.0.22)"
10196 msgstr ""
10197
10198 #. type: =head2
10199 #: ../src/guestfs-actions.pod:2334
10200 msgid "guestfs_initrd_cat"
10201 msgstr ""
10202
10203 #. type: verbatim
10204 #: ../src/guestfs-actions.pod:2336
10205 #, no-wrap
10206 msgid ""
10207 " char *\n"
10208 " guestfs_initrd_cat (guestfs_h *g,\n"
10209 "                     const char *initrdpath,\n"
10210 "                     const char *filename,\n"
10211 "                     size_t *size_r);\n"
10212 "\n"
10213 msgstr ""
10214
10215 #. type: textblock
10216 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1565
10217 msgid ""
10218 "This command unpacks the file C<filename> from the initrd file called "
10219 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10220 "character."
10221 msgstr ""
10222
10223 #. type: textblock
10224 #: ../src/guestfs-actions.pod:2346 ../fish/guestfish-actions.pod:1569
10225 msgid ""
10226 "For example, in guestfish you could use the following command to examine the "
10227 "boot script (usually called C</init>)  contained in a Linux initrd or "
10228 "initramfs image:"
10229 msgstr ""
10230
10231 #. type: verbatim
10232 #: ../src/guestfs-actions.pod:2350 ../fish/guestfish-actions.pod:1573
10233 #, no-wrap
10234 msgid ""
10235 " initrd-cat /boot/initrd-<version>.img init\n"
10236 "\n"
10237 msgstr ""
10238
10239 #. type: textblock
10240 #: ../src/guestfs-actions.pod:2352
10241 msgid "See also C<guestfs_initrd_list>."
10242 msgstr ""
10243
10244 #. type: =head2
10245 #: ../src/guestfs-actions.pod:2363
10246 msgid "guestfs_initrd_list"
10247 msgstr ""
10248
10249 #. type: verbatim
10250 #: ../src/guestfs-actions.pod:2365
10251 #, no-wrap
10252 msgid ""
10253 " char **\n"
10254 " guestfs_initrd_list (guestfs_h *g,\n"
10255 "                      const char *path);\n"
10256 "\n"
10257 msgstr ""
10258
10259 #. type: textblock
10260 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1584
10261 msgid "This command lists out files contained in an initrd."
10262 msgstr ""
10263
10264 #. type: textblock
10265 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1586
10266 msgid ""
10267 "The files are listed without any initial C</> character.  The files are "
10268 "listed in the order they appear (not necessarily alphabetical).  Directory "
10269 "names are listed as separate items."
10270 msgstr ""
10271
10272 #. type: textblock
10273 #: ../src/guestfs-actions.pod:2375 ../fish/guestfish-actions.pod:1590
10274 msgid ""
10275 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10276 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10277 "files)."
10278 msgstr ""
10279
10280 #. type: =head2
10281 #: ../src/guestfs-actions.pod:2385
10282 msgid "guestfs_inotify_add_watch"
10283 msgstr ""
10284
10285 #. type: verbatim
10286 #: ../src/guestfs-actions.pod:2387
10287 #, no-wrap
10288 msgid ""
10289 " int64_t\n"
10290 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10291 "                            const char *path,\n"
10292 "                            int mask);\n"
10293 "\n"
10294 msgstr ""
10295
10296 #. type: textblock
10297 #: ../src/guestfs-actions.pod:2392 ../fish/guestfish-actions.pod:1598
10298 msgid "Watch C<path> for the events listed in C<mask>."
10299 msgstr ""
10300
10301 #. type: textblock
10302 #: ../src/guestfs-actions.pod:2394 ../fish/guestfish-actions.pod:1600
10303 msgid ""
10304 "Note that if C<path> is a directory then events within that directory are "
10305 "watched, but this does I<not> happen recursively (in subdirectories)."
10306 msgstr ""
10307
10308 #. type: textblock
10309 #: ../src/guestfs-actions.pod:2398 ../fish/guestfish-actions.pod:1604
10310 msgid ""
10311 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10312 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10313 msgstr ""
10314
10315 #. type: =head2
10316 #: ../src/guestfs-actions.pod:2406
10317 msgid "guestfs_inotify_close"
10318 msgstr ""
10319
10320 #. type: verbatim
10321 #: ../src/guestfs-actions.pod:2408
10322 #, no-wrap
10323 msgid ""
10324 " int\n"
10325 " guestfs_inotify_close (guestfs_h *g);\n"
10326 "\n"
10327 msgstr ""
10328
10329 #. type: textblock
10330 #: ../src/guestfs-actions.pod:2411 ../fish/guestfish-actions.pod:1612
10331 msgid ""
10332 "This closes the inotify handle which was previously opened by inotify_init.  "
10333 "It removes all watches, throws away any pending events, and deallocates all "
10334 "resources."
10335 msgstr ""
10336
10337 #. type: =head2
10338 #: ../src/guestfs-actions.pod:2419
10339 msgid "guestfs_inotify_files"
10340 msgstr ""
10341
10342 #. type: verbatim
10343 #: ../src/guestfs-actions.pod:2421
10344 #, no-wrap
10345 msgid ""
10346 " char **\n"
10347 " guestfs_inotify_files (guestfs_h *g);\n"
10348 "\n"
10349 msgstr ""
10350
10351 #. type: textblock
10352 #: ../src/guestfs-actions.pod:2424
10353 msgid ""
10354 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10355 "returns a list of pathnames of objects that were touched.  The returned "
10356 "pathnames are sorted and deduplicated."
10357 msgstr ""
10358
10359 #. type: =head2
10360 #: ../src/guestfs-actions.pod:2434
10361 msgid "guestfs_inotify_init"
10362 msgstr ""
10363
10364 #. type: verbatim
10365 #: ../src/guestfs-actions.pod:2436
10366 #, no-wrap
10367 msgid ""
10368 " int\n"
10369 " guestfs_inotify_init (guestfs_h *g,\n"
10370 "                       int maxevents);\n"
10371 "\n"
10372 msgstr ""
10373
10374 #. type: textblock
10375 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1628
10376 msgid ""
10377 "This command creates a new inotify handle.  The inotify subsystem can be "
10378 "used to notify events which happen to objects in the guest filesystem."
10379 msgstr ""
10380
10381 #. type: textblock
10382 #: ../src/guestfs-actions.pod:2444
10383 msgid ""
10384 "C<maxevents> is the maximum number of events which will be queued up between "
10385 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10386 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10387 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10388 "throws away events, but records the fact that it threw them away by setting "
10389 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10390 "C<guestfs_inotify_read>)."
10391 msgstr ""
10392
10393 #. type: textblock
10394 #: ../src/guestfs-actions.pod:2454
10395 msgid ""
10396 "Before any events are generated, you have to add some watches to the "
10397 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10398 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10399 msgstr ""
10400
10401 #. type: textblock
10402 #: ../src/guestfs-actions.pod:2460
10403 msgid ""
10404 "Queued up events should be read periodically by calling "
10405 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10406 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10407 "often enough then you risk the internal queue overflowing."
10408 msgstr ""
10409
10410 #. type: textblock
10411 #: ../src/guestfs-actions.pod:2467
10412 msgid ""
10413 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10414 "This also removes any watches automatically."
10415 msgstr ""
10416
10417 #. type: textblock
10418 #: ../src/guestfs-actions.pod:2471 ../fish/guestfish-actions.pod:1659
10419 msgid ""
10420 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10421 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10422 "that there is one global inotify handle per libguestfs instance."
10423 msgstr ""
10424
10425 #. type: =head2
10426 #: ../src/guestfs-actions.pod:2480
10427 msgid "guestfs_inotify_read"
10428 msgstr ""
10429
10430 #. type: verbatim
10431 #: ../src/guestfs-actions.pod:2482
10432 #, no-wrap
10433 msgid ""
10434 " struct guestfs_inotify_event_list *\n"
10435 " guestfs_inotify_read (guestfs_h *g);\n"
10436 "\n"
10437 msgstr ""
10438
10439 #. type: textblock
10440 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1668
10441 msgid ""
10442 "Return the complete queue of events that have happened since the previous "
10443 "read call."
10444 msgstr ""
10445
10446 #. type: textblock
10447 #: ../src/guestfs-actions.pod:2488 ../fish/guestfish-actions.pod:1671
10448 msgid "If no events have happened, this returns an empty list."
10449 msgstr ""
10450
10451 #. type: textblock
10452 #: ../src/guestfs-actions.pod:2490 ../fish/guestfish-actions.pod:1673
10453 msgid ""
10454 "I<Note>: In order to make sure that all events have been read, you must call "
10455 "this function repeatedly until it returns an empty list.  The reason is that "
10456 "the call will read events up to the maximum appliance-to-host message size "
10457 "and leave remaining events in the queue."
10458 msgstr ""
10459
10460 #. type: textblock
10461 #: ../src/guestfs-actions.pod:2496
10462 msgid ""
10463 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10464 "there was an error.  I<The caller must call "
10465 "C<guestfs_free_inotify_event_list> after use>."
10466 msgstr ""
10467
10468 #. type: =head2
10469 #: ../src/guestfs-actions.pod:2502
10470 msgid "guestfs_inotify_rm_watch"
10471 msgstr ""
10472
10473 #. type: verbatim
10474 #: ../src/guestfs-actions.pod:2504
10475 #, no-wrap
10476 msgid ""
10477 " int\n"
10478 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10479 "                           int wd);\n"
10480 "\n"
10481 msgstr ""
10482
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:2508
10485 msgid ""
10486 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10487 msgstr ""
10488
10489 #. type: =head2
10490 #: ../src/guestfs-actions.pod:2515
10491 msgid "guestfs_inspect_get_arch"
10492 msgstr ""
10493
10494 #. type: verbatim
10495 #: ../src/guestfs-actions.pod:2517
10496 #, no-wrap
10497 msgid ""
10498 " char *\n"
10499 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10500 "                           const char *root);\n"
10501 "\n"
10502 msgstr ""
10503
10504 #. type: textblock
10505 #: ../src/guestfs-actions.pod:2521
10506 msgid ""
10507 "This returns the architecture of the inspected operating system.  The "
10508 "possible return values are listed under C<guestfs_file_architecture>."
10509 msgstr ""
10510
10511 #. type: textblock
10512 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1694
10513 msgid ""
10514 "If the architecture could not be determined, then the string C<unknown> is "
10515 "returned."
10516 msgstr ""
10517
10518 #. type: textblock
10519 #: ../src/guestfs-actions.pod:2528 ../src/guestfs-actions.pod:2618
10520 #: ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2741
10521 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2955
10522 #: ../src/guestfs-actions.pod:2983 ../src/guestfs-actions.pod:3004
10523 #: ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3097
10524 #: ../src/guestfs-actions.pod:3117 ../src/guestfs-actions.pod:3137
10525 #: ../src/guestfs-actions.pod:3154 ../src/guestfs-actions.pod:3170
10526 #: ../src/guestfs-actions.pod:3188 ../src/guestfs-actions.pod:3290
10527 #: ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:1697
10528 #: ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1859
10529 #: ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:1955
10530 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2037
10531 #: ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2091
10532 #: ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2136
10533 #: ../fish/guestfish-actions.pod:2149 ../fish/guestfish-actions.pod:2159
10534 #: ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2181
10535 #: ../fish/guestfish-actions.pod:2277 ../fish/guestfish-actions.pod:2311
10536 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10537 msgstr ""
10538
10539 #. type: =head2
10540 #: ../src/guestfs-actions.pod:2535
10541 msgid "guestfs_inspect_get_distro"
10542 msgstr ""
10543
10544 #. type: verbatim
10545 #: ../src/guestfs-actions.pod:2537
10546 #, no-wrap
10547 msgid ""
10548 " char *\n"
10549 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10550 "                             const char *root);\n"
10551 "\n"
10552 msgstr ""
10553
10554 #. type: textblock
10555 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1703
10556 msgid ""
10557 "This returns the distro (distribution) of the inspected operating system."
10558 msgstr ""
10559
10560 #. type: textblock
10561 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1706
10562 msgid "Currently defined distros are:"
10563 msgstr ""
10564
10565 #. type: =item
10566 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1710
10567 msgid "\"archlinux\""
10568 msgstr "\"archlinux\""
10569
10570 #. type: textblock
10571 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1712
10572 msgid "Arch Linux."
10573 msgstr "Arch Linux."
10574
10575 #. type: =item
10576 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1714
10577 #, fuzzy
10578 #| msgid "\"gentoo\""
10579 msgid "\"centos\""
10580 msgstr "\"gentoo\""
10581
10582 #. type: textblock
10583 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1716
10584 msgid "CentOS."
10585 msgstr ""
10586
10587 #. type: =item
10588 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1718
10589 msgid "\"debian\""
10590 msgstr "\"debian\""
10591
10592 #. type: textblock
10593 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1720
10594 msgid "Debian."
10595 msgstr "Debian."
10596
10597 #. type: =item
10598 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1722
10599 msgid "\"fedora\""
10600 msgstr "\"fedora\""
10601
10602 #. type: textblock
10603 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1724
10604 msgid "Fedora."
10605 msgstr "Fedora."
10606
10607 #. type: =item
10608 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1726
10609 msgid "\"gentoo\""
10610 msgstr "\"gentoo\""
10611
10612 #. type: textblock
10613 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1728
10614 msgid "Gentoo."
10615 msgstr "Gentoo."
10616
10617 #. type: =item
10618 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1730
10619 msgid "\"linuxmint\""
10620 msgstr "\"linuxmint\""
10621
10622 #. type: textblock
10623 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1732
10624 msgid "Linux Mint."
10625 msgstr "Linux Mint."
10626
10627 #. type: =item
10628 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1734
10629 msgid "\"mandriva\""
10630 msgstr "\"mandriva\""
10631
10632 #. type: textblock
10633 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1736
10634 msgid "Mandriva."
10635 msgstr "Mandriva."
10636
10637 #. type: =item
10638 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1738
10639 msgid "\"meego\""
10640 msgstr "\"meego\""
10641
10642 #. type: textblock
10643 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1740
10644 msgid "MeeGo."
10645 msgstr "MeeGo."
10646
10647 #. type: =item
10648 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1742
10649 msgid "\"pardus\""
10650 msgstr "\"pardus\""
10651
10652 #. type: textblock
10653 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1744
10654 msgid "Pardus."
10655 msgstr "Pardus."
10656
10657 #. type: =item
10658 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1746
10659 msgid "\"redhat-based\""
10660 msgstr "\"redhat-based\""
10661
10662 #. type: textblock
10663 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1748
10664 msgid "Some Red Hat-derived distro."
10665 msgstr "Дистрибутив, що походить від Red Hat."
10666
10667 #. type: =item
10668 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1750
10669 msgid "\"rhel\""
10670 msgstr "\"rhel\""
10671
10672 #. type: textblock
10673 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1752
10674 #, fuzzy
10675 #| msgid "Red Hat Enterprise Linux and some derivatives."
10676 msgid "Red Hat Enterprise Linux."
10677 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10678
10679 #. type: =item
10680 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1754
10681 msgid "\"scientificlinux\""
10682 msgstr ""
10683
10684 #. type: textblock
10685 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1756
10686 msgid "Scientific Linux."
10687 msgstr ""
10688
10689 #. type: =item
10690 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1758
10691 msgid "\"slackware\""
10692 msgstr ""
10693
10694 #. type: textblock
10695 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1760
10696 msgid "Slackware."
10697 msgstr ""
10698
10699 #. type: =item
10700 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1762
10701 msgid "\"ubuntu\""
10702 msgstr "\"ubuntu\""
10703
10704 #. type: textblock
10705 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1764
10706 msgid "Ubuntu."
10707 msgstr "Ubuntu."
10708
10709 #. type: =item
10710 #: ../src/guestfs-actions.pod:2604 ../src/guestfs-actions.pod:2713
10711 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:1766
10712 #: ../fish/guestfish-actions.pod:1850 ../fish/guestfish-actions.pod:2114
10713 msgid "\"unknown\""
10714 msgstr "\"unknown\""
10715
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2606 ../fish/guestfish-actions.pod:1768
10718 msgid "The distro could not be determined."
10719 msgstr "Дистрибутив, тип якого не вдалося визначити."
10720
10721 #. type: =item
10722 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:3080
10723 #: ../fish/guestfish-actions.pod:1770 ../fish/guestfish-actions.pod:2106
10724 msgid "\"windows\""
10725 msgstr "\"windows\""
10726
10727 #. type: textblock
10728 #: ../src/guestfs-actions.pod:2610 ../fish/guestfish-actions.pod:1772
10729 msgid ""
10730 "Windows does not have distributions.  This string is returned if the OS type "
10731 "is Windows."
10732 msgstr ""
10733
10734 #. type: textblock
10735 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:2719
10736 #: ../src/guestfs-actions.pod:3094 ../fish/guestfish-actions.pod:1777
10737 #: ../fish/guestfish-actions.pod:1856 ../fish/guestfish-actions.pod:2120
10738 msgid ""
10739 "Future versions of libguestfs may return other strings here.  The caller "
10740 "should be prepared to handle any string."
10741 msgstr ""
10742
10743 #. type: =head2
10744 #: ../src/guestfs-actions.pod:2625
10745 msgid "guestfs_inspect_get_drive_mappings"
10746 msgstr ""
10747
10748 #. type: verbatim
10749 #: ../src/guestfs-actions.pod:2627
10750 #, no-wrap
10751 msgid ""
10752 " char **\n"
10753 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10754 "                                     const char *root);\n"
10755 "\n"
10756 msgstr ""
10757
10758 #. type: textblock
10759 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1786
10760 msgid ""
10761 "This call is useful for Windows which uses a primitive system of assigning "
10762 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10763 "Windows Registry to find out how disks/partitions are mapped to drive "
10764 "letters, and returns a hash table as in the example below:"
10765 msgstr ""
10766
10767 #. type: verbatim
10768 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1792
10769 #, no-wrap
10770 msgid ""
10771 " C      =>     /dev/vda2\n"
10772 " E      =>     /dev/vdb1\n"
10773 " F      =>     /dev/vdc1\n"
10774 "\n"
10775 msgstr ""
10776
10777 #. type: textblock
10778 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1796
10779 msgid ""
10780 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10781 "and just contains the drive letter, without the customary colon separator "
10782 "character."
10783 msgstr ""
10784
10785 #. type: textblock
10786 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1800
10787 msgid ""
10788 "In future we may support other operating systems that also used drive "
10789 "letters, but the keys for those might not be case insensitive and might be "
10790 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10791 "C<h1> etc."
10792 msgstr ""
10793
10794 #. type: textblock
10795 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1805
10796 msgid ""
10797 "For Windows guests, currently only hard drive mappings are returned.  "
10798 "Removable disks (eg. DVD-ROMs) are ignored."
10799 msgstr ""
10800
10801 #. type: textblock
10802 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1808
10803 msgid ""
10804 "For guests that do not use drive mappings, or if the drive mappings could "
10805 "not be determined, this returns an empty hash table."
10806 msgstr ""
10807
10808 #. type: textblock
10809 #: ../src/guestfs-actions.pod:2656
10810 msgid ""
10811 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10812 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10813 msgstr ""
10814
10815 #. type: textblock
10816 #: ../src/guestfs-actions.pod:2660 ../src/guestfs-actions.pod:2928
10817 #: ../src/guestfs-actions.pod:3706 ../src/guestfs-actions.pod:4973
10818 #: ../src/guestfs-actions.pod:6910
10819 msgid ""
10820 "This function returns a NULL-terminated array of strings, or NULL if there "
10821 "was an error.  The array of strings will always have length C<2n+1>, where "
10822 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10823 "caller must free the strings and the array after use>."
10824 msgstr ""
10825
10826 #. type: textblock
10827 #: ../src/guestfs-actions.pod:2666 ../src/guestfs-actions.pod:3122
10828 msgid "(Added in 1.9.17)"
10829 msgstr ""
10830
10831 #. type: =head2
10832 #: ../src/guestfs-actions.pod:2668
10833 msgid "guestfs_inspect_get_filesystems"
10834 msgstr ""
10835
10836 #. type: verbatim
10837 #: ../src/guestfs-actions.pod:2670
10838 #, no-wrap
10839 msgid ""
10840 " char **\n"
10841 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10842 "                                  const char *root);\n"
10843 "\n"
10844 msgstr ""
10845
10846 #. type: textblock
10847 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1819
10848 msgid ""
10849 "This returns a list of all the filesystems that we think are associated with "
10850 "this operating system.  This includes the root filesystem, other ordinary "
10851 "filesystems, and non-mounted devices like swap partitions."
10852 msgstr ""
10853
10854 #. type: textblock
10855 #: ../src/guestfs-actions.pod:2679 ../fish/guestfish-actions.pod:1824
10856 msgid ""
10857 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10858 "to be shared between operating systems."
10859 msgstr ""
10860
10861 #. type: textblock
10862 #: ../src/guestfs-actions.pod:2682
10863 msgid ""
10864 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10865 "C<guestfs_inspect_get_mountpoints>."
10866 msgstr ""
10867
10868 #. type: =head2
10869 #: ../src/guestfs-actions.pod:2691
10870 msgid "guestfs_inspect_get_format"
10871 msgstr ""
10872
10873 #. type: verbatim
10874 #: ../src/guestfs-actions.pod:2693
10875 #, no-wrap
10876 msgid ""
10877 " char *\n"
10878 " guestfs_inspect_get_format (guestfs_h *g,\n"
10879 "                             const char *root);\n"
10880 "\n"
10881 msgstr ""
10882
10883 #. type: textblock
10884 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1834
10885 msgid ""
10886 "This returns the format of the inspected operating system.  You can use it "
10887 "to detect install images, live CDs and similar."
10888 msgstr ""
10889
10890 #. type: textblock
10891 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1837
10892 msgid "Currently defined formats are:"
10893 msgstr ""
10894
10895 #. type: =item
10896 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1841
10897 msgid "\"installed\""
10898 msgstr "\"installed\""
10899
10900 #. type: textblock
10901 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1843
10902 msgid "This is an installed operating system."
10903 msgstr "Це встановлена операційна система."
10904
10905 #. type: =item
10906 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1845
10907 msgid "\"installer\""
10908 msgstr ""
10909
10910 #. type: textblock
10911 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1847
10912 msgid ""
10913 "The disk image being inspected is not an installed operating system, but a "
10914 "I<bootable> install disk, live CD, or similar."
10915 msgstr ""
10916
10917 #. type: textblock
10918 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1852
10919 msgid "The format of this disk image is not known."
10920 msgstr ""
10921
10922 #. type: textblock
10923 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:3158
10924 #: ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3192
10925 #: ../src/guestfs-actions.pod:5825
10926 msgid "(Added in 1.9.4)"
10927 msgstr ""
10928
10929 #. type: =head2
10930 #: ../src/guestfs-actions.pod:2729
10931 msgid "guestfs_inspect_get_hostname"
10932 msgstr ""
10933
10934 #. type: verbatim
10935 #: ../src/guestfs-actions.pod:2731
10936 #, no-wrap
10937 msgid ""
10938 " char *\n"
10939 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10940 "                               const char *root);\n"
10941 "\n"
10942 msgstr ""
10943
10944 #. type: textblock
10945 #: ../src/guestfs-actions.pod:2735 ../fish/guestfish-actions.pod:1865
10946 msgid ""
10947 "This function returns the hostname of the operating system as found by "
10948 "inspection of the guest's configuration files."
10949 msgstr ""
10950
10951 #. type: textblock
10952 #: ../src/guestfs-actions.pod:2738 ../fish/guestfish-actions.pod:1868
10953 msgid ""
10954 "If the hostname could not be determined, then the string C<unknown> is "
10955 "returned."
10956 msgstr ""
10957
10958 #. type: textblock
10959 #: ../src/guestfs-actions.pod:2746
10960 msgid "(Added in 1.7.9)"
10961 msgstr ""
10962
10963 #. type: =head2
10964 #: ../src/guestfs-actions.pod:2748
10965 msgid "guestfs_inspect_get_icon"
10966 msgstr ""
10967
10968 #. type: verbatim
10969 #: ../src/guestfs-actions.pod:2750
10970 #, no-wrap
10971 msgid ""
10972 " char *\n"
10973 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10974 "                           const char *root,\n"
10975 "                           size_t *size_r,\n"
10976 "                           ...);\n"
10977 "\n"
10978 msgstr ""
10979
10980 #. type: verbatim
10981 #: ../src/guestfs-actions.pod:2761
10982 #, no-wrap
10983 msgid ""
10984 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10985 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10986 "\n"
10987 msgstr ""
10988
10989 #. type: textblock
10990 #: ../src/guestfs-actions.pod:2764 ../fish/guestfish-actions.pod:1877
10991 msgid ""
10992 "This function returns an icon corresponding to the inspected operating "
10993 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10994 "to PNG if necessary)."
10995 msgstr ""
10996
10997 #. type: textblock
10998 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1881
10999 msgid ""
11000 "If it was not possible to get an icon this function returns a zero-length "
11001 "(non-NULL) buffer.  I<Callers must check for this case>."
11002 msgstr ""
11003
11004 #. type: textblock
11005 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1884
11006 msgid ""
11007 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11008 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11009 "this file will be returned.  You can disable favicons by passing the "
11010 "optional C<favicon> boolean as false (default is true)."
11011 msgstr ""
11012
11013 #. type: textblock
11014 #: ../src/guestfs-actions.pod:2777 ../fish/guestfish-actions.pod:1890
11015 msgid ""
11016 "If finding the favicon fails, then we look in other places in the guest for "
11017 "a suitable icon."
11018 msgstr ""
11019
11020 #. type: textblock
11021 #: ../src/guestfs-actions.pod:2780 ../fish/guestfish-actions.pod:1893
11022 msgid ""
11023 "If the optional C<highquality> boolean is true then only high quality icons "
11024 "are returned, which means only icons of high resolution with an alpha "
11025 "channel.  The default (false) is to return any icon we can, even if it is of "
11026 "substandard quality."
11027 msgstr ""
11028
11029 #. type: textblock
11030 #: ../src/guestfs-actions.pod:2791 ../fish/guestfish-actions.pod:1904
11031 msgid ""
11032 "Unlike most other inspection API calls, the guest's disks must be mounted up "
11033 "before you call this, since it needs to read information from the guest "
11034 "filesystem during the call."
11035 msgstr ""
11036
11037 #. type: textblock
11038 #: ../src/guestfs-actions.pod:2797 ../fish/guestfish-actions.pod:1910
11039 msgid ""
11040 "B<Security:> The icon data comes from the untrusted guest, and should be "
11041 "treated with caution.  PNG files have been known to contain exploits.  "
11042 "Ensure that libpng (or other relevant libraries) are fully up to date before "
11043 "trying to process or display the icon."
11044 msgstr ""
11045
11046 #. type: textblock
11047 #: ../src/guestfs-actions.pod:2805 ../fish/guestfish-actions.pod:1918
11048 msgid ""
11049 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
11050 "tries to return the largest, highest quality icon available.  The "
11051 "application must scale the icon to the required size."
11052 msgstr ""
11053
11054 #. type: textblock
11055 #: ../src/guestfs-actions.pod:2812 ../fish/guestfish-actions.pod:1925
11056 msgid ""
11057 "Extracting icons from Windows guests requires the external C<wrestool> "
11058 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11059 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11060 "installed separately."
11061 msgstr ""
11062
11063 #. type: textblock
11064 #: ../src/guestfs-actions.pod:2819 ../fish/guestfish-actions.pod:1932
11065 msgid ""
11066 "Operating system icons are usually trademarks.  Seek legal advice before "
11067 "using trademarks in applications."
11068 msgstr ""
11069
11070 #. type: textblock
11071 #: ../src/guestfs-actions.pod:2828 ../src/guestfs-actions.pod:3653
11072 #: ../src/guestfs-actions.pod:4872
11073 msgid "(Added in 1.11.12)"
11074 msgstr ""
11075
11076 #. type: =head2
11077 #: ../src/guestfs-actions.pod:2830
11078 msgid "guestfs_inspect_get_icon_va"
11079 msgstr ""
11080
11081 #. type: verbatim
11082 #: ../src/guestfs-actions.pod:2832
11083 #, no-wrap
11084 msgid ""
11085 " char *\n"
11086 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11087 "                              const char *root,\n"
11088 "                              size_t *size_r,\n"
11089 "                              va_list args);\n"
11090 "\n"
11091 msgstr ""
11092
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:2838
11095 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11096 msgstr ""
11097
11098 #. type: =head2
11099 #: ../src/guestfs-actions.pod:2842
11100 msgid "guestfs_inspect_get_icon_argv"
11101 msgstr ""
11102
11103 #. type: verbatim
11104 #: ../src/guestfs-actions.pod:2844
11105 #, no-wrap
11106 msgid ""
11107 " char *\n"
11108 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11109 "                                const char *root,\n"
11110 "                                size_t *size_r,\n"
11111 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11112 "\n"
11113 msgstr ""
11114
11115 #. type: textblock
11116 #: ../src/guestfs-actions.pod:2850
11117 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11118 msgstr ""
11119
11120 #. type: =head2
11121 #: ../src/guestfs-actions.pod:2854
11122 msgid "guestfs_inspect_get_major_version"
11123 msgstr ""
11124
11125 #. type: verbatim
11126 #: ../src/guestfs-actions.pod:2856
11127 #, no-wrap
11128 msgid ""
11129 " int\n"
11130 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11131 "                                    const char *root);\n"
11132 "\n"
11133 msgstr ""
11134
11135 #. type: textblock
11136 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1943
11137 msgid ""
11138 "This returns the major version number of the inspected operating system."
11139 msgstr ""
11140
11141 #. type: textblock
11142 #: ../src/guestfs-actions.pod:2863 ../fish/guestfish-actions.pod:1946
11143 msgid ""
11144 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11145 "popular public names used by the operating system.  Notably the operating "
11146 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11147 "1).  You can find out the real versions corresponding to releases of Windows "
11148 "by consulting Wikipedia or MSDN."
11149 msgstr ""
11150
11151 #. type: textblock
11152 #: ../src/guestfs-actions.pod:2870 ../src/guestfs-actions.pod:2887
11153 #: ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1964
11154 msgid "If the version could not be determined, then C<0> is returned."
11155 msgstr ""
11156
11157 #. type: =head2
11158 #: ../src/guestfs-actions.pod:2878
11159 msgid "guestfs_inspect_get_minor_version"
11160 msgstr ""
11161
11162 #. type: verbatim
11163 #: ../src/guestfs-actions.pod:2880
11164 #, no-wrap
11165 msgid ""
11166 " int\n"
11167 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11168 "                                    const char *root);\n"
11169 "\n"
11170 msgstr ""
11171
11172 #. type: textblock
11173 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1961
11174 msgid ""
11175 "This returns the minor version number of the inspected operating system."
11176 msgstr ""
11177
11178 #. type: textblock
11179 #: ../src/guestfs-actions.pod:2889
11180 msgid ""
11181 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11182 "C<guestfs_inspect_get_major_version>."
11183 msgstr ""
11184
11185 #. type: =head2
11186 #: ../src/guestfs-actions.pod:2896
11187 msgid "guestfs_inspect_get_mountpoints"
11188 msgstr ""
11189
11190 #. type: verbatim
11191 #: ../src/guestfs-actions.pod:2898
11192 #, no-wrap
11193 msgid ""
11194 " char **\n"
11195 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11196 "                                  const char *root);\n"
11197 "\n"
11198 msgstr ""
11199
11200 #. type: textblock
11201 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:1973
11202 msgid ""
11203 "This returns a hash of where we think the filesystems associated with this "
11204 "operating system should be mounted.  Callers should note that this is at "
11205 "best an educated guess made by reading configuration files such as C</etc/"
11206 "fstab>.  I<In particular note> that this may return filesystems which are "
11207 "non-existent or not mountable and callers should be prepared to handle or "
11208 "ignore failures if they try to mount them."
11209 msgstr ""
11210
11211 #. type: textblock
11212 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:1982
11213 msgid ""
11214 "Each element in the returned hashtable has a key which is the path of the "
11215 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11216 "mounted there (eg. C</dev/sda1>)."
11217 msgstr ""
11218
11219 #. type: textblock
11220 #: ../src/guestfs-actions.pod:2916 ../fish/guestfish-actions.pod:1987
11221 msgid ""
11222 "Non-mounted devices such as swap devices are I<not> returned in this list."
11223 msgstr ""
11224
11225 #. type: textblock
11226 #: ../src/guestfs-actions.pod:2919
11227 msgid ""
11228 "For operating systems like Windows which still use drive letters, this call "
11229 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11230 "information about the mapping of drive letters to partitions, see "
11231 "C<guestfs_inspect_get_drive_mappings>."
11232 msgstr ""
11233
11234 #. type: textblock
11235 #: ../src/guestfs-actions.pod:2925
11236 msgid ""
11237 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11238 "C<guestfs_inspect_get_filesystems>."
11239 msgstr ""
11240
11241 #. type: =head2
11242 #: ../src/guestfs-actions.pod:2936
11243 msgid "guestfs_inspect_get_package_format"
11244 msgstr ""
11245
11246 #. type: verbatim
11247 #: ../src/guestfs-actions.pod:2938
11248 #, no-wrap
11249 msgid ""
11250 " char *\n"
11251 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11252 "                                     const char *root);\n"
11253 "\n"
11254 msgstr ""
11255
11256 #. type: textblock
11257 #: ../src/guestfs-actions.pod:2942
11258 msgid ""
11259 "This function and C<guestfs_inspect_get_package_management> return the "
11260 "package format and package management tool used by the inspected operating "
11261 "system.  For example for Fedora these functions would return C<rpm> (package "
11262 "format) and C<yum> (package management)."
11263 msgstr ""
11264
11265 #. type: textblock
11266 #: ../src/guestfs-actions.pod:2948 ../fish/guestfish-actions.pod:2009
11267 msgid ""
11268 "This returns the string C<unknown> if we could not determine the package "
11269 "format I<or> if the operating system does not have a real packaging system "
11270 "(eg. Windows)."
11271 msgstr ""
11272
11273 #. type: textblock
11274 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:2013
11275 msgid ""
11276 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11277 "Future versions of libguestfs may return other strings."
11278 msgstr ""
11279
11280 #. type: textblock
11281 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:2988
11282 msgid "(Added in 1.7.5)"
11283 msgstr ""
11284
11285 #. type: =head2
11286 #: ../src/guestfs-actions.pod:2962
11287 msgid "guestfs_inspect_get_package_management"
11288 msgstr ""
11289
11290 #. type: verbatim
11291 #: ../src/guestfs-actions.pod:2964
11292 #, no-wrap
11293 msgid ""
11294 " char *\n"
11295 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11296 "                                         const char *root);\n"
11297 "\n"
11298 msgstr ""
11299
11300 #. type: textblock
11301 #: ../src/guestfs-actions.pod:2968
11302 msgid ""
11303 "C<guestfs_inspect_get_package_format> and this function return the package "
11304 "format and package management tool used by the inspected operating system.  "
11305 "For example for Fedora these functions would return C<rpm> (package format) "
11306 "and C<yum> (package management)."
11307 msgstr ""
11308
11309 #. type: textblock
11310 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2028
11311 msgid ""
11312 "This returns the string C<unknown> if we could not determine the package "
11313 "management tool I<or> if the operating system does not have a real packaging "
11314 "system (eg. Windows)."
11315 msgstr ""
11316
11317 #. type: textblock
11318 #: ../src/guestfs-actions.pod:2978 ../fish/guestfish-actions.pod:2032
11319 msgid ""
11320 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11321 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11322 "libguestfs may return other strings."
11323 msgstr ""
11324
11325 #. type: =head2
11326 #: ../src/guestfs-actions.pod:2990
11327 msgid "guestfs_inspect_get_product_name"
11328 msgstr ""
11329
11330 #. type: verbatim
11331 #: ../src/guestfs-actions.pod:2992
11332 #, no-wrap
11333 msgid ""
11334 " char *\n"
11335 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11336 "                                   const char *root);\n"
11337 "\n"
11338 msgstr ""
11339
11340 #. type: textblock
11341 #: ../src/guestfs-actions.pod:2996 ../fish/guestfish-actions.pod:2043
11342 msgid ""
11343 "This returns the product name of the inspected operating system.  The "
11344 "product name is generally some freeform string which can be displayed to the "
11345 "user, but should not be parsed by programs."
11346 msgstr ""
11347
11348 #. type: textblock
11349 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2048
11350 msgid ""
11351 "If the product name could not be determined, then the string C<unknown> is "
11352 "returned."
11353 msgstr ""
11354
11355 #. type: =head2
11356 #: ../src/guestfs-actions.pod:3011
11357 msgid "guestfs_inspect_get_product_variant"
11358 msgstr ""
11359
11360 #. type: verbatim
11361 #: ../src/guestfs-actions.pod:3013
11362 #, no-wrap
11363 msgid ""
11364 " char *\n"
11365 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11366 "                                      const char *root);\n"
11367 "\n"
11368 msgstr ""
11369
11370 #. type: textblock
11371 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2057
11372 #, fuzzy
11373 #| msgid "This is an installed operating system."
11374 msgid "This returns the product variant of the inspected operating system."
11375 msgstr "Це встановлена операційна система."
11376
11377 #. type: textblock
11378 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2060
11379 msgid ""
11380 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11381 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11382 "is usually a string such as C<Client> or C<Server> (other values are "
11383 "possible).  This can be used to distinguish consumer and enterprise versions "
11384 "of Windows that have the same version number (for example, Windows 7 and "
11385 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11386 "the latter is C<Server>)."
11387 msgstr ""
11388
11389 #. type: textblock
11390 #: ../src/guestfs-actions.pod:3029 ../fish/guestfish-actions.pod:2069
11391 msgid ""
11392 "For enterprise Linux guests, in future we intend this to return the product "
11393 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11394 "implemented at present."
11395 msgstr ""
11396
11397 #. type: textblock
11398 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2073
11399 msgid ""
11400 "If the product variant could not be determined, then the string C<unknown> "
11401 "is returned."
11402 msgstr ""
11403
11404 #. type: textblock
11405 #: ../src/guestfs-actions.pod:3036
11406 msgid ""
11407 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11408 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11409 msgstr ""
11410
11411 #. type: textblock
11412 #: ../src/guestfs-actions.pod:3043
11413 msgid "(Added in 1.9.13)"
11414 msgstr ""
11415
11416 #. type: =head2
11417 #: ../src/guestfs-actions.pod:3045
11418 msgid "guestfs_inspect_get_roots"
11419 msgstr ""
11420
11421 #. type: verbatim
11422 #: ../src/guestfs-actions.pod:3047
11423 #, no-wrap
11424 msgid ""
11425 " char **\n"
11426 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11427 "\n"
11428 msgstr ""
11429
11430 #. type: textblock
11431 #: ../src/guestfs-actions.pod:3050
11432 msgid ""
11433 "This function is a convenient way to get the list of root devices, as "
11434 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11435 "the whole inspection process."
11436 msgstr ""
11437
11438 #. type: textblock
11439 #: ../src/guestfs-actions.pod:3054
11440 msgid ""
11441 "This returns an empty list if either no root devices were found or the "
11442 "caller has not called C<guestfs_inspect_os>."
11443 msgstr ""
11444
11445 #. type: textblock
11446 #: ../src/guestfs-actions.pod:3063
11447 msgid "(Added in 1.7.3)"
11448 msgstr ""
11449
11450 #. type: =head2
11451 #: ../src/guestfs-actions.pod:3065
11452 msgid "guestfs_inspect_get_type"
11453 msgstr ""
11454
11455 #. type: verbatim
11456 #: ../src/guestfs-actions.pod:3067
11457 #, no-wrap
11458 msgid ""
11459 " char *\n"
11460 " guestfs_inspect_get_type (guestfs_h *g,\n"
11461 "                           const char *root);\n"
11462 "\n"
11463 msgstr ""
11464
11465 #. type: textblock
11466 #: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2097
11467 msgid ""
11468 "This returns the type of the inspected operating system.  Currently defined "
11469 "types are:"
11470 msgstr ""
11471
11472 #. type: =item
11473 #: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2102
11474 msgid "\"linux\""
11475 msgstr "\"linux\""
11476
11477 #. type: textblock
11478 #: ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:2104
11479 msgid "Any Linux-based operating system."
11480 msgstr ""
11481
11482 #. type: textblock
11483 #: ../src/guestfs-actions.pod:3082 ../fish/guestfish-actions.pod:2108
11484 msgid "Any Microsoft Windows operating system."
11485 msgstr ""
11486
11487 #. type: =item
11488 #: ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:2110
11489 msgid "\"freebsd\""
11490 msgstr "\"freebsd\""
11491
11492 #. type: textblock
11493 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2112
11494 msgid "FreeBSD."
11495 msgstr "FreeBSD."
11496
11497 #. type: textblock
11498 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2116
11499 msgid "The operating system type could not be determined."
11500 msgstr ""
11501
11502 #. type: =head2
11503 #: ../src/guestfs-actions.pod:3104
11504 msgid "guestfs_inspect_get_windows_current_control_set"
11505 msgstr ""
11506
11507 #. type: verbatim
11508 #: ../src/guestfs-actions.pod:3106
11509 #, no-wrap
11510 msgid ""
11511 " char *\n"
11512 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11513 "                                                  const char *root);\n"
11514 "\n"
11515 msgstr ""
11516
11517 #. type: textblock
11518 #: ../src/guestfs-actions.pod:3110 ../fish/guestfish-actions.pod:2129
11519 msgid ""
11520 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11521 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11522 msgstr ""
11523
11524 #. type: textblock
11525 #: ../src/guestfs-actions.pod:3113 ../fish/guestfish-actions.pod:2132
11526 msgid ""
11527 "This call assumes that the guest is Windows and that the Registry could be "
11528 "examined by inspection.  If this is not the case then an error is returned."
11529 msgstr ""
11530
11531 #. type: =head2
11532 #: ../src/guestfs-actions.pod:3124
11533 msgid "guestfs_inspect_get_windows_systemroot"
11534 msgstr ""
11535
11536 #. type: verbatim
11537 #: ../src/guestfs-actions.pod:3126
11538 #, no-wrap
11539 msgid ""
11540 " char *\n"
11541 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11542 "                                         const char *root);\n"
11543 "\n"
11544 msgstr ""
11545
11546 #. type: textblock
11547 #: ../src/guestfs-actions.pod:3130 ../fish/guestfish-actions.pod:2142
11548 msgid ""
11549 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11550 "is a directory path such as C</WINDOWS>."
11551 msgstr ""
11552
11553 #. type: textblock
11554 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2145
11555 msgid ""
11556 "This call assumes that the guest is Windows and that the systemroot could be "
11557 "determined by inspection.  If this is not the case then an error is returned."
11558 msgstr ""
11559
11560 #. type: textblock
11561 #: ../src/guestfs-actions.pod:3142
11562 msgid "(Added in 1.5.25)"
11563 msgstr ""
11564
11565 #. type: =head2
11566 #: ../src/guestfs-actions.pod:3144
11567 msgid "guestfs_inspect_is_live"
11568 msgstr ""
11569
11570 #. type: verbatim
11571 #: ../src/guestfs-actions.pod:3146
11572 #, no-wrap
11573 msgid ""
11574 " int\n"
11575 " guestfs_inspect_is_live (guestfs_h *g,\n"
11576 "                          const char *root);\n"
11577 "\n"
11578 msgstr ""
11579
11580 #. type: textblock
11581 #: ../src/guestfs-actions.pod:3150
11582 msgid ""
11583 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11584 "disk), then this returns true if a live image was detected on the disk."
11585 msgstr ""
11586
11587 #. type: =head2
11588 #: ../src/guestfs-actions.pod:3160
11589 msgid "guestfs_inspect_is_multipart"
11590 msgstr ""
11591
11592 #. type: verbatim
11593 #: ../src/guestfs-actions.pod:3162
11594 #, no-wrap
11595 msgid ""
11596 " int\n"
11597 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11598 "                               const char *root);\n"
11599 "\n"
11600 msgstr ""
11601
11602 #. type: textblock
11603 #: ../src/guestfs-actions.pod:3166
11604 msgid ""
11605 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11606 "disk), then this returns true if the disk is part of a set."
11607 msgstr ""
11608
11609 #. type: =head2
11610 #: ../src/guestfs-actions.pod:3176
11611 msgid "guestfs_inspect_is_netinst"
11612 msgstr ""
11613
11614 #. type: verbatim
11615 #: ../src/guestfs-actions.pod:3178
11616 #, no-wrap
11617 msgid ""
11618 " int\n"
11619 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11620 "                             const char *root);\n"
11621 "\n"
11622 msgstr ""
11623
11624 #. type: textblock
11625 #: ../src/guestfs-actions.pod:3182
11626 msgid ""
11627 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11628 "disk), then this returns true if the disk is a network installer, ie. not a "
11629 "self-contained install CD but one which is likely to require network access "
11630 "to complete the install."
11631 msgstr ""
11632
11633 #. type: =head2
11634 #: ../src/guestfs-actions.pod:3194
11635 msgid "guestfs_inspect_list_applications"
11636 msgstr ""
11637
11638 #. type: verbatim
11639 #: ../src/guestfs-actions.pod:3196
11640 #, no-wrap
11641 msgid ""
11642 " struct guestfs_application_list *\n"
11643 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11644 "                                    const char *root);\n"
11645 "\n"
11646 msgstr ""
11647
11648 #. type: textblock
11649 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2187
11650 msgid "Return the list of applications installed in the operating system."
11651 msgstr ""
11652
11653 #. type: textblock
11654 #: ../src/guestfs-actions.pod:3202
11655 msgid ""
11656 "I<Note:> This call works differently from other parts of the inspection "
11657 "API.  You have to call C<guestfs_inspect_os>, then "
11658 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11659 "this.  Listing applications is a significantly more difficult operation "
11660 "which requires access to the full filesystem.  Also note that unlike the "
11661 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11662 "the libguestfs handle, this call actually reads parts of the mounted "
11663 "filesystems during the call."
11664 msgstr ""
11665
11666 #. type: textblock
11667 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2199
11668 msgid ""
11669 "This returns an empty list if the inspection code was not able to determine "
11670 "the list of applications."
11671 msgstr ""
11672
11673 #. type: textblock
11674 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2202
11675 msgid "The application structure contains the following fields:"
11676 msgstr ""
11677
11678 #. type: =item
11679 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2206
11680 msgid "C<app_name>"
11681 msgstr "C<app_name>"
11682
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2208
11685 msgid ""
11686 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11687 "guests, this is the package name."
11688 msgstr ""
11689
11690 #. type: =item
11691 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2211
11692 msgid "C<app_display_name>"
11693 msgstr "C<app_display_name>"
11694
11695 #. type: textblock
11696 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2213
11697 msgid ""
11698 "The display name of the application, sometimes localized to the install "
11699 "language of the guest operating system."
11700 msgstr ""
11701
11702 #. type: textblock
11703 #: ../src/guestfs-actions.pod:3229 ../fish/guestfish-actions.pod:2216
11704 msgid ""
11705 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11706 "to display something can use C<app_name> instead."
11707 msgstr ""
11708
11709 #. type: =item
11710 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2219
11711 msgid "C<app_epoch>"
11712 msgstr "C<app_epoch>"
11713
11714 #. type: textblock
11715 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2221
11716 msgid ""
11717 "For package managers which use epochs, this contains the epoch of the "
11718 "package (an integer).  If unavailable, this is returned as C<0>."
11719 msgstr ""
11720
11721 #. type: =item
11722 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2224
11723 msgid "C<app_version>"
11724 msgstr "C<app_version>"
11725
11726 #. type: textblock
11727 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2226
11728 msgid ""
11729 "The version string of the application or package.  If unavailable this is "
11730 "returned as an empty string C<\"\">."
11731 msgstr ""
11732
11733 #. type: =item
11734 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2229
11735 msgid "C<app_release>"
11736 msgstr "C<app_release>"
11737
11738 #. type: textblock
11739 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2231
11740 msgid ""
11741 "The release string of the application or package, for package managers that "
11742 "use this.  If unavailable this is returned as an empty string C<\"\">."
11743 msgstr ""
11744
11745 #. type: =item
11746 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2235
11747 msgid "C<app_install_path>"
11748 msgstr "C<app_install_path>"
11749
11750 #. type: textblock
11751 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2237
11752 msgid ""
11753 "The installation path of the application (on operating systems such as "
11754 "Windows which use installation paths).  This path is in the format used by "
11755 "the guest operating system, it is not a libguestfs path."
11756 msgstr ""
11757
11758 #. type: textblock
11759 #: ../src/guestfs-actions.pod:3255 ../fish/guestfish-actions.pod:2242
11760 msgid "If unavailable this is returned as an empty string C<\"\">."
11761 msgstr ""
11762
11763 #. type: =item
11764 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2244
11765 msgid "C<app_trans_path>"
11766 msgstr "C<app_trans_path>"
11767
11768 #. type: textblock
11769 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2246
11770 msgid ""
11771 "The install path translated into a libguestfs path.  If unavailable this is "
11772 "returned as an empty string C<\"\">."
11773 msgstr ""
11774
11775 #. type: =item
11776 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2249
11777 msgid "C<app_publisher>"
11778 msgstr "C<app_publisher>"
11779
11780 #. type: textblock
11781 #: ../src/guestfs-actions.pod:3264 ../fish/guestfish-actions.pod:2251
11782 msgid ""
11783 "The name of the publisher of the application, for package managers that use "
11784 "this.  If unavailable this is returned as an empty string C<\"\">."
11785 msgstr ""
11786
11787 #. type: =item
11788 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2255
11789 msgid "C<app_url>"
11790 msgstr "C<app_url>"
11791
11792 #. type: textblock
11793 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2257
11794 msgid ""
11795 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11796 "returned as an empty string C<\"\">."
11797 msgstr ""
11798
11799 #. type: =item
11800 #: ../src/guestfs-actions.pod:3273 ../fish/guestfish-actions.pod:2260
11801 msgid "C<app_source_package>"
11802 msgstr ""
11803
11804 #. type: textblock
11805 #: ../src/guestfs-actions.pod:3275 ../fish/guestfish-actions.pod:2262
11806 msgid ""
11807 "For packaging systems which support this, the name of the source package.  "
11808 "If unavailable this is returned as an empty string C<\"\">."
11809 msgstr ""
11810
11811 #. type: =item
11812 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2265
11813 msgid "C<app_summary>"
11814 msgstr ""
11815
11816 #. type: textblock
11817 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2267
11818 msgid ""
11819 "A short (usually one line) description of the application or package.  If "
11820 "unavailable this is returned as an empty string C<\"\">."
11821 msgstr ""
11822
11823 #. type: =item
11824 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2270
11825 msgid "C<app_description>"
11826 msgstr ""
11827
11828 #. type: textblock
11829 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2272
11830 msgid ""
11831 "A longer description of the application or package.  If unavailable this is "
11832 "returned as an empty string C<\"\">."
11833 msgstr ""
11834
11835 #. type: textblock
11836 #: ../src/guestfs-actions.pod:3292
11837 msgid ""
11838 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11839 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11840 "after use>."
11841 msgstr ""
11842
11843 #. type: textblock
11844 #: ../src/guestfs-actions.pod:3296
11845 msgid "(Added in 1.7.8)"
11846 msgstr ""
11847
11848 #. type: =head2
11849 #: ../src/guestfs-actions.pod:3298
11850 msgid "guestfs_inspect_os"
11851 msgstr ""
11852
11853 #. type: verbatim
11854 #: ../src/guestfs-actions.pod:3300
11855 #, no-wrap
11856 msgid ""
11857 " char **\n"
11858 " guestfs_inspect_os (guestfs_h *g);\n"
11859 "\n"
11860 msgstr ""
11861
11862 #. type: textblock
11863 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2283
11864 msgid ""
11865 "This function uses other libguestfs functions and certain heuristics to "
11866 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11867 "for operating systems."
11868 msgstr ""
11869
11870 #. type: textblock
11871 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2287
11872 msgid "The list returned is empty if no operating systems were found."
11873 msgstr ""
11874
11875 #. type: textblock
11876 #: ../src/guestfs-actions.pod:3309 ../fish/guestfish-actions.pod:2289
11877 msgid ""
11878 "If one operating system was found, then this returns a list with a single "
11879 "element, which is the name of the root filesystem of this operating system.  "
11880 "It is also possible for this function to return a list containing more than "
11881 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11882 "element being the root filesystem of one of the operating systems."
11883 msgstr ""
11884
11885 #. type: textblock
11886 #: ../src/guestfs-actions.pod:3316
11887 msgid ""
11888 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11889 "functions in order to query further information about each operating system, "
11890 "such as the name and version."
11891 msgstr ""
11892
11893 #. type: textblock
11894 #: ../src/guestfs-actions.pod:3321
11895 msgid ""
11896 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11897 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11898 "the contents.  This should be called with no disks currently mounted.  The "
11899 "function may also use Augeas, so any existing Augeas handle will be closed."
11900 msgstr ""
11901
11902 #. type: textblock
11903 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2307
11904 msgid ""
11905 "This function cannot decrypt encrypted disks.  The caller must do that first "
11906 "(supplying the necessary keys) if the disk is encrypted."
11907 msgstr ""
11908
11909 #. type: textblock
11910 #: ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3664
11911 #: ../src/guestfs-actions.pod:3726
11912 msgid "See also C<guestfs_list_filesystems>."
11913 msgstr ""
11914
11915 #. type: =head2
11916 #: ../src/guestfs-actions.pod:3341
11917 msgid "guestfs_is_blockdev"
11918 msgstr ""
11919
11920 #. type: verbatim
11921 #: ../src/guestfs-actions.pod:3343
11922 #, no-wrap
11923 msgid ""
11924 " int\n"
11925 " guestfs_is_blockdev (guestfs_h *g,\n"
11926 "                      const char *path);\n"
11927 "\n"
11928 msgstr ""
11929
11930 #. type: textblock
11931 #: ../src/guestfs-actions.pod:3347 ../fish/guestfish-actions.pod:2319
11932 msgid ""
11933 "This returns C<true> if and only if there is a block device with the given "
11934 "C<path> name."
11935 msgstr ""
11936
11937 #. type: textblock
11938 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3379
11939 #: ../src/guestfs-actions.pod:3409 ../src/guestfs-actions.pod:3424
11940 #: ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3496
11941 #: ../src/guestfs-actions.pod:3511
11942 msgid "See also C<guestfs_stat>."
11943 msgstr ""
11944
11945 #. type: textblock
11946 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3383
11947 #: ../src/guestfs-actions.pod:3428 ../src/guestfs-actions.pod:3500
11948 #: ../src/guestfs-actions.pod:3515
11949 msgid "(Added in 1.5.10)"
11950 msgstr ""
11951
11952 #. type: =head2
11953 #: ../src/guestfs-actions.pod:3356
11954 msgid "guestfs_is_busy"
11955 msgstr ""
11956
11957 #. type: verbatim
11958 #: ../src/guestfs-actions.pod:3358
11959 #, no-wrap
11960 msgid ""
11961 " int\n"
11962 " guestfs_is_busy (guestfs_h *g);\n"
11963 "\n"
11964 msgstr ""
11965
11966 #. type: textblock
11967 #: ../src/guestfs-actions.pod:3361 ../fish/guestfish-actions.pod:2328
11968 msgid ""
11969 "This returns true iff this handle is busy processing a command (in the "
11970 "C<BUSY> state)."
11971 msgstr ""
11972
11973 #. type: =head2
11974 #: ../src/guestfs-actions.pod:3370
11975 msgid "guestfs_is_chardev"
11976 msgstr ""
11977
11978 #. type: verbatim
11979 #: ../src/guestfs-actions.pod:3372
11980 #, no-wrap
11981 msgid ""
11982 " int\n"
11983 " guestfs_is_chardev (guestfs_h *g,\n"
11984 "                     const char *path);\n"
11985 "\n"
11986 msgstr ""
11987
11988 #. type: textblock
11989 #: ../src/guestfs-actions.pod:3376 ../fish/guestfish-actions.pod:2337
11990 msgid ""
11991 "This returns C<true> if and only if there is a character device with the "
11992 "given C<path> name."
11993 msgstr ""
11994
11995 #. type: =head2
11996 #: ../src/guestfs-actions.pod:3385
11997 msgid "guestfs_is_config"
11998 msgstr ""
11999
12000 #. type: verbatim
12001 #: ../src/guestfs-actions.pod:3387
12002 #, no-wrap
12003 msgid ""
12004 " int\n"
12005 " guestfs_is_config (guestfs_h *g);\n"
12006 "\n"
12007 msgstr ""
12008
12009 #. type: textblock
12010 #: ../src/guestfs-actions.pod:3390 ../fish/guestfish-actions.pod:2346
12011 msgid ""
12012 "This returns true iff this handle is being configured (in the C<CONFIG> "
12013 "state)."
12014 msgstr ""
12015
12016 #. type: =head2
12017 #: ../src/guestfs-actions.pod:3399
12018 msgid "guestfs_is_dir"
12019 msgstr ""
12020
12021 #. type: verbatim
12022 #: ../src/guestfs-actions.pod:3401
12023 #, no-wrap
12024 msgid ""
12025 " int\n"
12026 " guestfs_is_dir (guestfs_h *g,\n"
12027 "                 const char *path);\n"
12028 "\n"
12029 msgstr ""
12030
12031 #. type: textblock
12032 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2355
12033 msgid ""
12034 "This returns C<true> if and only if there is a directory with the given "
12035 "C<path> name.  Note that it returns false for other objects like files."
12036 msgstr ""
12037
12038 #. type: =head2
12039 #: ../src/guestfs-actions.pod:3415
12040 msgid "guestfs_is_fifo"
12041 msgstr ""
12042
12043 #. type: verbatim
12044 #: ../src/guestfs-actions.pod:3417
12045 #, no-wrap
12046 msgid ""
12047 " int\n"
12048 " guestfs_is_fifo (guestfs_h *g,\n"
12049 "                  const char *path);\n"
12050 "\n"
12051 msgstr ""
12052
12053 #. type: textblock
12054 #: ../src/guestfs-actions.pod:3421 ../fish/guestfish-actions.pod:2365
12055 msgid ""
12056 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12057 "given C<path> name."
12058 msgstr ""
12059
12060 #. type: =head2
12061 #: ../src/guestfs-actions.pod:3430
12062 msgid "guestfs_is_file"
12063 msgstr ""
12064
12065 #. type: verbatim
12066 #: ../src/guestfs-actions.pod:3432
12067 #, no-wrap
12068 msgid ""
12069 " int\n"
12070 " guestfs_is_file (guestfs_h *g,\n"
12071 "                  const char *path);\n"
12072 "\n"
12073 msgstr ""
12074
12075 #. type: textblock
12076 #: ../src/guestfs-actions.pod:3436 ../fish/guestfish-actions.pod:2374
12077 msgid ""
12078 "This returns C<true> if and only if there is a regular file with the given "
12079 "C<path> name.  Note that it returns false for other objects like directories."
12080 msgstr ""
12081
12082 #. type: =head2
12083 #: ../src/guestfs-actions.pod:3446
12084 msgid "guestfs_is_launching"
12085 msgstr ""
12086
12087 #. type: verbatim
12088 #: ../src/guestfs-actions.pod:3448
12089 #, no-wrap
12090 msgid ""
12091 " int\n"
12092 " guestfs_is_launching (guestfs_h *g);\n"
12093 "\n"
12094 msgstr ""
12095
12096 #. type: textblock
12097 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2384
12098 msgid ""
12099 "This returns true iff this handle is launching the subprocess (in the "
12100 "C<LAUNCHING> state)."
12101 msgstr ""
12102
12103 #. type: =head2
12104 #: ../src/guestfs-actions.pod:3460
12105 msgid "guestfs_is_lv"
12106 msgstr ""
12107
12108 #. type: verbatim
12109 #: ../src/guestfs-actions.pod:3462
12110 #, no-wrap
12111 msgid ""
12112 " int\n"
12113 " guestfs_is_lv (guestfs_h *g,\n"
12114 "                const char *device);\n"
12115 "\n"
12116 msgstr ""
12117
12118 #. type: textblock
12119 #: ../src/guestfs-actions.pod:3466 ../fish/guestfish-actions.pod:2393
12120 msgid ""
12121 "This command tests whether C<device> is a logical volume, and returns true "
12122 "iff this is the case."
12123 msgstr ""
12124
12125 #. type: =head2
12126 #: ../src/guestfs-actions.pod:3473
12127 msgid "guestfs_is_ready"
12128 msgstr ""
12129
12130 #. type: verbatim
12131 #: ../src/guestfs-actions.pod:3475
12132 #, no-wrap
12133 msgid ""
12134 " int\n"
12135 " guestfs_is_ready (guestfs_h *g);\n"
12136 "\n"
12137 msgstr ""
12138
12139 #. type: textblock
12140 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2400
12141 msgid ""
12142 "This returns true iff this handle is ready to accept commands (in the "
12143 "C<READY> state)."
12144 msgstr ""
12145
12146 #. type: =head2
12147 #: ../src/guestfs-actions.pod:3487
12148 msgid "guestfs_is_socket"
12149 msgstr ""
12150
12151 #. type: verbatim
12152 #: ../src/guestfs-actions.pod:3489
12153 #, no-wrap
12154 msgid ""
12155 " int\n"
12156 " guestfs_is_socket (guestfs_h *g,\n"
12157 "                    const char *path);\n"
12158 "\n"
12159 msgstr ""
12160
12161 #. type: textblock
12162 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2409
12163 msgid ""
12164 "This returns C<true> if and only if there is a Unix domain socket with the "
12165 "given C<path> name."
12166 msgstr ""
12167
12168 #. type: =head2
12169 #: ../src/guestfs-actions.pod:3502
12170 msgid "guestfs_is_symlink"
12171 msgstr ""
12172
12173 #. type: verbatim
12174 #: ../src/guestfs-actions.pod:3504
12175 #, no-wrap
12176 msgid ""
12177 " int\n"
12178 " guestfs_is_symlink (guestfs_h *g,\n"
12179 "                     const char *path);\n"
12180 "\n"
12181 msgstr ""
12182
12183 #. type: textblock
12184 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2418
12185 msgid ""
12186 "This returns C<true> if and only if there is a symbolic link with the given "
12187 "C<path> name."
12188 msgstr ""
12189
12190 #. type: =head2
12191 #: ../src/guestfs-actions.pod:3517
12192 msgid "guestfs_is_zero"
12193 msgstr ""
12194
12195 #. type: verbatim
12196 #: ../src/guestfs-actions.pod:3519
12197 #, no-wrap
12198 msgid ""
12199 " int\n"
12200 " guestfs_is_zero (guestfs_h *g,\n"
12201 "                  const char *path);\n"
12202 "\n"
12203 msgstr ""
12204
12205 #. type: textblock
12206 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2427
12207 msgid ""
12208 "This returns true iff the file exists and the file is empty or it contains "
12209 "all zero bytes."
12210 msgstr ""
12211
12212 #. type: textblock
12213 #: ../src/guestfs-actions.pod:3528 ../src/guestfs-actions.pod:3542
12214 msgid "(Added in 1.11.8)"
12215 msgstr ""
12216
12217 #. type: =head2
12218 #: ../src/guestfs-actions.pod:3530
12219 msgid "guestfs_is_zero_device"
12220 msgstr ""
12221
12222 #. type: verbatim
12223 #: ../src/guestfs-actions.pod:3532
12224 #, no-wrap
12225 msgid ""
12226 " int\n"
12227 " guestfs_is_zero_device (guestfs_h *g,\n"
12228 "                         const char *device);\n"
12229 "\n"
12230 msgstr ""
12231
12232 #. type: textblock
12233 #: ../src/guestfs-actions.pod:3536 ../fish/guestfish-actions.pod:2434
12234 msgid "This returns true iff the device exists and contains all zero bytes."
12235 msgstr ""
12236
12237 #. type: textblock
12238 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:2436
12239 msgid "Note that for large devices this can take a long time to run."
12240 msgstr ""
12241
12242 #. type: =head2
12243 #: ../src/guestfs-actions.pod:3544
12244 msgid "guestfs_kill_subprocess"
12245 msgstr ""
12246
12247 #. type: verbatim
12248 #: ../src/guestfs-actions.pod:3546
12249 #, no-wrap
12250 msgid ""
12251 " int\n"
12252 " guestfs_kill_subprocess (guestfs_h *g);\n"
12253 "\n"
12254 msgstr ""
12255
12256 #. type: textblock
12257 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:2442
12258 msgid "This kills the qemu subprocess.  You should never need to call this."
12259 msgstr ""
12260
12261 #. type: =head2
12262 #: ../src/guestfs-actions.pod:3555
12263 msgid "guestfs_launch"
12264 msgstr ""
12265
12266 #. type: verbatim
12267 #: ../src/guestfs-actions.pod:3557
12268 #, no-wrap
12269 msgid ""
12270 " int\n"
12271 " guestfs_launch (guestfs_h *g);\n"
12272 "\n"
12273 msgstr ""
12274
12275 #. type: textblock
12276 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2450
12277 msgid ""
12278 "Internally libguestfs is implemented by running a virtual machine using "
12279 "L<qemu(1)>."
12280 msgstr ""
12281
12282 #. type: textblock
12283 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2453
12284 msgid ""
12285 "You should call this after configuring the handle (eg. adding drives) but "
12286 "before performing any actions."
12287 msgstr ""
12288
12289 #. type: =head2
12290 #: ../src/guestfs-actions.pod:3575
12291 msgid "guestfs_lchown"
12292 msgstr ""
12293
12294 #. type: verbatim
12295 #: ../src/guestfs-actions.pod:3577
12296 #, no-wrap
12297 msgid ""
12298 " int\n"
12299 " guestfs_lchown (guestfs_h *g,\n"
12300 "                 int owner,\n"
12301 "                 int group,\n"
12302 "                 const char *path);\n"
12303 "\n"
12304 msgstr ""
12305
12306 #. type: textblock
12307 #: ../src/guestfs-actions.pod:3583
12308 msgid ""
12309 "Change the file owner to C<owner> and group to C<group>.  This is like "
12310 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12311 "changed, not the target."
12312 msgstr ""
12313
12314 #. type: =head2
12315 #: ../src/guestfs-actions.pod:3595
12316 msgid "guestfs_lgetxattr"
12317 msgstr ""
12318
12319 #. type: verbatim
12320 #: ../src/guestfs-actions.pod:3597
12321 #, no-wrap
12322 msgid ""
12323 " char *\n"
12324 " guestfs_lgetxattr (guestfs_h *g,\n"
12325 "                    const char *path,\n"
12326 "                    const char *name,\n"
12327 "                    size_t *size_r);\n"
12328 "\n"
12329 msgstr ""
12330
12331 #. type: textblock
12332 #: ../src/guestfs-actions.pod:3603 ../fish/guestfish-actions.pod:2472
12333 msgid ""
12334 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12335 "is a symlink, then this call returns an extended attribute from the symlink."
12336 msgstr ""
12337
12338 #. type: textblock
12339 #: ../src/guestfs-actions.pod:3617
12340 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12341 msgstr ""
12342
12343 #. type: =head2
12344 #: ../src/guestfs-actions.pod:3625
12345 msgid "guestfs_lgetxattrs"
12346 msgstr ""
12347
12348 #. type: verbatim
12349 #: ../src/guestfs-actions.pod:3627
12350 #, no-wrap
12351 msgid ""
12352 " struct guestfs_xattr_list *\n"
12353 " guestfs_lgetxattrs (guestfs_h *g,\n"
12354 "                     const char *path);\n"
12355 "\n"
12356 msgstr ""
12357
12358 #. type: textblock
12359 #: ../src/guestfs-actions.pod:3631
12360 msgid ""
12361 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12362 "then it returns the extended attributes of the link itself."
12363 msgstr ""
12364
12365 #. type: =head2
12366 #: ../src/guestfs-actions.pod:3641
12367 msgid "guestfs_list_9p"
12368 msgstr ""
12369
12370 #. type: verbatim
12371 #: ../src/guestfs-actions.pod:3643
12372 #, no-wrap
12373 msgid ""
12374 " char **\n"
12375 " guestfs_list_9p (guestfs_h *g);\n"
12376 "\n"
12377 msgstr ""
12378
12379 #. type: textblock
12380 #: ../src/guestfs-actions.pod:3646 ../fish/guestfish-actions.pod:2500
12381 msgid ""
12382 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12383 "returned."
12384 msgstr ""
12385
12386 #. type: =head2
12387 #: ../src/guestfs-actions.pod:3655
12388 msgid "guestfs_list_devices"
12389 msgstr ""
12390
12391 #. type: verbatim
12392 #: ../src/guestfs-actions.pod:3657
12393 #, no-wrap
12394 msgid ""
12395 " char **\n"
12396 " guestfs_list_devices (guestfs_h *g);\n"
12397 "\n"
12398 msgstr ""
12399
12400 #. type: textblock
12401 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2507
12402 msgid "List all the block devices."
12403 msgstr ""
12404
12405 #. type: textblock
12406 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2509
12407 msgid "The full block device names are returned, eg. C</dev/sda>."
12408 msgstr ""
12409
12410 #. type: =head2
12411 #: ../src/guestfs-actions.pod:3672
12412 msgid "guestfs_list_filesystems"
12413 msgstr ""
12414
12415 #. type: verbatim
12416 #: ../src/guestfs-actions.pod:3674
12417 #, no-wrap
12418 msgid ""
12419 " char **\n"
12420 " guestfs_list_filesystems (guestfs_h *g);\n"
12421 "\n"
12422 msgstr ""
12423
12424 #. type: textblock
12425 #: ../src/guestfs-actions.pod:3677 ../fish/guestfish-actions.pod:2517
12426 msgid ""
12427 "This inspection command looks for filesystems on partitions, block devices "
12428 "and logical volumes, returning a list of devices containing filesystems and "
12429 "their type."
12430 msgstr ""
12431
12432 #. type: textblock
12433 #: ../src/guestfs-actions.pod:3681 ../fish/guestfish-actions.pod:2521
12434 msgid ""
12435 "The return value is a hash, where the keys are the devices containing "
12436 "filesystems, and the values are the filesystem types.  For example:"
12437 msgstr ""
12438
12439 #. type: verbatim
12440 #: ../src/guestfs-actions.pod:3685 ../fish/guestfish-actions.pod:2525
12441 #, no-wrap
12442 msgid ""
12443 " \"/dev/sda1\" => \"ntfs\"\n"
12444 " \"/dev/sda2\" => \"ext2\"\n"
12445 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12446 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12447 "\n"
12448 msgstr ""
12449
12450 #. type: textblock
12451 #: ../src/guestfs-actions.pod:3690 ../fish/guestfish-actions.pod:2530
12452 msgid ""
12453 "The value can have the special value \"unknown\", meaning the content of the "
12454 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12455 msgstr ""
12456
12457 #. type: textblock
12458 #: ../src/guestfs-actions.pod:3694
12459 msgid ""
12460 "This command runs other libguestfs commands, which might include "
12461 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12462 "soon after launch and only when nothing is mounted."
12463 msgstr ""
12464
12465 #. type: textblock
12466 #: ../src/guestfs-actions.pod:3698
12467 msgid ""
12468 "Not all of the filesystems returned will be mountable.  In particular, swap "
12469 "partitions are returned in the list.  Also this command does not check that "
12470 "each filesystem found is valid and mountable, and some filesystems might be "
12471 "mountable but require special options.  Filesystems may not all belong to a "
12472 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12473 msgstr ""
12474
12475 #. type: textblock
12476 #: ../src/guestfs-actions.pod:3712 ../src/guestfs-actions.pod:5374
12477 msgid "(Added in 1.5.15)"
12478 msgstr ""
12479
12480 #. type: =head2
12481 #: ../src/guestfs-actions.pod:3714
12482 msgid "guestfs_list_partitions"
12483 msgstr ""
12484
12485 #. type: verbatim
12486 #: ../src/guestfs-actions.pod:3716
12487 #, no-wrap
12488 msgid ""
12489 " char **\n"
12490 " guestfs_list_partitions (guestfs_h *g);\n"
12491 "\n"
12492 msgstr ""
12493
12494 #. type: textblock
12495 #: ../src/guestfs-actions.pod:3719 ../fish/guestfish-actions.pod:2550
12496 msgid "List all the partitions detected on all block devices."
12497 msgstr ""
12498
12499 #. type: textblock
12500 #: ../src/guestfs-actions.pod:3721 ../fish/guestfish-actions.pod:2552
12501 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12502 msgstr ""
12503
12504 #. type: textblock
12505 #: ../src/guestfs-actions.pod:3723
12506 msgid ""
12507 "This does not return logical volumes.  For that you will need to call "
12508 "C<guestfs_lvs>."
12509 msgstr ""
12510
12511 #. type: =head2
12512 #: ../src/guestfs-actions.pod:3734
12513 msgid "guestfs_ll"
12514 msgstr ""
12515
12516 #. type: verbatim
12517 #: ../src/guestfs-actions.pod:3736
12518 #, no-wrap
12519 msgid ""
12520 " char *\n"
12521 " guestfs_ll (guestfs_h *g,\n"
12522 "             const char *directory);\n"
12523 "\n"
12524 msgstr ""
12525
12526 #. type: textblock
12527 #: ../src/guestfs-actions.pod:3740 ../fish/guestfish-actions.pod:2563
12528 msgid ""
12529 "List the files in C<directory> (relative to the root directory, there is no "
12530 "cwd) in the format of 'ls -la'."
12531 msgstr ""
12532
12533 #. type: textblock
12534 #: ../src/guestfs-actions.pod:3743 ../fish/guestfish-actions.pod:2566
12535 msgid ""
12536 "This command is mostly useful for interactive sessions.  It is I<not> "
12537 "intended that you try to parse the output string."
12538 msgstr ""
12539
12540 #. type: =head2
12541 #: ../src/guestfs-actions.pod:3751
12542 msgid "guestfs_ln"
12543 msgstr ""
12544
12545 #. type: verbatim
12546 #: ../src/guestfs-actions.pod:3753
12547 #, no-wrap
12548 msgid ""
12549 " int\n"
12550 " guestfs_ln (guestfs_h *g,\n"
12551 "             const char *target,\n"
12552 "             const char *linkname);\n"
12553 "\n"
12554 msgstr ""
12555
12556 #. type: textblock
12557 #: ../src/guestfs-actions.pod:3758 ../fish/guestfish-actions.pod:2573
12558 msgid "This command creates a hard link using the C<ln> command."
12559 msgstr ""
12560
12561 #. type: =head2
12562 #: ../src/guestfs-actions.pod:3764
12563 msgid "guestfs_ln_f"
12564 msgstr ""
12565
12566 #. type: verbatim
12567 #: ../src/guestfs-actions.pod:3766
12568 #, no-wrap
12569 msgid ""
12570 " int\n"
12571 " guestfs_ln_f (guestfs_h *g,\n"
12572 "               const char *target,\n"
12573 "               const char *linkname);\n"
12574 "\n"
12575 msgstr ""
12576
12577 #. type: textblock
12578 #: ../src/guestfs-actions.pod:3771 ../fish/guestfish-actions.pod:2579
12579 msgid ""
12580 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12581 "option removes the link (C<linkname>) if it exists already."
12582 msgstr ""
12583
12584 #. type: =head2
12585 #: ../src/guestfs-actions.pod:3778
12586 msgid "guestfs_ln_s"
12587 msgstr ""
12588
12589 #. type: verbatim
12590 #: ../src/guestfs-actions.pod:3780
12591 #, no-wrap
12592 msgid ""
12593 " int\n"
12594 " guestfs_ln_s (guestfs_h *g,\n"
12595 "               const char *target,\n"
12596 "               const char *linkname);\n"
12597 "\n"
12598 msgstr ""
12599
12600 #. type: textblock
12601 #: ../src/guestfs-actions.pod:3785 ../fish/guestfish-actions.pod:2586
12602 msgid "This command creates a symbolic link using the C<ln -s> command."
12603 msgstr ""
12604
12605 #. type: =head2
12606 #: ../src/guestfs-actions.pod:3791
12607 msgid "guestfs_ln_sf"
12608 msgstr ""
12609
12610 #. type: verbatim
12611 #: ../src/guestfs-actions.pod:3793
12612 #, no-wrap
12613 msgid ""
12614 " int\n"
12615 " guestfs_ln_sf (guestfs_h *g,\n"
12616 "                const char *target,\n"
12617 "                const char *linkname);\n"
12618 "\n"
12619 msgstr ""
12620
12621 #. type: textblock
12622 #: ../src/guestfs-actions.pod:3798 ../fish/guestfish-actions.pod:2592
12623 msgid ""
12624 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12625 "option removes the link (C<linkname>) if it exists already."
12626 msgstr ""
12627
12628 #. type: =head2
12629 #: ../src/guestfs-actions.pod:3805
12630 msgid "guestfs_lremovexattr"
12631 msgstr ""
12632
12633 #. type: verbatim
12634 #: ../src/guestfs-actions.pod:3807
12635 #, no-wrap
12636 msgid ""
12637 " int\n"
12638 " guestfs_lremovexattr (guestfs_h *g,\n"
12639 "                       const char *xattr,\n"
12640 "                       const char *path);\n"
12641 "\n"
12642 msgstr ""
12643
12644 #. type: textblock
12645 #: ../src/guestfs-actions.pod:3812
12646 msgid ""
12647 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12648 "link, then it removes an extended attribute of the link itself."
12649 msgstr ""
12650
12651 #. type: =head2
12652 #: ../src/guestfs-actions.pod:3820
12653 msgid "guestfs_ls"
12654 msgstr ""
12655
12656 #. type: verbatim
12657 #: ../src/guestfs-actions.pod:3822
12658 #, no-wrap
12659 msgid ""
12660 " char **\n"
12661 " guestfs_ls (guestfs_h *g,\n"
12662 "             const char *directory);\n"
12663 "\n"
12664 msgstr ""
12665
12666 #. type: textblock
12667 #: ../src/guestfs-actions.pod:3826 ../fish/guestfish-actions.pod:2607
12668 msgid ""
12669 "List the files in C<directory> (relative to the root directory, there is no "
12670 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12671 msgstr ""
12672
12673 #. type: textblock
12674 #: ../src/guestfs-actions.pod:3830
12675 msgid ""
12676 "This command is mostly useful for interactive sessions.  Programs should "
12677 "probably use C<guestfs_readdir> instead."
12678 msgstr ""
12679
12680 #. type: =head2
12681 #: ../src/guestfs-actions.pod:3839
12682 msgid "guestfs_lsetxattr"
12683 msgstr ""
12684
12685 #. type: verbatim
12686 #: ../src/guestfs-actions.pod:3841
12687 #, no-wrap
12688 msgid ""
12689 " int\n"
12690 " guestfs_lsetxattr (guestfs_h *g,\n"
12691 "                    const char *xattr,\n"
12692 "                    const char *val,\n"
12693 "                    int vallen,\n"
12694 "                    const char *path);\n"
12695 "\n"
12696 msgstr ""
12697
12698 #. type: textblock
12699 #: ../src/guestfs-actions.pod:3848
12700 msgid ""
12701 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12702 "then it sets an extended attribute of the link itself."
12703 msgstr ""
12704
12705 #. type: =head2
12706 #: ../src/guestfs-actions.pod:3856
12707 msgid "guestfs_lstat"
12708 msgstr ""
12709
12710 #. type: verbatim
12711 #: ../src/guestfs-actions.pod:3858
12712 #, no-wrap
12713 msgid ""
12714 " struct guestfs_stat *\n"
12715 " guestfs_lstat (guestfs_h *g,\n"
12716 "                const char *path);\n"
12717 "\n"
12718 msgstr ""
12719
12720 #. type: textblock
12721 #: ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:6509
12722 #: ../fish/guestfish-actions.pod:2626 ../fish/guestfish-actions.pod:4343
12723 msgid "Returns file information for the given C<path>."
12724 msgstr ""
12725
12726 #. type: textblock
12727 #: ../src/guestfs-actions.pod:3864
12728 msgid ""
12729 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12730 "link, then the link is stat-ed, not the file it refers to."
12731 msgstr ""
12732
12733 #. type: textblock
12734 #: ../src/guestfs-actions.pod:3868 ../fish/guestfish-actions.pod:2632
12735 msgid "This is the same as the C<lstat(2)> system call."
12736 msgstr ""
12737
12738 #. type: textblock
12739 #: ../src/guestfs-actions.pod:3870 ../src/guestfs-actions.pod:6513
12740 msgid ""
12741 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12742 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12743 msgstr ""
12744
12745 #. type: textblock
12746 #: ../src/guestfs-actions.pod:3874 ../src/guestfs-actions.pod:6517
12747 #: ../src/guestfs-actions.pod:6535 ../src/guestfs-actions.pod:6916
12748 msgid "(Added in 0.9.2)"
12749 msgstr ""
12750
12751 #. type: =head2
12752 #: ../src/guestfs-actions.pod:3876
12753 msgid "guestfs_lstatlist"
12754 msgstr ""
12755
12756 #. type: verbatim
12757 #: ../src/guestfs-actions.pod:3878
12758 #, no-wrap
12759 msgid ""
12760 " struct guestfs_stat_list *\n"
12761 " guestfs_lstatlist (guestfs_h *g,\n"
12762 "                    const char *path,\n"
12763 "                    char *const *names);\n"
12764 "\n"
12765 msgstr ""
12766
12767 #. type: textblock
12768 #: ../src/guestfs-actions.pod:3883
12769 msgid ""
12770 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12771 "files, where all files are in the directory C<path>.  C<names> is the list "
12772 "of files from this directory."
12773 msgstr ""
12774
12775 #. type: textblock
12776 #: ../src/guestfs-actions.pod:3887 ../fish/guestfish-actions.pod:2642
12777 msgid ""
12778 "On return you get a list of stat structs, with a one-to-one correspondence "
12779 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12780 "then the C<ino> field of that structure is set to C<-1>."
12781 msgstr ""
12782
12783 #. type: textblock
12784 #: ../src/guestfs-actions.pod:3892
12785 msgid ""
12786 "This call is intended for programs that want to efficiently list a directory "
12787 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12788 "for a similarly efficient call for getting extended attributes.  Very long "
12789 "directory listings might cause the protocol message size to be exceeded, "
12790 "causing this call to fail.  The caller must split up such requests into "
12791 "smaller groups of names."
12792 msgstr ""
12793
12794 #. type: textblock
12795 #: ../src/guestfs-actions.pod:3900
12796 msgid ""
12797 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12798 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12799 msgstr ""
12800
12801 #. type: =head2
12802 #: ../src/guestfs-actions.pod:3906
12803 msgid "guestfs_luks_add_key"
12804 msgstr ""
12805
12806 #. type: verbatim
12807 #: ../src/guestfs-actions.pod:3908
12808 #, no-wrap
12809 msgid ""
12810 " int\n"
12811 " guestfs_luks_add_key (guestfs_h *g,\n"
12812 "                       const char *device,\n"
12813 "                       const char *key,\n"
12814 "                       const char *newkey,\n"
12815 "                       int keyslot);\n"
12816 "\n"
12817 msgstr ""
12818
12819 #. type: textblock
12820 #: ../src/guestfs-actions.pod:3915 ../fish/guestfish-actions.pod:2659
12821 msgid ""
12822 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12823 "existing key, and is used to access the device.  C<newkey> is the new key to "
12824 "add.  C<keyslot> is the key slot that will be replaced."
12825 msgstr ""
12826
12827 #. type: textblock
12828 #: ../src/guestfs-actions.pod:3920
12829 msgid ""
12830 "Note that if C<keyslot> already contains a key, then this command will "
12831 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12832 msgstr ""
12833
12834 #. type: textblock
12835 #: ../src/guestfs-actions.pod:3926 ../src/guestfs-actions.pod:3966
12836 #: ../src/guestfs-actions.pod:3989 ../src/guestfs-actions.pod:4009
12837 #: ../src/guestfs-actions.pod:4041 ../src/guestfs-actions.pod:4060
12838 msgid ""
12839 "This function takes a key or passphrase parameter which could contain "
12840 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12841 "information."
12842 msgstr ""
12843
12844 #. type: textblock
12845 #: ../src/guestfs-actions.pod:3930 ../src/guestfs-actions.pod:3970
12846 #: ../src/guestfs-actions.pod:3993 ../src/guestfs-actions.pod:4013
12847 msgid "(Added in 1.5.2)"
12848 msgstr ""
12849
12850 #. type: =head2
12851 #: ../src/guestfs-actions.pod:3932
12852 msgid "guestfs_luks_close"
12853 msgstr ""
12854
12855 #. type: verbatim
12856 #: ../src/guestfs-actions.pod:3934
12857 #, no-wrap
12858 msgid ""
12859 " int\n"
12860 " guestfs_luks_close (guestfs_h *g,\n"
12861 "                     const char *device);\n"
12862 "\n"
12863 msgstr ""
12864
12865 #. type: textblock
12866 #: ../src/guestfs-actions.pod:3938
12867 msgid ""
12868 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12869 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12870 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12871 "underlying block device."
12872 msgstr ""
12873
12874 #. type: textblock
12875 #: ../src/guestfs-actions.pod:3946 ../src/guestfs-actions.pod:4045
12876 #: ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:4114
12877 #: ../src/guestfs-actions.pod:4162
12878 msgid "(Added in 1.5.1)"
12879 msgstr ""
12880
12881 #. type: =head2
12882 #: ../src/guestfs-actions.pod:3948
12883 msgid "guestfs_luks_format"
12884 msgstr ""
12885
12886 #. type: verbatim
12887 #: ../src/guestfs-actions.pod:3950
12888 #, no-wrap
12889 msgid ""
12890 " int\n"
12891 " guestfs_luks_format (guestfs_h *g,\n"
12892 "                      const char *device,\n"
12893 "                      const char *key,\n"
12894 "                      int keyslot);\n"
12895 "\n"
12896 msgstr ""
12897
12898 #. type: textblock
12899 #: ../src/guestfs-actions.pod:3956 ../fish/guestfish-actions.pod:2685
12900 msgid ""
12901 "This command erases existing data on C<device> and formats the device as a "
12902 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12903 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12904 msgstr ""
12905
12906 #. type: textblock
12907 #: ../src/guestfs-actions.pod:3963 ../src/guestfs-actions.pod:3986
12908 #: ../src/guestfs-actions.pod:4126 ../src/guestfs-actions.pod:5125
12909 #: ../src/guestfs-actions.pod:5907 ../src/guestfs-actions.pod:6316
12910 #: ../src/guestfs-actions.pod:6346 ../src/guestfs-actions.pod:6379
12911 #: ../src/guestfs-actions.pod:7561 ../fish/guestfish-actions.pod:2693
12912 #: ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2790
12913 #: ../fish/guestfish-actions.pod:3384 ../fish/guestfish-actions.pod:3904
12914 #: ../fish/guestfish-actions.pod:4214 ../fish/guestfish-actions.pod:4237
12915 #: ../fish/guestfish-actions.pod:4259 ../fish/guestfish-actions.pod:4989
12916 msgid ""
12917 "B<This command is dangerous.  Without careful use you can easily destroy all "
12918 "your data>."
12919 msgstr ""
12920
12921 #. type: =head2
12922 #: ../src/guestfs-actions.pod:3972
12923 msgid "guestfs_luks_format_cipher"
12924 msgstr ""
12925
12926 #. type: verbatim
12927 #: ../src/guestfs-actions.pod:3974
12928 #, no-wrap
12929 msgid ""
12930 " int\n"
12931 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12932 "                             const char *device,\n"
12933 "                             const char *key,\n"
12934 "                             int keyslot,\n"
12935 "                             const char *cipher);\n"
12936 "\n"
12937 msgstr ""
12938
12939 #. type: textblock
12940 #: ../src/guestfs-actions.pod:3981
12941 msgid ""
12942 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12943 "set the C<cipher> used."
12944 msgstr ""
12945
12946 #. type: =head2
12947 #: ../src/guestfs-actions.pod:3995
12948 msgid "guestfs_luks_kill_slot"
12949 msgstr ""
12950
12951 #. type: verbatim
12952 #: ../src/guestfs-actions.pod:3997
12953 #, no-wrap
12954 msgid ""
12955 " int\n"
12956 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12957 "                         const char *device,\n"
12958 "                         const char *key,\n"
12959 "                         int keyslot);\n"
12960 "\n"
12961 msgstr ""
12962
12963 #. type: textblock
12964 #: ../src/guestfs-actions.pod:4003 ../fish/guestfish-actions.pod:2713
12965 msgid ""
12966 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12967 "device C<device>.  C<key> must be one of the I<other> keys."
12968 msgstr ""
12969
12970 #. type: =head2
12971 #: ../src/guestfs-actions.pod:4015
12972 msgid "guestfs_luks_open"
12973 msgstr ""
12974
12975 #. type: verbatim
12976 #: ../src/guestfs-actions.pod:4017
12977 #, no-wrap
12978 msgid ""
12979 " int\n"
12980 " guestfs_luks_open (guestfs_h *g,\n"
12981 "                    const char *device,\n"
12982 "                    const char *key,\n"
12983 "                    const char *mapname);\n"
12984 "\n"
12985 msgstr ""
12986
12987 #. type: textblock
12988 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2724
12989 msgid ""
12990 "This command opens a block device which has been encrypted according to the "
12991 "Linux Unified Key Setup (LUKS) standard."
12992 msgstr ""
12993
12994 #. type: textblock
12995 #: ../src/guestfs-actions.pod:4026 ../fish/guestfish-actions.pod:2727
12996 msgid "C<device> is the encrypted block device or partition."
12997 msgstr ""
12998
12999 #. type: textblock
13000 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2729
13001 msgid ""
13002 "The caller must supply one of the keys associated with the LUKS block "
13003 "device, in the C<key> parameter."
13004 msgstr ""
13005
13006 #. type: textblock
13007 #: ../src/guestfs-actions.pod:4031 ../fish/guestfish-actions.pod:2732
13008 msgid ""
13009 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13010 "writes to this block device are decrypted from and encrypted to the "
13011 "underlying C<device> respectively."
13012 msgstr ""
13013
13014 #. type: textblock
13015 #: ../src/guestfs-actions.pod:4035
13016 msgid ""
13017 "If this block device contains LVM volume groups, then calling "
13018 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13019 "visible."
13020 msgstr ""
13021
13022 #. type: =head2
13023 #: ../src/guestfs-actions.pod:4047
13024 msgid "guestfs_luks_open_ro"
13025 msgstr ""
13026
13027 #. type: verbatim
13028 #: ../src/guestfs-actions.pod:4049
13029 #, no-wrap
13030 msgid ""
13031 " int\n"
13032 " guestfs_luks_open_ro (guestfs_h *g,\n"
13033 "                       const char *device,\n"
13034 "                       const char *key,\n"
13035 "                       const char *mapname);\n"
13036 "\n"
13037 msgstr ""
13038
13039 #. type: textblock
13040 #: ../src/guestfs-actions.pod:4055
13041 msgid ""
13042 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13043 "created."
13044 msgstr ""
13045
13046 #. type: =head2
13047 #: ../src/guestfs-actions.pod:4066
13048 msgid "guestfs_lvcreate"
13049 msgstr ""
13050
13051 #. type: verbatim
13052 #: ../src/guestfs-actions.pod:4068
13053 #, no-wrap
13054 msgid ""
13055 " int\n"
13056 " guestfs_lvcreate (guestfs_h *g,\n"
13057 "                   const char *logvol,\n"
13058 "                   const char *volgroup,\n"
13059 "                   int mbytes);\n"
13060 "\n"
13061 msgstr ""
13062
13063 #. type: textblock
13064 #: ../src/guestfs-actions.pod:4074 ../fish/guestfish-actions.pod:2757
13065 msgid ""
13066 "This creates an LVM logical volume called C<logvol> on the volume group "
13067 "C<volgroup>, with C<size> megabytes."
13068 msgstr ""
13069
13070 #. type: =head2
13071 #: ../src/guestfs-actions.pod:4081
13072 msgid "guestfs_lvm_canonical_lv_name"
13073 msgstr ""
13074
13075 #. type: verbatim
13076 #: ../src/guestfs-actions.pod:4083
13077 #, no-wrap
13078 msgid ""
13079 " char *\n"
13080 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13081 "                                const char *lvname);\n"
13082 "\n"
13083 msgstr ""
13084
13085 #. type: textblock
13086 #: ../src/guestfs-actions.pod:4087 ../fish/guestfish-actions.pod:2764
13087 msgid ""
13088 "This converts alternative naming schemes for LVs that you might find to the "
13089 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13090 "LV>."
13091 msgstr ""
13092
13093 #. type: textblock
13094 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2768
13095 msgid ""
13096 "This command returns an error if the C<lvname> parameter does not refer to a "
13097 "logical volume."
13098 msgstr ""
13099
13100 #. type: textblock
13101 #: ../src/guestfs-actions.pod:4094
13102 msgid "See also C<guestfs_is_lv>."
13103 msgstr ""
13104
13105 #. type: textblock
13106 #: ../src/guestfs-actions.pod:4099
13107 msgid "(Added in 1.5.24)"
13108 msgstr ""
13109
13110 #. type: =head2
13111 #: ../src/guestfs-actions.pod:4101
13112 msgid "guestfs_lvm_clear_filter"
13113 msgstr ""
13114
13115 #. type: verbatim
13116 #: ../src/guestfs-actions.pod:4103
13117 #, no-wrap
13118 msgid ""
13119 " int\n"
13120 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13121 "\n"
13122 msgstr ""
13123
13124 #. type: textblock
13125 #: ../src/guestfs-actions.pod:4106
13126 msgid ""
13127 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13128 "see every block device."
13129 msgstr ""
13130
13131 #. type: textblock
13132 #: ../src/guestfs-actions.pod:4109 ../src/guestfs-actions.pod:4151
13133 #: ../fish/guestfish-actions.pod:2780 ../fish/guestfish-actions.pod:2811
13134 msgid ""
13135 "This command also clears the LVM cache and performs a volume group scan."
13136 msgstr ""
13137
13138 #. type: =head2
13139 #: ../src/guestfs-actions.pod:4116
13140 msgid "guestfs_lvm_remove_all"
13141 msgstr ""
13142
13143 #. type: verbatim
13144 #: ../src/guestfs-actions.pod:4118
13145 #, no-wrap
13146 msgid ""
13147 " int\n"
13148 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13149 "\n"
13150 msgstr ""
13151
13152 #. type: textblock
13153 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2787
13154 msgid ""
13155 "This command removes all LVM logical volumes, volume groups and physical "
13156 "volumes."
13157 msgstr ""
13158
13159 #. type: =head2
13160 #: ../src/guestfs-actions.pod:4131
13161 msgid "guestfs_lvm_set_filter"
13162 msgstr ""
13163
13164 #. type: verbatim
13165 #: ../src/guestfs-actions.pod:4133
13166 #, no-wrap
13167 msgid ""
13168 " int\n"
13169 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13170 "                         char *const *devices);\n"
13171 "\n"
13172 msgstr ""
13173
13174 #. type: textblock
13175 #: ../src/guestfs-actions.pod:4137 ../fish/guestfish-actions.pod:2797
13176 msgid ""
13177 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
13178 "block devices in the list C<devices>, and will ignore all other attached "
13179 "block devices."
13180 msgstr ""
13181
13182 #. type: textblock
13183 #: ../src/guestfs-actions.pod:4141 ../fish/guestfish-actions.pod:2801
13184 msgid ""
13185 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13186 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
13187 "there are two types of duplication possible: either cloned PVs/VGs which "
13188 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
13189 "same name.  In normal operation you cannot create this situation, but you "
13190 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13191 "inside the LVM metadata."
13192 msgstr ""
13193
13194 #. type: textblock
13195 #: ../src/guestfs-actions.pod:4154 ../fish/guestfish-actions.pod:2814
13196 msgid "You can filter whole block devices or individual partitions."
13197 msgstr ""
13198
13199 #. type: textblock
13200 #: ../src/guestfs-actions.pod:4156 ../fish/guestfish-actions.pod:2816
13201 msgid ""
13202 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13203 "filesystem), even if you are not filtering out that VG."
13204 msgstr ""
13205
13206 #. type: =head2
13207 #: ../src/guestfs-actions.pod:4164
13208 msgid "guestfs_lvremove"
13209 msgstr ""
13210
13211 #. type: verbatim
13212 #: ../src/guestfs-actions.pod:4166
13213 #, no-wrap
13214 msgid ""
13215 " int\n"
13216 " guestfs_lvremove (guestfs_h *g,\n"
13217 "                   const char *device);\n"
13218 "\n"
13219 msgstr ""
13220
13221 #. type: textblock
13222 #: ../src/guestfs-actions.pod:4170 ../fish/guestfish-actions.pod:2824
13223 msgid ""
13224 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13225 "LV, such as C</dev/VG/LV>."
13226 msgstr ""
13227
13228 #. type: textblock
13229 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2827
13230 msgid ""
13231 "You can also remove all LVs in a volume group by specifying the VG name, C</"
13232 "dev/VG>."
13233 msgstr ""
13234
13235 #. type: textblock
13236 #: ../src/guestfs-actions.pod:4178 ../src/guestfs-actions.pod:5471
13237 #: ../src/guestfs-actions.pod:7292
13238 msgid "(Added in 1.0.13)"
13239 msgstr ""
13240
13241 #. type: =head2
13242 #: ../src/guestfs-actions.pod:4180
13243 msgid "guestfs_lvrename"
13244 msgstr ""
13245
13246 #. type: verbatim
13247 #: ../src/guestfs-actions.pod:4182
13248 #, no-wrap
13249 msgid ""
13250 " int\n"
13251 " guestfs_lvrename (guestfs_h *g,\n"
13252 "                   const char *logvol,\n"
13253 "                   const char *newlogvol);\n"
13254 "\n"
13255 msgstr ""
13256
13257 #. type: textblock
13258 #: ../src/guestfs-actions.pod:4187 ../fish/guestfish-actions.pod:2834
13259 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13260 msgstr ""
13261
13262 #. type: textblock
13263 #: ../src/guestfs-actions.pod:4191 ../src/guestfs-actions.pod:7305
13264 msgid "(Added in 1.0.83)"
13265 msgstr ""
13266
13267 #. type: =head2
13268 #: ../src/guestfs-actions.pod:4193
13269 msgid "guestfs_lvresize"
13270 msgstr ""
13271
13272 #. type: verbatim
13273 #: ../src/guestfs-actions.pod:4195
13274 #, no-wrap
13275 msgid ""
13276 " int\n"
13277 " guestfs_lvresize (guestfs_h *g,\n"
13278 "                   const char *device,\n"
13279 "                   int mbytes);\n"
13280 "\n"
13281 msgstr ""
13282
13283 #. type: textblock
13284 #: ../src/guestfs-actions.pod:4200 ../fish/guestfish-actions.pod:2840
13285 msgid ""
13286 "This resizes (expands or shrinks) an existing LVM logical volume to "
13287 "C<mbytes>.  When reducing, data in the reduced part is lost."
13288 msgstr ""
13289
13290 #. type: =head2
13291 #: ../src/guestfs-actions.pod:4208
13292 msgid "guestfs_lvresize_free"
13293 msgstr ""
13294
13295 #. type: verbatim
13296 #: ../src/guestfs-actions.pod:4210
13297 #, no-wrap
13298 msgid ""
13299 " int\n"
13300 " guestfs_lvresize_free (guestfs_h *g,\n"
13301 "                        const char *lv,\n"
13302 "                        int percent);\n"
13303 "\n"
13304 msgstr ""
13305
13306 #. type: textblock
13307 #: ../src/guestfs-actions.pod:4215 ../fish/guestfish-actions.pod:2848
13308 msgid ""
13309 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13310 "remaining free space in the volume group.  Commonly you would call this with "
13311 "pc = 100 which expands the logical volume as much as possible, using all "
13312 "remaining free space in the volume group."
13313 msgstr ""
13314
13315 #. type: textblock
13316 #: ../src/guestfs-actions.pod:4223
13317 msgid "(Added in 1.3.3)"
13318 msgstr ""
13319
13320 #. type: =head2
13321 #: ../src/guestfs-actions.pod:4225
13322 msgid "guestfs_lvs"
13323 msgstr ""
13324
13325 #. type: verbatim
13326 #: ../src/guestfs-actions.pod:4227
13327 #, no-wrap
13328 msgid ""
13329 " char **\n"
13330 " guestfs_lvs (guestfs_h *g);\n"
13331 "\n"
13332 msgstr ""
13333
13334 #. type: textblock
13335 #: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2858
13336 msgid ""
13337 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13338 "(8)> command."
13339 msgstr ""
13340
13341 #. type: textblock
13342 #: ../src/guestfs-actions.pod:4233 ../fish/guestfish-actions.pod:2861
13343 msgid ""
13344 "This returns a list of the logical volume device names (eg. C</dev/"
13345 "VolGroup00/LogVol00>)."
13346 msgstr ""
13347
13348 #. type: textblock
13349 #: ../src/guestfs-actions.pod:4236
13350 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13351 msgstr ""
13352
13353 #. type: =head2
13354 #: ../src/guestfs-actions.pod:4244
13355 msgid "guestfs_lvs_full"
13356 msgstr ""
13357
13358 #. type: verbatim
13359 #: ../src/guestfs-actions.pod:4246
13360 #, no-wrap
13361 msgid ""
13362 " struct guestfs_lvm_lv_list *\n"
13363 " guestfs_lvs_full (guestfs_h *g);\n"
13364 "\n"
13365 msgstr ""
13366
13367 #. type: textblock
13368 #: ../src/guestfs-actions.pod:4249 ../fish/guestfish-actions.pod:2870
13369 msgid ""
13370 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13371 "(8)> command.  The \"full\" version includes all fields."
13372 msgstr ""
13373
13374 #. type: textblock
13375 #: ../src/guestfs-actions.pod:4252
13376 msgid ""
13377 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13378 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13379 msgstr ""
13380
13381 #. type: =head2
13382 #: ../src/guestfs-actions.pod:4258
13383 msgid "guestfs_lvuuid"
13384 msgstr ""
13385
13386 #. type: verbatim
13387 #: ../src/guestfs-actions.pod:4260
13388 #, no-wrap
13389 msgid ""
13390 " char *\n"
13391 " guestfs_lvuuid (guestfs_h *g,\n"
13392 "                 const char *device);\n"
13393 "\n"
13394 msgstr ""
13395
13396 #. type: textblock
13397 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2877
13398 msgid "This command returns the UUID of the LVM LV C<device>."
13399 msgstr ""
13400
13401 #. type: =head2
13402 #: ../src/guestfs-actions.pod:4271
13403 msgid "guestfs_lxattrlist"
13404 msgstr ""
13405
13406 #. type: verbatim
13407 #: ../src/guestfs-actions.pod:4273
13408 #, no-wrap
13409 msgid ""
13410 " struct guestfs_xattr_list *\n"
13411 " guestfs_lxattrlist (guestfs_h *g,\n"
13412 "                     const char *path,\n"
13413 "                     char *const *names);\n"
13414 "\n"
13415 msgstr ""
13416
13417 #. type: textblock
13418 #: ../src/guestfs-actions.pod:4278 ../fish/guestfish-actions.pod:2883
13419 msgid ""
13420 "This call allows you to get the extended attributes of multiple files, where "
13421 "all files are in the directory C<path>.  C<names> is the list of files from "
13422 "this directory."
13423 msgstr ""
13424
13425 #. type: textblock
13426 #: ../src/guestfs-actions.pod:4282 ../fish/guestfish-actions.pod:2887
13427 msgid ""
13428 "On return you get a flat list of xattr structs which must be interpreted "
13429 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13430 "C<attrval> in this struct is zero-length to indicate there was an error "
13431 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13432 "number (the number of following attributes for this file, which could be C<"
13433 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13434 "for the first named file.  This repeats for the second and subsequent files."
13435 msgstr ""
13436
13437 #. type: textblock
13438 #: ../src/guestfs-actions.pod:4292
13439 msgid ""
13440 "This call is intended for programs that want to efficiently list a directory "
13441 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13442 "a similarly efficient call for getting standard stats.  Very long directory "
13443 "listings might cause the protocol message size to be exceeded, causing this "
13444 "call to fail.  The caller must split up such requests into smaller groups of "
13445 "names."
13446 msgstr ""
13447
13448 #. type: =head2
13449 #: ../src/guestfs-actions.pod:4306
13450 msgid "guestfs_mkdir"
13451 msgstr ""
13452
13453 #. type: verbatim
13454 #: ../src/guestfs-actions.pod:4308
13455 #, no-wrap
13456 msgid ""
13457 " int\n"
13458 " guestfs_mkdir (guestfs_h *g,\n"
13459 "                const char *path);\n"
13460 "\n"
13461 msgstr ""
13462
13463 #. type: textblock
13464 #: ../src/guestfs-actions.pod:4312 ../fish/guestfish-actions.pod:2909
13465 msgid "Create a directory named C<path>."
13466 msgstr ""
13467
13468 #. type: =head2
13469 #: ../src/guestfs-actions.pod:4318
13470 msgid "guestfs_mkdir_mode"
13471 msgstr ""
13472
13473 #. type: verbatim
13474 #: ../src/guestfs-actions.pod:4320
13475 #, no-wrap
13476 msgid ""
13477 " int\n"
13478 " guestfs_mkdir_mode (guestfs_h *g,\n"
13479 "                     const char *path,\n"
13480 "                     int mode);\n"
13481 "\n"
13482 msgstr ""
13483
13484 #. type: textblock
13485 #: ../src/guestfs-actions.pod:4325 ../fish/guestfish-actions.pod:2915
13486 msgid ""
13487 "This command creates a directory, setting the initial permissions of the "
13488 "directory to C<mode>."
13489 msgstr ""
13490
13491 #. type: textblock
13492 #: ../src/guestfs-actions.pod:4328 ../fish/guestfish-actions.pod:2918
13493 msgid ""
13494 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13495 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13496 "other ways."
13497 msgstr ""
13498
13499 #. type: textblock
13500 #: ../src/guestfs-actions.pod:4332
13501 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13502 msgstr ""
13503
13504 #. type: =head2
13505 #: ../src/guestfs-actions.pod:4338
13506 msgid "guestfs_mkdir_p"
13507 msgstr ""
13508
13509 #. type: verbatim
13510 #: ../src/guestfs-actions.pod:4340
13511 #, no-wrap
13512 msgid ""
13513 " int\n"
13514 " guestfs_mkdir_p (guestfs_h *g,\n"
13515 "                  const char *path);\n"
13516 "\n"
13517 msgstr ""
13518
13519 #. type: textblock
13520 #: ../src/guestfs-actions.pod:4344 ../fish/guestfish-actions.pod:2928
13521 msgid ""
13522 "Create a directory named C<path>, creating any parent directories as "
13523 "necessary.  This is like the C<mkdir -p> shell command."
13524 msgstr ""
13525
13526 #. type: =head2
13527 #: ../src/guestfs-actions.pod:4351
13528 msgid "guestfs_mkdtemp"
13529 msgstr ""
13530
13531 #. type: verbatim
13532 #: ../src/guestfs-actions.pod:4353
13533 #, no-wrap
13534 msgid ""
13535 " char *\n"
13536 " guestfs_mkdtemp (guestfs_h *g,\n"
13537 "                  const char *template);\n"
13538 "\n"
13539 msgstr ""
13540
13541 #. type: textblock
13542 #: ../src/guestfs-actions.pod:4357 ../fish/guestfish-actions.pod:2935
13543 msgid ""
13544 "This command creates a temporary directory.  The C<template> parameter "
13545 "should be a full pathname for the temporary directory name with the final "
13546 "six characters being \"XXXXXX\"."
13547 msgstr ""
13548
13549 #. type: textblock
13550 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2940
13551 msgid ""
13552 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13553 "being suitable for Windows filesystems."
13554 msgstr ""
13555
13556 #. type: textblock
13557 #: ../src/guestfs-actions.pod:4365 ../fish/guestfish-actions.pod:2943
13558 msgid "The name of the temporary directory that was created is returned."
13559 msgstr ""
13560
13561 #. type: textblock
13562 #: ../src/guestfs-actions.pod:4368 ../fish/guestfish-actions.pod:2946
13563 msgid "The temporary directory is created with mode 0700 and is owned by root."
13564 msgstr ""
13565
13566 #. type: textblock
13567 #: ../src/guestfs-actions.pod:4371 ../fish/guestfish-actions.pod:2949
13568 msgid ""
13569 "The caller is responsible for deleting the temporary directory and its "
13570 "contents after use."
13571 msgstr ""
13572
13573 #. type: textblock
13574 #: ../src/guestfs-actions.pod:4374 ../fish/guestfish-actions.pod:2952
13575 msgid "See also: L<mkdtemp(3)>"
13576 msgstr ""
13577
13578 #. type: =head2
13579 #: ../src/guestfs-actions.pod:4381
13580 msgid "guestfs_mke2fs_J"
13581 msgstr ""
13582
13583 #. type: verbatim
13584 #: ../src/guestfs-actions.pod:4383
13585 #, no-wrap
13586 msgid ""
13587 " int\n"
13588 " guestfs_mke2fs_J (guestfs_h *g,\n"
13589 "                   const char *fstype,\n"
13590 "                   int blocksize,\n"
13591 "                   const char *device,\n"
13592 "                   const char *journal);\n"
13593 "\n"
13594 msgstr ""
13595
13596 #. type: textblock
13597 #: ../src/guestfs-actions.pod:4390 ../fish/guestfish-actions.pod:2958
13598 msgid ""
13599 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13600 "C<journal>.  It is equivalent to the command:"
13601 msgstr ""
13602
13603 #. type: verbatim
13604 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2962
13605 #, no-wrap
13606 msgid ""
13607 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13608 "\n"
13609 msgstr ""
13610
13611 #. type: textblock
13612 #: ../src/guestfs-actions.pod:4396
13613 msgid "See also C<guestfs_mke2journal>."
13614 msgstr ""
13615
13616 #. type: textblock
13617 #: ../src/guestfs-actions.pod:4400 ../src/guestfs-actions.pod:4418
13618 #: ../src/guestfs-actions.pod:4436 ../src/guestfs-actions.pod:4452
13619 #: ../src/guestfs-actions.pod:4466 ../src/guestfs-actions.pod:4480
13620 #: ../src/guestfs-actions.pod:4539 ../src/guestfs-actions.pod:4804
13621 msgid "(Added in 1.0.68)"
13622 msgstr ""
13623
13624 #. type: =head2
13625 #: ../src/guestfs-actions.pod:4402
13626 msgid "guestfs_mke2fs_JL"
13627 msgstr ""
13628
13629 #. type: verbatim
13630 #: ../src/guestfs-actions.pod:4404
13631 #, no-wrap
13632 msgid ""
13633 " int\n"
13634 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13635 "                    const char *fstype,\n"
13636 "                    int blocksize,\n"
13637 "                    const char *device,\n"
13638 "                    const char *label);\n"
13639 "\n"
13640 msgstr ""
13641
13642 #. type: textblock
13643 #: ../src/guestfs-actions.pod:4411 ../fish/guestfish-actions.pod:2970
13644 msgid ""
13645 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13646 "the journal labeled C<label>."
13647 msgstr ""
13648
13649 #. type: textblock
13650 #: ../src/guestfs-actions.pod:4414
13651 msgid "See also C<guestfs_mke2journal_L>."
13652 msgstr ""
13653
13654 #. type: =head2
13655 #: ../src/guestfs-actions.pod:4420
13656 msgid "guestfs_mke2fs_JU"
13657 msgstr ""
13658
13659 #. type: verbatim
13660 #: ../src/guestfs-actions.pod:4422
13661 #, no-wrap
13662 msgid ""
13663 " int\n"
13664 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13665 "                    const char *fstype,\n"
13666 "                    int blocksize,\n"
13667 "                    const char *device,\n"
13668 "                    const char *uuid);\n"
13669 "\n"
13670 msgstr ""
13671
13672 #. type: textblock
13673 #: ../src/guestfs-actions.pod:4429 ../fish/guestfish-actions.pod:2979
13674 msgid ""
13675 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13676 "the journal with UUID C<uuid>."
13677 msgstr ""
13678
13679 #. type: textblock
13680 #: ../src/guestfs-actions.pod:4432
13681 msgid "See also C<guestfs_mke2journal_U>."
13682 msgstr ""
13683
13684 #. type: =head2
13685 #: ../src/guestfs-actions.pod:4438
13686 msgid "guestfs_mke2journal"
13687 msgstr ""
13688
13689 #. type: verbatim
13690 #: ../src/guestfs-actions.pod:4440
13691 #, no-wrap
13692 msgid ""
13693 " int\n"
13694 " guestfs_mke2journal (guestfs_h *g,\n"
13695 "                      int blocksize,\n"
13696 "                      const char *device);\n"
13697 "\n"
13698 msgstr ""
13699
13700 #. type: textblock
13701 #: ../src/guestfs-actions.pod:4445 ../fish/guestfish-actions.pod:2988
13702 msgid ""
13703 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13704 "command:"
13705 msgstr ""
13706
13707 #. type: verbatim
13708 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2991
13709 #, no-wrap
13710 msgid ""
13711 " mke2fs -O journal_dev -b blocksize device\n"
13712 "\n"
13713 msgstr ""
13714
13715 #. type: =head2
13716 #: ../src/guestfs-actions.pod:4454
13717 msgid "guestfs_mke2journal_L"
13718 msgstr ""
13719
13720 #. type: verbatim
13721 #: ../src/guestfs-actions.pod:4456
13722 #, no-wrap
13723 msgid ""
13724 " int\n"
13725 " guestfs_mke2journal_L (guestfs_h *g,\n"
13726 "                        int blocksize,\n"
13727 "                        const char *label,\n"
13728 "                        const char *device);\n"
13729 "\n"
13730 msgstr ""
13731
13732 #. type: textblock
13733 #: ../src/guestfs-actions.pod:4462 ../fish/guestfish-actions.pod:2997
13734 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13735 msgstr ""
13736
13737 #. type: =head2
13738 #: ../src/guestfs-actions.pod:4468
13739 msgid "guestfs_mke2journal_U"
13740 msgstr ""
13741
13742 #. type: verbatim
13743 #: ../src/guestfs-actions.pod:4470
13744 #, no-wrap
13745 msgid ""
13746 " int\n"
13747 " guestfs_mke2journal_U (guestfs_h *g,\n"
13748 "                        int blocksize,\n"
13749 "                        const char *uuid,\n"
13750 "                        const char *device);\n"
13751 "\n"
13752 msgstr ""
13753
13754 #. type: textblock
13755 #: ../src/guestfs-actions.pod:4476 ../fish/guestfish-actions.pod:3003
13756 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13757 msgstr ""
13758
13759 #. type: =head2
13760 #: ../src/guestfs-actions.pod:4482
13761 msgid "guestfs_mkfifo"
13762 msgstr ""
13763
13764 #. type: verbatim
13765 #: ../src/guestfs-actions.pod:4484
13766 #, no-wrap
13767 msgid ""
13768 " int\n"
13769 " guestfs_mkfifo (guestfs_h *g,\n"
13770 "                 int mode,\n"
13771 "                 const char *path);\n"
13772 "\n"
13773 msgstr ""
13774
13775 #. type: textblock
13776 #: ../src/guestfs-actions.pod:4489
13777 msgid ""
13778 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13779 "is just a convenient wrapper around C<guestfs_mknod>."
13780 msgstr ""
13781
13782 #. type: =head2
13783 #: ../src/guestfs-actions.pod:4499
13784 msgid "guestfs_mkfs"
13785 msgstr ""
13786
13787 #. type: verbatim
13788 #: ../src/guestfs-actions.pod:4501
13789 #, no-wrap
13790 msgid ""
13791 " int\n"
13792 " guestfs_mkfs (guestfs_h *g,\n"
13793 "               const char *fstype,\n"
13794 "               const char *device);\n"
13795 "\n"
13796 msgstr ""
13797
13798 #. type: textblock
13799 #: ../src/guestfs-actions.pod:4506 ../fish/guestfish-actions.pod:3019
13800 msgid ""
13801 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13802 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13803 msgstr ""
13804
13805 #. type: =head2
13806 #: ../src/guestfs-actions.pod:4514
13807 msgid "guestfs_mkfs_b"
13808 msgstr ""
13809
13810 #. type: verbatim
13811 #: ../src/guestfs-actions.pod:4516
13812 #, no-wrap
13813 msgid ""
13814 " int\n"
13815 " guestfs_mkfs_b (guestfs_h *g,\n"
13816 "                 const char *fstype,\n"
13817 "                 int blocksize,\n"
13818 "                 const char *device);\n"
13819 "\n"
13820 msgstr ""
13821
13822 #. type: textblock
13823 #: ../src/guestfs-actions.pod:4522
13824 msgid ""
13825 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13826 "block size of the resulting filesystem.  Supported block sizes depend on the "
13827 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13828 msgstr ""
13829
13830 #. type: textblock
13831 #: ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4570
13832 #: ../fish/guestfish-actions.pod:3032 ../fish/guestfish-actions.pod:3059
13833 msgid ""
13834 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13835 "cluster size."
13836 msgstr ""
13837
13838 #. type: textblock
13839 #: ../src/guestfs-actions.pod:4532 ../fish/guestfish-actions.pod:3035
13840 msgid ""
13841 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13842 msgstr ""
13843
13844 #. type: =head2
13845 #: ../src/guestfs-actions.pod:4541
13846 msgid "guestfs_mkfs_opts"
13847 msgstr ""
13848
13849 #. type: verbatim
13850 #: ../src/guestfs-actions.pod:4543
13851 #, no-wrap
13852 msgid ""
13853 " int\n"
13854 " guestfs_mkfs_opts (guestfs_h *g,\n"
13855 "                    const char *fstype,\n"
13856 "                    const char *device,\n"
13857 "                    ...);\n"
13858 "\n"
13859 msgstr ""
13860
13861 #. type: verbatim
13862 #: ../src/guestfs-actions.pod:4554
13863 #, no-wrap
13864 msgid ""
13865 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13866 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13867 "\n"
13868 msgstr ""
13869
13870 #. type: textblock
13871 #: ../src/guestfs-actions.pod:4557 ../fish/guestfish-actions.pod:3046
13872 msgid ""
13873 "This function creates a filesystem on C<device>.  The filesystem type is "
13874 "C<fstype>, for example C<ext3>."
13875 msgstr ""
13876
13877 #. type: =item
13878 #: ../src/guestfs-actions.pod:4564 ../fish/guestfish-actions.pod:3053
13879 msgid "C<blocksize>"
13880 msgstr ""
13881
13882 #. type: textblock
13883 #: ../src/guestfs-actions.pod:4566 ../fish/guestfish-actions.pod:3055
13884 msgid ""
13885 "The filesystem block size.  Supported block sizes depend on the filesystem "
13886 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13887 "filesystems."
13888 msgstr ""
13889
13890 #. type: textblock
13891 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3062
13892 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13893 msgstr ""
13894
13895 #. type: =item
13896 #: ../src/guestfs-actions.pod:4575 ../fish/guestfish-actions.pod:3064
13897 msgid "C<features>"
13898 msgstr ""
13899
13900 #. type: textblock
13901 #: ../src/guestfs-actions.pod:4577 ../fish/guestfish-actions.pod:3066
13902 msgid "This passes the I<-O> parameter to the external mkfs program."
13903 msgstr ""
13904
13905 #. type: textblock
13906 #: ../src/guestfs-actions.pod:4579 ../fish/guestfish-actions.pod:3068
13907 msgid ""
13908 "For certain filesystem types, this allows extra filesystem features to be "
13909 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13910 msgstr ""
13911
13912 #. type: textblock
13913 #: ../src/guestfs-actions.pod:4583 ../fish/guestfish-actions.pod:3072
13914 msgid ""
13915 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13916 "type."
13917 msgstr ""
13918
13919 #. type: textblock
13920 #: ../src/guestfs-actions.pod:4590
13921 msgid "(Added in 1.7.19)"
13922 msgstr ""
13923
13924 #. type: =head2
13925 #: ../src/guestfs-actions.pod:4592
13926 msgid "guestfs_mkfs_opts_va"
13927 msgstr ""
13928
13929 #. type: verbatim
13930 #: ../src/guestfs-actions.pod:4594
13931 #, no-wrap
13932 msgid ""
13933 " int\n"
13934 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13935 "                       const char *fstype,\n"
13936 "                       const char *device,\n"
13937 "                       va_list args);\n"
13938 "\n"
13939 msgstr ""
13940
13941 #. type: textblock
13942 #: ../src/guestfs-actions.pod:4600
13943 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13944 msgstr ""
13945
13946 #. type: =head2
13947 #: ../src/guestfs-actions.pod:4604
13948 msgid "guestfs_mkfs_opts_argv"
13949 msgstr ""
13950
13951 #. type: verbatim
13952 #: ../src/guestfs-actions.pod:4606
13953 #, no-wrap
13954 msgid ""
13955 " int\n"
13956 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13957 "                         const char *fstype,\n"
13958 "                         const char *device,\n"
13959 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13960 "\n"
13961 msgstr ""
13962
13963 #. type: textblock
13964 #: ../src/guestfs-actions.pod:4612
13965 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13966 msgstr ""
13967
13968 #. type: =head2
13969 #: ../src/guestfs-actions.pod:4616
13970 msgid "guestfs_mkmountpoint"
13971 msgstr ""
13972
13973 #. type: verbatim
13974 #: ../src/guestfs-actions.pod:4618
13975 #, no-wrap
13976 msgid ""
13977 " int\n"
13978 " guestfs_mkmountpoint (guestfs_h *g,\n"
13979 "                       const char *exemptpath);\n"
13980 "\n"
13981 msgstr ""
13982
13983 #. type: textblock
13984 #: ../src/guestfs-actions.pod:4622
13985 msgid ""
13986 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13987 "that can be used to create extra mountpoints before mounting the first "
13988 "filesystem."
13989 msgstr ""
13990
13991 #. type: textblock
13992 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3087
13993 msgid ""
13994 "These calls are I<only> necessary in some very limited circumstances, mainly "
13995 "the case where you want to mount a mix of unrelated and/or read-only "
13996 "filesystems together."
13997 msgstr ""
13998
13999 #. type: textblock
14000 #: ../src/guestfs-actions.pod:4630 ../fish/guestfish-actions.pod:3091
14001 msgid ""
14002 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14003 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14004 "inside that.  You can unpack this as follows in guestfish:"
14005 msgstr ""
14006
14007 #. type: verbatim
14008 #: ../src/guestfs-actions.pod:4635 ../fish/guestfish-actions.pod:3096
14009 #, no-wrap
14010 msgid ""
14011 " add-ro Fedora-11-i686-Live.iso\n"
14012 " run\n"
14013 " mkmountpoint /cd\n"
14014 " mkmountpoint /sqsh\n"
14015 " mkmountpoint /ext3fs\n"
14016 " mount /dev/sda /cd\n"
14017 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14018 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14019 "\n"
14020 msgstr ""
14021
14022 #. type: textblock
14023 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3105
14024 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14025 msgstr ""
14026
14027 #. type: textblock
14028 #: ../src/guestfs-actions.pod:4646
14029 msgid ""
14030 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14031 "may get unexpected errors if you try to mix these calls.  It is safest to "
14032 "manually unmount filesystems and remove mountpoints after use."
14033 msgstr ""
14034
14035 #. type: textblock
14036 #: ../src/guestfs-actions.pod:4650
14037 msgid ""
14038 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14039 "first, so for this to work for manual mountpoints, you must ensure that the "
14040 "innermost mountpoints have the longest pathnames, as in the example code "
14041 "above."
14042 msgstr ""
14043
14044 #. type: textblock
14045 #: ../src/guestfs-actions.pod:4655 ../fish/guestfish-actions.pod:3116
14046 msgid ""
14047 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14048 msgstr ""
14049
14050 #. type: textblock
14051 #: ../src/guestfs-actions.pod:4657
14052 msgid ""
14053 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14054 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
14055 "can also trigger these issues."
14056 msgstr ""
14057
14058 #. type: textblock
14059 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4979
14060 #: ../src/guestfs-actions.pod:5891
14061 msgid "(Added in 1.0.62)"
14062 msgstr ""
14063
14064 #. type: =head2
14065 #: ../src/guestfs-actions.pod:4665
14066 msgid "guestfs_mknod"
14067 msgstr ""
14068
14069 #. type: verbatim
14070 #: ../src/guestfs-actions.pod:4667
14071 #, no-wrap
14072 msgid ""
14073 " int\n"
14074 " guestfs_mknod (guestfs_h *g,\n"
14075 "                int mode,\n"
14076 "                int devmajor,\n"
14077 "                int devminor,\n"
14078 "                const char *path);\n"
14079 "\n"
14080 msgstr ""
14081
14082 #. type: textblock
14083 #: ../src/guestfs-actions.pod:4674 ../fish/guestfish-actions.pod:3126
14084 msgid ""
14085 "This call creates block or character special devices, or named pipes (FIFOs)."
14086 msgstr ""
14087
14088 #. type: textblock
14089 #: ../src/guestfs-actions.pod:4677 ../fish/guestfish-actions.pod:3129
14090 msgid ""
14091 "The C<mode> parameter should be the mode, using the standard constants.  "
14092 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14093 "used when creating block and character special devices."
14094 msgstr ""
14095
14096 #. type: textblock
14097 #: ../src/guestfs-actions.pod:4682
14098 msgid ""
14099 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14100 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14101 "regular file).  These constants are available in the standard Linux header "
14102 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14103 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
14104 "the appropriate constant for you."
14105 msgstr ""
14106
14107 #. type: =head2
14108 #: ../src/guestfs-actions.pod:4696
14109 msgid "guestfs_mknod_b"
14110 msgstr ""
14111
14112 #. type: verbatim
14113 #: ../src/guestfs-actions.pod:4698
14114 #, no-wrap
14115 msgid ""
14116 " int\n"
14117 " guestfs_mknod_b (guestfs_h *g,\n"
14118 "                  int mode,\n"
14119 "                  int devmajor,\n"
14120 "                  int devminor,\n"
14121 "                  const char *path);\n"
14122 "\n"
14123 msgstr ""
14124
14125 #. type: textblock
14126 #: ../src/guestfs-actions.pod:4705
14127 msgid ""
14128 "This call creates a block device node called C<path> with mode C<mode> and "
14129 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14130 "wrapper around C<guestfs_mknod>."
14131 msgstr ""
14132
14133 #. type: =head2
14134 #: ../src/guestfs-actions.pod:4715
14135 msgid "guestfs_mknod_c"
14136 msgstr ""
14137
14138 #. type: verbatim
14139 #: ../src/guestfs-actions.pod:4717
14140 #, no-wrap
14141 msgid ""
14142 " int\n"
14143 " guestfs_mknod_c (guestfs_h *g,\n"
14144 "                  int mode,\n"
14145 "                  int devmajor,\n"
14146 "                  int devminor,\n"
14147 "                  const char *path);\n"
14148 "\n"
14149 msgstr ""
14150
14151 #. type: textblock
14152 #: ../src/guestfs-actions.pod:4724
14153 msgid ""
14154 "This call creates a char device node called C<path> with mode C<mode> and "
14155 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14156 "wrapper around C<guestfs_mknod>."
14157 msgstr ""
14158
14159 #. type: =head2
14160 #: ../src/guestfs-actions.pod:4734
14161 msgid "guestfs_mkswap"
14162 msgstr ""
14163
14164 #. type: verbatim
14165 #: ../src/guestfs-actions.pod:4736
14166 #, no-wrap
14167 msgid ""
14168 " int\n"
14169 " guestfs_mkswap (guestfs_h *g,\n"
14170 "                 const char *device);\n"
14171 "\n"
14172 msgstr ""
14173
14174 #. type: textblock
14175 #: ../src/guestfs-actions.pod:4740 ../fish/guestfish-actions.pod:3168
14176 msgid "Create a swap partition on C<device>."
14177 msgstr ""
14178
14179 #. type: =head2
14180 #: ../src/guestfs-actions.pod:4746
14181 msgid "guestfs_mkswap_L"
14182 msgstr ""
14183
14184 #. type: verbatim
14185 #: ../src/guestfs-actions.pod:4748
14186 #, no-wrap
14187 msgid ""
14188 " int\n"
14189 " guestfs_mkswap_L (guestfs_h *g,\n"
14190 "                   const char *label,\n"
14191 "                   const char *device);\n"
14192 "\n"
14193 msgstr ""
14194
14195 #. type: textblock
14196 #: ../src/guestfs-actions.pod:4753 ../fish/guestfish-actions.pod:3174
14197 msgid "Create a swap partition on C<device> with label C<label>."
14198 msgstr ""
14199
14200 #. type: textblock
14201 #: ../src/guestfs-actions.pod:4755 ../fish/guestfish-actions.pod:3176
14202 msgid ""
14203 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
14204 "sda>), just to a partition.  This appears to be a limitation of the kernel "
14205 "or swap tools."
14206 msgstr ""
14207
14208 #. type: =head2
14209 #: ../src/guestfs-actions.pod:4763
14210 msgid "guestfs_mkswap_U"
14211 msgstr ""
14212
14213 #. type: verbatim
14214 #: ../src/guestfs-actions.pod:4765
14215 #, no-wrap
14216 msgid ""
14217 " int\n"
14218 " guestfs_mkswap_U (guestfs_h *g,\n"
14219 "                   const char *uuid,\n"
14220 "                   const char *device);\n"
14221 "\n"
14222 msgstr ""
14223
14224 #. type: textblock
14225 #: ../src/guestfs-actions.pod:4770 ../fish/guestfish-actions.pod:3184
14226 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14227 msgstr ""
14228
14229 #. type: =head2
14230 #: ../src/guestfs-actions.pod:4776
14231 msgid "guestfs_mkswap_file"
14232 msgstr ""
14233
14234 #. type: verbatim
14235 #: ../src/guestfs-actions.pod:4778
14236 #, no-wrap
14237 msgid ""
14238 " int\n"
14239 " guestfs_mkswap_file (guestfs_h *g,\n"
14240 "                      const char *path);\n"
14241 "\n"
14242 msgstr ""
14243
14244 #. type: textblock
14245 #: ../src/guestfs-actions.pod:4782 ../fish/guestfish-actions.pod:3190
14246 msgid "Create a swap file."
14247 msgstr ""
14248
14249 #. type: textblock
14250 #: ../src/guestfs-actions.pod:4784
14251 msgid ""
14252 "This command just writes a swap file signature to an existing file.  To "
14253 "create the file itself, use something like C<guestfs_fallocate>."
14254 msgstr ""
14255
14256 #. type: =head2
14257 #: ../src/guestfs-actions.pod:4791
14258 msgid "guestfs_modprobe"
14259 msgstr ""
14260
14261 #. type: verbatim
14262 #: ../src/guestfs-actions.pod:4793
14263 #, no-wrap
14264 msgid ""
14265 " int\n"
14266 " guestfs_modprobe (guestfs_h *g,\n"
14267 "                   const char *modulename);\n"
14268 "\n"
14269 msgstr ""
14270
14271 #. type: textblock
14272 #: ../src/guestfs-actions.pod:4797 ../fish/guestfish-actions.pod:3199
14273 msgid "This loads a kernel module in the appliance."
14274 msgstr ""
14275
14276 #. type: textblock
14277 #: ../src/guestfs-actions.pod:4799 ../fish/guestfish-actions.pod:3201
14278 msgid ""
14279 "The kernel module must have been whitelisted when libguestfs was built (see "
14280 "C<appliance/kmod.whitelist.in> in the source)."
14281 msgstr ""
14282
14283 #. type: =head2
14284 #: ../src/guestfs-actions.pod:4806
14285 msgid "guestfs_mount"
14286 msgstr ""
14287
14288 #. type: verbatim
14289 #: ../src/guestfs-actions.pod:4808
14290 #, no-wrap
14291 msgid ""
14292 " int\n"
14293 " guestfs_mount (guestfs_h *g,\n"
14294 "                const char *device,\n"
14295 "                const char *mountpoint);\n"
14296 "\n"
14297 msgstr ""
14298
14299 #. type: textblock
14300 #: ../src/guestfs-actions.pod:4813 ../fish/guestfish-actions.pod:3208
14301 msgid ""
14302 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14303 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14304 "those block devices contain partitions, they will have the usual names (eg. "
14305 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14306 msgstr ""
14307
14308 #. type: textblock
14309 #: ../src/guestfs-actions.pod:4819 ../fish/guestfish-actions.pod:3214
14310 msgid ""
14311 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14312 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14313 "mounted on directories which already exist."
14314 msgstr ""
14315
14316 #. type: textblock
14317 #: ../src/guestfs-actions.pod:4824 ../fish/guestfish-actions.pod:3219
14318 msgid ""
14319 "The mounted filesystem is writable, if we have sufficient permissions on the "
14320 "underlying device."
14321 msgstr ""
14322
14323 #. type: textblock
14324 #: ../src/guestfs-actions.pod:4827
14325 msgid ""
14326 "B<Important note:> When you use this call, the filesystem options C<sync> "
14327 "and C<noatime> are set implicitly.  This was originally done because we "
14328 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14329 "very large negative performance impact and negligible effect on "
14330 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14331 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14332 "(use an empty string for the first parameter if you don't want any options)."
14333 msgstr ""
14334
14335 #. type: textblock
14336 #: ../src/guestfs-actions.pod:4839 ../fish/guestfish-actions.pod:3232
14337 msgid ""
14338 "This function is deprecated.  In new code, use the C<mount_options> call "
14339 "instead."
14340 msgstr ""
14341
14342 #. type: =head2
14343 #: ../src/guestfs-actions.pod:4848
14344 msgid "guestfs_mount_9p"
14345 msgstr ""
14346
14347 #. type: verbatim
14348 #: ../src/guestfs-actions.pod:4850
14349 #, no-wrap
14350 msgid ""
14351 " int\n"
14352 " guestfs_mount_9p (guestfs_h *g,\n"
14353 "                   const char *mounttag,\n"
14354 "                   const char *mountpoint,\n"
14355 "                   ...);\n"
14356 "\n"
14357 msgstr ""
14358
14359 #. type: verbatim
14360 #: ../src/guestfs-actions.pod:4861
14361 #, no-wrap
14362 msgid ""
14363 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14364 "\n"
14365 msgstr ""
14366
14367 #. type: textblock
14368 #: ../src/guestfs-actions.pod:4863 ../fish/guestfish-actions.pod:3243
14369 msgid ""
14370 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14371 "C<mountpoint>."
14372 msgstr ""
14373
14374 #. type: textblock
14375 #: ../src/guestfs-actions.pod:4866 ../fish/guestfish-actions.pod:3246
14376 msgid ""
14377 "If required, C<trans=virtio> will be automatically added to the options.  "
14378 "Any other options required can be passed in the optional C<options> "
14379 "parameter."
14380 msgstr ""
14381
14382 #. type: =head2
14383 #: ../src/guestfs-actions.pod:4874
14384 msgid "guestfs_mount_9p_va"
14385 msgstr ""
14386
14387 #. type: verbatim
14388 #: ../src/guestfs-actions.pod:4876
14389 #, no-wrap
14390 msgid ""
14391 " int\n"
14392 " guestfs_mount_9p_va (guestfs_h *g,\n"
14393 "                      const char *mounttag,\n"
14394 "                      const char *mountpoint,\n"
14395 "                      va_list args);\n"
14396 "\n"
14397 msgstr ""
14398
14399 #. type: textblock
14400 #: ../src/guestfs-actions.pod:4882
14401 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14402 msgstr ""
14403
14404 #. type: =head2
14405 #: ../src/guestfs-actions.pod:4886
14406 msgid "guestfs_mount_9p_argv"
14407 msgstr ""
14408
14409 #. type: verbatim
14410 #: ../src/guestfs-actions.pod:4888
14411 #, no-wrap
14412 msgid ""
14413 " int\n"
14414 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14415 "                        const char *mounttag,\n"
14416 "                        const char *mountpoint,\n"
14417 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14418 "\n"
14419 msgstr ""
14420
14421 #. type: textblock
14422 #: ../src/guestfs-actions.pod:4894
14423 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14424 msgstr ""
14425
14426 #. type: =head2
14427 #: ../src/guestfs-actions.pod:4898
14428 msgid "guestfs_mount_loop"
14429 msgstr ""
14430
14431 #. type: verbatim
14432 #: ../src/guestfs-actions.pod:4900
14433 #, no-wrap
14434 msgid ""
14435 " int\n"
14436 " guestfs_mount_loop (guestfs_h *g,\n"
14437 "                     const char *file,\n"
14438 "                     const char *mountpoint);\n"
14439 "\n"
14440 msgstr ""
14441
14442 #. type: textblock
14443 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3256
14444 msgid ""
14445 "This command lets you mount C<file> (a filesystem image in a file) on a "
14446 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14447 "mountpoint>."
14448 msgstr ""
14449
14450 #. type: =head2
14451 #: ../src/guestfs-actions.pod:4913
14452 msgid "guestfs_mount_options"
14453 msgstr ""
14454
14455 #. type: verbatim
14456 #: ../src/guestfs-actions.pod:4915
14457 #, no-wrap
14458 msgid ""
14459 " int\n"
14460 " guestfs_mount_options (guestfs_h *g,\n"
14461 "                        const char *options,\n"
14462 "                        const char *device,\n"
14463 "                        const char *mountpoint);\n"
14464 "\n"
14465 msgstr ""
14466
14467 #. type: textblock
14468 #: ../src/guestfs-actions.pod:4921
14469 msgid ""
14470 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14471 "the mount options as for the L<mount(8)> I<-o> flag."
14472 msgstr ""
14473
14474 #. type: textblock
14475 #: ../src/guestfs-actions.pod:4925 ../fish/guestfish-actions.pod:3268
14476 msgid ""
14477 "If the C<options> parameter is an empty string, then no options are passed "
14478 "(all options default to whatever the filesystem uses)."
14479 msgstr ""
14480
14481 #. type: textblock
14482 #: ../src/guestfs-actions.pod:4931 ../src/guestfs-actions.pod:4945
14483 #: ../src/guestfs-actions.pod:4962
14484 msgid "(Added in 1.0.10)"
14485 msgstr ""
14486
14487 #. type: =head2
14488 #: ../src/guestfs-actions.pod:4933
14489 msgid "guestfs_mount_ro"
14490 msgstr ""
14491
14492 #. type: verbatim
14493 #: ../src/guestfs-actions.pod:4935
14494 #, no-wrap
14495 msgid ""
14496 " int\n"
14497 " guestfs_mount_ro (guestfs_h *g,\n"
14498 "                   const char *device,\n"
14499 "                   const char *mountpoint);\n"
14500 "\n"
14501 msgstr ""
14502
14503 #. type: textblock
14504 #: ../src/guestfs-actions.pod:4940
14505 msgid ""
14506 "This is the same as the C<guestfs_mount> command, but it mounts the "
14507 "filesystem with the read-only (I<-o ro>) flag."
14508 msgstr ""
14509
14510 #. type: =head2
14511 #: ../src/guestfs-actions.pod:4947
14512 msgid "guestfs_mount_vfs"
14513 msgstr ""
14514
14515 #. type: verbatim
14516 #: ../src/guestfs-actions.pod:4949
14517 #, no-wrap
14518 msgid ""
14519 " int\n"
14520 " guestfs_mount_vfs (guestfs_h *g,\n"
14521 "                    const char *options,\n"
14522 "                    const char *vfstype,\n"
14523 "                    const char *device,\n"
14524 "                    const char *mountpoint);\n"
14525 "\n"
14526 msgstr ""
14527
14528 #. type: textblock
14529 #: ../src/guestfs-actions.pod:4956
14530 msgid ""
14531 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14532 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14533 "t> flags."
14534 msgstr ""
14535
14536 #. type: =head2
14537 #: ../src/guestfs-actions.pod:4964
14538 msgid "guestfs_mountpoints"
14539 msgstr ""
14540
14541 #. type: verbatim
14542 #: ../src/guestfs-actions.pod:4966
14543 #, no-wrap
14544 msgid ""
14545 " char **\n"
14546 " guestfs_mountpoints (guestfs_h *g);\n"
14547 "\n"
14548 msgstr ""
14549
14550 #. type: textblock
14551 #: ../src/guestfs-actions.pod:4969
14552 msgid ""
14553 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14554 "devices.  This one returns a hash table (map) of device name to directory "
14555 "where the device is mounted."
14556 msgstr ""
14557
14558 #. type: =head2
14559 #: ../src/guestfs-actions.pod:4981
14560 msgid "guestfs_mounts"
14561 msgstr ""
14562
14563 #. type: verbatim
14564 #: ../src/guestfs-actions.pod:4983
14565 #, no-wrap
14566 msgid ""
14567 " char **\n"
14568 " guestfs_mounts (guestfs_h *g);\n"
14569 "\n"
14570 msgstr ""
14571
14572 #. type: textblock
14573 #: ../src/guestfs-actions.pod:4986 ../fish/guestfish-actions.pod:3299
14574 msgid ""
14575 "This returns the list of currently mounted filesystems.  It returns the list "
14576 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14577 msgstr ""
14578
14579 #. type: textblock
14580 #: ../src/guestfs-actions.pod:4989 ../fish/guestfish-actions.pod:3302
14581 msgid "Some internal mounts are not shown."
14582 msgstr ""
14583
14584 #. type: textblock
14585 #: ../src/guestfs-actions.pod:4991
14586 msgid "See also: C<guestfs_mountpoints>"
14587 msgstr ""
14588
14589 #. type: =head2
14590 #: ../src/guestfs-actions.pod:4999
14591 msgid "guestfs_mv"
14592 msgstr ""
14593
14594 #. type: verbatim
14595 #: ../src/guestfs-actions.pod:5001
14596 #, no-wrap
14597 msgid ""
14598 " int\n"
14599 " guestfs_mv (guestfs_h *g,\n"
14600 "             const char *src,\n"
14601 "             const char *dest);\n"
14602 "\n"
14603 msgstr ""
14604
14605 #. type: textblock
14606 #: ../src/guestfs-actions.pod:5006 ../fish/guestfish-actions.pod:3310
14607 msgid ""
14608 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14609 "destination filename or destination directory."
14610 msgstr ""
14611
14612 #. type: =head2
14613 #: ../src/guestfs-actions.pod:5013
14614 msgid "guestfs_ntfs_3g_probe"
14615 msgstr ""
14616
14617 #. type: verbatim
14618 #: ../src/guestfs-actions.pod:5015
14619 #, no-wrap
14620 msgid ""
14621 " int\n"
14622 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14623 "                        int rw,\n"
14624 "                        const char *device);\n"
14625 "\n"
14626 msgstr ""
14627
14628 #. type: textblock
14629 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3317
14630 msgid ""
14631 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14632 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14633 "write, and some cannot be mounted at all)."
14634 msgstr ""
14635
14636 #. type: textblock
14637 #: ../src/guestfs-actions.pod:5024 ../fish/guestfish-actions.pod:3321
14638 msgid ""
14639 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14640 "can be mounted read-write.  Set it to false if you want to test if the "
14641 "volume can be mounted read-only."
14642 msgstr ""
14643
14644 #. type: textblock
14645 #: ../src/guestfs-actions.pod:5028 ../fish/guestfish-actions.pod:3325
14646 msgid ""
14647 "The return value is an integer which C<0> if the operation would succeed, or "
14648 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14649 msgstr ""
14650
14651 #. type: textblock
14652 #: ../src/guestfs-actions.pod:5034
14653 msgid "(Added in 1.0.43)"
14654 msgstr ""
14655
14656 #. type: =head2
14657 #: ../src/guestfs-actions.pod:5036
14658 msgid "guestfs_ntfsresize"
14659 msgstr ""
14660
14661 #. type: verbatim
14662 #: ../src/guestfs-actions.pod:5038
14663 #, no-wrap
14664 msgid ""
14665 " int\n"
14666 " guestfs_ntfsresize (guestfs_h *g,\n"
14667 "                     const char *device);\n"
14668 "\n"
14669 msgstr ""
14670
14671 #. type: textblock
14672 #: ../src/guestfs-actions.pod:5042 ../fish/guestfish-actions.pod:3333
14673 msgid ""
14674 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14675 "size of the underlying device.  See also L<ntfsresize(8)>."
14676 msgstr ""
14677
14678 #. type: =head2
14679 #: ../src/guestfs-actions.pod:5050
14680 msgid "guestfs_ntfsresize_size"
14681 msgstr ""
14682
14683 #. type: verbatim
14684 #: ../src/guestfs-actions.pod:5052
14685 #, no-wrap
14686 msgid ""
14687 " int\n"
14688 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14689 "                          const char *device,\n"
14690 "                          int64_t size);\n"
14691 "\n"
14692 msgstr ""
14693
14694 #. type: textblock
14695 #: ../src/guestfs-actions.pod:5057
14696 msgid ""
14697 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14698 "to specify the new size (in bytes) explicitly."
14699 msgstr ""
14700
14701 #. type: textblock
14702 #: ../src/guestfs-actions.pod:5062 ../src/guestfs-actions.pod:5498
14703 #: ../src/guestfs-actions.pod:5571 ../src/guestfs-actions.pod:5839
14704 #: ../src/guestfs-actions.pod:7447
14705 msgid "(Added in 1.3.14)"
14706 msgstr ""
14707
14708 #. type: =head2
14709 #: ../src/guestfs-actions.pod:5064
14710 msgid "guestfs_part_add"
14711 msgstr ""
14712
14713 #. type: verbatim
14714 #: ../src/guestfs-actions.pod:5066
14715 #, no-wrap
14716 msgid ""
14717 " int\n"
14718 " guestfs_part_add (guestfs_h *g,\n"
14719 "                   const char *device,\n"
14720 "                   const char *prlogex,\n"
14721 "                   int64_t startsect,\n"
14722 "                   int64_t endsect);\n"
14723 "\n"
14724 msgstr ""
14725
14726 #. type: textblock
14727 #: ../src/guestfs-actions.pod:5073
14728 msgid ""
14729 "This command adds a partition to C<device>.  If there is no partition table "
14730 "on the device, call C<guestfs_part_init> first."
14731 msgstr ""
14732
14733 #. type: textblock
14734 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3351
14735 msgid ""
14736 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14737 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14738 "C<logical>) and C<e> (or C<extended>) partition types."
14739 msgstr ""
14740
14741 #. type: textblock
14742 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3356
14743 msgid ""
14744 "C<startsect> and C<endsect> are the start and end of the partition in "
14745 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14746 "from the end of the disk (C<-1> is the last sector)."
14747 msgstr ""
14748
14749 #. type: textblock
14750 #: ../src/guestfs-actions.pod:5085
14751 msgid ""
14752 "Creating a partition which covers the whole disk is not so easy.  Use "
14753 "C<guestfs_part_disk> to do that."
14754 msgstr ""
14755
14756 #. type: textblock
14757 #: ../src/guestfs-actions.pod:5090 ../src/guestfs-actions.pod:5128
14758 #: ../src/guestfs-actions.pod:5181 ../src/guestfs-actions.pod:5259
14759 #: ../src/guestfs-actions.pod:5297 ../src/guestfs-actions.pod:5316
14760 #: ../src/guestfs-actions.pod:5356
14761 msgid "(Added in 1.0.78)"
14762 msgstr ""
14763
14764 #. type: =head2
14765 #: ../src/guestfs-actions.pod:5092
14766 msgid "guestfs_part_del"
14767 msgstr ""
14768
14769 #. type: verbatim
14770 #: ../src/guestfs-actions.pod:5094
14771 #, no-wrap
14772 msgid ""
14773 " int\n"
14774 " guestfs_part_del (guestfs_h *g,\n"
14775 "                   const char *device,\n"
14776 "                   int partnum);\n"
14777 "\n"
14778 msgstr ""
14779
14780 #. type: textblock
14781 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3367
14782 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14783 msgstr ""
14784
14785 #. type: textblock
14786 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3369
14787 msgid ""
14788 "Note that in the case of MBR partitioning, deleting an extended partition "
14789 "also deletes any logical partitions it contains."
14790 msgstr ""
14791
14792 #. type: =head2
14793 #: ../src/guestfs-actions.pod:5109
14794 msgid "guestfs_part_disk"
14795 msgstr ""
14796
14797 #. type: verbatim
14798 #: ../src/guestfs-actions.pod:5111
14799 #, no-wrap
14800 msgid ""
14801 " int\n"
14802 " guestfs_part_disk (guestfs_h *g,\n"
14803 "                    const char *device,\n"
14804 "                    const char *parttype);\n"
14805 "\n"
14806 msgstr ""
14807
14808 #. type: textblock
14809 #: ../src/guestfs-actions.pod:5116
14810 msgid ""
14811 "This command is simply a combination of C<guestfs_part_init> followed by "
14812 "C<guestfs_part_add> to create a single primary partition covering the whole "
14813 "disk."
14814 msgstr ""
14815
14816 #. type: textblock
14817 #: ../src/guestfs-actions.pod:5120
14818 msgid ""
14819 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14820 "possible values are described in C<guestfs_part_init>."
14821 msgstr ""
14822
14823 #. type: =head2
14824 #: ../src/guestfs-actions.pod:5130
14825 msgid "guestfs_part_get_bootable"
14826 msgstr ""
14827
14828 #. type: verbatim
14829 #: ../src/guestfs-actions.pod:5132
14830 #, no-wrap
14831 msgid ""
14832 " int\n"
14833 " guestfs_part_get_bootable (guestfs_h *g,\n"
14834 "                            const char *device,\n"
14835 "                            int partnum);\n"
14836 "\n"
14837 msgstr ""
14838
14839 #. type: textblock
14840 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3391
14841 msgid ""
14842 "This command returns true if the partition C<partnum> on C<device> has the "
14843 "bootable flag set."
14844 msgstr ""
14845
14846 #. type: textblock
14847 #: ../src/guestfs-actions.pod:5140
14848 msgid "See also C<guestfs_part_set_bootable>."
14849 msgstr ""
14850
14851 #. type: =head2
14852 #: ../src/guestfs-actions.pod:5146
14853 msgid "guestfs_part_get_mbr_id"
14854 msgstr ""
14855
14856 #. type: verbatim
14857 #: ../src/guestfs-actions.pod:5148
14858 #, no-wrap
14859 msgid ""
14860 " int\n"
14861 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14862 "                          const char *device,\n"
14863 "                          int partnum);\n"
14864 "\n"
14865 msgstr ""
14866
14867 #. type: textblock
14868 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3400
14869 msgid ""
14870 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14871 "partition C<partnum>."
14872 msgstr ""
14873
14874 #. type: textblock
14875 #: ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5332
14876 msgid ""
14877 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14878 "undefined results for other partition table types (see "
14879 "C<guestfs_part_get_parttype>)."
14880 msgstr ""
14881
14882 #. type: =head2
14883 #: ../src/guestfs-actions.pod:5164
14884 msgid "guestfs_part_get_parttype"
14885 msgstr ""
14886
14887 #. type: verbatim
14888 #: ../src/guestfs-actions.pod:5166
14889 #, no-wrap
14890 msgid ""
14891 " char *\n"
14892 " guestfs_part_get_parttype (guestfs_h *g,\n"
14893 "                            const char *device);\n"
14894 "\n"
14895 msgstr ""
14896
14897 #. type: textblock
14898 #: ../src/guestfs-actions.pod:5170 ../fish/guestfish-actions.pod:3411
14899 msgid ""
14900 "This command examines the partition table on C<device> and returns the "
14901 "partition table type (format) being used."
14902 msgstr ""
14903
14904 #. type: textblock
14905 #: ../src/guestfs-actions.pod:5173
14906 msgid ""
14907 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14908 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14909 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14910 msgstr ""
14911
14912 #. type: =head2
14913 #: ../src/guestfs-actions.pod:5183
14914 msgid "guestfs_part_init"
14915 msgstr ""
14916
14917 #. type: verbatim
14918 #: ../src/guestfs-actions.pod:5185
14919 #, no-wrap
14920 msgid ""
14921 " int\n"
14922 " guestfs_part_init (guestfs_h *g,\n"
14923 "                    const char *device,\n"
14924 "                    const char *parttype);\n"
14925 "\n"
14926 msgstr ""
14927
14928 #. type: textblock
14929 #: ../src/guestfs-actions.pod:5190 ../fish/guestfish-actions.pod:3423
14930 msgid ""
14931 "This creates an empty partition table on C<device> of one of the partition "
14932 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14933 "(for large disks)."
14934 msgstr ""
14935
14936 #. type: textblock
14937 #: ../src/guestfs-actions.pod:5194
14938 msgid ""
14939 "Initially there are no partitions.  Following this, you should call "
14940 "C<guestfs_part_add> for each partition required."
14941 msgstr ""
14942
14943 #. type: textblock
14944 #: ../src/guestfs-actions.pod:5197 ../fish/guestfish-actions.pod:3430
14945 msgid "Possible values for C<parttype> are:"
14946 msgstr ""
14947
14948 #. type: =item
14949 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3434
14950 msgid "B<efi> | B<gpt>"
14951 msgstr ""
14952
14953 #. type: textblock
14954 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3436
14955 msgid "Intel EFI / GPT partition table."
14956 msgstr ""
14957
14958 #. type: textblock
14959 #: ../src/guestfs-actions.pod:5205 ../fish/guestfish-actions.pod:3438
14960 msgid ""
14961 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14962 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14963 "the C<mbr> format."
14964 msgstr ""
14965
14966 #. type: =item
14967 #: ../src/guestfs-actions.pod:5209 ../fish/guestfish-actions.pod:3442
14968 msgid "B<mbr> | B<msdos>"
14969 msgstr ""
14970
14971 #. type: textblock
14972 #: ../src/guestfs-actions.pod:5211 ../fish/guestfish-actions.pod:3444
14973 msgid ""
14974 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14975 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14976 "TB.  For large disks we recommend using C<gpt>."
14977 msgstr ""
14978
14979 #. type: textblock
14980 #: ../src/guestfs-actions.pod:5218 ../fish/guestfish-actions.pod:3451
14981 msgid ""
14982 "Other partition table types that may work but are not supported include:"
14983 msgstr ""
14984
14985 #. type: =item
14986 #: ../src/guestfs-actions.pod:5223 ../fish/guestfish-actions.pod:3456
14987 msgid "B<aix>"
14988 msgstr ""
14989
14990 #. type: textblock
14991 #: ../src/guestfs-actions.pod:5225 ../fish/guestfish-actions.pod:3458
14992 msgid "AIX disk labels."
14993 msgstr ""
14994
14995 #. type: =item
14996 #: ../src/guestfs-actions.pod:5227 ../fish/guestfish-actions.pod:3460
14997 msgid "B<amiga> | B<rdb>"
14998 msgstr ""
14999
15000 #. type: textblock
15001 #: ../src/guestfs-actions.pod:5229 ../fish/guestfish-actions.pod:3462
15002 msgid "Amiga \"Rigid Disk Block\" format."
15003 msgstr ""
15004
15005 #. type: =item
15006 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3464
15007 msgid "B<bsd>"
15008 msgstr ""
15009
15010 #. type: textblock
15011 #: ../src/guestfs-actions.pod:5233 ../fish/guestfish-actions.pod:3466
15012 msgid "BSD disk labels."
15013 msgstr ""
15014
15015 #. type: =item
15016 #: ../src/guestfs-actions.pod:5235 ../fish/guestfish-actions.pod:3468
15017 msgid "B<dasd>"
15018 msgstr ""
15019
15020 #. type: textblock
15021 #: ../src/guestfs-actions.pod:5237 ../fish/guestfish-actions.pod:3470
15022 msgid "DASD, used on IBM mainframes."
15023 msgstr ""
15024
15025 #. type: =item
15026 #: ../src/guestfs-actions.pod:5239 ../fish/guestfish-actions.pod:3472
15027 msgid "B<dvh>"
15028 msgstr ""
15029
15030 #. type: textblock
15031 #: ../src/guestfs-actions.pod:5241 ../fish/guestfish-actions.pod:3474
15032 msgid "MIPS/SGI volumes."
15033 msgstr ""
15034
15035 #. type: =item
15036 #: ../src/guestfs-actions.pod:5243 ../fish/guestfish-actions.pod:3476
15037 msgid "B<mac>"
15038 msgstr ""
15039
15040 #. type: textblock
15041 #: ../src/guestfs-actions.pod:5245 ../fish/guestfish-actions.pod:3478
15042 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15043 msgstr ""
15044
15045 #. type: =item
15046 #: ../src/guestfs-actions.pod:5247 ../fish/guestfish-actions.pod:3480
15047 msgid "B<pc98>"
15048 msgstr ""
15049
15050 #. type: textblock
15051 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3482
15052 msgid "NEC PC-98 format, common in Japan apparently."
15053 msgstr ""
15054
15055 #. type: =item
15056 #: ../src/guestfs-actions.pod:5251 ../fish/guestfish-actions.pod:3484
15057 msgid "B<sun>"
15058 msgstr ""
15059
15060 #. type: textblock
15061 #: ../src/guestfs-actions.pod:5253 ../fish/guestfish-actions.pod:3486
15062 msgid "Sun disk labels."
15063 msgstr ""
15064
15065 #. type: =head2
15066 #: ../src/guestfs-actions.pod:5261
15067 msgid "guestfs_part_list"
15068 msgstr ""
15069
15070 #. type: verbatim
15071 #: ../src/guestfs-actions.pod:5263
15072 #, no-wrap
15073 msgid ""
15074 " struct guestfs_partition_list *\n"
15075 " guestfs_part_list (guestfs_h *g,\n"
15076 "                    const char *device);\n"
15077 "\n"
15078 msgstr ""
15079
15080 #. type: textblock
15081 #: ../src/guestfs-actions.pod:5267 ../fish/guestfish-actions.pod:3494
15082 msgid ""
15083 "This command parses the partition table on C<device> and returns the list of "
15084 "partitions found."
15085 msgstr ""
15086
15087 #. type: textblock
15088 #: ../src/guestfs-actions.pod:5270 ../fish/guestfish-actions.pod:3497
15089 msgid "The fields in the returned structure are:"
15090 msgstr ""
15091
15092 #. type: =item
15093 #: ../src/guestfs-actions.pod:5274 ../fish/guestfish-actions.pod:3501
15094 msgid "B<part_num>"
15095 msgstr ""
15096
15097 #. type: textblock
15098 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3503
15099 msgid "Partition number, counting from 1."
15100 msgstr ""
15101
15102 #. type: =item
15103 #: ../src/guestfs-actions.pod:5278 ../fish/guestfish-actions.pod:3505
15104 msgid "B<part_start>"
15105 msgstr ""
15106
15107 #. type: textblock
15108 #: ../src/guestfs-actions.pod:5280
15109 msgid ""
15110 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15111 "the device's sector size, see C<guestfs_blockdev_getss>."
15112 msgstr ""
15113
15114 #. type: =item
15115 #: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3510
15116 msgid "B<part_end>"
15117 msgstr ""
15118
15119 #. type: textblock
15120 #: ../src/guestfs-actions.pod:5285 ../fish/guestfish-actions.pod:3512
15121 msgid "End of the partition in bytes."
15122 msgstr ""
15123
15124 #. type: =item
15125 #: ../src/guestfs-actions.pod:5287 ../fish/guestfish-actions.pod:3514
15126 msgid "B<part_size>"
15127 msgstr ""
15128
15129 #. type: textblock
15130 #: ../src/guestfs-actions.pod:5289 ../fish/guestfish-actions.pod:3516
15131 msgid "Size of the partition in bytes."
15132 msgstr ""
15133
15134 #. type: textblock
15135 #: ../src/guestfs-actions.pod:5293
15136 msgid ""
15137 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
15138 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15139 "use>."
15140 msgstr ""
15141
15142 #. type: =head2
15143 #: ../src/guestfs-actions.pod:5299
15144 msgid "guestfs_part_set_bootable"
15145 msgstr ""
15146
15147 #. type: verbatim
15148 #: ../src/guestfs-actions.pod:5301
15149 #, no-wrap
15150 msgid ""
15151 " int\n"
15152 " guestfs_part_set_bootable (guestfs_h *g,\n"
15153 "                            const char *device,\n"
15154 "                            int partnum,\n"
15155 "                            int bootable);\n"
15156 "\n"
15157 msgstr ""
15158
15159 #. type: textblock
15160 #: ../src/guestfs-actions.pod:5307 ../fish/guestfish-actions.pod:3524
15161 msgid ""
15162 "This sets the bootable flag on partition numbered C<partnum> on device "
15163 "C<device>.  Note that partitions are numbered from 1."
15164 msgstr ""
15165
15166 #. type: textblock
15167 #: ../src/guestfs-actions.pod:5310 ../fish/guestfish-actions.pod:3527
15168 msgid ""
15169 "The bootable flag is used by some operating systems (notably Windows) to "
15170 "determine which partition to boot from.  It is by no means universally "
15171 "recognized."
15172 msgstr ""
15173
15174 #. type: =head2
15175 #: ../src/guestfs-actions.pod:5318
15176 msgid "guestfs_part_set_mbr_id"
15177 msgstr ""
15178
15179 #. type: verbatim
15180 #: ../src/guestfs-actions.pod:5320
15181 #, no-wrap
15182 msgid ""
15183 " int\n"
15184 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15185 "                          const char *device,\n"
15186 "                          int partnum,\n"
15187 "                          int idbyte);\n"
15188 "\n"
15189 msgstr ""
15190
15191 #. type: textblock
15192 #: ../src/guestfs-actions.pod:5326 ../fish/guestfish-actions.pod:3535
15193 msgid ""
15194 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
15195 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15196 "documentation are in fact hexadecimal numbers, but usually documented "
15197 "without any leading \"0x\" which might be confusing."
15198 msgstr ""
15199
15200 #. type: =head2
15201 #: ../src/guestfs-actions.pod:5340
15202 msgid "guestfs_part_set_name"
15203 msgstr ""
15204
15205 #. type: verbatim
15206 #: ../src/guestfs-actions.pod:5342
15207 #, no-wrap
15208 msgid ""
15209 " int\n"
15210 " guestfs_part_set_name (guestfs_h *g,\n"
15211 "                        const char *device,\n"
15212 "                        int partnum,\n"
15213 "                        const char *name);\n"
15214 "\n"
15215 msgstr ""
15216
15217 #. type: textblock
15218 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3549
15219 msgid ""
15220 "This sets the partition name on partition numbered C<partnum> on device "
15221 "C<device>.  Note that partitions are numbered from 1."
15222 msgstr ""
15223
15224 #. type: textblock
15225 #: ../src/guestfs-actions.pod:5351 ../fish/guestfish-actions.pod:3552
15226 msgid ""
15227 "The partition name can only be set on certain types of partition table.  "
15228 "This works on C<gpt> but not on C<mbr> partitions."
15229 msgstr ""
15230
15231 #. type: =head2
15232 #: ../src/guestfs-actions.pod:5358
15233 msgid "guestfs_part_to_dev"
15234 msgstr ""
15235
15236 #. type: verbatim
15237 #: ../src/guestfs-actions.pod:5360
15238 #, no-wrap
15239 msgid ""
15240 " char *\n"
15241 " guestfs_part_to_dev (guestfs_h *g,\n"
15242 "                      const char *partition);\n"
15243 "\n"
15244 msgstr ""
15245
15246 #. type: textblock
15247 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3559
15248 msgid ""
15249 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15250 "partition number, returning the device name (eg. \"/dev/sdb\")."
15251 msgstr ""
15252
15253 #. type: textblock
15254 #: ../src/guestfs-actions.pod:5368
15255 msgid ""
15256 "The named partition must exist, for example as a string returned from "
15257 "C<guestfs_list_partitions>."
15258 msgstr ""
15259
15260 #. type: =head2
15261 #: ../src/guestfs-actions.pod:5376
15262 msgid "guestfs_ping_daemon"
15263 msgstr ""
15264
15265 #. type: verbatim
15266 #: ../src/guestfs-actions.pod:5378
15267 #, no-wrap
15268 msgid ""
15269 " int\n"
15270 " guestfs_ping_daemon (guestfs_h *g);\n"
15271 "\n"
15272 msgstr ""
15273
15274 #. type: textblock
15275 #: ../src/guestfs-actions.pod:5381 ../fish/guestfish-actions.pod:3570
15276 msgid ""
15277 "This is a test probe into the guestfs daemon running inside the qemu "
15278 "subprocess.  Calling this function checks that the daemon responds to the "
15279 "ping message, without affecting the daemon or attached block device(s) in "
15280 "any other way."
15281 msgstr ""
15282
15283 #. type: =head2
15284 #: ../src/guestfs-actions.pod:5390
15285 msgid "guestfs_pread"
15286 msgstr ""
15287
15288 #. type: verbatim
15289 #: ../src/guestfs-actions.pod:5392
15290 #, no-wrap
15291 msgid ""
15292 " char *\n"
15293 " guestfs_pread (guestfs_h *g,\n"
15294 "                const char *path,\n"
15295 "                int count,\n"
15296 "                int64_t offset,\n"
15297 "                size_t *size_r);\n"
15298 "\n"
15299 msgstr ""
15300
15301 #. type: textblock
15302 #: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3579
15303 msgid ""
15304 "This command lets you read part of a file.  It reads C<count> bytes of the "
15305 "file, starting at C<offset>, from file C<path>."
15306 msgstr ""
15307
15308 #. type: textblock
15309 #: ../src/guestfs-actions.pod:5402 ../src/guestfs-actions.pod:5428
15310 #: ../fish/guestfish-actions.pod:3582 ../fish/guestfish-actions.pod:3597
15311 msgid ""
15312 "This may read fewer bytes than requested.  For further details see the "
15313 "L<pread(2)> system call."
15314 msgstr ""
15315
15316 #. type: textblock
15317 #: ../src/guestfs-actions.pod:5405
15318 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15319 msgstr ""
15320
15321 #. type: =head2
15322 #: ../src/guestfs-actions.pod:5416
15323 msgid "guestfs_pread_device"
15324 msgstr ""
15325
15326 #. type: verbatim
15327 #: ../src/guestfs-actions.pod:5418
15328 #, no-wrap
15329 msgid ""
15330 " char *\n"
15331 " guestfs_pread_device (guestfs_h *g,\n"
15332 "                       const char *device,\n"
15333 "                       int count,\n"
15334 "                       int64_t offset,\n"
15335 "                       size_t *size_r);\n"
15336 "\n"
15337 msgstr ""
15338
15339 #. type: textblock
15340 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3594
15341 msgid ""
15342 "This command lets you read part of a file.  It reads C<count> bytes of "
15343 "C<device>, starting at C<offset>."
15344 msgstr ""
15345
15346 #. type: textblock
15347 #: ../src/guestfs-actions.pod:5431
15348 msgid "See also C<guestfs_pread>."
15349 msgstr ""
15350
15351 #. type: textblock
15352 #: ../src/guestfs-actions.pod:5440
15353 msgid "(Added in 1.5.21)"
15354 msgstr ""
15355
15356 #. type: =head2
15357 #: ../src/guestfs-actions.pod:5442
15358 msgid "guestfs_pvcreate"
15359 msgstr ""
15360
15361 #. type: verbatim
15362 #: ../src/guestfs-actions.pod:5444
15363 #, no-wrap
15364 msgid ""
15365 " int\n"
15366 " guestfs_pvcreate (guestfs_h *g,\n"
15367 "                   const char *device);\n"
15368 "\n"
15369 msgstr ""
15370
15371 #. type: textblock
15372 #: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3609
15373 msgid ""
15374 "This creates an LVM physical volume on the named C<device>, where C<device> "
15375 "should usually be a partition name such as C</dev/sda1>."
15376 msgstr ""
15377
15378 #. type: =head2
15379 #: ../src/guestfs-actions.pod:5456
15380 msgid "guestfs_pvremove"
15381 msgstr ""
15382
15383 #. type: verbatim
15384 #: ../src/guestfs-actions.pod:5458
15385 #, no-wrap
15386 msgid ""
15387 " int\n"
15388 " guestfs_pvremove (guestfs_h *g,\n"
15389 "                   const char *device);\n"
15390 "\n"
15391 msgstr ""
15392
15393 #. type: textblock
15394 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3617
15395 msgid ""
15396 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15397 "it."
15398 msgstr ""
15399
15400 #. type: textblock
15401 #: ../src/guestfs-actions.pod:5465 ../fish/guestfish-actions.pod:3620
15402 msgid ""
15403 "The implementation uses the C<pvremove> command which refuses to wipe "
15404 "physical volumes that contain any volume groups, so you have to remove those "
15405 "first."
15406 msgstr ""
15407
15408 #. type: =head2
15409 #: ../src/guestfs-actions.pod:5473
15410 msgid "guestfs_pvresize"
15411 msgstr ""
15412
15413 #. type: verbatim
15414 #: ../src/guestfs-actions.pod:5475
15415 #, no-wrap
15416 msgid ""
15417 " int\n"
15418 " guestfs_pvresize (guestfs_h *g,\n"
15419 "                   const char *device);\n"
15420 "\n"
15421 msgstr ""
15422
15423 #. type: textblock
15424 #: ../src/guestfs-actions.pod:5479 ../fish/guestfish-actions.pod:3628
15425 msgid ""
15426 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15427 "the new size of the underlying device."
15428 msgstr ""
15429
15430 #. type: =head2
15431 #: ../src/guestfs-actions.pod:5486
15432 msgid "guestfs_pvresize_size"
15433 msgstr ""
15434
15435 #. type: verbatim
15436 #: ../src/guestfs-actions.pod:5488
15437 #, no-wrap
15438 msgid ""
15439 " int\n"
15440 " guestfs_pvresize_size (guestfs_h *g,\n"
15441 "                        const char *device,\n"
15442 "                        int64_t size);\n"
15443 "\n"
15444 msgstr ""
15445
15446 #. type: textblock
15447 #: ../src/guestfs-actions.pod:5493
15448 msgid ""
15449 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15450 "specify the new size (in bytes) explicitly."
15451 msgstr ""
15452
15453 #. type: =head2
15454 #: ../src/guestfs-actions.pod:5500
15455 msgid "guestfs_pvs"
15456 msgstr ""
15457
15458 #. type: verbatim
15459 #: ../src/guestfs-actions.pod:5502
15460 #, no-wrap
15461 msgid ""
15462 " char **\n"
15463 " guestfs_pvs (guestfs_h *g);\n"
15464 "\n"
15465 msgstr ""
15466
15467 #. type: textblock
15468 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3642
15469 msgid ""
15470 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15471 "(8)> command."
15472 msgstr ""
15473
15474 #. type: textblock
15475 #: ../src/guestfs-actions.pod:5508 ../fish/guestfish-actions.pod:3645
15476 msgid ""
15477 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15478 "sda2>)."
15479 msgstr ""
15480
15481 #. type: textblock
15482 #: ../src/guestfs-actions.pod:5511
15483 msgid "See also C<guestfs_pvs_full>."
15484 msgstr ""
15485
15486 #. type: =head2
15487 #: ../src/guestfs-actions.pod:5519
15488 msgid "guestfs_pvs_full"
15489 msgstr ""
15490
15491 #. type: verbatim
15492 #: ../src/guestfs-actions.pod:5521
15493 #, no-wrap
15494 msgid ""
15495 " struct guestfs_lvm_pv_list *\n"
15496 " guestfs_pvs_full (guestfs_h *g);\n"
15497 "\n"
15498 msgstr ""
15499
15500 #. type: textblock
15501 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3654
15502 msgid ""
15503 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15504 "(8)> command.  The \"full\" version includes all fields."
15505 msgstr ""
15506
15507 #. type: textblock
15508 #: ../src/guestfs-actions.pod:5527
15509 msgid ""
15510 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15511 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15512 msgstr ""
15513
15514 #. type: =head2
15515 #: ../src/guestfs-actions.pod:5533
15516 msgid "guestfs_pvuuid"
15517 msgstr ""
15518
15519 #. type: verbatim
15520 #: ../src/guestfs-actions.pod:5535
15521 #, no-wrap
15522 msgid ""
15523 " char *\n"
15524 " guestfs_pvuuid (guestfs_h *g,\n"
15525 "                 const char *device);\n"
15526 "\n"
15527 msgstr ""
15528
15529 #. type: textblock
15530 #: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3661
15531 msgid "This command returns the UUID of the LVM PV C<device>."
15532 msgstr ""
15533
15534 #. type: =head2
15535 #: ../src/guestfs-actions.pod:5546
15536 msgid "guestfs_pwrite"
15537 msgstr ""
15538
15539 #. type: verbatim
15540 #: ../src/guestfs-actions.pod:5548
15541 #, no-wrap
15542 msgid ""
15543 " int\n"
15544 " guestfs_pwrite (guestfs_h *g,\n"
15545 "                 const char *path,\n"
15546 "                 const char *content,\n"
15547 "                 size_t content_size,\n"
15548 "                 int64_t offset);\n"
15549 "\n"
15550 msgstr ""
15551
15552 #. type: textblock
15553 #: ../src/guestfs-actions.pod:5555 ../fish/guestfish-actions.pod:3667
15554 msgid ""
15555 "This command writes to part of a file.  It writes the data buffer C<content> "
15556 "to the file C<path> starting at offset C<offset>."
15557 msgstr ""
15558
15559 #. type: textblock
15560 #: ../src/guestfs-actions.pod:5558 ../fish/guestfish-actions.pod:3670
15561 msgid ""
15562 "This command implements the L<pwrite(2)> system call, and like that system "
15563 "call it may not write the full data requested.  The return value is the "
15564 "number of bytes that were actually written to the file.  This could even be "
15565 "0, although short writes are unlikely for regular files in ordinary "
15566 "circumstances."
15567 msgstr ""
15568
15569 #. type: textblock
15570 #: ../src/guestfs-actions.pod:5564
15571 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15572 msgstr ""
15573
15574 #. type: =head2
15575 #: ../src/guestfs-actions.pod:5573
15576 msgid "guestfs_pwrite_device"
15577 msgstr ""
15578
15579 #. type: verbatim
15580 #: ../src/guestfs-actions.pod:5575
15581 #, no-wrap
15582 msgid ""
15583 " int\n"
15584 " guestfs_pwrite_device (guestfs_h *g,\n"
15585 "                        const char *device,\n"
15586 "                        const char *content,\n"
15587 "                        size_t content_size,\n"
15588 "                        int64_t offset);\n"
15589 "\n"
15590 msgstr ""
15591
15592 #. type: textblock
15593 #: ../src/guestfs-actions.pod:5582 ../fish/guestfish-actions.pod:3685
15594 msgid ""
15595 "This command writes to part of a device.  It writes the data buffer "
15596 "C<content> to C<device> starting at offset C<offset>."
15597 msgstr ""
15598
15599 #. type: textblock
15600 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3688
15601 msgid ""
15602 "This command implements the L<pwrite(2)> system call, and like that system "
15603 "call it may not write the full data requested (although short writes to disk "
15604 "devices and partitions are probably impossible with standard Linux kernels)."
15605 msgstr ""
15606
15607 #. type: textblock
15608 #: ../src/guestfs-actions.pod:5590
15609 msgid "See also C<guestfs_pwrite>."
15610 msgstr ""
15611
15612 #. type: textblock
15613 #: ../src/guestfs-actions.pod:5597
15614 msgid "(Added in 1.5.20)"
15615 msgstr ""
15616
15617 #. type: =head2
15618 #: ../src/guestfs-actions.pod:5599
15619 msgid "guestfs_read_file"
15620 msgstr ""
15621
15622 #. type: verbatim
15623 #: ../src/guestfs-actions.pod:5601
15624 #, no-wrap
15625 msgid ""
15626 " char *\n"
15627 " guestfs_read_file (guestfs_h *g,\n"
15628 "                    const char *path,\n"
15629 "                    size_t *size_r);\n"
15630 "\n"
15631 msgstr ""
15632
15633 #. type: textblock
15634 #: ../src/guestfs-actions.pod:5606 ../fish/guestfish-actions.pod:3702
15635 msgid "This calls returns the contents of the file C<path> as a buffer."
15636 msgstr ""
15637
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:5609
15640 msgid ""
15641 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15642 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15643 "function is limited in the total size of file that can be handled."
15644 msgstr ""
15645
15646 #. type: textblock
15647 #: ../src/guestfs-actions.pod:5621
15648 msgid "(Added in 1.0.63)"
15649 msgstr ""
15650
15651 #. type: =head2
15652 #: ../src/guestfs-actions.pod:5623
15653 msgid "guestfs_read_lines"
15654 msgstr ""
15655
15656 #. type: verbatim
15657 #: ../src/guestfs-actions.pod:5625
15658 #, no-wrap
15659 msgid ""
15660 " char **\n"
15661 " guestfs_read_lines (guestfs_h *g,\n"
15662 "                     const char *path);\n"
15663 "\n"
15664 msgstr ""
15665
15666 #. type: textblock
15667 #: ../src/guestfs-actions.pod:5631 ../fish/guestfish-actions.pod:3719
15668 msgid ""
15669 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15670 "C<CRLF> character sequences are I<not> returned."
15671 msgstr ""
15672
15673 #. type: textblock
15674 #: ../src/guestfs-actions.pod:5634
15675 msgid ""
15676 "Note that this function cannot correctly handle binary files (specifically, "
15677 "files containing C<\\0> character which is treated as end of line).  For "
15678 "those you need to use the C<guestfs_read_file> function which has a more "
15679 "complex interface."
15680 msgstr ""
15681
15682 #. type: =head2
15683 #: ../src/guestfs-actions.pod:5645
15684 msgid "guestfs_readdir"
15685 msgstr ""
15686
15687 #. type: verbatim
15688 #: ../src/guestfs-actions.pod:5647
15689 #, no-wrap
15690 msgid ""
15691 " struct guestfs_dirent_list *\n"
15692 " guestfs_readdir (guestfs_h *g,\n"
15693 "                  const char *dir);\n"
15694 "\n"
15695 msgstr ""
15696
15697 #. type: textblock
15698 #: ../src/guestfs-actions.pod:5651 ../fish/guestfish-actions.pod:3731
15699 msgid "This returns the list of directory entries in directory C<dir>."
15700 msgstr ""
15701
15702 #. type: textblock
15703 #: ../src/guestfs-actions.pod:5653 ../fish/guestfish-actions.pod:3733
15704 msgid ""
15705 "All entries in the directory are returned, including C<.> and C<..>.  The "
15706 "entries are I<not> sorted, but returned in the same order as the underlying "
15707 "filesystem."
15708 msgstr ""
15709
15710 #. type: textblock
15711 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3737
15712 msgid ""
15713 "Also this call returns basic file type information about each file.  The "
15714 "C<ftyp> field will contain one of the following characters:"
15715 msgstr ""
15716
15717 #. type: =item
15718 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3742
15719 msgid "'b'"
15720 msgstr ""
15721
15722 #. type: textblock
15723 #: ../src/guestfs-actions.pod:5664 ../fish/guestfish-actions.pod:3744
15724 msgid "Block special"
15725 msgstr ""
15726
15727 #. type: =item
15728 #: ../src/guestfs-actions.pod:5666 ../fish/guestfish-actions.pod:3746
15729 msgid "'c'"
15730 msgstr ""
15731
15732 #. type: textblock
15733 #: ../src/guestfs-actions.pod:5668 ../fish/guestfish-actions.pod:3748
15734 msgid "Char special"
15735 msgstr ""
15736
15737 #. type: =item
15738 #: ../src/guestfs-actions.pod:5670 ../fish/guestfish-actions.pod:3750
15739 msgid "'d'"
15740 msgstr ""
15741
15742 #. type: textblock
15743 #: ../src/guestfs-actions.pod:5672 ../fish/guestfish-actions.pod:3752
15744 msgid "Directory"
15745 msgstr ""
15746
15747 #. type: =item
15748 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3754
15749 msgid "'f'"
15750 msgstr ""
15751
15752 #. type: textblock
15753 #: ../src/guestfs-actions.pod:5676 ../fish/guestfish-actions.pod:3756
15754 msgid "FIFO (named pipe)"
15755 msgstr ""
15756
15757 #. type: =item
15758 #: ../src/guestfs-actions.pod:5678 ../fish/guestfish-actions.pod:3758
15759 msgid "'l'"
15760 msgstr ""
15761
15762 #. type: textblock
15763 #: ../src/guestfs-actions.pod:5680 ../fish/guestfish-actions.pod:3760
15764 msgid "Symbolic link"
15765 msgstr ""
15766
15767 #. type: =item
15768 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3762
15769 msgid "'r'"
15770 msgstr ""
15771
15772 #. type: textblock
15773 #: ../src/guestfs-actions.pod:5684 ../fish/guestfish-actions.pod:3764
15774 msgid "Regular file"
15775 msgstr ""
15776
15777 #. type: =item
15778 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3766
15779 msgid "'s'"
15780 msgstr ""
15781
15782 #. type: textblock
15783 #: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3768
15784 msgid "Socket"
15785 msgstr ""
15786
15787 #. type: =item
15788 #: ../src/guestfs-actions.pod:5690 ../fish/guestfish-actions.pod:3770
15789 msgid "'u'"
15790 msgstr ""
15791
15792 #. type: textblock
15793 #: ../src/guestfs-actions.pod:5692 ../fish/guestfish-actions.pod:3772
15794 msgid "Unknown file type"
15795 msgstr ""
15796
15797 #. type: =item
15798 #: ../src/guestfs-actions.pod:5694 ../fish/guestfish-actions.pod:3774
15799 msgid "'?'"
15800 msgstr ""
15801
15802 #. type: textblock
15803 #: ../src/guestfs-actions.pod:5696 ../fish/guestfish-actions.pod:3776
15804 msgid ""
15805 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15806 msgstr ""
15807
15808 #. type: textblock
15809 #: ../src/guestfs-actions.pod:5701
15810 msgid ""
15811 "This function is primarily intended for use by programs.  To get a simple "
15812 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15813 "consumption, use C<guestfs_ll>."
15814 msgstr ""
15815
15816 #. type: textblock
15817 #: ../src/guestfs-actions.pod:5705
15818 msgid ""
15819 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15820 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15821 msgstr ""
15822
15823 #. type: =head2
15824 #: ../src/guestfs-actions.pod:5711
15825 msgid "guestfs_readlink"
15826 msgstr ""
15827
15828 #. type: verbatim
15829 #: ../src/guestfs-actions.pod:5713
15830 #, no-wrap
15831 msgid ""
15832 " char *\n"
15833 " guestfs_readlink (guestfs_h *g,\n"
15834 "                   const char *path);\n"
15835 "\n"
15836 msgstr ""
15837
15838 #. type: textblock
15839 #: ../src/guestfs-actions.pod:5717 ../fish/guestfish-actions.pod:3789
15840 msgid "This command reads the target of a symbolic link."
15841 msgstr ""
15842
15843 #. type: =head2
15844 #: ../src/guestfs-actions.pod:5724
15845 msgid "guestfs_readlinklist"
15846 msgstr ""
15847
15848 #. type: verbatim
15849 #: ../src/guestfs-actions.pod:5726
15850 #, no-wrap
15851 msgid ""
15852 " char **\n"
15853 " guestfs_readlinklist (guestfs_h *g,\n"
15854 "                       const char *path,\n"
15855 "                       char *const *names);\n"
15856 "\n"
15857 msgstr ""
15858
15859 #. type: textblock
15860 #: ../src/guestfs-actions.pod:5731 ../fish/guestfish-actions.pod:3795
15861 msgid ""
15862 "This call allows you to do a C<readlink> operation on multiple files, where "
15863 "all files are in the directory C<path>.  C<names> is the list of files from "
15864 "this directory."
15865 msgstr ""
15866
15867 #. type: textblock
15868 #: ../src/guestfs-actions.pod:5735 ../fish/guestfish-actions.pod:3799
15869 msgid ""
15870 "On return you get a list of strings, with a one-to-one correspondence to the "
15871 "C<names> list.  Each string is the value of the symbolic link."
15872 msgstr ""
15873
15874 #. type: textblock
15875 #: ../src/guestfs-actions.pod:5739 ../fish/guestfish-actions.pod:3803
15876 msgid ""
15877 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15878 "result string is the empty string C<\"\">.  However the whole operation is "
15879 "completed even if there were C<readlink(2)> errors, and so you can call this "
15880 "function with names where you don't know if they are symbolic links already "
15881 "(albeit slightly less efficient)."
15882 msgstr ""
15883
15884 #. type: textblock
15885 #: ../src/guestfs-actions.pod:5746 ../fish/guestfish-actions.pod:3810
15886 msgid ""
15887 "This call is intended for programs that want to efficiently list a directory "
15888 "contents without making many round-trips.  Very long directory listings "
15889 "might cause the protocol message size to be exceeded, causing this call to "
15890 "fail.  The caller must split up such requests into smaller groups of names."
15891 msgstr ""
15892
15893 #. type: =head2
15894 #: ../src/guestfs-actions.pod:5759
15895 msgid "guestfs_realpath"
15896 msgstr ""
15897
15898 #. type: verbatim
15899 #: ../src/guestfs-actions.pod:5761
15900 #, no-wrap
15901 msgid ""
15902 " char *\n"
15903 " guestfs_realpath (guestfs_h *g,\n"
15904 "                   const char *path);\n"
15905 "\n"
15906 msgstr ""
15907
15908 #. type: textblock
15909 #: ../src/guestfs-actions.pod:5765 ../fish/guestfish-actions.pod:3821
15910 msgid ""
15911 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15912 "has no C<.>, C<..> or symbolic link path elements."
15913 msgstr ""
15914
15915 #. type: =head2
15916 #: ../src/guestfs-actions.pod:5773
15917 msgid "guestfs_removexattr"
15918 msgstr ""
15919
15920 #. type: verbatim
15921 #: ../src/guestfs-actions.pod:5775
15922 #, no-wrap
15923 msgid ""
15924 " int\n"
15925 " guestfs_removexattr (guestfs_h *g,\n"
15926 "                      const char *xattr,\n"
15927 "                      const char *path);\n"
15928 "\n"
15929 msgstr ""
15930
15931 #. type: textblock
15932 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3828
15933 msgid ""
15934 "This call removes the extended attribute named C<xattr> of the file C<path>."
15935 msgstr ""
15936
15937 #. type: textblock
15938 #: ../src/guestfs-actions.pod:5783
15939 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15940 msgstr ""
15941
15942 #. type: =head2
15943 #: ../src/guestfs-actions.pod:5789
15944 msgid "guestfs_resize2fs"
15945 msgstr ""
15946
15947 #. type: verbatim
15948 #: ../src/guestfs-actions.pod:5791
15949 #, no-wrap
15950 msgid ""
15951 " int\n"
15952 " guestfs_resize2fs (guestfs_h *g,\n"
15953 "                    const char *device);\n"
15954 "\n"
15955 msgstr ""
15956
15957 #. type: textblock
15958 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3837
15959 msgid ""
15960 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15961 "underlying device."
15962 msgstr ""
15963
15964 #. type: textblock
15965 #: ../src/guestfs-actions.pod:5798
15966 msgid ""
15967 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15968 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15969 "sometimes gives an error about this and sometimes not.  In any case, it is "
15970 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15971 msgstr ""
15972
15973 #. type: =head2
15974 #: ../src/guestfs-actions.pod:5808
15975 msgid "guestfs_resize2fs_M"
15976 msgstr ""
15977
15978 #. type: verbatim
15979 #: ../src/guestfs-actions.pod:5810
15980 #, no-wrap
15981 msgid ""
15982 " int\n"
15983 " guestfs_resize2fs_M (guestfs_h *g,\n"
15984 "                      const char *device);\n"
15985 "\n"
15986 msgstr ""
15987
15988 #. type: textblock
15989 #: ../src/guestfs-actions.pod:5814
15990 msgid ""
15991 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15992 "resized to its minimum size.  This works like the I<-M> option to the "
15993 "C<resize2fs> command."
15994 msgstr ""
15995
15996 #. type: textblock
15997 #: ../src/guestfs-actions.pod:5818
15998 msgid ""
15999 "To get the resulting size of the filesystem you should call "
16000 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16001 "These two numbers, multiplied together, give the resulting size of the "
16002 "minimal filesystem in bytes."
16003 msgstr ""
16004
16005 #. type: =head2
16006 #: ../src/guestfs-actions.pod:5827
16007 msgid "guestfs_resize2fs_size"
16008 msgstr ""
16009
16010 #. type: verbatim
16011 #: ../src/guestfs-actions.pod:5829
16012 #, no-wrap
16013 msgid ""
16014 " int\n"
16015 " guestfs_resize2fs_size (guestfs_h *g,\n"
16016 "                         const char *device,\n"
16017 "                         int64_t size);\n"
16018 "\n"
16019 msgstr ""
16020
16021 #. type: textblock
16022 #: ../src/guestfs-actions.pod:5834
16023 msgid ""
16024 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16025 "to specify the new size (in bytes) explicitly."
16026 msgstr ""
16027
16028 #. type: =head2
16029 #: ../src/guestfs-actions.pod:5841
16030 msgid "guestfs_rm"
16031 msgstr ""
16032
16033 #. type: verbatim
16034 #: ../src/guestfs-actions.pod:5843
16035 #, no-wrap
16036 msgid ""
16037 " int\n"
16038 " guestfs_rm (guestfs_h *g,\n"
16039 "             const char *path);\n"
16040 "\n"
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:5847 ../fish/guestfish-actions.pod:3870
16045 msgid "Remove the single file C<path>."
16046 msgstr ""
16047
16048 #. type: =head2
16049 #: ../src/guestfs-actions.pod:5853
16050 msgid "guestfs_rm_rf"
16051 msgstr ""
16052
16053 #. type: verbatim
16054 #: ../src/guestfs-actions.pod:5855
16055 #, no-wrap
16056 msgid ""
16057 " int\n"
16058 " guestfs_rm_rf (guestfs_h *g,\n"
16059 "                const char *path);\n"
16060 "\n"
16061 msgstr ""
16062
16063 #. type: textblock
16064 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3876
16065 msgid ""
16066 "Remove the file or directory C<path>, recursively removing the contents if "
16067 "its a directory.  This is like the C<rm -rf> shell command."
16068 msgstr ""
16069
16070 #. type: =head2
16071 #: ../src/guestfs-actions.pod:5867
16072 msgid "guestfs_rmdir"
16073 msgstr ""
16074
16075 #. type: verbatim
16076 #: ../src/guestfs-actions.pod:5869
16077 #, no-wrap
16078 msgid ""
16079 " int\n"
16080 " guestfs_rmdir (guestfs_h *g,\n"
16081 "                const char *path);\n"
16082 "\n"
16083 msgstr ""
16084
16085 #. type: textblock
16086 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3884
16087 msgid "Remove the single directory C<path>."
16088 msgstr ""
16089
16090 #. type: =head2
16091 #: ../src/guestfs-actions.pod:5879
16092 msgid "guestfs_rmmountpoint"
16093 msgstr ""
16094
16095 #. type: verbatim
16096 #: ../src/guestfs-actions.pod:5881
16097 #, no-wrap
16098 msgid ""
16099 " int\n"
16100 " guestfs_rmmountpoint (guestfs_h *g,\n"
16101 "                       const char *exemptpath);\n"
16102 "\n"
16103 msgstr ""
16104
16105 #. type: textblock
16106 #: ../src/guestfs-actions.pod:5885
16107 msgid ""
16108 "This calls removes a mountpoint that was previously created with "
16109 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16110 msgstr ""
16111
16112 #. type: =head2
16113 #: ../src/guestfs-actions.pod:5893
16114 msgid "guestfs_scrub_device"
16115 msgstr ""
16116
16117 #. type: verbatim
16118 #: ../src/guestfs-actions.pod:5895
16119 #, no-wrap
16120 msgid ""
16121 " int\n"
16122 " guestfs_scrub_device (guestfs_h *g,\n"
16123 "                       const char *device);\n"
16124 "\n"
16125 msgstr ""
16126
16127 #. type: textblock
16128 #: ../src/guestfs-actions.pod:5899 ../fish/guestfish-actions.pod:3898
16129 msgid ""
16130 "This command writes patterns over C<device> to make data retrieval more "
16131 "difficult."
16132 msgstr ""
16133
16134 #. type: textblock
16135 #: ../src/guestfs-actions.pod:5902 ../src/guestfs-actions.pod:5923
16136 #: ../src/guestfs-actions.pod:5942 ../fish/guestfish-actions.pod:3901
16137 #: ../fish/guestfish-actions.pod:3916 ../fish/guestfish-actions.pod:3929
16138 msgid ""
16139 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16140 "more details."
16141 msgstr ""
16142
16143 #. type: textblock
16144 #: ../src/guestfs-actions.pod:5910 ../src/guestfs-actions.pod:5928
16145 #: ../src/guestfs-actions.pod:5947
16146 msgid "(Added in 1.0.52)"
16147 msgstr ""
16148
16149 #. type: =head2
16150 #: ../src/guestfs-actions.pod:5912
16151 msgid "guestfs_scrub_file"
16152 msgstr ""
16153
16154 #. type: verbatim
16155 #: ../src/guestfs-actions.pod:5914
16156 #, no-wrap
16157 msgid ""
16158 " int\n"
16159 " guestfs_scrub_file (guestfs_h *g,\n"
16160 "                     const char *file);\n"
16161 "\n"
16162 msgstr ""
16163
16164 #. type: textblock
16165 #: ../src/guestfs-actions.pod:5918 ../fish/guestfish-actions.pod:3911
16166 msgid ""
16167 "This command writes patterns over a file to make data retrieval more "
16168 "difficult."
16169 msgstr ""
16170
16171 #. type: textblock
16172 #: ../src/guestfs-actions.pod:5921 ../fish/guestfish-actions.pod:3914
16173 msgid "The file is I<removed> after scrubbing."
16174 msgstr ""
16175
16176 #. type: =head2
16177 #: ../src/guestfs-actions.pod:5930
16178 msgid "guestfs_scrub_freespace"
16179 msgstr ""
16180
16181 #. type: verbatim
16182 #: ../src/guestfs-actions.pod:5932
16183 #, no-wrap
16184 msgid ""
16185 " int\n"
16186 " guestfs_scrub_freespace (guestfs_h *g,\n"
16187 "                          const char *dir);\n"
16188 "\n"
16189 msgstr ""
16190
16191 #. type: textblock
16192 #: ../src/guestfs-actions.pod:5936
16193 msgid ""
16194 "This command creates the directory C<dir> and then fills it with files until "
16195 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16196 "and deletes them.  The intention is to scrub any free space on the partition "
16197 "containing C<dir>."
16198 msgstr ""
16199
16200 #. type: =head2
16201 #: ../src/guestfs-actions.pod:5949
16202 msgid "guestfs_set_append"
16203 msgstr ""
16204
16205 #. type: verbatim
16206 #: ../src/guestfs-actions.pod:5951
16207 #, no-wrap
16208 msgid ""
16209 " int\n"
16210 " guestfs_set_append (guestfs_h *g,\n"
16211 "                     const char *append);\n"
16212 "\n"
16213 msgstr ""
16214
16215 #. type: textblock
16216 #: ../src/guestfs-actions.pod:5955 ../fish/guestfish-actions.pod:3938
16217 msgid ""
16218 "This function is used to add additional options to the guest kernel command "
16219 "line."
16220 msgstr ""
16221
16222 #. type: textblock
16223 #: ../src/guestfs-actions.pod:5958 ../fish/guestfish-actions.pod:3941
16224 msgid ""
16225 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16226 "environment variable."
16227 msgstr ""
16228
16229 #. type: textblock
16230 #: ../src/guestfs-actions.pod:5961 ../fish/guestfish-actions.pod:3944
16231 msgid ""
16232 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16233 "(libguestfs always adds a few of its own)."
16234 msgstr ""
16235
16236 #. type: =head2
16237 #: ../src/guestfs-actions.pod:5968
16238 msgid "guestfs_set_attach_method"
16239 msgstr ""
16240
16241 #. type: verbatim
16242 #: ../src/guestfs-actions.pod:5970
16243 #, no-wrap
16244 msgid ""
16245 " int\n"
16246 " guestfs_set_attach_method (guestfs_h *g,\n"
16247 "                            const char *attachmethod);\n"
16248 "\n"
16249 msgstr ""
16250
16251 #. type: textblock
16252 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:3953
16253 msgid ""
16254 "Set the method that libguestfs uses to connect to the back end guestfsd "
16255 "daemon.  Possible methods are:"
16256 msgstr ""
16257
16258 #. type: textblock
16259 #: ../src/guestfs-actions.pod:5981 ../fish/guestfish-actions.pod:3960
16260 msgid ""
16261 "Launch an appliance and connect to it.  This is the ordinary method and the "
16262 "default."
16263 msgstr ""
16264
16265 #. type: =item
16266 #: ../src/guestfs-actions.pod:5984 ../fish/guestfish-actions.pod:3963
16267 msgid "C<unix:I<path>>"
16268 msgstr ""
16269
16270 #. type: textblock
16271 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:3965
16272 msgid "Connect to the Unix domain socket I<path>."
16273 msgstr ""
16274
16275 #. type: textblock
16276 #: ../src/guestfs-actions.pod:5988 ../fish/guestfish-actions.pod:3967
16277 msgid ""
16278 "This method lets you connect to an existing daemon or (using virtio-serial) "
16279 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16280 "RUNNING DAEMONS>."
16281 msgstr ""
16282
16283 #. type: =head2
16284 #: ../src/guestfs-actions.pod:5998
16285 msgid "guestfs_set_autosync"
16286 msgstr ""
16287
16288 #. type: verbatim
16289 #: ../src/guestfs-actions.pod:6000
16290 #, no-wrap
16291 msgid ""
16292 " int\n"
16293 " guestfs_set_autosync (guestfs_h *g,\n"
16294 "                       int autosync);\n"
16295 "\n"
16296 msgstr ""
16297
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:6004 ../fish/guestfish-actions.pod:3979
16300 msgid ""
16301 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16302 "effort attempt to make filesystems consistent and synchronized when the "
16303 "handle is closed (also if the program exits without closing handles)."
16304 msgstr ""
16305
16306 #. type: textblock
16307 #: ../src/guestfs-actions.pod:6009 ../fish/guestfish-actions.pod:3984
16308 msgid ""
16309 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16310 "disabled by default)."
16311 msgstr ""
16312
16313 #. type: =head2
16314 #: ../src/guestfs-actions.pod:6016
16315 msgid "guestfs_set_direct"
16316 msgstr ""
16317
16318 #. type: verbatim
16319 #: ../src/guestfs-actions.pod:6018
16320 #, no-wrap
16321 msgid ""
16322 " int\n"
16323 " guestfs_set_direct (guestfs_h *g,\n"
16324 "                     int direct);\n"
16325 "\n"
16326 msgstr ""
16327
16328 #. type: textblock
16329 #: ../src/guestfs-actions.pod:6022 ../fish/guestfish-actions.pod:3993
16330 msgid ""
16331 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16332 "passed directly through to the appliance once it is launched."
16333 msgstr ""
16334
16335 #. type: textblock
16336 #: ../src/guestfs-actions.pod:6026
16337 msgid ""
16338 "One consequence of this is that log messages aren't caught by the library "
16339 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16340 "stdout."
16341 msgstr ""
16342
16343 #. type: textblock
16344 #: ../src/guestfs-actions.pod:6030 ../fish/guestfish-actions.pod:4001
16345 msgid "You probably don't want to use this unless you know what you are doing."
16346 msgstr ""
16347
16348 #. type: textblock
16349 #: ../src/guestfs-actions.pod:6033 ../fish/guestfish-actions.pod:4004
16350 msgid "The default is disabled."
16351 msgstr ""
16352
16353 #. type: =head2
16354 #: ../src/guestfs-actions.pod:6039
16355 msgid "guestfs_set_e2label"
16356 msgstr ""
16357
16358 #. type: verbatim
16359 #: ../src/guestfs-actions.pod:6041
16360 #, no-wrap
16361 msgid ""
16362 " int\n"
16363 " guestfs_set_e2label (guestfs_h *g,\n"
16364 "                      const char *device,\n"
16365 "                      const char *label);\n"
16366 "\n"
16367 msgstr ""
16368
16369 #. type: textblock
16370 #: ../src/guestfs-actions.pod:6046 ../fish/guestfish-actions.pod:4010
16371 msgid ""
16372 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16373 "C<label>.  Filesystem labels are limited to 16 characters."
16374 msgstr ""
16375
16376 #. type: textblock
16377 #: ../src/guestfs-actions.pod:6050
16378 msgid ""
16379 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16380 "the existing label on a filesystem."
16381 msgstr ""
16382
16383 #. type: =head2
16384 #: ../src/guestfs-actions.pod:6057
16385 msgid "guestfs_set_e2uuid"
16386 msgstr ""
16387
16388 #. type: verbatim
16389 #: ../src/guestfs-actions.pod:6059
16390 #, no-wrap
16391 msgid ""
16392 " int\n"
16393 " guestfs_set_e2uuid (guestfs_h *g,\n"
16394 "                     const char *device,\n"
16395 "                     const char *uuid);\n"
16396 "\n"
16397 msgstr ""
16398
16399 #. type: textblock
16400 #: ../src/guestfs-actions.pod:6064 ../fish/guestfish-actions.pod:4021
16401 msgid ""
16402 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16403 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16404 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16405 msgstr ""
16406
16407 #. type: textblock
16408 #: ../src/guestfs-actions.pod:6069
16409 msgid ""
16410 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16411 "the existing UUID of a filesystem."
16412 msgstr ""
16413
16414 #. type: =head2
16415 #: ../src/guestfs-actions.pod:6076
16416 msgid "guestfs_set_memsize"
16417 msgstr ""
16418
16419 #. type: verbatim
16420 #: ../src/guestfs-actions.pod:6078
16421 #, no-wrap
16422 msgid ""
16423 " int\n"
16424 " guestfs_set_memsize (guestfs_h *g,\n"
16425 "                      int memsize);\n"
16426 "\n"
16427 msgstr ""
16428
16429 #. type: textblock
16430 #: ../src/guestfs-actions.pod:6082
16431 msgid ""
16432 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16433 "This only has any effect if called before C<guestfs_launch>."
16434 msgstr ""
16435
16436 #. type: textblock
16437 #: ../src/guestfs-actions.pod:6086 ../fish/guestfish-actions.pod:4039
16438 msgid ""
16439 "You can also change this by setting the environment variable "
16440 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16441 msgstr ""
16442
16443 #. type: =head2
16444 #: ../src/guestfs-actions.pod:6097
16445 msgid "guestfs_set_network"
16446 msgstr ""
16447
16448 #. type: verbatim
16449 #: ../src/guestfs-actions.pod:6099
16450 #, no-wrap
16451 msgid ""
16452 " int\n"
16453 " guestfs_set_network (guestfs_h *g,\n"
16454 "                      int network);\n"
16455 "\n"
16456 msgstr ""
16457
16458 #. type: textblock
16459 #: ../src/guestfs-actions.pod:6103 ../fish/guestfish-actions.pod:4052
16460 msgid ""
16461 "If C<network> is true, then the network is enabled in the libguestfs "
16462 "appliance.  The default is false."
16463 msgstr ""
16464
16465 #. type: textblock
16466 #: ../src/guestfs-actions.pod:6106 ../fish/guestfish-actions.pod:4055
16467 msgid ""
16468 "This affects whether commands are able to access the network (see L<guestfs"
16469 "(3)/RUNNING COMMANDS>)."
16470 msgstr ""
16471
16472 #. type: textblock
16473 #: ../src/guestfs-actions.pod:6109
16474 msgid ""
16475 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16476 "effect."
16477 msgstr ""
16478
16479 #. type: =head2
16480 #: ../src/guestfs-actions.pod:6116
16481 msgid "guestfs_set_path"
16482 msgstr ""
16483
16484 #. type: verbatim
16485 #: ../src/guestfs-actions.pod:6118
16486 #, no-wrap
16487 msgid ""
16488 " int\n"
16489 " guestfs_set_path (guestfs_h *g,\n"
16490 "                   const char *searchpath);\n"
16491 "\n"
16492 msgstr ""
16493
16494 #. type: textblock
16495 #: ../src/guestfs-actions.pod:6122 ../fish/guestfish-actions.pod:4067
16496 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16497 msgstr ""
16498
16499 #. type: textblock
16500 #: ../src/guestfs-actions.pod:6124 ../fish/guestfish-actions.pod:4069
16501 msgid ""
16502 "The default is C<$libdir/guestfs> unless overridden by setting "
16503 "C<LIBGUESTFS_PATH> environment variable."
16504 msgstr ""
16505
16506 #. type: textblock
16507 #: ../src/guestfs-actions.pod:6127 ../fish/guestfish-actions.pod:4072
16508 msgid "Setting C<path> to C<NULL> restores the default path."
16509 msgstr ""
16510
16511 #. type: =head2
16512 #: ../src/guestfs-actions.pod:6133
16513 msgid "guestfs_set_qemu"
16514 msgstr ""
16515
16516 #. type: verbatim
16517 #: ../src/guestfs-actions.pod:6135
16518 #, no-wrap
16519 msgid ""
16520 " int\n"
16521 " guestfs_set_qemu (guestfs_h *g,\n"
16522 "                   const char *qemu);\n"
16523 "\n"
16524 msgstr ""
16525
16526 #. type: textblock
16527 #: ../src/guestfs-actions.pod:6139 ../fish/guestfish-actions.pod:4080
16528 msgid "Set the qemu binary that we will use."
16529 msgstr ""
16530
16531 #. type: textblock
16532 #: ../src/guestfs-actions.pod:6141 ../fish/guestfish-actions.pod:4082
16533 msgid ""
16534 "The default is chosen when the library was compiled by the configure script."
16535 msgstr ""
16536
16537 #. type: textblock
16538 #: ../src/guestfs-actions.pod:6144 ../fish/guestfish-actions.pod:4085
16539 msgid ""
16540 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16541 "variable."
16542 msgstr ""
16543
16544 #. type: textblock
16545 #: ../src/guestfs-actions.pod:6147 ../fish/guestfish-actions.pod:4088
16546 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16547 msgstr ""
16548
16549 #. type: textblock
16550 #: ../src/guestfs-actions.pod:6149 ../fish/guestfish-actions.pod:4090
16551 msgid ""
16552 "Note that you should call this function as early as possible after creating "
16553 "the handle.  This is because some pre-launch operations depend on testing "
16554 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16555 "don't retest features, and so you might see inconsistent results.  Using the "
16556 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16557 "the qemu binary at the same time as the handle is created."
16558 msgstr ""
16559
16560 #. type: =head2
16561 #: ../src/guestfs-actions.pod:6161
16562 msgid "guestfs_set_recovery_proc"
16563 msgstr ""
16564
16565 #. type: verbatim
16566 #: ../src/guestfs-actions.pod:6163
16567 #, no-wrap
16568 msgid ""
16569 " int\n"
16570 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16571 "                            int recoveryproc);\n"
16572 "\n"
16573 msgstr ""
16574
16575 #. type: textblock
16576 #: ../src/guestfs-actions.pod:6167
16577 msgid ""
16578 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16579 "not create a recovery process.  The purpose of the recovery process is to "
16580 "stop runaway qemu processes in the case where the main program aborts "
16581 "abruptly."
16582 msgstr ""
16583
16584 #. type: textblock
16585 #: ../src/guestfs-actions.pod:6172
16586 msgid ""
16587 "This only has any effect if called before C<guestfs_launch>, and the default "
16588 "is true."
16589 msgstr ""
16590
16591 #. type: textblock
16592 #: ../src/guestfs-actions.pod:6175 ../fish/guestfish-actions.pod:4112
16593 msgid ""
16594 "About the only time when you would want to disable this is if the main "
16595 "process will fork itself into the background (\"daemonize\" itself).  In "
16596 "this case the recovery process thinks that the main program has disappeared "
16597 "and so kills qemu, which is not very helpful."
16598 msgstr ""
16599
16600 #. type: =head2
16601 #: ../src/guestfs-actions.pod:6185
16602 msgid "guestfs_set_selinux"
16603 msgstr ""
16604
16605 #. type: verbatim
16606 #: ../src/guestfs-actions.pod:6187
16607 #, no-wrap
16608 msgid ""
16609 " int\n"
16610 " guestfs_set_selinux (guestfs_h *g,\n"
16611 "                      int selinux);\n"
16612 "\n"
16613 msgstr ""
16614
16615 #. type: textblock
16616 #: ../src/guestfs-actions.pod:6191 ../fish/guestfish-actions.pod:4124
16617 msgid ""
16618 "This sets the selinux flag that is passed to the appliance at boot time.  "
16619 "The default is C<selinux=0> (disabled)."
16620 msgstr ""
16621
16622 #. type: textblock
16623 #: ../src/guestfs-actions.pod:6194 ../fish/guestfish-actions.pod:4127
16624 msgid ""
16625 "Note that if SELinux is enabled, it is always in Permissive mode "
16626 "(C<enforcing=0>)."
16627 msgstr ""
16628
16629 #. type: =head2
16630 #: ../src/guestfs-actions.pod:6204
16631 msgid "guestfs_set_trace"
16632 msgstr ""
16633
16634 #. type: verbatim
16635 #: ../src/guestfs-actions.pod:6206
16636 #, no-wrap
16637 msgid ""
16638 " int\n"
16639 " guestfs_set_trace (guestfs_h *g,\n"
16640 "                    int trace);\n"
16641 "\n"
16642 msgstr ""
16643
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:6210 ../fish/guestfish-actions.pod:4139
16646 msgid ""
16647 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16648 "return values are traced."
16649 msgstr ""
16650
16651 #. type: textblock
16652 #: ../src/guestfs-actions.pod:6213 ../fish/guestfish-actions.pod:4142
16653 msgid ""
16654 "If you want to trace C API calls into libguestfs (and other libraries) then "
16655 "possibly a better way is to use the external ltrace(1) command."
16656 msgstr ""
16657
16658 #. type: textblock
16659 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4146
16660 msgid ""
16661 "Command traces are disabled unless the environment variable "
16662 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16663 msgstr ""
16664
16665 #. type: textblock
16666 #: ../src/guestfs-actions.pod:6220
16667 msgid ""
16668 "Trace messages are normally sent to C<stderr>, unless you register a "
16669 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16670 msgstr ""
16671
16672 #. type: =head2
16673 #: ../src/guestfs-actions.pod:6228
16674 msgid "guestfs_set_verbose"
16675 msgstr ""
16676
16677 #. type: verbatim
16678 #: ../src/guestfs-actions.pod:6230
16679 #, no-wrap
16680 msgid ""
16681 " int\n"
16682 " guestfs_set_verbose (guestfs_h *g,\n"
16683 "                      int verbose);\n"
16684 "\n"
16685 msgstr ""
16686
16687 #. type: textblock
16688 #: ../src/guestfs-actions.pod:6234 ../fish/guestfish-actions.pod:4159
16689 msgid "If C<verbose> is true, this turns on verbose messages."
16690 msgstr ""
16691
16692 #. type: textblock
16693 #: ../src/guestfs-actions.pod:6236 ../fish/guestfish-actions.pod:4161
16694 msgid ""
16695 "Verbose messages are disabled unless the environment variable "
16696 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16697 msgstr ""
16698
16699 #. type: textblock
16700 #: ../src/guestfs-actions.pod:6239
16701 msgid ""
16702 "Verbose messages are normally sent to C<stderr>, unless you register a "
16703 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16704 msgstr ""
16705
16706 #. type: =head2
16707 #: ../src/guestfs-actions.pod:6247
16708 msgid "guestfs_setcon"
16709 msgstr ""
16710
16711 #. type: verbatim
16712 #: ../src/guestfs-actions.pod:6249
16713 #, no-wrap
16714 msgid ""
16715 " int\n"
16716 " guestfs_setcon (guestfs_h *g,\n"
16717 "                 const char *context);\n"
16718 "\n"
16719 msgstr ""
16720
16721 #. type: textblock
16722 #: ../src/guestfs-actions.pod:6253 ../fish/guestfish-actions.pod:4172
16723 msgid ""
16724 "This sets the SELinux security context of the daemon to the string "
16725 "C<context>."
16726 msgstr ""
16727
16728 #. type: textblock
16729 #: ../src/guestfs-actions.pod:6256 ../fish/guestfish-actions.pod:4175
16730 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16731 msgstr ""
16732
16733 #. type: =head2
16734 #: ../src/guestfs-actions.pod:6262
16735 msgid "guestfs_setxattr"
16736 msgstr ""
16737
16738 #. type: verbatim
16739 #: ../src/guestfs-actions.pod:6264
16740 #, no-wrap
16741 msgid ""
16742 " int\n"
16743 " guestfs_setxattr (guestfs_h *g,\n"
16744 "                   const char *xattr,\n"
16745 "                   const char *val,\n"
16746 "                   int vallen,\n"
16747 "                   const char *path);\n"
16748 "\n"
16749 msgstr ""
16750
16751 #. type: textblock
16752 #: ../src/guestfs-actions.pod:6271 ../fish/guestfish-actions.pod:4181
16753 msgid ""
16754 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16755 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16756 msgstr ""
16757
16758 #. type: textblock
16759 #: ../src/guestfs-actions.pod:6275
16760 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16761 msgstr ""
16762
16763 #. type: =head2
16764 #: ../src/guestfs-actions.pod:6281
16765 msgid "guestfs_sfdisk"
16766 msgstr ""
16767
16768 #. type: verbatim
16769 #: ../src/guestfs-actions.pod:6283
16770 #, no-wrap
16771 msgid ""
16772 " int\n"
16773 " guestfs_sfdisk (guestfs_h *g,\n"
16774 "                 const char *device,\n"
16775 "                 int cyls,\n"
16776 "                 int heads,\n"
16777 "                 int sectors,\n"
16778 "                 char *const *lines);\n"
16779 "\n"
16780 msgstr ""
16781
16782 #. type: textblock
16783 #: ../src/guestfs-actions.pod:6291 ../fish/guestfish-actions.pod:4191
16784 msgid ""
16785 "This is a direct interface to the L<sfdisk(8)> program for creating "
16786 "partitions on block devices."
16787 msgstr ""
16788
16789 #. type: textblock
16790 #: ../src/guestfs-actions.pod:6294 ../fish/guestfish-actions.pod:4194
16791 msgid "C<device> should be a block device, for example C</dev/sda>."
16792 msgstr ""
16793
16794 #. type: textblock
16795 #: ../src/guestfs-actions.pod:6296 ../fish/guestfish-actions.pod:4196
16796 msgid ""
16797 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16798 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16799 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16800 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16801 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16802 "the kernel) cannot work out the right geometry and you will need to tell it."
16803 msgstr ""
16804
16805 #. type: textblock
16806 #: ../src/guestfs-actions.pod:6304 ../fish/guestfish-actions.pod:4204
16807 msgid ""
16808 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16809 "refer to the L<sfdisk(8)> manpage."
16810 msgstr ""
16811
16812 #. type: textblock
16813 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4207
16814 msgid ""
16815 "To create a single partition occupying the whole disk, you would pass "
16816 "C<lines> as a single element list, when the single element being the string "
16817 "C<,> (comma)."
16818 msgstr ""
16819
16820 #. type: textblock
16821 #: ../src/guestfs-actions.pod:6311
16822 msgid ""
16823 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16824 msgstr ""
16825
16826 #. type: textblock
16827 #: ../src/guestfs-actions.pod:6319 ../src/guestfs-actions.pod:6349
16828 #: ../src/guestfs-actions.pod:6382 ../fish/guestfish-actions.pod:4217
16829 #: ../fish/guestfish-actions.pod:4240 ../fish/guestfish-actions.pod:4262
16830 msgid ""
16831 "This function is deprecated.  In new code, use the C<part_add> call instead."
16832 msgstr ""
16833
16834 #. type: =head2
16835 #: ../src/guestfs-actions.pod:6328
16836 msgid "guestfs_sfdiskM"
16837 msgstr ""
16838
16839 #. type: verbatim
16840 #: ../src/guestfs-actions.pod:6330
16841 #, no-wrap
16842 msgid ""
16843 " int\n"
16844 " guestfs_sfdiskM (guestfs_h *g,\n"
16845 "                  const char *device,\n"
16846 "                  char *const *lines);\n"
16847 "\n"
16848 msgstr ""
16849
16850 #. type: textblock
16851 #: ../src/guestfs-actions.pod:6335
16852 msgid ""
16853 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16854 "partition sizes are specified in megabytes only (rounded to the nearest "
16855 "cylinder) and you don't need to specify the cyls, heads and sectors "
16856 "parameters which were rarely if ever used anyway."
16857 msgstr ""
16858
16859 #. type: textblock
16860 #: ../src/guestfs-actions.pod:6341
16861 msgid ""
16862 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16863 "C<guestfs_part_disk>"
16864 msgstr ""
16865
16866 #. type: =head2
16867 #: ../src/guestfs-actions.pod:6358
16868 msgid "guestfs_sfdisk_N"
16869 msgstr ""
16870
16871 #. type: verbatim
16872 #: ../src/guestfs-actions.pod:6360
16873 #, no-wrap
16874 msgid ""
16875 " int\n"
16876 " guestfs_sfdisk_N (guestfs_h *g,\n"
16877 "                   const char *device,\n"
16878 "                   int partnum,\n"
16879 "                   int cyls,\n"
16880 "                   int heads,\n"
16881 "                   int sectors,\n"
16882 "                   const char *line);\n"
16883 "\n"
16884 msgstr ""
16885
16886 #. type: textblock
16887 #: ../src/guestfs-actions.pod:6369 ../fish/guestfish-actions.pod:4251
16888 msgid ""
16889 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16890 "(note: C<n> counts from 1)."
16891 msgstr ""
16892
16893 #. type: textblock
16894 #: ../src/guestfs-actions.pod:6372
16895 msgid ""
16896 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16897 "for the cyls/heads/sectors parameters."
16898 msgstr ""
16899
16900 #. type: textblock
16901 #: ../src/guestfs-actions.pod:6375
16902 msgid "See also: C<guestfs_part_add>"
16903 msgstr ""
16904
16905 #. type: =head2
16906 #: ../src/guestfs-actions.pod:6391
16907 msgid "guestfs_sfdisk_disk_geometry"
16908 msgstr ""
16909
16910 #. type: verbatim
16911 #: ../src/guestfs-actions.pod:6393
16912 #, no-wrap
16913 msgid ""
16914 " char *\n"
16915 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16916 "                               const char *device);\n"
16917 "\n"
16918 msgstr ""
16919
16920 #. type: textblock
16921 #: ../src/guestfs-actions.pod:6397
16922 msgid ""
16923 "This displays the disk geometry of C<device> read from the partition table.  "
16924 "Especially in the case where the underlying block device has been resized, "
16925 "this can be different from the kernel's idea of the geometry (see "
16926 "C<guestfs_sfdisk_kernel_geometry>)."
16927 msgstr ""
16928
16929 #. type: textblock
16930 #: ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:6418
16931 #: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:4287
16932 msgid "The result is in human-readable format, and not designed to be parsed."
16933 msgstr ""
16934
16935 #. type: =head2
16936 #: ../src/guestfs-actions.pod:6410
16937 msgid "guestfs_sfdisk_kernel_geometry"
16938 msgstr ""
16939
16940 #. type: verbatim
16941 #: ../src/guestfs-actions.pod:6412
16942 #, no-wrap
16943 msgid ""
16944 " char *\n"
16945 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16946 "                                 const char *device);\n"
16947 "\n"
16948 msgstr ""
16949
16950 #. type: textblock
16951 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4285
16952 msgid "This displays the kernel's idea of the geometry of C<device>."
16953 msgstr ""
16954
16955 #. type: =head2
16956 #: ../src/guestfs-actions.pod:6426
16957 msgid "guestfs_sfdisk_l"
16958 msgstr ""
16959
16960 #. type: verbatim
16961 #: ../src/guestfs-actions.pod:6428
16962 #, no-wrap
16963 msgid ""
16964 " char *\n"
16965 " guestfs_sfdisk_l (guestfs_h *g,\n"
16966 "                   const char *device);\n"
16967 "\n"
16968 msgstr ""
16969
16970 #. type: textblock
16971 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4294
16972 msgid ""
16973 "This displays the partition table on C<device>, in the human-readable output "
16974 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16975 msgstr ""
16976
16977 #. type: textblock
16978 #: ../src/guestfs-actions.pod:6436
16979 msgid "See also: C<guestfs_part_list>"
16980 msgstr ""
16981
16982 #. type: textblock
16983 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4300
16984 msgid ""
16985 "This function is deprecated.  In new code, use the C<part_list> call instead."
16986 msgstr ""
16987
16988 #. type: =head2
16989 #: ../src/guestfs-actions.pod:6450
16990 msgid "guestfs_sh"
16991 msgstr ""
16992
16993 #. type: verbatim
16994 #: ../src/guestfs-actions.pod:6452
16995 #, no-wrap
16996 msgid ""
16997 " char *\n"
16998 " guestfs_sh (guestfs_h *g,\n"
16999 "             const char *command);\n"
17000 "\n"
17001 msgstr ""
17002
17003 #. type: textblock
17004 #: ../src/guestfs-actions.pod:6456 ../fish/guestfish-actions.pod:4311
17005 msgid ""
17006 "This call runs a command from the guest filesystem via the guest's C</bin/"
17007 "sh>."
17008 msgstr ""
17009
17010 #. type: textblock
17011 #: ../src/guestfs-actions.pod:6459
17012 msgid "This is like C<guestfs_command>, but passes the command to:"
17013 msgstr ""
17014
17015 #. type: verbatim
17016 #: ../src/guestfs-actions.pod:6461 ../fish/guestfish-actions.pod:4316
17017 #, no-wrap
17018 msgid ""
17019 " /bin/sh -c \"command\"\n"
17020 "\n"
17021 msgstr ""
17022
17023 #. type: textblock
17024 #: ../src/guestfs-actions.pod:6463 ../fish/guestfish-actions.pod:4318
17025 msgid ""
17026 "Depending on the guest's shell, this usually results in wildcards being "
17027 "expanded, shell expressions being interpolated and so on."
17028 msgstr ""
17029
17030 #. type: textblock
17031 #: ../src/guestfs-actions.pod:6467
17032 msgid "All the provisos about C<guestfs_command> apply to this call."
17033 msgstr ""
17034
17035 #. type: =head2
17036 #: ../src/guestfs-actions.pod:6474
17037 msgid "guestfs_sh_lines"
17038 msgstr ""
17039
17040 #. type: verbatim
17041 #: ../src/guestfs-actions.pod:6476
17042 #, no-wrap
17043 msgid ""
17044 " char **\n"
17045 " guestfs_sh_lines (guestfs_h *g,\n"
17046 "                   const char *command);\n"
17047 "\n"
17048 msgstr ""
17049
17050 #. type: textblock
17051 #: ../src/guestfs-actions.pod:6480
17052 msgid ""
17053 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17054 "lines."
17055 msgstr ""
17056
17057 #. type: textblock
17058 #: ../src/guestfs-actions.pod:6483
17059 msgid "See also: C<guestfs_command_lines>"
17060 msgstr ""
17061
17062 #. type: =head2
17063 #: ../src/guestfs-actions.pod:6491
17064 msgid "guestfs_sleep"
17065 msgstr ""
17066
17067 #. type: verbatim
17068 #: ../src/guestfs-actions.pod:6493
17069 #, no-wrap
17070 msgid ""
17071 " int\n"
17072 " guestfs_sleep (guestfs_h *g,\n"
17073 "                int secs);\n"
17074 "\n"
17075 msgstr ""
17076
17077 #. type: textblock
17078 #: ../src/guestfs-actions.pod:6497 ../fish/guestfish-actions.pod:4337
17079 msgid "Sleep for C<secs> seconds."
17080 msgstr ""
17081
17082 #. type: textblock
17083 #: ../src/guestfs-actions.pod:6501
17084 msgid "(Added in 1.0.41)"
17085 msgstr ""
17086
17087 #. type: =head2
17088 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-structs.pod:109
17089 msgid "guestfs_stat"
17090 msgstr ""
17091
17092 #. type: verbatim
17093 #: ../src/guestfs-actions.pod:6505
17094 #, no-wrap
17095 msgid ""
17096 " struct guestfs_stat *\n"
17097 " guestfs_stat (guestfs_h *g,\n"
17098 "               const char *path);\n"
17099 "\n"
17100 msgstr ""
17101
17102 #. type: textblock
17103 #: ../src/guestfs-actions.pod:6511 ../fish/guestfish-actions.pod:4345
17104 msgid "This is the same as the C<stat(2)> system call."
17105 msgstr ""
17106
17107 #. type: =head2
17108 #: ../src/guestfs-actions.pod:6519 ../src/guestfs-structs.pod:135
17109 msgid "guestfs_statvfs"
17110 msgstr ""
17111
17112 #. type: verbatim
17113 #: ../src/guestfs-actions.pod:6521
17114 #, no-wrap
17115 msgid ""
17116 " struct guestfs_statvfs *\n"
17117 " guestfs_statvfs (guestfs_h *g,\n"
17118 "                  const char *path);\n"
17119 "\n"
17120 msgstr ""
17121
17122 #. type: textblock
17123 #: ../src/guestfs-actions.pod:6525 ../fish/guestfish-actions.pod:4351
17124 msgid ""
17125 "Returns file system statistics for any mounted file system.  C<path> should "
17126 "be a file or directory in the mounted file system (typically it is the mount "
17127 "point itself, but it doesn't need to be)."
17128 msgstr ""
17129
17130 #. type: textblock
17131 #: ../src/guestfs-actions.pod:6529 ../fish/guestfish-actions.pod:4355
17132 msgid "This is the same as the C<statvfs(2)> system call."
17133 msgstr ""
17134
17135 #. type: textblock
17136 #: ../src/guestfs-actions.pod:6531
17137 msgid ""
17138 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
17139 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17140 msgstr ""
17141
17142 #. type: =head2
17143 #: ../src/guestfs-actions.pod:6537
17144 msgid "guestfs_strings"
17145 msgstr ""
17146
17147 #. type: verbatim
17148 #: ../src/guestfs-actions.pod:6539
17149 #, no-wrap
17150 msgid ""
17151 " char **\n"
17152 " guestfs_strings (guestfs_h *g,\n"
17153 "                  const char *path);\n"
17154 "\n"
17155 msgstr ""
17156
17157 #. type: textblock
17158 #: ../src/guestfs-actions.pod:6543 ../fish/guestfish-actions.pod:4361
17159 msgid ""
17160 "This runs the L<strings(1)> command on a file and returns the list of "
17161 "printable strings found."
17162 msgstr ""
17163
17164 #. type: =head2
17165 #: ../src/guestfs-actions.pod:6555
17166 msgid "guestfs_strings_e"
17167 msgstr ""
17168
17169 #. type: verbatim
17170 #: ../src/guestfs-actions.pod:6557
17171 #, no-wrap
17172 msgid ""
17173 " char **\n"
17174 " guestfs_strings_e (guestfs_h *g,\n"
17175 "                    const char *encoding,\n"
17176 "                    const char *path);\n"
17177 "\n"
17178 msgstr ""
17179
17180 #. type: textblock
17181 #: ../src/guestfs-actions.pod:6562
17182 msgid ""
17183 "This is like the C<guestfs_strings> command, but allows you to specify the "
17184 "encoding of strings that are looked for in the source file C<path>."
17185 msgstr ""
17186
17187 #. type: textblock
17188 #: ../src/guestfs-actions.pod:6566 ../fish/guestfish-actions.pod:4375
17189 msgid "Allowed encodings are:"
17190 msgstr ""
17191
17192 #. type: =item
17193 #: ../src/guestfs-actions.pod:6570 ../fish/guestfish-actions.pod:4379
17194 msgid "s"
17195 msgstr ""
17196
17197 #. type: textblock
17198 #: ../src/guestfs-actions.pod:6572
17199 msgid ""
17200 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17201 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17202 msgstr ""
17203
17204 #. type: =item
17205 #: ../src/guestfs-actions.pod:6575 ../fish/guestfish-actions.pod:4384
17206 msgid "S"
17207 msgstr ""
17208
17209 #. type: textblock
17210 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4386
17211 msgid "Single 8-bit-byte characters."
17212 msgstr ""
17213
17214 #. type: =item
17215 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4388
17216 msgid "b"
17217 msgstr ""
17218
17219 #. type: textblock
17220 #: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4390
17221 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17222 msgstr ""
17223
17224 #. type: =item
17225 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4393
17226 msgid "l (lower case letter L)"
17227 msgstr ""
17228
17229 #. type: textblock
17230 #: ../src/guestfs-actions.pod:6586 ../fish/guestfish-actions.pod:4395
17231 msgid ""
17232 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17233 "examining binaries in Windows guests."
17234 msgstr ""
17235
17236 #. type: =item
17237 #: ../src/guestfs-actions.pod:6589 ../fish/guestfish-actions.pod:4398
17238 msgid "B"
17239 msgstr ""
17240
17241 #. type: textblock
17242 #: ../src/guestfs-actions.pod:6591 ../fish/guestfish-actions.pod:4400
17243 msgid "32-bit big endian such as UCS-4BE."
17244 msgstr ""
17245
17246 #. type: =item
17247 #: ../src/guestfs-actions.pod:6593 ../fish/guestfish-actions.pod:4402
17248 msgid "L"
17249 msgstr ""
17250
17251 #. type: textblock
17252 #: ../src/guestfs-actions.pod:6595 ../fish/guestfish-actions.pod:4404
17253 msgid "32-bit little endian such as UCS-4LE."
17254 msgstr ""
17255
17256 #. type: textblock
17257 #: ../src/guestfs-actions.pod:6599 ../fish/guestfish-actions.pod:4408
17258 msgid "The returned strings are transcoded to UTF-8."
17259 msgstr ""
17260
17261 #. type: =head2
17262 #: ../src/guestfs-actions.pod:6610
17263 msgid "guestfs_swapoff_device"
17264 msgstr ""
17265
17266 #. type: verbatim
17267 #: ../src/guestfs-actions.pod:6612
17268 #, no-wrap
17269 msgid ""
17270 " int\n"
17271 " guestfs_swapoff_device (guestfs_h *g,\n"
17272 "                         const char *device);\n"
17273 "\n"
17274 msgstr ""
17275
17276 #. type: textblock
17277 #: ../src/guestfs-actions.pod:6616
17278 msgid ""
17279 "This command disables the libguestfs appliance swap device or partition "
17280 "named C<device>.  See C<guestfs_swapon_device>."
17281 msgstr ""
17282
17283 #. type: =head2
17284 #: ../src/guestfs-actions.pod:6624
17285 msgid "guestfs_swapoff_file"
17286 msgstr ""
17287
17288 #. type: verbatim
17289 #: ../src/guestfs-actions.pod:6626
17290 #, no-wrap
17291 msgid ""
17292 " int\n"
17293 " guestfs_swapoff_file (guestfs_h *g,\n"
17294 "                       const char *file);\n"
17295 "\n"
17296 msgstr ""
17297
17298 #. type: textblock
17299 #: ../src/guestfs-actions.pod:6630 ../fish/guestfish-actions.pod:4425
17300 msgid "This command disables the libguestfs appliance swap on file."
17301 msgstr ""
17302
17303 #. type: =head2
17304 #: ../src/guestfs-actions.pod:6636
17305 msgid "guestfs_swapoff_label"
17306 msgstr ""
17307
17308 #. type: verbatim
17309 #: ../src/guestfs-actions.pod:6638
17310 #, no-wrap
17311 msgid ""
17312 " int\n"
17313 " guestfs_swapoff_label (guestfs_h *g,\n"
17314 "                        const char *label);\n"
17315 "\n"
17316 msgstr ""
17317
17318 #. type: textblock
17319 #: ../src/guestfs-actions.pod:6642 ../fish/guestfish-actions.pod:4431
17320 msgid ""
17321 "This command disables the libguestfs appliance swap on labeled swap "
17322 "partition."
17323 msgstr ""
17324
17325 #. type: =head2
17326 #: ../src/guestfs-actions.pod:6649
17327 msgid "guestfs_swapoff_uuid"
17328 msgstr ""
17329
17330 #. type: verbatim
17331 #: ../src/guestfs-actions.pod:6651
17332 #, no-wrap
17333 msgid ""
17334 " int\n"
17335 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17336 "                       const char *uuid);\n"
17337 "\n"
17338 msgstr ""
17339
17340 #. type: textblock
17341 #: ../src/guestfs-actions.pod:6655 ../fish/guestfish-actions.pod:4438
17342 msgid ""
17343 "This command disables the libguestfs appliance swap partition with the given "
17344 "UUID."
17345 msgstr ""
17346
17347 #. type: =head2
17348 #: ../src/guestfs-actions.pod:6662
17349 msgid "guestfs_swapon_device"
17350 msgstr ""
17351
17352 #. type: verbatim
17353 #: ../src/guestfs-actions.pod:6664
17354 #, no-wrap
17355 msgid ""
17356 " int\n"
17357 " guestfs_swapon_device (guestfs_h *g,\n"
17358 "                        const char *device);\n"
17359 "\n"
17360 msgstr ""
17361
17362 #. type: textblock
17363 #: ../src/guestfs-actions.pod:6668
17364 msgid ""
17365 "This command enables the libguestfs appliance to use the swap device or "
17366 "partition named C<device>.  The increased memory is made available for all "
17367 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17368 msgstr ""
17369
17370 #. type: textblock
17371 #: ../src/guestfs-actions.pod:6673 ../fish/guestfish-actions.pod:4450
17372 msgid ""
17373 "Note that you should not swap to existing guest swap partitions unless you "
17374 "know what you are doing.  They may contain hibernation information, or other "
17375 "information that the guest doesn't want you to trash.  You also risk leaking "
17376 "information about the host to the guest this way.  Instead, attach a new "
17377 "host device to the guest and swap on that."
17378 msgstr ""
17379
17380 #. type: =head2
17381 #: ../src/guestfs-actions.pod:6684
17382 msgid "guestfs_swapon_file"
17383 msgstr ""
17384
17385 #. type: verbatim
17386 #: ../src/guestfs-actions.pod:6686
17387 #, no-wrap
17388 msgid ""
17389 " int\n"
17390 " guestfs_swapon_file (guestfs_h *g,\n"
17391 "                      const char *file);\n"
17392 "\n"
17393 msgstr ""
17394
17395 #. type: textblock
17396 #: ../src/guestfs-actions.pod:6690
17397 msgid ""
17398 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17399 "notes."
17400 msgstr ""
17401
17402 #. type: =head2
17403 #: ../src/guestfs-actions.pod:6697
17404 msgid "guestfs_swapon_label"
17405 msgstr ""
17406
17407 #. type: verbatim
17408 #: ../src/guestfs-actions.pod:6699
17409 #, no-wrap
17410 msgid ""
17411 " int\n"
17412 " guestfs_swapon_label (guestfs_h *g,\n"
17413 "                       const char *label);\n"
17414 "\n"
17415 msgstr ""
17416
17417 #. type: textblock
17418 #: ../src/guestfs-actions.pod:6703
17419 msgid ""
17420 "This command enables swap to a labeled swap partition.  See "
17421 "C<guestfs_swapon_device> for other notes."
17422 msgstr ""
17423
17424 #. type: =head2
17425 #: ../src/guestfs-actions.pod:6710
17426 msgid "guestfs_swapon_uuid"
17427 msgstr ""
17428
17429 #. type: verbatim
17430 #: ../src/guestfs-actions.pod:6712
17431 #, no-wrap
17432 msgid ""
17433 " int\n"
17434 " guestfs_swapon_uuid (guestfs_h *g,\n"
17435 "                      const char *uuid);\n"
17436 "\n"
17437 msgstr ""
17438
17439 #. type: textblock
17440 #: ../src/guestfs-actions.pod:6716
17441 msgid ""
17442 "This command enables swap to a swap partition with the given UUID.  See "
17443 "C<guestfs_swapon_device> for other notes."
17444 msgstr ""
17445
17446 #. type: =head2
17447 #: ../src/guestfs-actions.pod:6723
17448 msgid "guestfs_sync"
17449 msgstr ""
17450
17451 #. type: verbatim
17452 #: ../src/guestfs-actions.pod:6725
17453 #, no-wrap
17454 msgid ""
17455 " int\n"
17456 " guestfs_sync (guestfs_h *g);\n"
17457 "\n"
17458 msgstr ""
17459
17460 #. type: textblock
17461 #: ../src/guestfs-actions.pod:6728 ../fish/guestfish-actions.pod:4482
17462 msgid ""
17463 "This syncs the disk, so that any writes are flushed through to the "
17464 "underlying disk image."
17465 msgstr ""
17466
17467 #. type: textblock
17468 #: ../src/guestfs-actions.pod:6731 ../fish/guestfish-actions.pod:4485
17469 msgid ""
17470 "You should always call this if you have modified a disk image, before "
17471 "closing the handle."
17472 msgstr ""
17473
17474 #. type: =head2
17475 #: ../src/guestfs-actions.pod:6738
17476 msgid "guestfs_tail"
17477 msgstr ""
17478
17479 #. type: verbatim
17480 #: ../src/guestfs-actions.pod:6740
17481 #, no-wrap
17482 msgid ""
17483 " char **\n"
17484 " guestfs_tail (guestfs_h *g,\n"
17485 "               const char *path);\n"
17486 "\n"
17487 msgstr ""
17488
17489 #. type: textblock
17490 #: ../src/guestfs-actions.pod:6744 ../fish/guestfish-actions.pod:4492
17491 msgid ""
17492 "This command returns up to the last 10 lines of a file as a list of strings."
17493 msgstr ""
17494
17495 #. type: =head2
17496 #: ../src/guestfs-actions.pod:6756
17497 msgid "guestfs_tail_n"
17498 msgstr ""
17499
17500 #. type: verbatim
17501 #: ../src/guestfs-actions.pod:6758
17502 #, no-wrap
17503 msgid ""
17504 " char **\n"
17505 " guestfs_tail_n (guestfs_h *g,\n"
17506 "                 int nrlines,\n"
17507 "                 const char *path);\n"
17508 "\n"
17509 msgstr ""
17510
17511 #. type: textblock
17512 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4502
17513 msgid ""
17514 "If the parameter C<nrlines> is a positive number, this returns the last "
17515 "C<nrlines> lines of the file C<path>."
17516 msgstr ""
17517
17518 #. type: textblock
17519 #: ../src/guestfs-actions.pod:6766 ../fish/guestfish-actions.pod:4505
17520 msgid ""
17521 "If the parameter C<nrlines> is a negative number, this returns lines from "
17522 "the file C<path>, starting with the C<-nrlines>th line."
17523 msgstr ""
17524
17525 #. type: =head2
17526 #: ../src/guestfs-actions.pod:6780
17527 msgid "guestfs_tar_in"
17528 msgstr ""
17529
17530 #. type: verbatim
17531 #: ../src/guestfs-actions.pod:6782
17532 #, no-wrap
17533 msgid ""
17534 " int\n"
17535 " guestfs_tar_in (guestfs_h *g,\n"
17536 "                 const char *tarfile,\n"
17537 "                 const char *directory);\n"
17538 "\n"
17539 msgstr ""
17540
17541 #. type: textblock
17542 #: ../src/guestfs-actions.pod:6787 ../fish/guestfish-actions.pod:4517
17543 msgid ""
17544 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17545 "tar file) into C<directory>."
17546 msgstr ""
17547
17548 #. type: textblock
17549 #: ../src/guestfs-actions.pod:6790
17550 msgid ""
17551 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17552 msgstr ""
17553
17554 #. type: textblock
17555 #: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:6812
17556 #: ../src/guestfs-actions.pod:6828 ../src/guestfs-actions.pod:6844
17557 msgid "(Added in 1.0.3)"
17558 msgstr ""
17559
17560 #. type: =head2
17561 #: ../src/guestfs-actions.pod:6797
17562 msgid "guestfs_tar_out"
17563 msgstr ""
17564
17565 #. type: verbatim
17566 #: ../src/guestfs-actions.pod:6799
17567 #, no-wrap
17568 msgid ""
17569 " int\n"
17570 " guestfs_tar_out (guestfs_h *g,\n"
17571 "                  const char *directory,\n"
17572 "                  const char *tarfile);\n"
17573 "\n"
17574 msgstr ""
17575
17576 #. type: textblock
17577 #: ../src/guestfs-actions.pod:6804 ../fish/guestfish-actions.pod:4529
17578 msgid ""
17579 "This command packs the contents of C<directory> and downloads it to local "
17580 "file C<tarfile>."
17581 msgstr ""
17582
17583 #. type: textblock
17584 #: ../src/guestfs-actions.pod:6807
17585 msgid ""
17586 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17587 "C<guestfs_txz_out>."
17588 msgstr ""
17589
17590 #. type: =head2
17591 #: ../src/guestfs-actions.pod:6814
17592 msgid "guestfs_tgz_in"
17593 msgstr ""
17594
17595 #. type: verbatim
17596 #: ../src/guestfs-actions.pod:6816
17597 #, no-wrap
17598 msgid ""
17599 " int\n"
17600 " guestfs_tgz_in (guestfs_h *g,\n"
17601 "                 const char *tarball,\n"
17602 "                 const char *directory);\n"
17603 "\n"
17604 msgstr ""
17605
17606 #. type: textblock
17607 #: ../src/guestfs-actions.pod:6821 ../fish/guestfish-actions.pod:4541
17608 msgid ""
17609 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17610 "tar file) into C<directory>."
17611 msgstr ""
17612
17613 #. type: textblock
17614 #: ../src/guestfs-actions.pod:6824
17615 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17616 msgstr ""
17617
17618 #. type: =head2
17619 #: ../src/guestfs-actions.pod:6830
17620 msgid "guestfs_tgz_out"
17621 msgstr ""
17622
17623 #. type: verbatim
17624 #: ../src/guestfs-actions.pod:6832
17625 #, no-wrap
17626 msgid ""
17627 " int\n"
17628 " guestfs_tgz_out (guestfs_h *g,\n"
17629 "                  const char *directory,\n"
17630 "                  const char *tarball);\n"
17631 "\n"
17632 msgstr ""
17633
17634 #. type: textblock
17635 #: ../src/guestfs-actions.pod:6837 ../fish/guestfish-actions.pod:4552
17636 msgid ""
17637 "This command packs the contents of C<directory> and downloads it to local "
17638 "file C<tarball>."
17639 msgstr ""
17640
17641 #. type: textblock
17642 #: ../src/guestfs-actions.pod:6840
17643 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17644 msgstr ""
17645
17646 #. type: =head2
17647 #: ../src/guestfs-actions.pod:6846
17648 msgid "guestfs_touch"
17649 msgstr ""
17650
17651 #. type: verbatim
17652 #: ../src/guestfs-actions.pod:6848
17653 #, no-wrap
17654 msgid ""
17655 " int\n"
17656 " guestfs_touch (guestfs_h *g,\n"
17657 "                const char *path);\n"
17658 "\n"
17659 msgstr ""
17660
17661 #. type: textblock
17662 #: ../src/guestfs-actions.pod:6852 ../fish/guestfish-actions.pod:4563
17663 msgid ""
17664 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17665 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17666 "length file."
17667 msgstr ""
17668
17669 #. type: textblock
17670 #: ../src/guestfs-actions.pod:6856 ../fish/guestfish-actions.pod:4567
17671 msgid ""
17672 "This command only works on regular files, and will fail on other file types "
17673 "such as directories, symbolic links, block special etc."
17674 msgstr ""
17675
17676 #. type: =head2
17677 #: ../src/guestfs-actions.pod:6863
17678 msgid "guestfs_truncate"
17679 msgstr ""
17680
17681 #. type: verbatim
17682 #: ../src/guestfs-actions.pod:6865
17683 #, no-wrap
17684 msgid ""
17685 " int\n"
17686 " guestfs_truncate (guestfs_h *g,\n"
17687 "                   const char *path);\n"
17688 "\n"
17689 msgstr ""
17690
17691 #. type: textblock
17692 #: ../src/guestfs-actions.pod:6869 ../fish/guestfish-actions.pod:4574
17693 msgid ""
17694 "This command truncates C<path> to a zero-length file.  The file must exist "
17695 "already."
17696 msgstr ""
17697
17698 #. type: =head2
17699 #: ../src/guestfs-actions.pod:6876
17700 msgid "guestfs_truncate_size"
17701 msgstr ""
17702
17703 #. type: verbatim
17704 #: ../src/guestfs-actions.pod:6878
17705 #, no-wrap
17706 msgid ""
17707 " int\n"
17708 " guestfs_truncate_size (guestfs_h *g,\n"
17709 "                        const char *path,\n"
17710 "                        int64_t size);\n"
17711 "\n"
17712 msgstr ""
17713
17714 #. type: textblock
17715 #: ../src/guestfs-actions.pod:6883 ../fish/guestfish-actions.pod:4581
17716 msgid ""
17717 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17718 "already."
17719 msgstr ""
17720
17721 #. type: textblock
17722 #: ../src/guestfs-actions.pod:6886
17723 msgid ""
17724 "If the current file size is less than C<size> then the file is extended to "
17725 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17726 "blocks are not allocated for the file until you write to it).  To create a "
17727 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17728 msgstr ""
17729
17730 #. type: =head2
17731 #: ../src/guestfs-actions.pod:6896
17732 msgid "guestfs_tune2fs_l"
17733 msgstr ""
17734
17735 #. type: verbatim
17736 #: ../src/guestfs-actions.pod:6898
17737 #, no-wrap
17738 msgid ""
17739 " char **\n"
17740 " guestfs_tune2fs_l (guestfs_h *g,\n"
17741 "                    const char *device);\n"
17742 "\n"
17743 msgstr ""
17744
17745 #. type: textblock
17746 #: ../src/guestfs-actions.pod:6902 ../fish/guestfish-actions.pod:4594
17747 msgid ""
17748 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17749 "C<device>."
17750 msgstr ""
17751
17752 #. type: textblock
17753 #: ../src/guestfs-actions.pod:6905 ../fish/guestfish-actions.pod:4597
17754 msgid ""
17755 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17756 "for more details.  The list of fields returned isn't clearly defined, and "
17757 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17758 "and the filesystem itself."
17759 msgstr ""
17760
17761 #. type: =head2
17762 #: ../src/guestfs-actions.pod:6918
17763 msgid "guestfs_txz_in"
17764 msgstr ""
17765
17766 #. type: verbatim
17767 #: ../src/guestfs-actions.pod:6920
17768 #, no-wrap
17769 msgid ""
17770 " int\n"
17771 " guestfs_txz_in (guestfs_h *g,\n"
17772 "                 const char *tarball,\n"
17773 "                 const char *directory);\n"
17774 "\n"
17775 msgstr ""
17776
17777 #. type: textblock
17778 #: ../src/guestfs-actions.pod:6925 ../fish/guestfish-actions.pod:4606
17779 msgid ""
17780 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17781 "tar file) into C<directory>."
17782 msgstr ""
17783
17784 #. type: =head2
17785 #: ../src/guestfs-actions.pod:6932
17786 msgid "guestfs_txz_out"
17787 msgstr ""
17788
17789 #. type: verbatim
17790 #: ../src/guestfs-actions.pod:6934
17791 #, no-wrap
17792 msgid ""
17793 " int\n"
17794 " guestfs_txz_out (guestfs_h *g,\n"
17795 "                  const char *directory,\n"
17796 "                  const char *tarball);\n"
17797 "\n"
17798 msgstr ""
17799
17800 #. type: textblock
17801 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4615
17802 msgid ""
17803 "This command packs the contents of C<directory> and downloads it to local "
17804 "file C<tarball> (as an xz compressed tar archive)."
17805 msgstr ""
17806
17807 #. type: =head2
17808 #: ../src/guestfs-actions.pod:6946
17809 msgid "guestfs_umask"
17810 msgstr ""
17811
17812 #. type: verbatim
17813 #: ../src/guestfs-actions.pod:6948
17814 #, no-wrap
17815 msgid ""
17816 " int\n"
17817 " guestfs_umask (guestfs_h *g,\n"
17818 "                int mask);\n"
17819 "\n"
17820 msgstr ""
17821
17822 #. type: textblock
17823 #: ../src/guestfs-actions.pod:6952 ../fish/guestfish-actions.pod:4624
17824 msgid ""
17825 "This function sets the mask used for creating new files and device nodes to "
17826 "C<mask & 0777>."
17827 msgstr ""
17828
17829 #. type: textblock
17830 #: ../src/guestfs-actions.pod:6955 ../fish/guestfish-actions.pod:4627
17831 msgid ""
17832 "Typical umask values would be C<022> which creates new files with "
17833 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17834 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17835 msgstr ""
17836
17837 #. type: textblock
17838 #: ../src/guestfs-actions.pod:6960 ../fish/guestfish-actions.pod:4632
17839 msgid ""
17840 "The default umask is C<022>.  This is important because it means that "
17841 "directories and device nodes will be created with C<0644> or C<0755> mode "
17842 "even if you specify C<0777>."
17843 msgstr ""
17844
17845 #. type: textblock
17846 #: ../src/guestfs-actions.pod:6964
17847 msgid ""
17848 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17849 "C<guestfs_mkdir>."
17850 msgstr ""
17851
17852 #. type: textblock
17853 #: ../src/guestfs-actions.pod:6967 ../fish/guestfish-actions.pod:4639
17854 msgid "This call returns the previous umask."
17855 msgstr ""
17856
17857 #. type: =head2
17858 #: ../src/guestfs-actions.pod:6973
17859 msgid "guestfs_umount"
17860 msgstr ""
17861
17862 #. type: verbatim
17863 #: ../src/guestfs-actions.pod:6975
17864 #, no-wrap
17865 msgid ""
17866 " int\n"
17867 " guestfs_umount (guestfs_h *g,\n"
17868 "                 const char *pathordevice);\n"
17869 "\n"
17870 msgstr ""
17871
17872 #. type: textblock
17873 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4647
17874 msgid ""
17875 "This unmounts the given filesystem.  The filesystem may be specified either "
17876 "by its mountpoint (path) or the device which contains the filesystem."
17877 msgstr ""
17878
17879 #. type: =head2
17880 #: ../src/guestfs-actions.pod:6987
17881 msgid "guestfs_umount_all"
17882 msgstr ""
17883
17884 #. type: verbatim
17885 #: ../src/guestfs-actions.pod:6989
17886 #, no-wrap
17887 msgid ""
17888 " int\n"
17889 " guestfs_umount_all (guestfs_h *g);\n"
17890 "\n"
17891 msgstr ""
17892
17893 #. type: textblock
17894 #: ../src/guestfs-actions.pod:6992 ../fish/guestfish-actions.pod:4657
17895 msgid "This unmounts all mounted filesystems."
17896 msgstr ""
17897
17898 #. type: textblock
17899 #: ../src/guestfs-actions.pod:6994 ../fish/guestfish-actions.pod:4659
17900 msgid "Some internal mounts are not unmounted by this call."
17901 msgstr ""
17902
17903 #. type: =head2
17904 #: ../src/guestfs-actions.pod:7000
17905 msgid "guestfs_upload"
17906 msgstr ""
17907
17908 #. type: verbatim
17909 #: ../src/guestfs-actions.pod:7002
17910 #, no-wrap
17911 msgid ""
17912 " int\n"
17913 " guestfs_upload (guestfs_h *g,\n"
17914 "                 const char *filename,\n"
17915 "                 const char *remotefilename);\n"
17916 "\n"
17917 msgstr ""
17918
17919 #. type: textblock
17920 #: ../src/guestfs-actions.pod:7007 ../src/guestfs-actions.pod:7031
17921 #: ../fish/guestfish-actions.pod:4665 ../fish/guestfish-actions.pod:4678
17922 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17923 msgstr ""
17924
17925 #. type: textblock
17926 #: ../src/guestfs-actions.pod:7012
17927 msgid "See also C<guestfs_download>."
17928 msgstr ""
17929
17930 #. type: =head2
17931 #: ../src/guestfs-actions.pod:7023
17932 msgid "guestfs_upload_offset"
17933 msgstr ""
17934
17935 #. type: verbatim
17936 #: ../src/guestfs-actions.pod:7025
17937 #, no-wrap
17938 msgid ""
17939 " int\n"
17940 " guestfs_upload_offset (guestfs_h *g,\n"
17941 "                        const char *filename,\n"
17942 "                        const char *remotefilename,\n"
17943 "                        int64_t offset);\n"
17944 "\n"
17945 msgstr ""
17946
17947 #. type: textblock
17948 #: ../src/guestfs-actions.pod:7034 ../fish/guestfish-actions.pod:4681
17949 msgid ""
17950 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17951 "The intention is to overwrite parts of existing files or devices, although "
17952 "if a non-existant file is specified then it is created with a \"hole\" "
17953 "before C<offset>.  The size of the data written is implicit in the size of "
17954 "the source C<filename>."
17955 msgstr ""
17956
17957 #. type: textblock
17958 #: ../src/guestfs-actions.pod:7041
17959 msgid ""
17960 "Note that there is no limit on the amount of data that can be uploaded with "
17961 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17962 "full amount unless an error occurs."
17963 msgstr ""
17964
17965 #. type: textblock
17966 #: ../src/guestfs-actions.pod:7046
17967 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17968 msgstr ""
17969
17970 #. type: =head2
17971 #: ../src/guestfs-actions.pod:7057
17972 msgid "guestfs_utimens"
17973 msgstr ""
17974
17975 #. type: verbatim
17976 #: ../src/guestfs-actions.pod:7059
17977 #, no-wrap
17978 msgid ""
17979 " int\n"
17980 " guestfs_utimens (guestfs_h *g,\n"
17981 "                  const char *path,\n"
17982 "                  int64_t atsecs,\n"
17983 "                  int64_t atnsecs,\n"
17984 "                  int64_t mtsecs,\n"
17985 "                  int64_t mtnsecs);\n"
17986 "\n"
17987 msgstr ""
17988
17989 #. type: textblock
17990 #: ../src/guestfs-actions.pod:7067 ../fish/guestfish-actions.pod:4701
17991 msgid "This command sets the timestamps of a file with nanosecond precision."
17992 msgstr ""
17993
17994 #. type: textblock
17995 #: ../src/guestfs-actions.pod:7070 ../fish/guestfish-actions.pod:4704
17996 msgid ""
17997 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17998 "from the epoch."
17999 msgstr ""
18000
18001 #. type: textblock
18002 #: ../src/guestfs-actions.pod:7073 ../fish/guestfish-actions.pod:4707
18003 msgid ""
18004 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18005 "nanoseconds from the epoch."
18006 msgstr ""
18007
18008 #. type: textblock
18009 #: ../src/guestfs-actions.pod:7076 ../fish/guestfish-actions.pod:4710
18010 msgid ""
18011 "If the C<*nsecs> field contains the special value C<-1> then the "
18012 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18013 "ignored in this case)."
18014 msgstr ""
18015
18016 #. type: textblock
18017 #: ../src/guestfs-actions.pod:7080 ../fish/guestfish-actions.pod:4714
18018 msgid ""
18019 "If the C<*nsecs> field contains the special value C<-2> then the "
18020 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18021 "in this case)."
18022 msgstr ""
18023
18024 #. type: =head2
18025 #: ../src/guestfs-actions.pod:7088 ../src/guestfs-structs.pod:175
18026 msgid "guestfs_version"
18027 msgstr ""
18028
18029 #. type: verbatim
18030 #: ../src/guestfs-actions.pod:7090
18031 #, no-wrap
18032 msgid ""
18033 " struct guestfs_version *\n"
18034 " guestfs_version (guestfs_h *g);\n"
18035 "\n"
18036 msgstr ""
18037
18038 #. type: textblock
18039 #: ../src/guestfs-actions.pod:7093 ../fish/guestfish-actions.pod:4722
18040 msgid ""
18041 "Return the libguestfs version number that the program is linked against."
18042 msgstr ""
18043
18044 #. type: textblock
18045 #: ../src/guestfs-actions.pod:7096 ../fish/guestfish-actions.pod:4725
18046 msgid ""
18047 "Note that because of dynamic linking this is not necessarily the version of "
18048 "libguestfs that you compiled against.  You can compile the program, and then "
18049 "at runtime dynamically link against a completely different C<libguestfs.so> "
18050 "library."
18051 msgstr ""
18052
18053 #. type: textblock
18054 #: ../src/guestfs-actions.pod:7101 ../fish/guestfish-actions.pod:4730
18055 msgid ""
18056 "This call was added in version C<1.0.58>.  In previous versions of "
18057 "libguestfs there was no way to get the version number.  From C code you can "
18058 "use dynamic linker functions to find out if this symbol exists (if it "
18059 "doesn't, then it's an earlier version)."
18060 msgstr ""
18061
18062 #. type: textblock
18063 #: ../src/guestfs-actions.pod:7107 ../fish/guestfish-actions.pod:4736
18064 msgid ""
18065 "The call returns a structure with four elements.  The first three (C<major>, "
18066 "C<minor> and C<release>) are numbers and correspond to the usual version "
18067 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18068 "but may be used for distro-specific information."
18069 msgstr ""
18070
18071 #. type: textblock
18072 #: ../src/guestfs-actions.pod:7113 ../fish/guestfish-actions.pod:4742
18073 msgid ""
18074 "To construct the original version string: C<$major.$minor.$release$extra>"
18075 msgstr ""
18076
18077 #. type: textblock
18078 #: ../src/guestfs-actions.pod:7116 ../fish/guestfish-actions.pod:4745
18079 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18080 msgstr ""
18081
18082 #. type: textblock
18083 #: ../src/guestfs-actions.pod:7118
18084 msgid ""
18085 "I<Note:> Don't use this call to test for availability of features.  In "
18086 "enterprise distributions we backport features from later versions into "
18087 "earlier versions, making this an unreliable way to test for features.  Use "
18088 "C<guestfs_available> instead."
18089 msgstr ""
18090
18091 #. type: textblock
18092 #: ../src/guestfs-actions.pod:7124
18093 msgid ""
18094 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
18095 "error.  I<The caller must call C<guestfs_free_version> after use>."
18096 msgstr ""
18097
18098 #. type: textblock
18099 #: ../src/guestfs-actions.pod:7128
18100 msgid "(Added in 1.0.58)"
18101 msgstr ""
18102
18103 #. type: =head2
18104 #: ../src/guestfs-actions.pod:7130
18105 msgid "guestfs_vfs_label"
18106 msgstr ""
18107
18108 #. type: verbatim
18109 #: ../src/guestfs-actions.pod:7132
18110 #, no-wrap
18111 msgid ""
18112 " char *\n"
18113 " guestfs_vfs_label (guestfs_h *g,\n"
18114 "                    const char *device);\n"
18115 "\n"
18116 msgstr ""
18117
18118 #. type: textblock
18119 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4757
18120 msgid "This returns the filesystem label of the filesystem on C<device>."
18121 msgstr ""
18122
18123 #. type: textblock
18124 #: ../src/guestfs-actions.pod:7139 ../fish/guestfish-actions.pod:4760
18125 msgid "If the filesystem is unlabeled, this returns the empty string."
18126 msgstr ""
18127
18128 #. type: textblock
18129 #: ../src/guestfs-actions.pod:7141
18130 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18131 msgstr ""
18132
18133 #. type: textblock
18134 #: ../src/guestfs-actions.pod:7146 ../src/guestfs-actions.pod:7183
18135 msgid "(Added in 1.3.18)"
18136 msgstr ""
18137
18138 #. type: =head2
18139 #: ../src/guestfs-actions.pod:7148
18140 msgid "guestfs_vfs_type"
18141 msgstr ""
18142
18143 #. type: verbatim
18144 #: ../src/guestfs-actions.pod:7150
18145 #, no-wrap
18146 msgid ""
18147 " char *\n"
18148 " guestfs_vfs_type (guestfs_h *g,\n"
18149 "                   const char *device);\n"
18150 "\n"
18151 msgstr ""
18152
18153 #. type: textblock
18154 #: ../src/guestfs-actions.pod:7154 ../fish/guestfish-actions.pod:4768
18155 msgid ""
18156 "This command gets the filesystem type corresponding to the filesystem on "
18157 "C<device>."
18158 msgstr ""
18159
18160 #. type: textblock
18161 #: ../src/guestfs-actions.pod:7157 ../fish/guestfish-actions.pod:4771
18162 msgid ""
18163 "For most filesystems, the result is the name of the Linux VFS module which "
18164 "would be used to mount this filesystem if you mounted it without specifying "
18165 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18166 msgstr ""
18167
18168 #. type: =head2
18169 #: ../src/guestfs-actions.pod:7167
18170 msgid "guestfs_vfs_uuid"
18171 msgstr ""
18172
18173 #. type: verbatim
18174 #: ../src/guestfs-actions.pod:7169
18175 #, no-wrap
18176 msgid ""
18177 " char *\n"
18178 " guestfs_vfs_uuid (guestfs_h *g,\n"
18179 "                   const char *device);\n"
18180 "\n"
18181 msgstr ""
18182
18183 #. type: textblock
18184 #: ../src/guestfs-actions.pod:7173 ../fish/guestfish-actions.pod:4780
18185 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18186 msgstr ""
18187
18188 #. type: textblock
18189 #: ../src/guestfs-actions.pod:7176 ../fish/guestfish-actions.pod:4783
18190 msgid "If the filesystem does not have a UUID, this returns the empty string."
18191 msgstr ""
18192
18193 #. type: textblock
18194 #: ../src/guestfs-actions.pod:7178
18195 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18196 msgstr ""
18197
18198 #. type: =head2
18199 #: ../src/guestfs-actions.pod:7185
18200 msgid "guestfs_vg_activate"
18201 msgstr ""
18202
18203 #. type: verbatim
18204 #: ../src/guestfs-actions.pod:7187
18205 #, no-wrap
18206 msgid ""
18207 " int\n"
18208 " guestfs_vg_activate (guestfs_h *g,\n"
18209 "                      int activate,\n"
18210 "                      char *const *volgroups);\n"
18211 "\n"
18212 msgstr ""
18213
18214 #. type: textblock
18215 #: ../src/guestfs-actions.pod:7192 ../fish/guestfish-actions.pod:4791
18216 msgid ""
18217 "This command activates or (if C<activate> is false) deactivates all logical "
18218 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
18219 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
18220 "deactivated, then those devices disappear."
18221 msgstr ""
18222
18223 #. type: textblock
18224 #: ../src/guestfs-actions.pod:7198 ../fish/guestfish-actions.pod:4797
18225 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18226 msgstr ""
18227
18228 #. type: textblock
18229 #: ../src/guestfs-actions.pod:7200 ../fish/guestfish-actions.pod:4799
18230 msgid ""
18231 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18232 "activated or deactivated."
18233 msgstr ""
18234
18235 #. type: =head2
18236 #: ../src/guestfs-actions.pod:7207
18237 msgid "guestfs_vg_activate_all"
18238 msgstr ""
18239
18240 #. type: verbatim
18241 #: ../src/guestfs-actions.pod:7209
18242 #, no-wrap
18243 msgid ""
18244 " int\n"
18245 " guestfs_vg_activate_all (guestfs_h *g,\n"
18246 "                          int activate);\n"
18247 "\n"
18248 msgstr ""
18249
18250 #. type: textblock
18251 #: ../src/guestfs-actions.pod:7213 ../fish/guestfish-actions.pod:4806
18252 msgid ""
18253 "This command activates or (if C<activate> is false) deactivates all logical "
18254 "volumes in all volume groups.  If activated, then they are made known to the "
18255 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
18256 "those devices disappear."
18257 msgstr ""
18258
18259 #. type: textblock
18260 #: ../src/guestfs-actions.pod:7219 ../fish/guestfish-actions.pod:4812
18261 msgid "This command is the same as running C<vgchange -a y|n>"
18262 msgstr ""
18263
18264 #. type: =head2
18265 #: ../src/guestfs-actions.pod:7225
18266 msgid "guestfs_vgcreate"
18267 msgstr ""
18268
18269 #. type: verbatim
18270 #: ../src/guestfs-actions.pod:7227
18271 #, no-wrap
18272 msgid ""
18273 " int\n"
18274 " guestfs_vgcreate (guestfs_h *g,\n"
18275 "                   const char *volgroup,\n"
18276 "                   char *const *physvols);\n"
18277 "\n"
18278 msgstr ""
18279
18280 #. type: textblock
18281 #: ../src/guestfs-actions.pod:7232 ../fish/guestfish-actions.pod:4818
18282 msgid ""
18283 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18284 "of physical volumes C<physvols>."
18285 msgstr ""
18286
18287 #. type: =head2
18288 #: ../src/guestfs-actions.pod:7239
18289 msgid "guestfs_vglvuuids"
18290 msgstr ""
18291
18292 #. type: verbatim
18293 #: ../src/guestfs-actions.pod:7241
18294 #, no-wrap
18295 msgid ""
18296 " char **\n"
18297 " guestfs_vglvuuids (guestfs_h *g,\n"
18298 "                    const char *vgname);\n"
18299 "\n"
18300 msgstr ""
18301
18302 #. type: textblock
18303 #: ../src/guestfs-actions.pod:7245 ../fish/guestfish-actions.pod:4825
18304 msgid ""
18305 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18306 "volumes created in this volume group."
18307 msgstr ""
18308
18309 #. type: textblock
18310 #: ../src/guestfs-actions.pod:7248
18311 msgid ""
18312 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18313 "associate logical volumes and volume groups."
18314 msgstr ""
18315
18316 #. type: textblock
18317 #: ../src/guestfs-actions.pod:7251
18318 msgid "See also C<guestfs_vgpvuuids>."
18319 msgstr ""
18320
18321 #. type: =head2
18322 #: ../src/guestfs-actions.pod:7259
18323 msgid "guestfs_vgpvuuids"
18324 msgstr ""
18325
18326 #. type: verbatim
18327 #: ../src/guestfs-actions.pod:7261
18328 #, no-wrap
18329 msgid ""
18330 " char **\n"
18331 " guestfs_vgpvuuids (guestfs_h *g,\n"
18332 "                    const char *vgname);\n"
18333 "\n"
18334 msgstr ""
18335
18336 #. type: textblock
18337 #: ../src/guestfs-actions.pod:7265 ../fish/guestfish-actions.pod:4837
18338 msgid ""
18339 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18340 "volumes that this volume group resides on."
18341 msgstr ""
18342
18343 #. type: textblock
18344 #: ../src/guestfs-actions.pod:7268
18345 msgid ""
18346 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18347 "associate physical volumes and volume groups."
18348 msgstr ""
18349
18350 #. type: textblock
18351 #: ../src/guestfs-actions.pod:7271
18352 msgid "See also C<guestfs_vglvuuids>."
18353 msgstr ""
18354
18355 #. type: =head2
18356 #: ../src/guestfs-actions.pod:7279
18357 msgid "guestfs_vgremove"
18358 msgstr ""
18359
18360 #. type: verbatim
18361 #: ../src/guestfs-actions.pod:7281
18362 #, no-wrap
18363 msgid ""
18364 " int\n"
18365 " guestfs_vgremove (guestfs_h *g,\n"
18366 "                   const char *vgname);\n"
18367 "\n"
18368 msgstr ""
18369
18370 #. type: textblock
18371 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4849
18372 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18373 msgstr ""
18374
18375 #. type: textblock
18376 #: ../src/guestfs-actions.pod:7287 ../fish/guestfish-actions.pod:4851
18377 msgid ""
18378 "This also forcibly removes all logical volumes in the volume group (if any)."
18379 msgstr ""
18380
18381 #. type: =head2
18382 #: ../src/guestfs-actions.pod:7294
18383 msgid "guestfs_vgrename"
18384 msgstr ""
18385
18386 #. type: verbatim
18387 #: ../src/guestfs-actions.pod:7296
18388 #, no-wrap
18389 msgid ""
18390 " int\n"
18391 " guestfs_vgrename (guestfs_h *g,\n"
18392 "                   const char *volgroup,\n"
18393 "                   const char *newvolgroup);\n"
18394 "\n"
18395 msgstr ""
18396
18397 #. type: textblock
18398 #: ../src/guestfs-actions.pod:7301 ../fish/guestfish-actions.pod:4858
18399 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18400 msgstr ""
18401
18402 #. type: =head2
18403 #: ../src/guestfs-actions.pod:7307
18404 msgid "guestfs_vgs"
18405 msgstr ""
18406
18407 #. type: verbatim
18408 #: ../src/guestfs-actions.pod:7309
18409 #, no-wrap
18410 msgid ""
18411 " char **\n"
18412 " guestfs_vgs (guestfs_h *g);\n"
18413 "\n"
18414 msgstr ""
18415
18416 #. type: textblock
18417 #: ../src/guestfs-actions.pod:7312 ../fish/guestfish-actions.pod:4864
18418 msgid ""
18419 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18420 "> command."
18421 msgstr ""
18422
18423 #. type: textblock
18424 #: ../src/guestfs-actions.pod:7315 ../fish/guestfish-actions.pod:4867
18425 msgid ""
18426 "This returns a list of just the volume group names that were detected (eg. "
18427 "C<VolGroup00>)."
18428 msgstr ""
18429
18430 #. type: textblock
18431 #: ../src/guestfs-actions.pod:7318
18432 msgid "See also C<guestfs_vgs_full>."
18433 msgstr ""
18434
18435 #. type: =head2
18436 #: ../src/guestfs-actions.pod:7326
18437 msgid "guestfs_vgs_full"
18438 msgstr ""
18439
18440 #. type: verbatim
18441 #: ../src/guestfs-actions.pod:7328
18442 #, no-wrap
18443 msgid ""
18444 " struct guestfs_lvm_vg_list *\n"
18445 " guestfs_vgs_full (guestfs_h *g);\n"
18446 "\n"
18447 msgstr ""
18448
18449 #. type: textblock
18450 #: ../src/guestfs-actions.pod:7331 ../fish/guestfish-actions.pod:4876
18451 msgid ""
18452 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18453 "> command.  The \"full\" version includes all fields."
18454 msgstr ""
18455
18456 #. type: textblock
18457 #: ../src/guestfs-actions.pod:7334
18458 msgid ""
18459 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18460 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18461 msgstr ""
18462
18463 #. type: =head2
18464 #: ../src/guestfs-actions.pod:7340
18465 msgid "guestfs_vgscan"
18466 msgstr ""
18467
18468 #. type: verbatim
18469 #: ../src/guestfs-actions.pod:7342
18470 #, no-wrap
18471 msgid ""
18472 " int\n"
18473 " guestfs_vgscan (guestfs_h *g);\n"
18474 "\n"
18475 msgstr ""
18476
18477 #. type: textblock
18478 #: ../src/guestfs-actions.pod:7345 ../fish/guestfish-actions.pod:4883
18479 msgid ""
18480 "This rescans all block devices and rebuilds the list of LVM physical "
18481 "volumes, volume groups and logical volumes."
18482 msgstr ""
18483
18484 #. type: =head2
18485 #: ../src/guestfs-actions.pod:7352
18486 msgid "guestfs_vguuid"
18487 msgstr ""
18488
18489 #. type: verbatim
18490 #: ../src/guestfs-actions.pod:7354
18491 #, no-wrap
18492 msgid ""
18493 " char *\n"
18494 " guestfs_vguuid (guestfs_h *g,\n"
18495 "                 const char *vgname);\n"
18496 "\n"
18497 msgstr ""
18498
18499 #. type: textblock
18500 #: ../src/guestfs-actions.pod:7358 ../fish/guestfish-actions.pod:4890
18501 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18502 msgstr ""
18503
18504 #. type: =head2
18505 #: ../src/guestfs-actions.pod:7365
18506 msgid "guestfs_wait_ready"
18507 msgstr ""
18508
18509 #. type: verbatim
18510 #: ../src/guestfs-actions.pod:7367
18511 #, no-wrap
18512 msgid ""
18513 " int\n"
18514 " guestfs_wait_ready (guestfs_h *g);\n"
18515 "\n"
18516 msgstr ""
18517
18518 #. type: textblock
18519 #: ../src/guestfs-actions.pod:7370
18520 msgid "This function is a no op."
18521 msgstr ""
18522
18523 #. type: textblock
18524 #: ../src/guestfs-actions.pod:7372
18525 msgid ""
18526 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18527 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18528 "is no longer necessary because C<guestfs_launch> now does the waiting."
18529 msgstr ""
18530
18531 #. type: textblock
18532 #: ../src/guestfs-actions.pod:7377
18533 msgid ""
18534 "If you see any calls to this function in code then you can just remove them, "
18535 "unless you want to retain compatibility with older versions of the API."
18536 msgstr ""
18537
18538 #. type: textblock
18539 #: ../src/guestfs-actions.pod:7383
18540 msgid ""
18541 "This function is deprecated.  In new code, use the C<launch> call instead."
18542 msgstr ""
18543
18544 #. type: =head2
18545 #: ../src/guestfs-actions.pod:7392
18546 msgid "guestfs_wc_c"
18547 msgstr ""
18548
18549 #. type: verbatim
18550 #: ../src/guestfs-actions.pod:7394
18551 #, no-wrap
18552 msgid ""
18553 " int\n"
18554 " guestfs_wc_c (guestfs_h *g,\n"
18555 "               const char *path);\n"
18556 "\n"
18557 msgstr ""
18558
18559 #. type: textblock
18560 #: ../src/guestfs-actions.pod:7398 ../fish/guestfish-actions.pod:4896
18561 msgid ""
18562 "This command counts the characters in a file, using the C<wc -c> external "
18563 "command."
18564 msgstr ""
18565
18566 #. type: =head2
18567 #: ../src/guestfs-actions.pod:7405
18568 msgid "guestfs_wc_l"
18569 msgstr ""
18570
18571 #. type: verbatim
18572 #: ../src/guestfs-actions.pod:7407
18573 #, no-wrap
18574 msgid ""
18575 " int\n"
18576 " guestfs_wc_l (guestfs_h *g,\n"
18577 "               const char *path);\n"
18578 "\n"
18579 msgstr ""
18580
18581 #. type: textblock
18582 #: ../src/guestfs-actions.pod:7411 ../fish/guestfish-actions.pod:4903
18583 msgid ""
18584 "This command counts the lines in a file, using the C<wc -l> external command."
18585 msgstr ""
18586
18587 #. type: =head2
18588 #: ../src/guestfs-actions.pod:7418
18589 msgid "guestfs_wc_w"
18590 msgstr ""
18591
18592 #. type: verbatim
18593 #: ../src/guestfs-actions.pod:7420
18594 #, no-wrap
18595 msgid ""
18596 " int\n"
18597 " guestfs_wc_w (guestfs_h *g,\n"
18598 "               const char *path);\n"
18599 "\n"
18600 msgstr ""
18601
18602 #. type: textblock
18603 #: ../src/guestfs-actions.pod:7424 ../fish/guestfish-actions.pod:4910
18604 msgid ""
18605 "This command counts the words in a file, using the C<wc -w> external command."
18606 msgstr ""
18607
18608 #. type: =head2
18609 #: ../src/guestfs-actions.pod:7431
18610 msgid "guestfs_write"
18611 msgstr ""
18612
18613 #. type: verbatim
18614 #: ../src/guestfs-actions.pod:7433
18615 #, no-wrap
18616 msgid ""
18617 " int\n"
18618 " guestfs_write (guestfs_h *g,\n"
18619 "                const char *path,\n"
18620 "                const char *content,\n"
18621 "                size_t content_size);\n"
18622 "\n"
18623 msgstr ""
18624
18625 #. type: textblock
18626 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4917
18627 msgid ""
18628 "This call creates a file called C<path>.  The content of the file is the "
18629 "string C<content> (which can contain any 8 bit data)."
18630 msgstr ""
18631
18632 #. type: =head2
18633 #: ../src/guestfs-actions.pod:7449
18634 msgid "guestfs_write_file"
18635 msgstr ""
18636
18637 #. type: verbatim
18638 #: ../src/guestfs-actions.pod:7451
18639 #, no-wrap
18640 msgid ""
18641 " int\n"
18642 " guestfs_write_file (guestfs_h *g,\n"
18643 "                     const char *path,\n"
18644 "                     const char *content,\n"
18645 "                     int size);\n"
18646 "\n"
18647 msgstr ""
18648
18649 #. type: textblock
18650 #: ../src/guestfs-actions.pod:7457 ../fish/guestfish-actions.pod:4927
18651 msgid ""
18652 "This call creates a file called C<path>.  The contents of the file is the "
18653 "string C<content> (which can contain any 8 bit data), with length C<size>."
18654 msgstr ""
18655
18656 #. type: textblock
18657 #: ../src/guestfs-actions.pod:7461 ../fish/guestfish-actions.pod:4931
18658 msgid ""
18659 "As a special case, if C<size> is C<0> then the length is calculated using "
18660 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18661 msgstr ""
18662
18663 #. type: textblock
18664 #: ../src/guestfs-actions.pod:7465 ../fish/guestfish-actions.pod:4935
18665 msgid ""
18666 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18667 "I<not> work, even if the length is specified."
18668 msgstr ""
18669
18670 #. type: textblock
18671 #: ../src/guestfs-actions.pod:7473 ../fish/guestfish-actions.pod:4941
18672 msgid ""
18673 "This function is deprecated.  In new code, use the C<write> call instead."
18674 msgstr ""
18675
18676 #. type: =head2
18677 #: ../src/guestfs-actions.pod:7482
18678 msgid "guestfs_zegrep"
18679 msgstr ""
18680
18681 #. type: verbatim
18682 #: ../src/guestfs-actions.pod:7484
18683 #, no-wrap
18684 msgid ""
18685 " char **\n"
18686 " guestfs_zegrep (guestfs_h *g,\n"
18687 "                 const char *regex,\n"
18688 "                 const char *path);\n"
18689 "\n"
18690 msgstr ""
18691
18692 #. type: textblock
18693 #: ../src/guestfs-actions.pod:7489 ../fish/guestfish-actions.pod:4952
18694 msgid ""
18695 "This calls the external C<zegrep> program and returns the matching lines."
18696 msgstr ""
18697
18698 #. type: =head2
18699 #: ../src/guestfs-actions.pod:7501
18700 msgid "guestfs_zegrepi"
18701 msgstr ""
18702
18703 #. type: verbatim
18704 #: ../src/guestfs-actions.pod:7503
18705 #, no-wrap
18706 msgid ""
18707 " char **\n"
18708 " guestfs_zegrepi (guestfs_h *g,\n"
18709 "                  const char *regex,\n"
18710 "                  const char *path);\n"
18711 "\n"
18712 msgstr ""
18713
18714 #. type: textblock
18715 #: ../src/guestfs-actions.pod:7508 ../fish/guestfish-actions.pod:4962
18716 msgid ""
18717 "This calls the external C<zegrep -i> program and returns the matching lines."
18718 msgstr ""
18719
18720 #. type: =head2
18721 #: ../src/guestfs-actions.pod:7520
18722 msgid "guestfs_zero"
18723 msgstr ""
18724
18725 #. type: verbatim
18726 #: ../src/guestfs-actions.pod:7522
18727 #, no-wrap
18728 msgid ""
18729 " int\n"
18730 " guestfs_zero (guestfs_h *g,\n"
18731 "               const char *device);\n"
18732 "\n"
18733 msgstr ""
18734
18735 #. type: textblock
18736 #: ../src/guestfs-actions.pod:7526 ../fish/guestfish-actions.pod:4972
18737 msgid "This command writes zeroes over the first few blocks of C<device>."
18738 msgstr ""
18739
18740 #. type: textblock
18741 #: ../src/guestfs-actions.pod:7528 ../fish/guestfish-actions.pod:4974
18742 msgid ""
18743 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18744 "securely wipe the device).  It should be sufficient to remove any partition "
18745 "tables, filesystem superblocks and so on."
18746 msgstr ""
18747
18748 #. type: textblock
18749 #: ../src/guestfs-actions.pod:7532
18750 msgid ""
18751 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18752 "C<guestfs_is_zero_device>"
18753 msgstr ""
18754
18755 #. type: =head2
18756 #: ../src/guestfs-actions.pod:7544
18757 msgid "guestfs_zero_device"
18758 msgstr ""
18759
18760 #. type: verbatim
18761 #: ../src/guestfs-actions.pod:7546
18762 #, no-wrap
18763 msgid ""
18764 " int\n"
18765 " guestfs_zero_device (guestfs_h *g,\n"
18766 "                      const char *device);\n"
18767 "\n"
18768 msgstr ""
18769
18770 #. type: textblock
18771 #: ../src/guestfs-actions.pod:7550
18772 msgid ""
18773 "This command writes zeroes over the entire C<device>.  Compare with "
18774 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18775 msgstr ""
18776
18777 #. type: textblock
18778 #: ../src/guestfs-actions.pod:7564
18779 msgid "(Added in 1.3.1)"
18780 msgstr ""
18781
18782 #. type: =head2
18783 #: ../src/guestfs-actions.pod:7566
18784 msgid "guestfs_zerofree"
18785 msgstr ""
18786
18787 #. type: verbatim
18788 #: ../src/guestfs-actions.pod:7568
18789 #, no-wrap
18790 msgid ""
18791 " int\n"
18792 " guestfs_zerofree (guestfs_h *g,\n"
18793 "                   const char *device);\n"
18794 "\n"
18795 msgstr ""
18796
18797 #. type: textblock
18798 #: ../src/guestfs-actions.pod:7572 ../fish/guestfish-actions.pod:4996
18799 msgid ""
18800 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18801 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18802 "possible to compress the filesystem more effectively."
18803 msgstr ""
18804
18805 #. type: textblock
18806 #: ../src/guestfs-actions.pod:7577 ../fish/guestfish-actions.pod:5001
18807 msgid "You should B<not> run this program if the filesystem is mounted."
18808 msgstr ""
18809
18810 #. type: textblock
18811 #: ../src/guestfs-actions.pod:7580 ../fish/guestfish-actions.pod:5004
18812 msgid ""
18813 "It is possible that using this program can damage the filesystem or data on "
18814 "the filesystem."
18815 msgstr ""
18816
18817 #. type: =head2
18818 #: ../src/guestfs-actions.pod:7587
18819 msgid "guestfs_zfgrep"
18820 msgstr ""
18821
18822 #. type: verbatim
18823 #: ../src/guestfs-actions.pod:7589
18824 #, no-wrap
18825 msgid ""
18826 " char **\n"
18827 " guestfs_zfgrep (guestfs_h *g,\n"
18828 "                 const char *pattern,\n"
18829 "                 const char *path);\n"
18830 "\n"
18831 msgstr ""
18832
18833 #. type: textblock
18834 #: ../src/guestfs-actions.pod:7594 ../fish/guestfish-actions.pod:5011
18835 msgid ""
18836 "This calls the external C<zfgrep> program and returns the matching lines."
18837 msgstr ""
18838
18839 #. type: =head2
18840 #: ../src/guestfs-actions.pod:7606
18841 msgid "guestfs_zfgrepi"
18842 msgstr ""
18843
18844 #. type: verbatim
18845 #: ../src/guestfs-actions.pod:7608
18846 #, no-wrap
18847 msgid ""
18848 " char **\n"
18849 " guestfs_zfgrepi (guestfs_h *g,\n"
18850 "                  const char *pattern,\n"
18851 "                  const char *path);\n"
18852 "\n"
18853 msgstr ""
18854
18855 #. type: textblock
18856 #: ../src/guestfs-actions.pod:7613 ../fish/guestfish-actions.pod:5021
18857 msgid ""
18858 "This calls the external C<zfgrep -i> program and returns the matching lines."
18859 msgstr ""
18860
18861 #. type: =head2
18862 #: ../src/guestfs-actions.pod:7625
18863 msgid "guestfs_zfile"
18864 msgstr ""
18865
18866 #. type: verbatim
18867 #: ../src/guestfs-actions.pod:7627
18868 #, no-wrap
18869 msgid ""
18870 " char *\n"
18871 " guestfs_zfile (guestfs_h *g,\n"
18872 "                const char *meth,\n"
18873 "                const char *path);\n"
18874 "\n"
18875 msgstr ""
18876
18877 #. type: textblock
18878 #: ../src/guestfs-actions.pod:7632 ../fish/guestfish-actions.pod:5031
18879 msgid ""
18880 "This command runs C<file> after first decompressing C<path> using C<method>."
18881 msgstr ""
18882
18883 #. type: textblock
18884 #: ../src/guestfs-actions.pod:7635 ../fish/guestfish-actions.pod:5034
18885 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18886 msgstr ""
18887
18888 #. type: textblock
18889 #: ../src/guestfs-actions.pod:7637
18890 msgid ""
18891 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18892 "files."
18893 msgstr ""
18894
18895 #. type: textblock
18896 #: ../src/guestfs-actions.pod:7643 ../fish/guestfish-actions.pod:5039
18897 msgid ""
18898 "This function is deprecated.  In new code, use the C<file> call instead."
18899 msgstr ""
18900
18901 #. type: =head2
18902 #: ../src/guestfs-actions.pod:7652
18903 msgid "guestfs_zgrep"
18904 msgstr ""
18905
18906 #. type: verbatim
18907 #: ../src/guestfs-actions.pod:7654
18908 #, no-wrap
18909 msgid ""
18910 " char **\n"
18911 " guestfs_zgrep (guestfs_h *g,\n"
18912 "                const char *regex,\n"
18913 "                const char *path);\n"
18914 "\n"
18915 msgstr ""
18916
18917 #. type: textblock
18918 #: ../src/guestfs-actions.pod:7659 ../fish/guestfish-actions.pod:5050
18919 msgid ""
18920 "This calls the external C<zgrep> program and returns the matching lines."
18921 msgstr ""
18922
18923 #. type: =head2
18924 #: ../src/guestfs-actions.pod:7671
18925 msgid "guestfs_zgrepi"
18926 msgstr ""
18927
18928 #. type: verbatim
18929 #: ../src/guestfs-actions.pod:7673
18930 #, no-wrap
18931 msgid ""
18932 " char **\n"
18933 " guestfs_zgrepi (guestfs_h *g,\n"
18934 "                 const char *regex,\n"
18935 "                 const char *path);\n"
18936 "\n"
18937 msgstr ""
18938
18939 #. type: textblock
18940 #: ../src/guestfs-actions.pod:7678 ../fish/guestfish-actions.pod:5060
18941 msgid ""
18942 "This calls the external C<zgrep -i> program and returns the matching lines."
18943 msgstr ""
18944
18945 #. type: =item
18946 #: ../src/guestfs-availability.pod:3
18947 msgid "B<augeas>"
18948 msgstr ""
18949
18950 #. type: textblock
18951 #: ../src/guestfs-availability.pod:5
18952 msgid ""
18953 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18954 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18955 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18956 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18957 "L</guestfs_aug_save> L</guestfs_aug_set>"
18958 msgstr ""
18959
18960 #. type: =item
18961 #: ../src/guestfs-availability.pod:21
18962 msgid "B<inotify>"
18963 msgstr ""
18964
18965 #. type: textblock
18966 #: ../src/guestfs-availability.pod:23
18967 msgid ""
18968 "The following functions: L</guestfs_inotify_add_watch> L</"
18969 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18970 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18971 msgstr ""
18972
18973 #. type: =item
18974 #: ../src/guestfs-availability.pod:31
18975 msgid "B<linuxfsuuid>"
18976 msgstr ""
18977
18978 #. type: textblock
18979 #: ../src/guestfs-availability.pod:33
18980 msgid ""
18981 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18982 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18983 msgstr ""
18984
18985 #. type: =item
18986 #: ../src/guestfs-availability.pod:40
18987 msgid "B<linuxmodules>"
18988 msgstr ""
18989
18990 #. type: textblock
18991 #: ../src/guestfs-availability.pod:42
18992 msgid "The following functions: L</guestfs_modprobe>"
18993 msgstr ""
18994
18995 #. type: =item
18996 #: ../src/guestfs-availability.pod:45
18997 msgid "B<linuxxattrs>"
18998 msgstr ""
18999
19000 #. type: textblock
19001 #: ../src/guestfs-availability.pod:47
19002 msgid ""
19003 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
19004 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
19005 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
19006 "guestfs_setxattr>"
19007 msgstr ""
19008
19009 #. type: =item
19010 #: ../src/guestfs-availability.pod:58
19011 msgid "B<luks>"
19012 msgstr ""
19013
19014 #. type: textblock
19015 #: ../src/guestfs-availability.pod:60
19016 msgid ""
19017 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
19018 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
19019 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19020 msgstr ""
19021
19022 #. type: =item
19023 #: ../src/guestfs-availability.pod:69
19024 msgid "B<lvm2>"
19025 msgstr ""
19026
19027 #. type: textblock
19028 #: ../src/guestfs-availability.pod:71
19029 msgid ""
19030 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
19031 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
19032 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
19033 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
19034 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
19035 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
19036 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
19037 msgstr ""
19038
19039 #. type: =item
19040 #: ../src/guestfs-availability.pod:94
19041 msgid "B<mknod>"
19042 msgstr ""
19043
19044 #. type: textblock
19045 #: ../src/guestfs-availability.pod:96
19046 msgid ""
19047 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
19048 "guestfs_mknod_b> L</guestfs_mknod_c>"
19049 msgstr ""
19050
19051 #. type: =item
19052 #: ../src/guestfs-availability.pod:102
19053 msgid "B<ntfs3g>"
19054 msgstr ""
19055
19056 #. type: textblock
19057 #: ../src/guestfs-availability.pod:104
19058 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19059 msgstr ""
19060
19061 #. type: =item
19062 #: ../src/guestfs-availability.pod:107
19063 msgid "B<ntfsprogs>"
19064 msgstr ""
19065
19066 #. type: textblock
19067 #: ../src/guestfs-availability.pod:109
19068 msgid ""
19069 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
19070 msgstr ""
19071
19072 #. type: =item
19073 #: ../src/guestfs-availability.pod:113
19074 msgid "B<realpath>"
19075 msgstr ""
19076
19077 #. type: textblock
19078 #: ../src/guestfs-availability.pod:115
19079 msgid "The following functions: L</guestfs_realpath>"
19080 msgstr ""
19081
19082 #. type: =item
19083 #: ../src/guestfs-availability.pod:118
19084 msgid "B<scrub>"
19085 msgstr ""
19086
19087 #. type: textblock
19088 #: ../src/guestfs-availability.pod:120
19089 msgid ""
19090 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
19091 "guestfs_scrub_freespace>"
19092 msgstr ""
19093
19094 #. type: =item
19095 #: ../src/guestfs-availability.pod:125
19096 msgid "B<selinux>"
19097 msgstr ""
19098
19099 #. type: textblock
19100 #: ../src/guestfs-availability.pod:127
19101 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19102 msgstr ""
19103
19104 #. type: =item
19105 #: ../src/guestfs-availability.pod:131
19106 msgid "B<xz>"
19107 msgstr ""
19108
19109 #. type: textblock
19110 #: ../src/guestfs-availability.pod:133
19111 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19112 msgstr ""
19113
19114 #. type: =item
19115 #: ../src/guestfs-availability.pod:137
19116 msgid "B<zerofree>"
19117 msgstr ""
19118
19119 #. type: textblock
19120 #: ../src/guestfs-availability.pod:139
19121 msgid "The following functions: L</guestfs_zerofree>"
19122 msgstr ""
19123
19124 #. type: =head2
19125 #: ../src/guestfs-structs.pod:1
19126 msgid "guestfs_int_bool"
19127 msgstr ""
19128
19129 #. type: verbatim
19130 #: ../src/guestfs-structs.pod:3
19131 #, no-wrap
19132 msgid ""
19133 " struct guestfs_int_bool {\n"
19134 "   int32_t i;\n"
19135 "   int32_t b;\n"
19136 " };\n"
19137 " \n"
19138 msgstr ""
19139
19140 #. type: verbatim
19141 #: ../src/guestfs-structs.pod:8
19142 #, no-wrap
19143 msgid ""
19144 " struct guestfs_int_bool_list {\n"
19145 "   uint32_t len; /* Number of elements in list. */\n"
19146 "   struct guestfs_int_bool *val; /* Elements. */\n"
19147 " };\n"
19148 " \n"
19149 msgstr ""
19150
19151 #. type: verbatim
19152 #: ../src/guestfs-structs.pod:13
19153 #, no-wrap
19154 msgid ""
19155 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19156 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19157 "\n"
19158 msgstr ""
19159
19160 #. type: =head2
19161 #: ../src/guestfs-structs.pod:16
19162 msgid "guestfs_lvm_pv"
19163 msgstr ""
19164
19165 #. type: verbatim
19166 #: ../src/guestfs-structs.pod:18
19167 #, no-wrap
19168 msgid ""
19169 " struct guestfs_lvm_pv {\n"
19170 "   char *pv_name;\n"
19171 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19172 "   char pv_uuid[32];\n"
19173 "   char *pv_fmt;\n"
19174 "   uint64_t pv_size;\n"
19175 "   uint64_t dev_size;\n"
19176 "   uint64_t pv_free;\n"
19177 "   uint64_t pv_used;\n"
19178 "   char *pv_attr;\n"
19179 "   int64_t pv_pe_count;\n"
19180 "   int64_t pv_pe_alloc_count;\n"
19181 "   char *pv_tags;\n"
19182 "   uint64_t pe_start;\n"
19183 "   int64_t pv_mda_count;\n"
19184 "   uint64_t pv_mda_free;\n"
19185 " };\n"
19186 " \n"
19187 msgstr ""
19188
19189 #. type: verbatim
19190 #: ../src/guestfs-structs.pod:36
19191 #, no-wrap
19192 msgid ""
19193 " struct guestfs_lvm_pv_list {\n"
19194 "   uint32_t len; /* Number of elements in list. */\n"
19195 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19196 " };\n"
19197 " \n"
19198 msgstr ""
19199
19200 #. type: verbatim
19201 #: ../src/guestfs-structs.pod:41
19202 #, no-wrap
19203 msgid ""
19204 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19205 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19206 "\n"
19207 msgstr ""
19208
19209 #. type: =head2
19210 #: ../src/guestfs-structs.pod:44
19211 msgid "guestfs_lvm_vg"
19212 msgstr ""
19213
19214 #. type: verbatim
19215 #: ../src/guestfs-structs.pod:46
19216 #, no-wrap
19217 msgid ""
19218 " struct guestfs_lvm_vg {\n"
19219 "   char *vg_name;\n"
19220 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19221 "   char vg_uuid[32];\n"
19222 "   char *vg_fmt;\n"
19223 "   char *vg_attr;\n"
19224 "   uint64_t vg_size;\n"
19225 "   uint64_t vg_free;\n"
19226 "   char *vg_sysid;\n"
19227 "   uint64_t vg_extent_size;\n"
19228 "   int64_t vg_extent_count;\n"
19229 "   int64_t vg_free_count;\n"
19230 "   int64_t max_lv;\n"
19231 "   int64_t max_pv;\n"
19232 "   int64_t pv_count;\n"
19233 "   int64_t lv_count;\n"
19234 "   int64_t snap_count;\n"
19235 "   int64_t vg_seqno;\n"
19236 "   char *vg_tags;\n"
19237 "   int64_t vg_mda_count;\n"
19238 "   uint64_t vg_mda_free;\n"
19239 " };\n"
19240 " \n"
19241 msgstr ""
19242
19243 #. type: verbatim
19244 #: ../src/guestfs-structs.pod:69
19245 #, no-wrap
19246 msgid ""
19247 " struct guestfs_lvm_vg_list {\n"
19248 "   uint32_t len; /* Number of elements in list. */\n"
19249 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19250 " };\n"
19251 " \n"
19252 msgstr ""
19253
19254 #. type: verbatim
19255 #: ../src/guestfs-structs.pod:74
19256 #, no-wrap
19257 msgid ""
19258 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19259 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19260 "\n"
19261 msgstr ""
19262
19263 #. type: =head2
19264 #: ../src/guestfs-structs.pod:77
19265 msgid "guestfs_lvm_lv"
19266 msgstr ""
19267
19268 #. type: verbatim
19269 #: ../src/guestfs-structs.pod:79
19270 #, no-wrap
19271 msgid ""
19272 " struct guestfs_lvm_lv {\n"
19273 "   char *lv_name;\n"
19274 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19275 "   char lv_uuid[32];\n"
19276 "   char *lv_attr;\n"
19277 "   int64_t lv_major;\n"
19278 "   int64_t lv_minor;\n"
19279 "   int64_t lv_kernel_major;\n"
19280 "   int64_t lv_kernel_minor;\n"
19281 "   uint64_t lv_size;\n"
19282 "   int64_t seg_count;\n"
19283 "   char *origin;\n"
19284 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19285 "   float snap_percent;\n"
19286 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19287 "   float copy_percent;\n"
19288 "   char *move_pv;\n"
19289 "   char *lv_tags;\n"
19290 "   char *mirror_log;\n"
19291 "   char *modules;\n"
19292 " };\n"
19293 " \n"
19294 msgstr ""
19295
19296 #. type: verbatim
19297 #: ../src/guestfs-structs.pod:101
19298 #, no-wrap
19299 msgid ""
19300 " struct guestfs_lvm_lv_list {\n"
19301 "   uint32_t len; /* Number of elements in list. */\n"
19302 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19303 " };\n"
19304 " \n"
19305 msgstr ""
19306
19307 #. type: verbatim
19308 #: ../src/guestfs-structs.pod:106
19309 #, no-wrap
19310 msgid ""
19311 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19312 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19313 "\n"
19314 msgstr ""
19315
19316 #. type: verbatim
19317 #: ../src/guestfs-structs.pod:111
19318 #, no-wrap
19319 msgid ""
19320 " struct guestfs_stat {\n"
19321 "   int64_t dev;\n"
19322 "   int64_t ino;\n"
19323 "   int64_t mode;\n"
19324 "   int64_t nlink;\n"
19325 "   int64_t uid;\n"
19326 "   int64_t gid;\n"
19327 "   int64_t rdev;\n"
19328 "   int64_t size;\n"
19329 "   int64_t blksize;\n"
19330 "   int64_t blocks;\n"
19331 "   int64_t atime;\n"
19332 "   int64_t mtime;\n"
19333 "   int64_t ctime;\n"
19334 " };\n"
19335 " \n"
19336 msgstr ""
19337
19338 #. type: verbatim
19339 #: ../src/guestfs-structs.pod:127
19340 #, no-wrap
19341 msgid ""
19342 " struct guestfs_stat_list {\n"
19343 "   uint32_t len; /* Number of elements in list. */\n"
19344 "   struct guestfs_stat *val; /* Elements. */\n"
19345 " };\n"
19346 " \n"
19347 msgstr ""
19348
19349 #. type: verbatim
19350 #: ../src/guestfs-structs.pod:132
19351 #, no-wrap
19352 msgid ""
19353 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19354 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19355 "\n"
19356 msgstr ""
19357
19358 #. type: verbatim
19359 #: ../src/guestfs-structs.pod:137
19360 #, no-wrap
19361 msgid ""
19362 " struct guestfs_statvfs {\n"
19363 "   int64_t bsize;\n"
19364 "   int64_t frsize;\n"
19365 "   int64_t blocks;\n"
19366 "   int64_t bfree;\n"
19367 "   int64_t bavail;\n"
19368 "   int64_t files;\n"
19369 "   int64_t ffree;\n"
19370 "   int64_t favail;\n"
19371 "   int64_t fsid;\n"
19372 "   int64_t flag;\n"
19373 "   int64_t namemax;\n"
19374 " };\n"
19375 " \n"
19376 msgstr ""
19377
19378 #. type: verbatim
19379 #: ../src/guestfs-structs.pod:151
19380 #, no-wrap
19381 msgid ""
19382 " struct guestfs_statvfs_list {\n"
19383 "   uint32_t len; /* Number of elements in list. */\n"
19384 "   struct guestfs_statvfs *val; /* Elements. */\n"
19385 " };\n"
19386 " \n"
19387 msgstr ""
19388
19389 #. type: verbatim
19390 #: ../src/guestfs-structs.pod:156
19391 #, no-wrap
19392 msgid ""
19393 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19394 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19395 "\n"
19396 msgstr ""
19397
19398 #. type: =head2
19399 #: ../src/guestfs-structs.pod:159
19400 msgid "guestfs_dirent"
19401 msgstr ""
19402
19403 #. type: verbatim
19404 #: ../src/guestfs-structs.pod:161
19405 #, no-wrap
19406 msgid ""
19407 " struct guestfs_dirent {\n"
19408 "   int64_t ino;\n"
19409 "   char ftyp;\n"
19410 "   char *name;\n"
19411 " };\n"
19412 " \n"
19413 msgstr ""
19414
19415 #. type: verbatim
19416 #: ../src/guestfs-structs.pod:167
19417 #, no-wrap
19418 msgid ""
19419 " struct guestfs_dirent_list {\n"
19420 "   uint32_t len; /* Number of elements in list. */\n"
19421 "   struct guestfs_dirent *val; /* Elements. */\n"
19422 " };\n"
19423 " \n"
19424 msgstr ""
19425
19426 #. type: verbatim
19427 #: ../src/guestfs-structs.pod:172
19428 #, no-wrap
19429 msgid ""
19430 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19431 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19432 "\n"
19433 msgstr ""
19434
19435 #. type: verbatim
19436 #: ../src/guestfs-structs.pod:177
19437 #, no-wrap
19438 msgid ""
19439 " struct guestfs_version {\n"
19440 "   int64_t major;\n"
19441 "   int64_t minor;\n"
19442 "   int64_t release;\n"
19443 "   char *extra;\n"
19444 " };\n"
19445 " \n"
19446 msgstr ""
19447
19448 #. type: verbatim
19449 #: ../src/guestfs-structs.pod:184
19450 #, no-wrap
19451 msgid ""
19452 " struct guestfs_version_list {\n"
19453 "   uint32_t len; /* Number of elements in list. */\n"
19454 "   struct guestfs_version *val; /* Elements. */\n"
19455 " };\n"
19456 " \n"
19457 msgstr ""
19458
19459 #. type: verbatim
19460 #: ../src/guestfs-structs.pod:189
19461 #, no-wrap
19462 msgid ""
19463 " void guestfs_free_version (struct guestfs_free_version *);\n"
19464 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19465 "\n"
19466 msgstr ""
19467
19468 #. type: =head2
19469 #: ../src/guestfs-structs.pod:192
19470 msgid "guestfs_xattr"
19471 msgstr ""
19472
19473 #. type: verbatim
19474 #: ../src/guestfs-structs.pod:194
19475 #, no-wrap
19476 msgid ""
19477 " struct guestfs_xattr {\n"
19478 "   char *attrname;\n"
19479 "   /* The next two fields describe a byte array. */\n"
19480 "   uint32_t attrval_len;\n"
19481 "   char *attrval;\n"
19482 " };\n"
19483 " \n"
19484 msgstr ""
19485
19486 #. type: verbatim
19487 #: ../src/guestfs-structs.pod:201
19488 #, no-wrap
19489 msgid ""
19490 " struct guestfs_xattr_list {\n"
19491 "   uint32_t len; /* Number of elements in list. */\n"
19492 "   struct guestfs_xattr *val; /* Elements. */\n"
19493 " };\n"
19494 " \n"
19495 msgstr ""
19496
19497 #. type: verbatim
19498 #: ../src/guestfs-structs.pod:206
19499 #, no-wrap
19500 msgid ""
19501 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19502 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19503 "\n"
19504 msgstr ""
19505
19506 #. type: =head2
19507 #: ../src/guestfs-structs.pod:209
19508 msgid "guestfs_inotify_event"
19509 msgstr ""
19510
19511 #. type: verbatim
19512 #: ../src/guestfs-structs.pod:211
19513 #, no-wrap
19514 msgid ""
19515 " struct guestfs_inotify_event {\n"
19516 "   int64_t in_wd;\n"
19517 "   uint32_t in_mask;\n"
19518 "   uint32_t in_cookie;\n"
19519 "   char *in_name;\n"
19520 " };\n"
19521 " \n"
19522 msgstr ""
19523
19524 #. type: verbatim
19525 #: ../src/guestfs-structs.pod:218
19526 #, no-wrap
19527 msgid ""
19528 " struct guestfs_inotify_event_list {\n"
19529 "   uint32_t len; /* Number of elements in list. */\n"
19530 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19531 " };\n"
19532 " \n"
19533 msgstr ""
19534
19535 #. type: verbatim
19536 #: ../src/guestfs-structs.pod:223
19537 #, no-wrap
19538 msgid ""
19539 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19540 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19541 "\n"
19542 msgstr ""
19543
19544 #. type: =head2
19545 #: ../src/guestfs-structs.pod:226
19546 msgid "guestfs_partition"
19547 msgstr ""
19548
19549 #. type: verbatim
19550 #: ../src/guestfs-structs.pod:228
19551 #, no-wrap
19552 msgid ""
19553 " struct guestfs_partition {\n"
19554 "   int32_t part_num;\n"
19555 "   uint64_t part_start;\n"
19556 "   uint64_t part_end;\n"
19557 "   uint64_t part_size;\n"
19558 " };\n"
19559 " \n"
19560 msgstr ""
19561
19562 #. type: verbatim
19563 #: ../src/guestfs-structs.pod:235
19564 #, no-wrap
19565 msgid ""
19566 " struct guestfs_partition_list {\n"
19567 "   uint32_t len; /* Number of elements in list. */\n"
19568 "   struct guestfs_partition *val; /* Elements. */\n"
19569 " };\n"
19570 " \n"
19571 msgstr ""
19572
19573 #. type: verbatim
19574 #: ../src/guestfs-structs.pod:240
19575 #, no-wrap
19576 msgid ""
19577 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19578 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19579 "\n"
19580 msgstr ""
19581
19582 #. type: =head2
19583 #: ../src/guestfs-structs.pod:243
19584 msgid "guestfs_application"
19585 msgstr ""
19586
19587 #. type: verbatim
19588 #: ../src/guestfs-structs.pod:245
19589 #, no-wrap
19590 msgid ""
19591 " struct guestfs_application {\n"
19592 "   char *app_name;\n"
19593 "   char *app_display_name;\n"
19594 "   int32_t app_epoch;\n"
19595 "   char *app_version;\n"
19596 "   char *app_release;\n"
19597 "   char *app_install_path;\n"
19598 "   char *app_trans_path;\n"
19599 "   char *app_publisher;\n"
19600 "   char *app_url;\n"
19601 "   char *app_source_package;\n"
19602 "   char *app_summary;\n"
19603 "   char *app_description;\n"
19604 " };\n"
19605 " \n"
19606 msgstr ""
19607
19608 #. type: verbatim
19609 #: ../src/guestfs-structs.pod:260
19610 #, no-wrap
19611 msgid ""
19612 " struct guestfs_application_list {\n"
19613 "   uint32_t len; /* Number of elements in list. */\n"
19614 "   struct guestfs_application *val; /* Elements. */\n"
19615 " };\n"
19616 " \n"
19617 msgstr ""
19618
19619 #. type: verbatim
19620 #: ../src/guestfs-structs.pod:265
19621 #, no-wrap
19622 msgid ""
19623 " void guestfs_free_application (struct guestfs_free_application *);\n"
19624 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19625 "\n"
19626 msgstr ""
19627
19628 #. type: textblock
19629 #: ../fish/guestfish.pod:5
19630 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19631 msgstr ""
19632
19633 #. type: verbatim
19634 #: ../fish/guestfish.pod:9
19635 #, no-wrap
19636 msgid ""
19637 " guestfish [--options] [commands]\n"
19638 "\n"
19639 msgstr ""
19640
19641 #. type: verbatim
19642 #: ../fish/guestfish.pod:11
19643 #, no-wrap
19644 msgid ""
19645 " guestfish\n"
19646 "\n"
19647 msgstr ""
19648
19649 #. type: verbatim
19650 #: ../fish/guestfish.pod:13
19651 #, no-wrap
19652 msgid ""
19653 " guestfish [--ro|--rw] -a disk.img\n"
19654 "\n"
19655 msgstr ""
19656
19657 #. type: verbatim
19658 #: ../fish/guestfish.pod:15
19659 #, no-wrap
19660 msgid ""
19661 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19662 "\n"
19663 msgstr ""
19664
19665 #. type: verbatim
19666 #: ../fish/guestfish.pod:17
19667 #, no-wrap
19668 msgid ""
19669 " guestfish -d libvirt-domain\n"
19670 "\n"
19671 msgstr ""
19672
19673 #. type: verbatim
19674 #: ../fish/guestfish.pod:19
19675 #, no-wrap
19676 msgid ""
19677 " guestfish [--ro|--rw] -a disk.img -i\n"
19678 "\n"
19679 msgstr ""
19680
19681 #. type: verbatim
19682 #: ../fish/guestfish.pod:21
19683 #, no-wrap
19684 msgid ""
19685 " guestfish -d libvirt-domain -i\n"
19686 "\n"
19687 msgstr ""
19688
19689 #. type: =head1
19690 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
19691 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19692 msgid "WARNING"
19693 msgstr ""
19694
19695 #. type: textblock
19696 #: ../fish/guestfish.pod:25
19697 msgid ""
19698 "Using guestfish in read/write mode on live virtual machines can be "
19699 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19700 "option to use guestfish safely if the disk image or virtual machine might be "
19701 "live."
19702 msgstr ""
19703
19704 #. type: textblock
19705 #: ../fish/guestfish.pod:32
19706 msgid ""
19707 "Guestfish is a shell and command-line tool for examining and modifying "
19708 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19709 "functionality of the guestfs API, see L<guestfs(3)>."
19710 msgstr ""
19711
19712 #. type: textblock
19713 #: ../fish/guestfish.pod:36
19714 msgid ""
19715 "Guestfish gives you structured access to the libguestfs API, from shell "
19716 "scripts or the command line or interactively.  If you want to rescue a "
19717 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19718 "command."
19719 msgstr ""
19720
19721 #. type: =head1
19722 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949
19723 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19724 msgid "EXAMPLES"
19725 msgstr ""
19726
19727 #. type: =head2
19728 #: ../fish/guestfish.pod:43
19729 msgid "As an interactive shell"
19730 msgstr ""
19731
19732 #. type: verbatim
19733 #: ../fish/guestfish.pod:45
19734 #, no-wrap
19735 msgid ""
19736 " $ guestfish\n"
19737 " \n"
19738 msgstr ""
19739
19740 #. type: verbatim
19741 #: ../fish/guestfish.pod:47
19742 #, no-wrap
19743 msgid ""
19744 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19745 " editing virtual machine filesystems.\n"
19746 " \n"
19747 msgstr ""
19748
19749 #. type: verbatim
19750 #: ../fish/guestfish.pod:50
19751 #, no-wrap
19752 msgid ""
19753 " Type: 'help' for a list of commands\n"
19754 "       'man' to read the manual\n"
19755 "       'quit' to quit the shell\n"
19756 " \n"
19757 msgstr ""
19758
19759 #. type: verbatim
19760 #: ../fish/guestfish.pod:54
19761 #, no-wrap
19762 msgid ""
19763 " ><fs> add-ro disk.img\n"
19764 " ><fs> run\n"
19765 " ><fs> list-filesystems\n"
19766 " /dev/sda1: ext4\n"
19767 " /dev/vg_guest/lv_root: ext4\n"
19768 " /dev/vg_guest/lv_swap: swap\n"
19769 " ><fs> mount /dev/vg_guest/lv_root /\n"
19770 " ><fs> cat /etc/fstab\n"
19771 " # /etc/fstab\n"
19772 " # Created by anaconda\n"
19773 " [...]\n"
19774 " ><fs> exit\n"
19775 "\n"
19776 msgstr ""
19777
19778 #. type: =head2
19779 #: ../fish/guestfish.pod:67
19780 msgid "From shell scripts"
19781 msgstr ""
19782
19783 #. type: textblock
19784 #: ../fish/guestfish.pod:69
19785 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19786 msgstr ""
19787
19788 #. type: verbatim
19789 #: ../fish/guestfish.pod:71
19790 #, no-wrap
19791 msgid ""
19792 " guestfish <<_EOF_\n"
19793 " add disk.img\n"
19794 " run\n"
19795 " mount /dev/vg_guest/lv_root /\n"
19796 " write /etc/motd \"Welcome, new users\"\n"
19797 " _EOF_\n"
19798 "\n"
19799 msgstr ""
19800
19801 #. type: textblock
19802 #: ../fish/guestfish.pod:78
19803 msgid "List the LVM logical volumes in a disk image:"
19804 msgstr ""
19805
19806 #. type: verbatim
19807 #: ../fish/guestfish.pod:80
19808 #, no-wrap
19809 msgid ""
19810 " guestfish -a disk.img --ro <<_EOF_\n"
19811 " run\n"
19812 " lvs\n"
19813 " _EOF_\n"
19814 "\n"
19815 msgstr ""
19816
19817 #. type: textblock
19818 #: ../fish/guestfish.pod:85
19819 msgid "List all the filesystems in a disk image:"
19820 msgstr ""
19821
19822 #. type: verbatim
19823 #: ../fish/guestfish.pod:87
19824 #, no-wrap
19825 msgid ""
19826 " guestfish -a disk.img --ro <<_EOF_\n"
19827 " run\n"
19828 " list-filesystems\n"
19829 " _EOF_\n"
19830 "\n"
19831 msgstr ""
19832
19833 #. type: =head2
19834 #: ../fish/guestfish.pod:92
19835 msgid "On one command line"
19836 msgstr ""
19837
19838 #. type: textblock
19839 #: ../fish/guestfish.pod:94
19840 msgid "Update C</etc/resolv.conf> in a guest:"
19841 msgstr ""
19842
19843 #. type: verbatim
19844 #: ../fish/guestfish.pod:96
19845 #, no-wrap
19846 msgid ""
19847 " guestfish \\\n"
19848 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19849 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19850 "\n"
19851 msgstr ""
19852
19853 #. type: textblock
19854 #: ../fish/guestfish.pod:100
19855 msgid "Edit C</boot/grub/grub.conf> interactively:"
19856 msgstr ""
19857
19858 #. type: verbatim
19859 #: ../fish/guestfish.pod:102
19860 #, no-wrap
19861 msgid ""
19862 " guestfish --rw --add disk.img \\\n"
19863 "   --mount /dev/vg_guest/lv_root \\\n"
19864 "   --mount /dev/sda1:/boot \\\n"
19865 "   edit /boot/grub/grub.conf\n"
19866 "\n"
19867 msgstr ""
19868
19869 #. type: =head2
19870 #: ../fish/guestfish.pod:107
19871 msgid "Mount disks automatically"
19872 msgstr ""
19873
19874 #. type: textblock
19875 #: ../fish/guestfish.pod:109
19876 msgid ""
19877 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19878 msgstr ""
19879
19880 #. type: verbatim
19881 #: ../fish/guestfish.pod:112
19882 #, no-wrap
19883 msgid ""
19884 " guestfish --ro -a disk.img -i cat /etc/group\n"
19885 "\n"
19886 msgstr ""
19887
19888 #. type: verbatim
19889 #: ../fish/guestfish.pod:114
19890 #, no-wrap
19891 msgid ""
19892 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19893 "\n"
19894 msgstr ""
19895
19896 #. type: textblock
19897 #: ../fish/guestfish.pod:116
19898 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19899 msgstr ""
19900
19901 #. type: verbatim
19902 #: ../fish/guestfish.pod:118
19903 #, no-wrap
19904 msgid ""
19905 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19906 "\n"
19907 msgstr ""
19908
19909 #. type: =head2
19910 #: ../fish/guestfish.pod:120
19911 msgid "As a script interpreter"
19912 msgstr ""
19913
19914 #. type: textblock
19915 #: ../fish/guestfish.pod:122
19916 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19917 msgstr ""
19918
19919 #. type: verbatim
19920 #: ../fish/guestfish.pod:124
19921 #, no-wrap
19922 msgid ""
19923 " #!/usr/bin/guestfish -f\n"
19924 " sparse test1.img 100M\n"
19925 " run\n"
19926 " part-disk /dev/sda mbr\n"
19927 " mkfs ext2 /dev/sda1\n"
19928 "\n"
19929 msgstr ""
19930
19931 #. type: =head2
19932 #: ../fish/guestfish.pod:130
19933 msgid "Start with a prepared disk"
19934 msgstr ""
19935
19936 #. type: textblock
19937 #: ../fish/guestfish.pod:132
19938 msgid ""
19939 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19940 "single ext2-formatted partition:"
19941 msgstr ""
19942
19943 #. type: verbatim
19944 #: ../fish/guestfish.pod:135
19945 #, no-wrap
19946 msgid ""
19947 " guestfish -N fs\n"
19948 "\n"
19949 msgstr ""
19950
19951 #. type: textblock
19952 #: ../fish/guestfish.pod:137
19953 msgid "To list what is available do:"
19954 msgstr ""
19955
19956 #. type: verbatim
19957 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19958 #, no-wrap
19959 msgid ""
19960 " guestfish -N help | less\n"
19961 "\n"
19962 msgstr ""
19963
19964 #. type: =head2
19965 #: ../fish/guestfish.pod:141
19966 msgid "Remote control"
19967 msgstr ""
19968
19969 #. type: verbatim
19970 #: ../fish/guestfish.pod:143
19971 #, no-wrap
19972 msgid ""
19973 " eval \"`guestfish --listen`\"\n"
19974 " guestfish --remote add-ro disk.img\n"
19975 " guestfish --remote run\n"
19976 " guestfish --remote lvs\n"
19977 "\n"
19978 msgstr ""
19979
19980 #. type: =head1
19981 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19982 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
19983 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
19984 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
19985 msgid "OPTIONS"
19986 msgstr ""
19987
19988 #. type: =item
19989 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
19990 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
19991 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
19992 #: ../tools/virt-list-partitions.pl:62
19993 msgid "B<--help>"
19994 msgstr ""
19995
19996 #. type: textblock
19997 #: ../fish/guestfish.pod:154
19998 msgid "Displays general help on options."
19999 msgstr ""
20000
20001 #. type: =item
20002 #: ../fish/guestfish.pod:156
20003 msgid "B<-h>"
20004 msgstr ""
20005
20006 #. type: =item
20007 #: ../fish/guestfish.pod:158
20008 msgid "B<--cmd-help>"
20009 msgstr ""
20010
20011 #. type: textblock
20012 #: ../fish/guestfish.pod:160
20013 msgid "Lists all available guestfish commands."
20014 msgstr ""
20015
20016 #. type: =item
20017 #: ../fish/guestfish.pod:162
20018 msgid "B<-h cmd>"
20019 msgstr ""
20020
20021 #. type: =item
20022 #: ../fish/guestfish.pod:164
20023 msgid "B<--cmd-help cmd>"
20024 msgstr ""
20025
20026 #. type: textblock
20027 #: ../fish/guestfish.pod:166
20028 msgid "Displays detailed help on a single command C<cmd>."
20029 msgstr ""
20030
20031 #. type: =item
20032 #: ../fish/guestfish.pod:168
20033 msgid "B<-a image>"
20034 msgstr ""
20035
20036 #. type: =item
20037 #: ../fish/guestfish.pod:170
20038 msgid "B<--add image>"
20039 msgstr ""
20040
20041 #. type: textblock
20042 #: ../fish/guestfish.pod:172
20043 msgid "Add a block device or virtual machine image to the shell."
20044 msgstr ""
20045
20046 #. type: textblock
20047 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20048 msgid ""
20049 "The format of the disk image is auto-detected.  To override this and force a "
20050 "particular format use the I<--format=..> option."
20051 msgstr ""
20052
20053 #. type: textblock
20054 #: ../fish/guestfish.pod:177
20055 msgid ""
20056 "Using this flag is mostly equivalent to using the C<add> command, with "
20057 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20058 "the I<--format=...> flag was given."
20059 msgstr ""
20060
20061 #. type: =item
20062 #: ../fish/guestfish.pod:181
20063 msgid "B<-c URI>"
20064 msgstr ""
20065
20066 #. type: =item
20067 #: ../fish/guestfish.pod:183
20068 msgid "B<--connect URI>"
20069 msgstr ""
20070
20071 #. type: textblock
20072 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20073 msgid ""
20074 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20075 "URI to use.  The default is to use the default libvirt connection."
20076 msgstr ""
20077
20078 #. type: =item
20079 #: ../fish/guestfish.pod:189
20080 msgid "B<--csh>"
20081 msgstr ""
20082
20083 #. type: textblock
20084 #: ../fish/guestfish.pod:191
20085 msgid ""
20086 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20087 "section L</REMOTE CONTROL AND CSH> below."
20088 msgstr ""
20089
20090 #. type: =item
20091 #: ../fish/guestfish.pod:194
20092 msgid "B<-d libvirt-domain>"
20093 msgstr ""
20094
20095 #. type: =item
20096 #: ../fish/guestfish.pod:196
20097 msgid "B<--domain libvirt-domain>"
20098 msgstr ""
20099
20100 #. type: textblock
20101 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20102 msgid ""
20103 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20104 "used, then any libvirt domain can be used.  However in write mode, only "
20105 "libvirt domains which are shut down can be named here."
20106 msgstr ""
20107
20108 #. type: textblock
20109 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20110 msgid "Domain UUIDs can be used instead of names."
20111 msgstr ""
20112
20113 #. type: textblock
20114 #: ../fish/guestfish.pod:204
20115 msgid ""
20116 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20117 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20118 "if the I<--format:...> flag was given."
20119 msgstr ""
20120
20121 #. type: =item
20122 #: ../fish/guestfish.pod:208
20123 msgid "B<-D>"
20124 msgstr ""
20125
20126 #. type: =item
20127 #: ../fish/guestfish.pod:210
20128 msgid "B<--no-dest-paths>"
20129 msgstr ""
20130
20131 #. type: textblock
20132 #: ../fish/guestfish.pod:212
20133 msgid ""
20134 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20135 "to hit the tab key to complete paths on the guest filesystem, but this "
20136 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20137 "allow this feature to be disabled."
20138 msgstr ""
20139
20140 #. type: =item
20141 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20142 msgid "B<--echo-keys>"
20143 msgstr ""
20144
20145 #. type: textblock
20146 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20147 msgid ""
20148 "When prompting for keys and passphrases, guestfish normally turns echoing "
20149 "off so you cannot see what you are typing.  If you are not worried about "
20150 "Tempest attacks and there is no one else in the room you can specify this "
20151 "flag to see what you are typing."
20152 msgstr ""
20153
20154 #. type: =item
20155 #: ../fish/guestfish.pod:224
20156 msgid "B<-f file>"
20157 msgstr ""
20158
20159 #. type: =item
20160 #: ../fish/guestfish.pod:226
20161 msgid "B<--file file>"
20162 msgstr ""
20163
20164 #. type: textblock
20165 #: ../fish/guestfish.pod:228
20166 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20167 msgstr ""
20168
20169 #. type: verbatim
20170 #: ../fish/guestfish.pod:231
20171 #, no-wrap
20172 msgid ""
20173 " #!/usr/bin/guestfish -f\n"
20174 "\n"
20175 msgstr ""
20176
20177 #. type: =item
20178 #: ../fish/guestfish.pod:233
20179 msgid "B<--format=raw|qcow2|..>"
20180 msgstr ""
20181
20182 #. type: =item
20183 #: ../fish/guestfish.pod:235
20184 msgid "B<--format>"
20185 msgstr ""
20186
20187 #. type: textblock
20188 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20189 msgid ""
20190 "The default for the I<-a> option is to auto-detect the format of the disk "
20191 "image.  Using this forces the disk format for I<-a> options which follow on "
20192 "the command line.  Using I<--format> with no argument switches back to auto-"
20193 "detection for subsequent I<-a> options."
20194 msgstr ""
20195
20196 #. type: verbatim
20197 #: ../fish/guestfish.pod:244
20198 #, no-wrap
20199 msgid ""
20200 " guestfish --format=raw -a disk.img\n"
20201 "\n"
20202 msgstr ""
20203
20204 #. type: textblock
20205 #: ../fish/guestfish.pod:246
20206 msgid "forces raw format (no auto-detection) for C<disk.img>."
20207 msgstr ""
20208
20209 #. type: verbatim
20210 #: ../fish/guestfish.pod:248
20211 #, no-wrap
20212 msgid ""
20213 " guestfish --format=raw -a disk.img --format -a another.img\n"
20214 "\n"
20215 msgstr ""
20216
20217 #. type: textblock
20218 #: ../fish/guestfish.pod:250
20219 msgid ""
20220 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20221 "detection for C<another.img>."
20222 msgstr ""
20223
20224 #. type: textblock
20225 #: ../fish/guestfish.pod:253
20226 msgid ""
20227 "If you have untrusted raw-format guest disk images, you should use this "
20228 "option to specify the disk format.  This avoids a possible security problem "
20229 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20230 msgstr ""
20231
20232 #. type: =item
20233 #: ../fish/guestfish.pod:258
20234 msgid "B<-i>"
20235 msgstr ""
20236
20237 #. type: =item
20238 #: ../fish/guestfish.pod:260
20239 msgid "B<--inspector>"
20240 msgstr ""
20241
20242 #. type: textblock
20243 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20244 msgid ""
20245 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20246 "system and mount filesystems as they would be mounted on the real virtual "
20247 "machine."
20248 msgstr ""
20249
20250 #. type: textblock
20251 #: ../fish/guestfish.pod:266
20252 msgid "Typical usage is either:"
20253 msgstr ""
20254
20255 #. type: verbatim
20256 #: ../fish/guestfish.pod:268
20257 #, no-wrap
20258 msgid ""
20259 " guestfish -d myguest -i\n"
20260 "\n"
20261 msgstr ""
20262
20263 #. type: textblock
20264 #: ../fish/guestfish.pod:270
20265 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20266 msgstr ""
20267
20268 #. type: verbatim
20269 #: ../fish/guestfish.pod:272
20270 #, no-wrap
20271 msgid ""
20272 " guestfish --ro -d myguest -i\n"
20273 "\n"
20274 msgstr ""
20275
20276 #. type: textblock
20277 #: ../fish/guestfish.pod:274
20278 msgid "(for active domains, readonly), or specify the block device directly:"
20279 msgstr ""
20280
20281 #. type: verbatim
20282 #: ../fish/guestfish.pod:276
20283 #, no-wrap
20284 msgid ""
20285 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20286 "\n"
20287 msgstr ""
20288
20289 #. type: textblock
20290 #: ../fish/guestfish.pod:278
20291 msgid ""
20292 "Note that the command line syntax changed slightly over older versions of "
20293 "guestfish.  You can still use the old syntax:"
20294 msgstr ""
20295
20296 #. type: verbatim
20297 #: ../fish/guestfish.pod:281
20298 #, no-wrap
20299 msgid ""
20300 " guestfish [--ro] -i disk.img\n"
20301 "\n"
20302 msgstr ""
20303
20304 #. type: verbatim
20305 #: ../fish/guestfish.pod:283
20306 #, no-wrap
20307 msgid ""
20308 " guestfish [--ro] -i libvirt-domain\n"
20309 "\n"
20310 msgstr ""
20311
20312 #. type: textblock
20313 #: ../fish/guestfish.pod:285
20314 msgid ""
20315 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20316 "then using other commands to mount the filesystems that were found."
20317 msgstr ""
20318
20319 #. type: =item
20320 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20321 msgid "B<--keys-from-stdin>"
20322 msgstr ""
20323
20324 #. type: textblock
20325 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20326 msgid ""
20327 "Read key or passphrase parameters from stdin.  The default is to try to read "
20328 "passphrases from the user by opening C</dev/tty>."
20329 msgstr ""
20330
20331 #. type: =item
20332 #: ../fish/guestfish.pod:294
20333 msgid "B<--listen>"
20334 msgstr ""
20335
20336 #. type: textblock
20337 #: ../fish/guestfish.pod:296
20338 msgid ""
20339 "Fork into the background and listen for remote commands.  See section L</"
20340 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20341 msgstr ""
20342
20343 #. type: =item
20344 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20345 msgid "B<--live>"
20346 msgstr ""
20347
20348 #. type: textblock
20349 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20350 msgid ""
20351 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20352 "ATTACHING TO RUNNING DAEMONS>)."
20353 msgstr ""
20354
20355 #. type: =item
20356 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20357 msgid "B<-m dev[:mountpoint[:options]]>"
20358 msgstr ""
20359
20360 #. type: =item
20361 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20362 msgid "B<--mount dev[:mountpoint[:options]]>"
20363 msgstr ""
20364
20365 #. type: textblock
20366 #: ../fish/guestfish.pod:308
20367 msgid "Mount the named partition or logical volume on the given mountpoint."
20368 msgstr ""
20369
20370 #. type: textblock
20371 #: ../fish/guestfish.pod:310
20372 msgid "If the mountpoint is omitted, it defaults to C</>."
20373 msgstr ""
20374
20375 #. type: textblock
20376 #: ../fish/guestfish.pod:312
20377 msgid "You have to mount something on C</> before most commands will work."
20378 msgstr ""
20379
20380 #. type: textblock
20381 #: ../fish/guestfish.pod:314
20382 msgid ""
20383 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20384 "launched."
20385 msgstr ""
20386
20387 #. type: textblock
20388 #: ../fish/guestfish.pod:317
20389 msgid ""
20390 "If you don't know what filesystems a disk image contains, you can either run "
20391 "guestfish without this option, then list the partitions, filesystems and LVs "
20392 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20393 "commands), or you can use the L<virt-filesystems(1)> program."
20394 msgstr ""
20395
20396 #. type: textblock
20397 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20398 msgid ""
20399 "The third (and rarely used) part of the mount parameter is the list of mount "
20400 "options used to mount the underlying filesystem.  If this is not given, then "
20401 "the mount options are either the empty string or C<ro> (the latter if the "
20402 "I<--ro> flag is used).  By specifying the mount options, you override this "
20403 "default choice.  Probably the only time you would use this is to enable ACLs "
20404 "and/or extended attributes if the filesystem can support them:"
20405 msgstr ""
20406
20407 #. type: verbatim
20408 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20409 #, no-wrap
20410 msgid ""
20411 " -m /dev/sda1:/:acl,user_xattr\n"
20412 "\n"
20413 msgstr ""
20414
20415 #. type: textblock
20416 #: ../fish/guestfish.pod:333
20417 msgid "Using this flag is equivalent to using the C<mount-options> command."
20418 msgstr ""
20419
20420 #. type: =item
20421 #: ../fish/guestfish.pod:335
20422 msgid "B<-n>"
20423 msgstr ""
20424
20425 #. type: =item
20426 #: ../fish/guestfish.pod:337
20427 msgid "B<--no-sync>"
20428 msgstr ""
20429
20430 #. type: textblock
20431 #: ../fish/guestfish.pod:339
20432 msgid ""
20433 "Disable autosync.  This is enabled by default.  See the discussion of "
20434 "autosync in the L<guestfs(3)> manpage."
20435 msgstr ""
20436
20437 #. type: =item
20438 #: ../fish/guestfish.pod:342
20439 msgid "B<-N type>"
20440 msgstr ""
20441
20442 #. type: =item
20443 #: ../fish/guestfish.pod:344
20444 msgid "B<--new type>"
20445 msgstr ""
20446
20447 #. type: =item
20448 #: ../fish/guestfish.pod:346
20449 msgid "B<-N help>"
20450 msgstr ""
20451
20452 #. type: textblock
20453 #: ../fish/guestfish.pod:348
20454 msgid ""
20455 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20456 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20457 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20458 "IMAGES> below."
20459 msgstr ""
20460
20461 #. type: =item
20462 #: ../fish/guestfish.pod:353
20463 msgid "B<--progress-bars>"
20464 msgstr ""
20465
20466 #. type: textblock
20467 #: ../fish/guestfish.pod:355
20468 msgid "Enable progress bars, even when guestfish is used non-interactively."
20469 msgstr ""
20470
20471 #. type: textblock
20472 #: ../fish/guestfish.pod:357
20473 msgid ""
20474 "Progress bars are enabled by default when guestfish is used as an "
20475 "interactive shell."
20476 msgstr ""
20477
20478 #. type: =item
20479 #: ../fish/guestfish.pod:360
20480 msgid "B<--no-progress-bars>"
20481 msgstr ""
20482
20483 #. type: textblock
20484 #: ../fish/guestfish.pod:362
20485 msgid "Disable progress bars."
20486 msgstr ""
20487
20488 #. type: =item
20489 #: ../fish/guestfish.pod:364
20490 msgid "B<--remote[=pid]>"
20491 msgstr ""
20492
20493 #. type: textblock
20494 #: ../fish/guestfish.pod:366
20495 msgid ""
20496 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20497 "CONTROL GUESTFISH OVER A SOCKET> below."
20498 msgstr ""
20499
20500 #. type: =item
20501 #: ../fish/guestfish.pod:369
20502 msgid "B<-r>"
20503 msgstr ""
20504
20505 #. type: =item
20506 #: ../fish/guestfish.pod:371
20507 msgid "B<--ro>"
20508 msgstr ""
20509
20510 #. type: textblock
20511 #: ../fish/guestfish.pod:373
20512 msgid ""
20513 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20514 "mounts are done read-only."
20515 msgstr ""
20516
20517 #. type: textblock
20518 #: ../fish/guestfish.pod:376
20519 msgid ""
20520 "The option must always be used if the disk image or virtual machine might be "
20521 "running, and is generally recommended in cases where you don't need write "
20522 "access to the disk."
20523 msgstr ""
20524
20525 #. type: textblock
20526 #: ../fish/guestfish.pod:380
20527 msgid ""
20528 "Note that prepared disk images created with I<-N> are not affected by this "
20529 "option.  Also commands like C<add> are not affected - you have to specify "
20530 "the C<readonly:true> option explicitly if you need it."
20531 msgstr ""
20532
20533 #. type: textblock
20534 #: ../fish/guestfish.pod:384
20535 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20536 msgstr ""
20537
20538 #. type: =item
20539 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20540 msgid "B<--selinux>"
20541 msgstr ""
20542
20543 #. type: textblock
20544 #: ../fish/guestfish.pod:388
20545 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20546 msgstr ""
20547
20548 #. type: =item
20549 #: ../fish/guestfish.pod:390
20550 msgid "B<-v>"
20551 msgstr ""
20552
20553 #. type: =item
20554 #: ../fish/guestfish.pod:392
20555 msgid "B<--verbose>"
20556 msgstr ""
20557
20558 #. type: textblock
20559 #: ../fish/guestfish.pod:394
20560 msgid ""
20561 "Enable very verbose messages.  This is particularly useful if you find a bug."
20562 msgstr ""
20563
20564 #. type: =item
20565 #: ../fish/guestfish.pod:397
20566 msgid "B<-V>"
20567 msgstr ""
20568
20569 #. type: =item
20570 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
20571 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
20572 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
20573 msgid "B<--version>"
20574 msgstr ""
20575
20576 #. type: textblock
20577 #: ../fish/guestfish.pod:401
20578 msgid "Display the guestfish / libguestfs version number and exit."
20579 msgstr ""
20580
20581 #. type: =item
20582 #: ../fish/guestfish.pod:403
20583 msgid "B<-w>"
20584 msgstr ""
20585
20586 #. type: =item
20587 #: ../fish/guestfish.pod:405
20588 msgid "B<--rw>"
20589 msgstr ""
20590
20591 #. type: textblock
20592 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20593 msgid ""
20594 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20595 "mounts are done read-write."
20596 msgstr ""
20597
20598 #. type: textblock
20599 #: ../fish/guestfish.pod:410
20600 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20601 msgstr ""
20602
20603 #. type: =item
20604 #: ../fish/guestfish.pod:412
20605 msgid "B<-x>"
20606 msgstr ""
20607
20608 #. type: textblock
20609 #: ../fish/guestfish.pod:414
20610 msgid "Echo each command before executing it."
20611 msgstr ""
20612
20613 #. type: =head1
20614 #: ../fish/guestfish.pod:418
20615 msgid "COMMANDS ON COMMAND LINE"
20616 msgstr ""
20617
20618 #. type: textblock
20619 #: ../fish/guestfish.pod:420
20620 msgid ""
20621 "Any additional (non-option) arguments are treated as commands to execute."
20622 msgstr ""
20623
20624 #. type: textblock
20625 #: ../fish/guestfish.pod:423
20626 msgid ""
20627 "Commands to execute should be separated by a colon (C<:>), where the colon "
20628 "is a separate parameter.  Thus:"
20629 msgstr ""
20630
20631 #. type: verbatim
20632 #: ../fish/guestfish.pod:426
20633 #, no-wrap
20634 msgid ""
20635 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20636 "\n"
20637 msgstr ""
20638
20639 #. type: textblock
20640 #: ../fish/guestfish.pod:428
20641 msgid ""
20642 "If there are no additional arguments, then we enter a shell, either an "
20643 "interactive shell with a prompt (if the input is a terminal) or a non-"
20644 "interactive shell."
20645 msgstr ""
20646
20647 #. type: textblock
20648 #: ../fish/guestfish.pod:432
20649 msgid ""
20650 "In either command line mode or non-interactive shell, the first command that "
20651 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20652 "prompt) if a command fails, you can continue to enter commands."
20653 msgstr ""
20654
20655 #. type: =head1
20656 #: ../fish/guestfish.pod:437
20657 msgid "USING launch (OR run)"
20658 msgstr ""
20659
20660 #. type: textblock
20661 #: ../fish/guestfish.pod:439
20662 msgid ""
20663 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20664 "then launch it, then mount any disks you need, and finally issue actions/"
20665 "commands.  So the general order of the day is:"
20666 msgstr ""
20667
20668 #. type: textblock
20669 #: ../fish/guestfish.pod:447
20670 msgid "add or -a/--add"
20671 msgstr ""
20672
20673 #. type: textblock
20674 #: ../fish/guestfish.pod:451
20675 msgid "launch (aka run)"
20676 msgstr ""
20677
20678 #. type: textblock
20679 #: ../fish/guestfish.pod:455
20680 msgid "mount or -m/--mount"
20681 msgstr ""
20682
20683 #. type: textblock
20684 #: ../fish/guestfish.pod:459
20685 msgid "any other commands"
20686 msgstr ""
20687
20688 #. type: textblock
20689 #: ../fish/guestfish.pod:463
20690 msgid ""
20691 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20692 "guest before mounting or performing any other commands."
20693 msgstr ""
20694
20695 #. type: textblock
20696 #: ../fish/guestfish.pod:466
20697 msgid ""
20698 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20699 "I<--new> options were given then C<run> is done automatically, simply "
20700 "because guestfish can't perform the action you asked for without doing this."
20701 msgstr ""
20702
20703 #. type: =head1
20704 #: ../fish/guestfish.pod:471
20705 msgid "OPENING DISKS FOR READ AND WRITE"
20706 msgstr ""
20707
20708 #. type: textblock
20709 #: ../fish/guestfish.pod:473
20710 msgid ""
20711 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20712 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20713 "I<-i> and I<-m> open disk images read-only or for writing."
20714 msgstr ""
20715
20716 #. type: textblock
20717 #: ../fish/guestfish.pod:478
20718 msgid ""
20719 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20720 "opening disk images supplied on the command line for write.  To open a disk "
20721 "image read-only you have to do I<-a image --ro>."
20722 msgstr ""
20723
20724 #. type: textblock
20725 #: ../fish/guestfish.pod:482
20726 msgid ""
20727 "This matters: If you accidentally open a live VM disk image writable then "
20728 "you will cause irreversible disk corruption."
20729 msgstr ""
20730
20731 #. type: textblock
20732 #: ../fish/guestfish.pod:485
20733 msgid ""
20734 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20735 "images will be opened read-only.  You will have to either specify "
20736 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20737 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20738 "access for disk images specified by those other command line options."
20739 msgstr ""
20740
20741 #. type: textblock
20742 #: ../fish/guestfish.pod:492
20743 msgid ""
20744 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20745 "which does nothing (it is already the default).  However it is highly "
20746 "recommended that you use this option to indicate that you need write access, "
20747 "and prepare your scripts for the day when this option will be required for "
20748 "write access."
20749 msgstr ""
20750
20751 #. type: textblock
20752 #: ../fish/guestfish.pod:498
20753 msgid ""
20754 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20755 "other libguestfs program apart from guestfish and guestmount."
20756 msgstr ""
20757
20758 #. type: =head1
20759 #: ../fish/guestfish.pod:501
20760 msgid "QUOTING"
20761 msgstr ""
20762
20763 #. type: textblock
20764 #: ../fish/guestfish.pod:503
20765 msgid ""
20766 "You can quote ordinary parameters using either single or double quotes.  For "
20767 "example:"
20768 msgstr ""
20769
20770 #. type: verbatim
20771 #: ../fish/guestfish.pod:506
20772 #, no-wrap
20773 msgid ""
20774 " add \"file with a space.img\"\n"
20775 "\n"
20776 msgstr ""
20777
20778 #. type: verbatim
20779 #: ../fish/guestfish.pod:508
20780 #, no-wrap
20781 msgid ""
20782 " rm '/file name'\n"
20783 "\n"
20784 msgstr ""
20785
20786 #. type: verbatim
20787 #: ../fish/guestfish.pod:510
20788 #, no-wrap
20789 msgid ""
20790 " rm '/\"'\n"
20791 "\n"
20792 msgstr ""
20793
20794 #. type: textblock
20795 #: ../fish/guestfish.pod:512
20796 msgid ""
20797 "A few commands require a list of strings to be passed.  For these, use a "
20798 "whitespace-separated list, enclosed in quotes.  Strings containing "
20799 "whitespace to be passed through must be enclosed in single quotes.  A "
20800 "literal single quote must be escaped with a backslash."
20801 msgstr ""
20802
20803 #. type: verbatim
20804 #: ../fish/guestfish.pod:517
20805 #, no-wrap
20806 msgid ""
20807 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20808 " command \"/bin/echo 'foo      bar'\"\n"
20809 " command \"/bin/echo \\'foo\\'\"\n"
20810 "\n"
20811 msgstr ""
20812
20813 #. type: =head1
20814 #: ../fish/guestfish.pod:521
20815 msgid "OPTIONAL ARGUMENTS"
20816 msgstr ""
20817
20818 #. type: textblock
20819 #: ../fish/guestfish.pod:523
20820 msgid ""
20821 "Some commands take optional arguments.  These arguments appear in this "
20822 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20823 msgstr ""
20824
20825 #. type: verbatim
20826 #: ../fish/guestfish.pod:527
20827 #, no-wrap
20828 msgid ""
20829 " add-drive-opts filename\n"
20830 "\n"
20831 msgstr ""
20832
20833 #. type: verbatim
20834 #: ../fish/guestfish.pod:529
20835 #, no-wrap
20836 msgid ""
20837 " add-drive-opts filename readonly:true\n"
20838 "\n"
20839 msgstr ""
20840
20841 #. type: verbatim
20842 #: ../fish/guestfish.pod:531
20843 #, no-wrap
20844 msgid ""
20845 " add-drive-opts filename format:qcow2 readonly:false\n"
20846 "\n"
20847 msgstr ""
20848
20849 #. type: textblock
20850 #: ../fish/guestfish.pod:533
20851 msgid ""
20852 "Each optional argument can appear at most once.  All optional arguments must "
20853 "appear after the required ones."
20854 msgstr ""
20855
20856 #. type: =head1
20857 #: ../fish/guestfish.pod:536
20858 msgid "NUMBERS"
20859 msgstr ""
20860
20861 #. type: textblock
20862 #: ../fish/guestfish.pod:538
20863 msgid ""
20864 "This section applies to all commands which can take integers as parameters."
20865 msgstr ""
20866
20867 #. type: =head2
20868 #: ../fish/guestfish.pod:541
20869 msgid "SIZE SUFFIX"
20870 msgstr ""
20871
20872 #. type: textblock
20873 #: ../fish/guestfish.pod:543
20874 msgid ""
20875 "When the command takes a parameter measured in bytes, you can use one of the "
20876 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20877 msgstr ""
20878
20879 #. type: =item
20880 #: ../fish/guestfish.pod:549
20881 msgid "B<k> or B<K> or B<KiB>"
20882 msgstr ""
20883
20884 #. type: textblock
20885 #: ../fish/guestfish.pod:551
20886 msgid "The size in kilobytes (multiplied by 1024)."
20887 msgstr ""
20888
20889 #. type: =item
20890 #: ../fish/guestfish.pod:553
20891 msgid "B<KB>"
20892 msgstr ""
20893
20894 #. type: textblock
20895 #: ../fish/guestfish.pod:555
20896 msgid "The size in SI 1000 byte units."
20897 msgstr ""
20898
20899 #. type: =item
20900 #: ../fish/guestfish.pod:557
20901 msgid "B<M> or B<MiB>"
20902 msgstr ""
20903
20904 #. type: textblock
20905 #: ../fish/guestfish.pod:559
20906 msgid "The size in megabytes (multiplied by 1048576)."
20907 msgstr ""
20908
20909 #. type: =item
20910 #: ../fish/guestfish.pod:561
20911 msgid "B<MB>"
20912 msgstr ""
20913
20914 #. type: textblock
20915 #: ../fish/guestfish.pod:563
20916 msgid "The size in SI 1000000 byte units."
20917 msgstr ""
20918
20919 #. type: =item
20920 #: ../fish/guestfish.pod:565
20921 msgid "B<G> or B<GiB>"
20922 msgstr ""
20923
20924 #. type: textblock
20925 #: ../fish/guestfish.pod:567
20926 msgid "The size in gigabytes (multiplied by 2**30)."
20927 msgstr ""
20928
20929 #. type: =item
20930 #: ../fish/guestfish.pod:569
20931 msgid "B<GB>"
20932 msgstr ""
20933
20934 #. type: textblock
20935 #: ../fish/guestfish.pod:571
20936 msgid "The size in SI 10**9 byte units."
20937 msgstr ""
20938
20939 #. type: =item
20940 #: ../fish/guestfish.pod:573
20941 msgid "B<T> or B<TiB>"
20942 msgstr ""
20943
20944 #. type: textblock
20945 #: ../fish/guestfish.pod:575
20946 msgid "The size in terabytes (multiplied by 2**40)."
20947 msgstr ""
20948
20949 #. type: =item
20950 #: ../fish/guestfish.pod:577
20951 msgid "B<TB>"
20952 msgstr ""
20953
20954 #. type: textblock
20955 #: ../fish/guestfish.pod:579
20956 msgid "The size in SI 10**12 byte units."
20957 msgstr ""
20958
20959 #. type: =item
20960 #: ../fish/guestfish.pod:581
20961 msgid "B<P> or B<PiB>"
20962 msgstr ""
20963
20964 #. type: textblock
20965 #: ../fish/guestfish.pod:583
20966 msgid "The size in petabytes (multiplied by 2**50)."
20967 msgstr ""
20968
20969 #. type: =item
20970 #: ../fish/guestfish.pod:585
20971 msgid "B<PB>"
20972 msgstr ""
20973
20974 #. type: textblock
20975 #: ../fish/guestfish.pod:587
20976 msgid "The size in SI 10**15 byte units."
20977 msgstr ""
20978
20979 #. type: =item
20980 #: ../fish/guestfish.pod:589
20981 msgid "B<E> or B<EiB>"
20982 msgstr ""
20983
20984 #. type: textblock
20985 #: ../fish/guestfish.pod:591
20986 msgid "The size in exabytes (multiplied by 2**60)."
20987 msgstr ""
20988
20989 #. type: =item
20990 #: ../fish/guestfish.pod:593
20991 msgid "B<EB>"
20992 msgstr ""
20993
20994 #. type: textblock
20995 #: ../fish/guestfish.pod:595
20996 msgid "The size in SI 10**18 byte units."
20997 msgstr ""
20998
20999 #. type: =item
21000 #: ../fish/guestfish.pod:597
21001 msgid "B<Z> or B<ZiB>"
21002 msgstr ""
21003
21004 #. type: textblock
21005 #: ../fish/guestfish.pod:599
21006 msgid "The size in zettabytes (multiplied by 2**70)."
21007 msgstr ""
21008
21009 #. type: =item
21010 #: ../fish/guestfish.pod:601
21011 msgid "B<ZB>"
21012 msgstr ""
21013
21014 #. type: textblock
21015 #: ../fish/guestfish.pod:603
21016 msgid "The size in SI 10**21 byte units."
21017 msgstr ""
21018
21019 #. type: =item
21020 #: ../fish/guestfish.pod:605
21021 msgid "B<Y> or B<YiB>"
21022 msgstr ""
21023
21024 #. type: textblock
21025 #: ../fish/guestfish.pod:607
21026 msgid "The size in yottabytes (multiplied by 2**80)."
21027 msgstr ""
21028
21029 #. type: =item
21030 #: ../fish/guestfish.pod:609
21031 msgid "B<YB>"
21032 msgstr ""
21033
21034 #. type: textblock
21035 #: ../fish/guestfish.pod:611
21036 msgid "The size in SI 10**24 byte units."
21037 msgstr ""
21038
21039 #. type: verbatim
21040 #: ../fish/guestfish.pod:617
21041 #, no-wrap
21042 msgid ""
21043 " truncate-size /file 1G\n"
21044 "\n"
21045 msgstr ""
21046
21047 #. type: textblock
21048 #: ../fish/guestfish.pod:619
21049 msgid "would truncate the file to 1 gigabyte."
21050 msgstr ""
21051
21052 #. type: textblock
21053 #: ../fish/guestfish.pod:621
21054 msgid ""
21055 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21056 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21057 "suffix will probably not do what you expect."
21058 msgstr ""
21059
21060 #. type: =head2
21061 #: ../fish/guestfish.pod:625
21062 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21063 msgstr ""
21064
21065 #. type: textblock
21066 #: ../fish/guestfish.pod:627
21067 msgid ""
21068 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21069 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21070 msgstr ""
21071
21072 #. type: verbatim
21073 #: ../fish/guestfish.pod:630
21074 #, no-wrap
21075 msgid ""
21076 " 1234      decimal number 1234\n"
21077 " 02322     octal number, equivalent to decimal 1234\n"
21078 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21079 "\n"
21080 msgstr ""
21081
21082 #. type: textblock
21083 #: ../fish/guestfish.pod:634
21084 msgid ""
21085 "When using the C<chmod> command, you almost always want to specify an octal "
21086 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21087 "L<chmod(1)> program):"
21088 msgstr ""
21089
21090 #. type: verbatim
21091 #: ../fish/guestfish.pod:638
21092 #, no-wrap
21093 msgid ""
21094 " chmod 0777 /public  # OK\n"
21095 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21096 "\n"
21097 msgstr ""
21098
21099 #. type: textblock
21100 #: ../fish/guestfish.pod:641
21101 msgid ""
21102 "Commands that return numbers usually print them in decimal, but some "
21103 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21104 "octal, preceeded by C<0>)."
21105 msgstr ""
21106
21107 #. type: =head1
21108 #: ../fish/guestfish.pod:645
21109 msgid "WILDCARDS AND GLOBBING"
21110 msgstr ""
21111
21112 #. type: textblock
21113 #: ../fish/guestfish.pod:647
21114 msgid ""
21115 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
21116 "(globbing) by default.  So for example the following will not do what you "
21117 "expect:"
21118 msgstr ""
21119
21120 #. type: verbatim
21121 #: ../fish/guestfish.pod:651
21122 #, no-wrap
21123 msgid ""
21124 " rm-rf /home/*\n"
21125 "\n"
21126 msgstr ""
21127
21128 #. type: textblock
21129 #: ../fish/guestfish.pod:653
21130 msgid ""
21131 "Assuming you don't have a directory called literally C</home/*> then the "
21132 "above command will return an error."
21133 msgstr ""
21134
21135 #. type: textblock
21136 #: ../fish/guestfish.pod:656
21137 msgid "To perform wildcard expansion, use the C<glob> command."
21138 msgstr ""
21139
21140 #. type: verbatim
21141 #: ../fish/guestfish.pod:658
21142 #, no-wrap
21143 msgid ""
21144 " glob rm-rf /home/*\n"
21145 "\n"
21146 msgstr ""
21147
21148 #. type: textblock
21149 #: ../fish/guestfish.pod:660
21150 msgid ""
21151 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
21152 "many times), equivalent to:"
21153 msgstr ""
21154
21155 #. type: verbatim
21156 #: ../fish/guestfish.pod:663
21157 #, no-wrap
21158 msgid ""
21159 " rm-rf /home/jim\n"
21160 " rm-rf /home/joe\n"
21161 " rm-rf /home/mary\n"
21162 "\n"
21163 msgstr ""
21164
21165 #. type: textblock
21166 #: ../fish/guestfish.pod:667
21167 msgid "C<glob> only works on simple guest paths and not on device names."
21168 msgstr ""
21169
21170 #. type: textblock
21171 #: ../fish/guestfish.pod:669
21172 msgid ""
21173 "If you have several parameters, each containing a wildcard, then glob will "
21174 "perform a Cartesian product."
21175 msgstr ""
21176
21177 #. type: =head1
21178 #: ../fish/guestfish.pod:672
21179 msgid "COMMENTS"
21180 msgstr ""
21181
21182 #. type: textblock
21183 #: ../fish/guestfish.pod:674
21184 msgid ""
21185 "Any line which starts with a I<#> character is treated as a comment and "
21186 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21187 "a command.  For example:"
21188 msgstr ""
21189
21190 #. type: verbatim
21191 #: ../fish/guestfish.pod:678
21192 #, no-wrap
21193 msgid ""
21194 " # this is a comment\n"
21195 "         # this is a comment\n"
21196 " foo # NOT a comment\n"
21197 "\n"
21198 msgstr ""
21199
21200 #. type: textblock
21201 #: ../fish/guestfish.pod:682
21202 msgid "Blank lines are also ignored."
21203 msgstr ""
21204
21205 #. type: =head1
21206 #: ../fish/guestfish.pod:684
21207 msgid "RUNNING COMMANDS LOCALLY"
21208 msgstr ""
21209
21210 #. type: textblock
21211 #: ../fish/guestfish.pod:686
21212 msgid ""
21213 "Any line which starts with a I<!> character is treated as a command sent to "
21214 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21215 msgstr ""
21216
21217 #. type: verbatim
21218 #: ../fish/guestfish.pod:690
21219 #, no-wrap
21220 msgid ""
21221 " !mkdir local\n"
21222 " tgz-out /remote local/remote-data.tar.gz\n"
21223 "\n"
21224 msgstr ""
21225
21226 #. type: textblock
21227 #: ../fish/guestfish.pod:693
21228 msgid ""
21229 "will create a directory C<local> on the host, and then export the contents "
21230 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21231 "(See C<tgz-out>)."
21232 msgstr ""
21233
21234 #. type: textblock
21235 #: ../fish/guestfish.pod:697
21236 msgid ""
21237 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21238 "effect, due to the way that subprocesses work in Unix."
21239 msgstr ""
21240
21241 #. type: =head2
21242 #: ../fish/guestfish.pod:700
21243 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21244 msgstr ""
21245
21246 #. type: textblock
21247 #: ../fish/guestfish.pod:702
21248 msgid ""
21249 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21250 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21251 "and executed as guestfish commands."
21252 msgstr ""
21253
21254 #. type: textblock
21255 #: ../fish/guestfish.pod:706
21256 msgid ""
21257 "Thus you can use shell script to construct arbitrary guestfish commands "
21258 "which are then parsed by guestfish."
21259 msgstr ""
21260
21261 #. type: textblock
21262 #: ../fish/guestfish.pod:709
21263 msgid ""
21264 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21265 "through C</foo.100>) using guestfish commands alone.  However this is simple "
21266 "if we use a shell script to create the guestfish commands for us:"
21267 msgstr ""
21268
21269 #. type: verbatim
21270 #: ../fish/guestfish.pod:714
21271 #, no-wrap
21272 msgid ""
21273 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21274 "\n"
21275 msgstr ""
21276
21277 #. type: textblock
21278 #: ../fish/guestfish.pod:716
21279 msgid "or with names like C</foo.001>:"
21280 msgstr ""
21281
21282 #. type: verbatim
21283 #: ../fish/guestfish.pod:718
21284 #, no-wrap
21285 msgid ""
21286 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21287 "\n"
21288 msgstr ""
21289
21290 #. type: textblock
21291 #: ../fish/guestfish.pod:720
21292 msgid ""
21293 "When using guestfish interactively it can be helpful to just run the shell "
21294 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21295 "ordinary I<!> local command), see what guestfish commands it would run, and "
21296 "when you are happy with those prepend the C<E<lt>> character to run the "
21297 "guestfish commands for real."
21298 msgstr ""
21299
21300 #. type: =head1
21301 #: ../fish/guestfish.pod:726
21302 msgid "PIPES"
21303 msgstr ""
21304
21305 #. type: textblock
21306 #: ../fish/guestfish.pod:728
21307 msgid ""
21308 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21309 "command (a guestfish command) to the second command (any host command).  For "
21310 "example:"
21311 msgstr ""
21312
21313 #. type: verbatim
21314 #: ../fish/guestfish.pod:732
21315 #, no-wrap
21316 msgid ""
21317 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21318 "\n"
21319 msgstr ""
21320
21321 #. type: textblock
21322 #: ../fish/guestfish.pod:734
21323 msgid ""
21324 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21325 "program).  The above command would list all accounts in the guest filesystem "
21326 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21327 msgstr ""
21328
21329 #. type: verbatim
21330 #: ../fish/guestfish.pod:739
21331 #, no-wrap
21332 msgid ""
21333 " hexdump /bin/ls | head\n"
21334 " list-devices | tail -1\n"
21335 " tgz-out / - | tar ztf -\n"
21336 "\n"
21337 msgstr ""
21338
21339 #. type: textblock
21340 #: ../fish/guestfish.pod:743
21341 msgid ""
21342 "The space before the pipe symbol is required, any space after the pipe "
21343 "symbol is optional.  Everything after the pipe symbol is just passed "
21344 "straight to the host shell, so it can contain redirections, globs and "
21345 "anything else that makes sense on the host side."
21346 msgstr ""
21347
21348 #. type: textblock
21349 #: ../fish/guestfish.pod:748
21350 msgid ""
21351 "To use a literal argument which begins with a pipe symbol, you have to quote "
21352 "it, eg:"
21353 msgstr ""
21354
21355 #. type: verbatim
21356 #: ../fish/guestfish.pod:751
21357 #, no-wrap
21358 msgid ""
21359 " echo \"|\"\n"
21360 "\n"
21361 msgstr ""
21362
21363 #. type: =head1
21364 #: ../fish/guestfish.pod:753
21365 msgid "HOME DIRECTORIES"
21366 msgstr ""
21367
21368 #. type: textblock
21369 #: ../fish/guestfish.pod:755
21370 msgid ""
21371 "If a parameter starts with the character C<~> then the tilde may be expanded "
21372 "as a home directory path (either C<~> for the current user's home directory, "
21373 "or C<~user> for another user)."
21374 msgstr ""
21375
21376 #. type: textblock
21377 #: ../fish/guestfish.pod:759
21378 msgid ""
21379 "Note that home directory expansion happens for users known I<on the host>, "
21380 "not in the guest filesystem."
21381 msgstr ""
21382
21383 #. type: textblock
21384 #: ../fish/guestfish.pod:762
21385 msgid ""
21386 "To use a literal argument which begins with a tilde, you have to quote it, "
21387 "eg:"
21388 msgstr ""
21389
21390 #. type: verbatim
21391 #: ../fish/guestfish.pod:765
21392 #, no-wrap
21393 msgid ""
21394 " echo \"~\"\n"
21395 "\n"
21396 msgstr ""
21397
21398 #. type: textblock
21399 #: ../fish/guestfish.pod:769
21400 msgid ""
21401 "Libguestfs has some support for Linux guests encrypted according to the "
21402 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21403 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21404 "LUKS is supported."
21405 msgstr ""
21406
21407 #. type: textblock
21408 #: ../fish/guestfish.pod:774
21409 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21410 msgstr ""
21411
21412 #. type: verbatim
21413 #: ../fish/guestfish.pod:776
21414 #, no-wrap
21415 msgid ""
21416 " ><fs> vfs-type /dev/sda2\n"
21417 " crypto_LUKS\n"
21418 "\n"
21419 msgstr ""
21420
21421 #. type: textblock
21422 #: ../fish/guestfish.pod:779
21423 msgid ""
21424 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21425 "device called C</dev/mapper/luksdev>."
21426 msgstr ""
21427
21428 #. type: verbatim
21429 #: ../fish/guestfish.pod:782
21430 #, no-wrap
21431 msgid ""
21432 " ><fs> luks-open /dev/sda2 luksdev\n"
21433 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21434 "\n"
21435 msgstr ""
21436
21437 #. type: textblock
21438 #: ../fish/guestfish.pod:785
21439 msgid ""
21440 "Finally you have to tell LVM to scan for volume groups on the newly created "
21441 "mapper device:"
21442 msgstr ""
21443
21444 #. type: verbatim
21445 #: ../fish/guestfish.pod:788
21446 #, no-wrap
21447 msgid ""
21448 " vgscan\n"
21449 " vg-activate-all true\n"
21450 "\n"
21451 msgstr ""
21452
21453 #. type: textblock
21454 #: ../fish/guestfish.pod:791
21455 msgid "The logical volume(s) can now be mounted in the usual way."
21456 msgstr ""
21457
21458 #. type: textblock
21459 #: ../fish/guestfish.pod:793
21460 msgid ""
21461 "Before closing a LUKS device you must unmount any logical volumes on it and "
21462 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21463 "one.  Then you can close the mapper device:"
21464 msgstr ""
21465
21466 #. type: verbatim
21467 #: ../fish/guestfish.pod:797
21468 #, no-wrap
21469 msgid ""
21470 " vg-activate false /dev/VG\n"
21471 " luks-close /dev/mapper/luksdev\n"
21472 "\n"
21473 msgstr ""
21474
21475 #. type: =head1
21476 #: ../fish/guestfish.pod:800
21477 msgid "WINDOWS PATHS"
21478 msgstr ""
21479
21480 #. type: textblock
21481 #: ../fish/guestfish.pod:802
21482 msgid ""
21483 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21484 "letters and paths (with some limitations).  The following commands are "
21485 "equivalent:"
21486 msgstr ""
21487
21488 #. type: verbatim
21489 #: ../fish/guestfish.pod:806
21490 #, no-wrap
21491 msgid ""
21492 " file /WINDOWS/system32/config/system.LOG\n"
21493 "\n"
21494 msgstr ""
21495
21496 #. type: verbatim
21497 #: ../fish/guestfish.pod:808
21498 #, no-wrap
21499 msgid ""
21500 " file win:\\windows\\system32\\config\\system.log\n"
21501 "\n"
21502 msgstr ""
21503
21504 #. type: verbatim
21505 #: ../fish/guestfish.pod:810
21506 #, no-wrap
21507 msgid ""
21508 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21509 "\n"
21510 msgstr ""
21511
21512 #. type: textblock
21513 #: ../fish/guestfish.pod:812
21514 msgid ""
21515 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21516 "where the drive is mounted, prepending that to the path, changing all "
21517 "backslash characters to forward slash, then resolving the result using L</"
21518 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21519 "the parameter might be rewritten like this:"
21520 msgstr ""
21521
21522 #. type: verbatim
21523 #: ../fish/guestfish.pod:818
21524 #, no-wrap
21525 msgid ""
21526 " win:e:\\foo\\bar => /e/FOO/bar\n"
21527 "\n"
21528 msgstr ""
21529
21530 #. type: textblock
21531 #: ../fish/guestfish.pod:820
21532 msgid "This only works in argument positions that expect a path."
21533 msgstr ""
21534
21535 #. type: =head1
21536 #: ../fish/guestfish.pod:822
21537 msgid "UPLOADING AND DOWNLOADING FILES"
21538 msgstr ""
21539
21540 #. type: textblock
21541 #: ../fish/guestfish.pod:824
21542 msgid ""
21543 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21544 "others which upload from or download to a local file, you can use the "
21545 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21546 msgstr ""
21547
21548 #. type: verbatim
21549 #: ../fish/guestfish.pod:828
21550 #, no-wrap
21551 msgid ""
21552 " upload - /foo\n"
21553 "\n"
21554 msgstr ""
21555
21556 #. type: textblock
21557 #: ../fish/guestfish.pod:830
21558 msgid ""
21559 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21560 msgstr ""
21561
21562 #. type: verbatim
21563 #: ../fish/guestfish.pod:833
21564 #, no-wrap
21565 msgid ""
21566 " tar-out /etc - | tar tf -\n"
21567 "\n"
21568 msgstr ""
21569
21570 #. type: textblock
21571 #: ../fish/guestfish.pod:835
21572 msgid ""
21573 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21574 "command (see L</PIPES>)."
21575 msgstr ""
21576
21577 #. type: textblock
21578 #: ../fish/guestfish.pod:838
21579 msgid ""
21580 "When using C<-> to read from stdin, the input is read up to the end of "
21581 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21582 "some arbitrary end marker:"
21583 msgstr ""
21584
21585 #. type: verbatim
21586 #: ../fish/guestfish.pod:842
21587 #, no-wrap
21588 msgid ""
21589 " upload -<<END /foo\n"
21590 " input line 1\n"
21591 " input line 2\n"
21592 " input line 3\n"
21593 " END\n"
21594 "\n"
21595 msgstr ""
21596
21597 #. type: textblock
21598 #: ../fish/guestfish.pod:848
21599 msgid ""
21600 "Any string of characters can be used instead of C<END>.  The end marker must "
21601 "appear on a line of its own, without any preceeding or following characters "
21602 "(not even spaces)."
21603 msgstr ""
21604
21605 #. type: textblock
21606 #: ../fish/guestfish.pod:852
21607 msgid ""
21608 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21609 "upload local files (so-called \"FileIn\" parameters in the generator)."
21610 msgstr ""
21611
21612 #. type: =head1
21613 #: ../fish/guestfish.pod:855
21614 msgid "EXIT ON ERROR BEHAVIOUR"
21615 msgstr ""
21616
21617 #. type: textblock
21618 #: ../fish/guestfish.pod:857
21619 msgid ""
21620 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21621 "taking commands from a human over a tty), and will exit on the first error "
21622 "in non-interactive mode (scripts, commands given on the command line)."
21623 msgstr ""
21624
21625 #. type: textblock
21626 #: ../fish/guestfish.pod:862
21627 msgid ""
21628 "If you prefix a command with a I<-> character, then that command will not "
21629 "cause guestfish to exit, even if that (one) command returns an error."
21630 msgstr ""
21631
21632 #. type: =head1
21633 #: ../fish/guestfish.pod:866
21634 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21635 msgstr ""
21636
21637 #. type: textblock
21638 #: ../fish/guestfish.pod:868
21639 msgid ""
21640 "Guestfish can be remote-controlled over a socket.  This is useful "
21641 "particularly in shell scripts where you want to make several different "
21642 "changes to a filesystem, but you don't want the overhead of starting up a "
21643 "guestfish process each time."
21644 msgstr ""
21645
21646 #. type: textblock
21647 #: ../fish/guestfish.pod:873
21648 msgid "Start a guestfish server process using:"
21649 msgstr ""
21650
21651 #. type: verbatim
21652 #: ../fish/guestfish.pod:875
21653 #, no-wrap
21654 msgid ""
21655 " eval \"`guestfish --listen`\"\n"
21656 "\n"
21657 msgstr ""
21658
21659 #. type: textblock
21660 #: ../fish/guestfish.pod:877
21661 msgid "and then send it commands by doing:"
21662 msgstr ""
21663
21664 #. type: verbatim
21665 #: ../fish/guestfish.pod:879
21666 #, no-wrap
21667 msgid ""
21668 " guestfish --remote cmd [...]\n"
21669 "\n"
21670 msgstr ""
21671
21672 #. type: textblock
21673 #: ../fish/guestfish.pod:881
21674 msgid "To cause the server to exit, send it the exit command:"
21675 msgstr ""
21676
21677 #. type: verbatim
21678 #: ../fish/guestfish.pod:883
21679 #, no-wrap
21680 msgid ""
21681 " guestfish --remote exit\n"
21682 "\n"
21683 msgstr ""
21684
21685 #. type: textblock
21686 #: ../fish/guestfish.pod:885
21687 msgid ""
21688 "Note that the server will normally exit if there is an error in a command.  "
21689 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21690 "BEHAVIOUR>."
21691 msgstr ""
21692
21693 #. type: =head2
21694 #: ../fish/guestfish.pod:889
21695 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21696 msgstr ""
21697
21698 #. type: textblock
21699 #: ../fish/guestfish.pod:891
21700 msgid ""
21701 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21702 "is how the I<--remote> option knows where to send the commands.  You can "
21703 "have several guestfish listener processes running using:"
21704 msgstr ""
21705
21706 #. type: verbatim
21707 #: ../fish/guestfish.pod:895
21708 #, no-wrap
21709 msgid ""
21710 " eval \"`guestfish --listen`\"\n"
21711 " pid1=$GUESTFISH_PID\n"
21712 " eval \"`guestfish --listen`\"\n"
21713 " pid2=$GUESTFISH_PID\n"
21714 " ...\n"
21715 " guestfish --remote=$pid1 cmd\n"
21716 " guestfish --remote=$pid2 cmd\n"
21717 "\n"
21718 msgstr ""
21719
21720 #. type: =head2
21721 #: ../fish/guestfish.pod:903
21722 msgid "REMOTE CONTROL AND CSH"
21723 msgstr ""
21724
21725 #. type: textblock
21726 #: ../fish/guestfish.pod:905
21727 msgid ""
21728 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21729 "option:"
21730 msgstr ""
21731
21732 #. type: verbatim
21733 #: ../fish/guestfish.pod:908
21734 #, no-wrap
21735 msgid ""
21736 " eval \"`guestfish --listen --csh`\"\n"
21737 "\n"
21738 msgstr ""
21739
21740 #. type: =head2
21741 #: ../fish/guestfish.pod:910
21742 msgid "REMOTE CONTROL DETAILS"
21743 msgstr ""
21744
21745 #. type: textblock
21746 #: ../fish/guestfish.pod:912
21747 msgid ""
21748 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21749 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21750 "and C<$PID> is the process ID of the server."
21751 msgstr ""
21752
21753 #. type: textblock
21754 #: ../fish/guestfish.pod:916
21755 msgid "Guestfish client and server versions must match exactly."
21756 msgstr ""
21757
21758 #. type: =head1
21759 #: ../fish/guestfish.pod:918
21760 msgid "PREPARED DISK IMAGES"
21761 msgstr ""
21762
21763 #. type: textblock
21764 #: ../fish/guestfish.pod:920
21765 msgid ""
21766 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21767 "preformatted disk images that guestfish can make for you to save typing.  "
21768 "This is particularly useful for testing purposes.  This option is used "
21769 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21770 "can be mixed with I<-a>)."
21771 msgstr ""
21772
21773 #. type: textblock
21774 #: ../fish/guestfish.pod:926
21775 msgid ""
21776 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21777 "the second and so on.  Existing files in the current directory are "
21778 "I<overwritten>."
21779 msgstr ""
21780
21781 #. type: textblock
21782 #: ../fish/guestfish.pod:930
21783 msgid ""
21784 "The type briefly describes how the disk should be sized, partitioned, how "
21785 "filesystem(s) should be created, and how content should be added.  "
21786 "Optionally the type can be followed by extra parameters, separated by C<:> "
21787 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21788 "allocated disk, containing a single partition, with the partition formatted "
21789 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21790 "disk instead."
21791 msgstr ""
21792
21793 #. type: textblock
21794 #: ../fish/guestfish.pod:938
21795 msgid "To list the available types and any extra parameters they take, run:"
21796 msgstr ""
21797
21798 #. type: textblock
21799 #: ../fish/guestfish.pod:942
21800 msgid ""
21801 "Note that the prepared filesystem is not mounted.  You would usually have to "
21802 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21803 msgstr ""
21804
21805 #. type: textblock
21806 #: ../fish/guestfish.pod:946
21807 msgid ""
21808 "If any I<-N> or I<--new> options are given, the guest is automatically "
21809 "launched."
21810 msgstr ""
21811
21812 #. type: textblock
21813 #: ../fish/guestfish.pod:951
21814 msgid "Create a 100MB disk with an ext4-formatted partition:"
21815 msgstr ""
21816
21817 #. type: verbatim
21818 #: ../fish/guestfish.pod:953
21819 #, no-wrap
21820 msgid ""
21821 " guestfish -N fs:ext4\n"
21822 "\n"
21823 msgstr ""
21824
21825 #. type: textblock
21826 #: ../fish/guestfish.pod:955
21827 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21828 msgstr ""
21829
21830 #. type: verbatim
21831 #: ../fish/guestfish.pod:957
21832 #, no-wrap
21833 msgid ""
21834 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21835 "\n"
21836 msgstr ""
21837
21838 #. type: textblock
21839 #: ../fish/guestfish.pod:959
21840 msgid "Create a blank 200MB disk:"
21841 msgstr ""
21842
21843 #. type: verbatim
21844 #: ../fish/guestfish.pod:961
21845 #, no-wrap
21846 msgid ""
21847 " guestfish -N disk:200M\n"
21848 "\n"
21849 msgstr ""
21850
21851 #. type: =head1
21852 #: ../fish/guestfish.pod:963
21853 msgid "PROGRESS BARS"
21854 msgstr ""
21855
21856 #. type: textblock
21857 #: ../fish/guestfish.pod:965
21858 msgid ""
21859 "Some (not all) long-running commands send progress notification messages as "
21860 "they are running.  Guestfish turns these messages into progress bars."
21861 msgstr ""
21862
21863 #. type: textblock
21864 #: ../fish/guestfish.pod:969
21865 msgid ""
21866 "When a command that supports progress bars takes longer than two seconds to "
21867 "run, and if progress bars are enabled, then you will see one appearing below "
21868 "the command:"
21869 msgstr ""
21870
21871 #. type: verbatim
21872 #: ../fish/guestfish.pod:973
21873 #, no-wrap
21874 msgid ""
21875 " ><fs> copy-size /large-file /another-file 2048M\n"
21876 " / 10% [#####-----------------------------------------] 00:30\n"
21877 "\n"
21878 msgstr ""
21879
21880 #. type: textblock
21881 #: ../fish/guestfish.pod:976
21882 msgid ""
21883 "The spinner on the left hand side moves round once for every progress "
21884 "notification received from the backend.  This is a (reasonably) golden "
21885 "assurance that the command is \"doing something\" even if the progress bar "
21886 "is not moving, because the command is able to send the progress "
21887 "notifications.  When the bar reaches 100% and the command finishes, the "
21888 "spinner disappears."
21889 msgstr ""
21890
21891 #. type: textblock
21892 #: ../fish/guestfish.pod:983
21893 msgid ""
21894 "Progress bars are enabled by default when guestfish is used interactively.  "
21895 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21896 "and you can disable them completely using I<--no-progress-bars>."
21897 msgstr ""
21898
21899 #. type: =head1
21900 #: ../fish/guestfish.pod:988
21901 msgid "GUESTFISH COMMANDS"
21902 msgstr ""
21903
21904 #. type: textblock
21905 #: ../fish/guestfish.pod:990
21906 msgid ""
21907 "The commands in this section are guestfish convenience commands, in other "
21908 "words, they are not part of the L<guestfs(3)> API."
21909 msgstr ""
21910
21911 #. type: =head2
21912 #: ../fish/guestfish.pod:993
21913 msgid "help"
21914 msgstr ""
21915
21916 #. type: verbatim
21917 #: ../fish/guestfish.pod:995
21918 #, no-wrap
21919 msgid ""
21920 " help\n"
21921 " help cmd\n"
21922 "\n"
21923 msgstr ""
21924
21925 #. type: textblock
21926 #: ../fish/guestfish.pod:998
21927 msgid "Without any parameter, this provides general help."
21928 msgstr ""
21929
21930 #. type: textblock
21931 #: ../fish/guestfish.pod:1000
21932 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21933 msgstr ""
21934
21935 #. type: =head2
21936 #: ../fish/guestfish.pod:1002
21937 msgid "quit | exit"
21938 msgstr ""
21939
21940 #. type: textblock
21941 #: ../fish/guestfish.pod:1004
21942 msgid "This exits guestfish.  You can also use C<^D> key."
21943 msgstr ""
21944
21945 #. type: textblock
21946 #: ../fish/guestfish.pod:1006
21947 msgid "@FISH_COMMANDS@"
21948 msgstr ""
21949
21950 #. type: =head1
21951 #: ../fish/guestfish.pod:1008
21952 msgid "COMMANDS"
21953 msgstr ""
21954
21955 #. type: =head1
21956 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21957 msgid "EXIT CODE"
21958 msgstr ""
21959
21960 #. type: textblock
21961 #: ../fish/guestfish.pod:1014
21962 msgid ""
21963 "guestfish returns 0 if the commands completed without error, or 1 if there "
21964 "was an error."
21965 msgstr ""
21966
21967 #. type: =item
21968 #: ../fish/guestfish.pod:1021
21969 msgid "EDITOR"
21970 msgstr ""
21971
21972 #. type: textblock
21973 #: ../fish/guestfish.pod:1023
21974 msgid ""
21975 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21976 "C<vi>."
21977 msgstr ""
21978
21979 #. type: =item
21980 #: ../fish/guestfish.pod:1026
21981 msgid "GUESTFISH_DISPLAY_IMAGE"
21982 msgstr ""
21983
21984 #. type: textblock
21985 #: ../fish/guestfish.pod:1028
21986 msgid ""
21987 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21988 "If not set, it uses L<display(1)>."
21989 msgstr ""
21990
21991 #. type: =item
21992 #: ../fish/guestfish.pod:1031
21993 msgid "GUESTFISH_PID"
21994 msgstr ""
21995
21996 #. type: textblock
21997 #: ../fish/guestfish.pod:1033
21998 msgid ""
21999 "Used with the I<--remote> option to specify the remote guestfish process to "
22000 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22001 msgstr ""
22002
22003 #. type: =item
22004 #: ../fish/guestfish.pod:1037
22005 msgid "HEXEDITOR"
22006 msgstr ""
22007
22008 #. type: textblock
22009 #: ../fish/guestfish.pod:1039
22010 msgid ""
22011 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22012 "not specified, the external L<hexedit(1)> program is used."
22013 msgstr ""
22014
22015 #. type: =item
22016 #: ../fish/guestfish.pod:1043
22017 msgid "HOME"
22018 msgstr ""
22019
22020 #. type: textblock
22021 #: ../fish/guestfish.pod:1045
22022 msgid ""
22023 "If compiled with GNU readline support, various files in the home directory "
22024 "can be used.  See L</FILES>."
22025 msgstr ""
22026
22027 #. type: textblock
22028 #: ../fish/guestfish.pod:1054
22029 msgid ""
22030 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22031 "effect as using the B<-v> option."
22032 msgstr ""
22033
22034 #. type: textblock
22035 #: ../fish/guestfish.pod:1066
22036 msgid ""
22037 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22038 "the discussion of paths in L<guestfs(3)>."
22039 msgstr ""
22040
22041 #. type: textblock
22042 #: ../fish/guestfish.pod:1077
22043 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22044 msgstr ""
22045
22046 #. type: =item
22047 #: ../fish/guestfish.pod:1079
22048 msgid "PAGER"
22049 msgstr ""
22050
22051 #. type: textblock
22052 #: ../fish/guestfish.pod:1081
22053 msgid ""
22054 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22055 "C<more>."
22056 msgstr ""
22057
22058 #. type: =head1
22059 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
22060 msgid "FILES"
22061 msgstr ""
22062
22063 #. type: =item
22064 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
22065 msgid "$HOME/.libguestfs-tools.rc"
22066 msgstr ""
22067
22068 #. type: =item
22069 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
22070 msgid "/etc/libguestfs-tools.conf"
22071 msgstr ""
22072
22073 #. type: textblock
22074 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
22075 msgid ""
22076 "This configuration file controls the default read-only or read-write mode "
22077 "(I<--ro> or I<--rw>)."
22078 msgstr ""
22079
22080 #. type: textblock
22081 #: ../fish/guestfish.pod:1108
22082 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22083 msgstr ""
22084
22085 #. type: =item
22086 #: ../fish/guestfish.pod:1110
22087 msgid "$HOME/.guestfish"
22088 msgstr ""
22089
22090 #. type: textblock
22091 #: ../fish/guestfish.pod:1112
22092 msgid ""
22093 "If compiled with GNU readline support, then the command history is saved in "
22094 "this file."
22095 msgstr ""
22096
22097 #. type: =item
22098 #: ../fish/guestfish.pod:1115
22099 msgid "$HOME/.inputrc"
22100 msgstr ""
22101
22102 #. type: =item
22103 #: ../fish/guestfish.pod:1117
22104 msgid "/etc/inputrc"
22105 msgstr ""
22106
22107 #. type: textblock
22108 #: ../fish/guestfish.pod:1119
22109 msgid ""
22110 "If compiled with GNU readline support, then these files can be used to "
22111 "configure readline.  For further information, please see L<readline(3)/"
22112 "INITIALIZATION FILE>."
22113 msgstr ""
22114
22115 #. type: textblock
22116 #: ../fish/guestfish.pod:1123
22117 msgid "To write rules which only apply to guestfish, use:"
22118 msgstr ""
22119
22120 #. type: verbatim
22121 #: ../fish/guestfish.pod:1125
22122 #, no-wrap
22123 msgid ""
22124 " $if guestfish\n"
22125 " ...\n"
22126 " $endif\n"
22127 "\n"
22128 msgstr ""
22129
22130 #. type: textblock
22131 #: ../fish/guestfish.pod:1129
22132 msgid ""
22133 "Variables that you can set in inputrc that change the behaviour of guestfish "
22134 "in useful ways include:"
22135 msgstr ""
22136
22137 #. type: =item
22138 #: ../fish/guestfish.pod:1134
22139 msgid "completion-ignore-case (default: on)"
22140 msgstr ""
22141
22142 #. type: textblock
22143 #: ../fish/guestfish.pod:1136
22144 msgid ""
22145 "By default, guestfish will ignore case when tab-completing paths on the "
22146 "disk.  Use:"
22147 msgstr ""
22148
22149 #. type: verbatim
22150 #: ../fish/guestfish.pod:1139
22151 #, no-wrap
22152 msgid ""
22153 " set completion-ignore-case off\n"
22154 "\n"
22155 msgstr ""
22156
22157 #. type: textblock
22158 #: ../fish/guestfish.pod:1141
22159 msgid "to make guestfish case sensitive."
22160 msgstr ""
22161
22162 #. type: =item
22163 #: ../fish/guestfish.pod:1145
22164 msgid "test1.img"
22165 msgstr ""
22166
22167 #. type: =item
22168 #: ../fish/guestfish.pod:1147
22169 msgid "test2.img (etc)"
22170 msgstr ""
22171
22172 #. type: textblock
22173 #: ../fish/guestfish.pod:1149
22174 msgid ""
22175 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22176 "will be created in the file C<test1.img> in the current directory.  The "
22177 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
22178 "the same name will be overwritten."
22179 msgstr ""
22180
22181 #. type: textblock
22182 #: ../fish/guestfish.pod:1158
22183 msgid ""
22184 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
22185 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
22186 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
22187 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
22188 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
22189 ">, L<display(1)>, L<hexedit(1)>."
22190 msgstr ""
22191
22192 #. type: textblock
22193 #: ../fish/guestfish.pod:1189 ../test-tool/libguestfs-test-tool.pod:102
22194 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22195 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22196 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22197 msgid ""
22198 "This program is free software; you can redistribute it and/or modify it "
22199 "under the terms of the GNU General Public License as published by the Free "
22200 "Software Foundation; either version 2 of the License, or (at your option) "
22201 "any later version."
22202 msgstr ""
22203
22204 #. type: textblock
22205 #: ../fish/guestfish.pod:1194 ../test-tool/libguestfs-test-tool.pod:107
22206 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22207 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22208 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22209 msgid ""
22210 "This program is distributed in the hope that it will be useful, but WITHOUT "
22211 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22212 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22213 "more details."
22214 msgstr ""
22215
22216 #. type: textblock
22217 #: ../fish/guestfish.pod:1199 ../test-tool/libguestfs-test-tool.pod:112
22218 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22219 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22220 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22221 msgid ""
22222 "You should have received a copy of the GNU General Public License along with "
22223 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
22224 "Ave, Cambridge, MA 02139, USA."
22225 msgstr ""
22226
22227 #. type: =head2
22228 #: ../fish/guestfish-actions.pod:1
22229 msgid "add-cdrom"
22230 msgstr ""
22231
22232 #. type: verbatim
22233 #: ../fish/guestfish-actions.pod:3
22234 #, no-wrap
22235 msgid ""
22236 " add-cdrom filename\n"
22237 "\n"
22238 msgstr ""
22239
22240 #. type: textblock
22241 #: ../fish/guestfish-actions.pod:15
22242 msgid ""
22243 "This call checks for the existence of C<filename>.  This stops you from "
22244 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22245 "and C<http:> URLs.  To specify those, use the general L</config> call "
22246 "instead."
22247 msgstr ""
22248
22249 #. type: textblock
22250 #: ../fish/guestfish-actions.pod:22
22251 msgid ""
22252 "If you just want to add an ISO file (often you use this as an efficient way "
22253 "to transfer large files into the guest), then you should probably use L</add-"
22254 "drive-ro> instead."
22255 msgstr ""
22256
22257 #. type: =head2
22258 #: ../fish/guestfish-actions.pod:35
22259 msgid "add-domain"
22260 msgstr ""
22261
22262 #. type: =head2
22263 #: ../fish/guestfish-actions.pod:37
22264 msgid "domain"
22265 msgstr ""
22266
22267 #. type: verbatim
22268 #: ../fish/guestfish-actions.pod:39
22269 #, no-wrap
22270 msgid ""
22271 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22272 "\n"
22273 msgstr ""
22274
22275 #. type: textblock
22276 #: ../fish/guestfish-actions.pod:41
22277 msgid ""
22278 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
22279 "It works by connecting to libvirt, requesting the domain and domain XML from "
22280 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
22281 msgstr ""
22282
22283 #. type: textblock
22284 #: ../fish/guestfish-actions.pod:76
22285 msgid ""
22286 "The other optional parameters are passed directly through to L</add-drive-"
22287 "opts>."
22288 msgstr ""
22289
22290 #. type: textblock
22291 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22292 #: ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3077
22293 #: ../fish/guestfish-actions.pod:3250
22294 msgid ""
22295 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
22296 msgstr ""
22297
22298 #. type: =head2
22299 #: ../fish/guestfish-actions.pod:81
22300 msgid "add-drive"
22301 msgstr ""
22302
22303 #. type: verbatim
22304 #: ../fish/guestfish-actions.pod:83
22305 #, no-wrap
22306 msgid ""
22307 " add-drive filename\n"
22308 "\n"
22309 msgstr ""
22310
22311 #. type: textblock
22312 #: ../fish/guestfish-actions.pod:85
22313 msgid ""
22314 "This function is the equivalent of calling L</add-drive-opts> with no "
22315 "optional parameters, so the disk is added writable, with the format being "
22316 "detected automatically."
22317 msgstr ""
22318
22319 #. type: textblock
22320 #: ../fish/guestfish-actions.pod:89
22321 msgid ""
22322 "Automatic detection of the format opens you up to a potential security hole "
22323 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22324 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22325 "you should think about replacing calls to this function with calls to L</add-"
22326 "drive-opts>, and specifying the format."
22327 msgstr ""
22328
22329 #. type: =head2
22330 #: ../fish/guestfish-actions.pod:96
22331 msgid "add-drive-opts"
22332 msgstr ""
22333
22334 #. type: =head2
22335 #: ../fish/guestfish-actions.pod:98
22336 msgid "add"
22337 msgstr ""
22338
22339 #. type: verbatim
22340 #: ../fish/guestfish-actions.pod:100
22341 #, no-wrap
22342 msgid ""
22343 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22344 "\n"
22345 msgstr ""
22346
22347 #. type: textblock
22348 #: ../fish/guestfish-actions.pod:127
22349 msgid ""
22350 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22351 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22352 "include C<raw> and C<qcow2>."
22353 msgstr ""
22354
22355 #. type: textblock
22356 #: ../fish/guestfish-actions.pod:138
22357 msgid ""
22358 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22359 "add-drive-with-if> call (q.v.)"
22360 msgstr ""
22361
22362 #. type: =head2
22363 #: ../fish/guestfish-actions.pod:145
22364 msgid "add-drive-ro"
22365 msgstr ""
22366
22367 #. type: =head2
22368 #: ../fish/guestfish-actions.pod:147
22369 msgid "add-ro"
22370 msgstr ""
22371
22372 #. type: verbatim
22373 #: ../fish/guestfish-actions.pod:149
22374 #, no-wrap
22375 msgid ""
22376 " add-drive-ro filename\n"
22377 "\n"
22378 msgstr ""
22379
22380 #. type: textblock
22381 #: ../fish/guestfish-actions.pod:151
22382 msgid ""
22383 "This function is the equivalent of calling L</add-drive-opts> with the "
22384 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22385 "is added read-only, with the format being detected automatically."
22386 msgstr ""
22387
22388 #. type: =head2
22389 #: ../fish/guestfish-actions.pod:156
22390 msgid "add-drive-ro-with-if"
22391 msgstr ""
22392
22393 #. type: verbatim
22394 #: ../fish/guestfish-actions.pod:158
22395 #, no-wrap
22396 msgid ""
22397 " add-drive-ro-with-if filename iface\n"
22398 "\n"
22399 msgstr ""
22400
22401 #. type: textblock
22402 #: ../fish/guestfish-actions.pod:160
22403 msgid ""
22404 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22405 "interface emulation to use at run time."
22406 msgstr ""
22407
22408 #. type: =head2
22409 #: ../fish/guestfish-actions.pod:170
22410 msgid "add-drive-with-if"
22411 msgstr ""
22412
22413 #. type: verbatim
22414 #: ../fish/guestfish-actions.pod:172
22415 #, no-wrap
22416 msgid ""
22417 " add-drive-with-if filename iface\n"
22418 "\n"
22419 msgstr ""
22420
22421 #. type: textblock
22422 #: ../fish/guestfish-actions.pod:174
22423 msgid ""
22424 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22425 "interface emulation to use at run time."
22426 msgstr ""
22427
22428 #. type: =head2
22429 #: ../fish/guestfish-actions.pod:184
22430 msgid "aug-clear"
22431 msgstr ""
22432
22433 #. type: verbatim
22434 #: ../fish/guestfish-actions.pod:186
22435 #, no-wrap
22436 msgid ""
22437 " aug-clear augpath\n"
22438 "\n"
22439 msgstr ""
22440
22441 #. type: =head2
22442 #: ../fish/guestfish-actions.pod:191
22443 msgid "aug-close"
22444 msgstr ""
22445
22446 #. type: verbatim
22447 #: ../fish/guestfish-actions.pod:193
22448 #, no-wrap
22449 msgid ""
22450 " aug-close\n"
22451 "\n"
22452 msgstr ""
22453
22454 #. type: textblock
22455 #: ../fish/guestfish-actions.pod:195
22456 msgid ""
22457 "Close the current Augeas handle and free up any resources used by it.  After "
22458 "calling this, you have to call L</aug-init> again before you can use any "
22459 "other Augeas functions."
22460 msgstr ""
22461
22462 #. type: =head2
22463 #: ../fish/guestfish-actions.pod:200
22464 msgid "aug-defnode"
22465 msgstr ""
22466
22467 #. type: verbatim
22468 #: ../fish/guestfish-actions.pod:202
22469 #, no-wrap
22470 msgid ""
22471 " aug-defnode name expr val\n"
22472 "\n"
22473 msgstr ""
22474
22475 #. type: textblock
22476 #: ../fish/guestfish-actions.pod:207
22477 msgid ""
22478 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22479 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22480 "containing that single node."
22481 msgstr ""
22482
22483 #. type: =head2
22484 #: ../fish/guestfish-actions.pod:215
22485 msgid "aug-defvar"
22486 msgstr ""
22487
22488 #. type: verbatim
22489 #: ../fish/guestfish-actions.pod:217
22490 #, no-wrap
22491 msgid ""
22492 " aug-defvar name expr\n"
22493 "\n"
22494 msgstr ""
22495
22496 #. type: =head2
22497 #: ../fish/guestfish-actions.pod:226
22498 msgid "aug-get"
22499 msgstr ""
22500
22501 #. type: verbatim
22502 #: ../fish/guestfish-actions.pod:228
22503 #, no-wrap
22504 msgid ""
22505 " aug-get augpath\n"
22506 "\n"
22507 msgstr ""
22508
22509 #. type: =head2
22510 #: ../fish/guestfish-actions.pod:233
22511 msgid "aug-init"
22512 msgstr ""
22513
22514 #. type: verbatim
22515 #: ../fish/guestfish-actions.pod:235
22516 #, no-wrap
22517 msgid ""
22518 " aug-init root flags\n"
22519 "\n"
22520 msgstr ""
22521
22522 #. type: textblock
22523 #: ../fish/guestfish-actions.pod:241
22524 msgid "You must call this before using any other L</aug-*> commands."
22525 msgstr ""
22526
22527 #. type: textblock
22528 #: ../fish/guestfish-actions.pod:276
22529 msgid "Do not load the tree in L</aug-init>."
22530 msgstr ""
22531
22532 #. type: textblock
22533 #: ../fish/guestfish-actions.pod:280
22534 msgid "To close the handle, you can call L</aug-close>."
22535 msgstr ""
22536
22537 #. type: =head2
22538 #: ../fish/guestfish-actions.pod:284
22539 msgid "aug-insert"
22540 msgstr ""
22541
22542 #. type: verbatim
22543 #: ../fish/guestfish-actions.pod:286
22544 #, no-wrap
22545 msgid ""
22546 " aug-insert augpath label true|false\n"
22547 "\n"
22548 msgstr ""
22549
22550 #. type: =head2
22551 #: ../fish/guestfish-actions.pod:296
22552 msgid "aug-load"
22553 msgstr ""
22554
22555 #. type: verbatim
22556 #: ../fish/guestfish-actions.pod:298
22557 #, no-wrap
22558 msgid ""
22559 " aug-load\n"
22560 "\n"
22561 msgstr ""
22562
22563 #. type: =head2
22564 #: ../fish/guestfish-actions.pod:305
22565 msgid "aug-ls"
22566 msgstr ""
22567
22568 #. type: verbatim
22569 #: ../fish/guestfish-actions.pod:307
22570 #, no-wrap
22571 msgid ""
22572 " aug-ls augpath\n"
22573 "\n"
22574 msgstr ""
22575
22576 #. type: textblock
22577 #: ../fish/guestfish-actions.pod:309
22578 msgid ""
22579 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22580 "resulting nodes into alphabetical order."
22581 msgstr ""
22582
22583 #. type: =head2
22584 #: ../fish/guestfish-actions.pod:312
22585 msgid "aug-match"
22586 msgstr ""
22587
22588 #. type: verbatim
22589 #: ../fish/guestfish-actions.pod:314
22590 #, no-wrap
22591 msgid ""
22592 " aug-match augpath\n"
22593 "\n"
22594 msgstr ""
22595
22596 #. type: =head2
22597 #: ../fish/guestfish-actions.pod:320
22598 msgid "aug-mv"
22599 msgstr ""
22600
22601 #. type: verbatim
22602 #: ../fish/guestfish-actions.pod:322
22603 #, no-wrap
22604 msgid ""
22605 " aug-mv src dest\n"
22606 "\n"
22607 msgstr ""
22608
22609 #. type: =head2
22610 #: ../fish/guestfish-actions.pod:327
22611 msgid "aug-rm"
22612 msgstr ""
22613
22614 #. type: verbatim
22615 #: ../fish/guestfish-actions.pod:329
22616 #, no-wrap
22617 msgid ""
22618 " aug-rm augpath\n"
22619 "\n"
22620 msgstr ""
22621
22622 #. type: =head2
22623 #: ../fish/guestfish-actions.pod:335
22624 msgid "aug-save"
22625 msgstr ""
22626
22627 #. type: verbatim
22628 #: ../fish/guestfish-actions.pod:337
22629 #, no-wrap
22630 msgid ""
22631 " aug-save\n"
22632 "\n"
22633 msgstr ""
22634
22635 #. type: textblock
22636 #: ../fish/guestfish-actions.pod:341
22637 msgid ""
22638 "The flags which were passed to L</aug-init> affect exactly how files are "
22639 "saved."
22640 msgstr ""
22641
22642 #. type: =head2
22643 #: ../fish/guestfish-actions.pod:344
22644 msgid "aug-set"
22645 msgstr ""
22646
22647 #. type: verbatim
22648 #: ../fish/guestfish-actions.pod:346
22649 #, no-wrap
22650 msgid ""
22651 " aug-set augpath val\n"
22652 "\n"
22653 msgstr ""
22654
22655 #. type: textblock
22656 #: ../fish/guestfish-actions.pod:350
22657 msgid ""
22658 "In the Augeas API, it is possible to clear a node by setting the value to "
22659 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22660 "this call.  Instead you must use the L</aug-clear> call."
22661 msgstr ""
22662
22663 #. type: =head2
22664 #: ../fish/guestfish-actions.pod:355
22665 msgid "available"
22666 msgstr ""
22667
22668 #. type: verbatim
22669 #: ../fish/guestfish-actions.pod:357
22670 #, no-wrap
22671 msgid ""
22672 " available 'groups ...'\n"
22673 "\n"
22674 msgstr ""
22675
22676 #. type: textblock
22677 #: ../fish/guestfish-actions.pod:363
22678 msgid ""
22679 "The libguestfs groups, and the functions that those groups correspond to, "
22680 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22681 "runtime by calling L</available-all-groups>."
22682 msgstr ""
22683
22684 #. type: textblock
22685 #: ../fish/guestfish-actions.pod:387
22686 msgid "You must call L</launch> before calling this function."
22687 msgstr ""
22688
22689 #. type: textblock
22690 #: ../fish/guestfish-actions.pod:409
22691 msgid ""
22692 "This call was added in version C<1.0.80>.  In previous versions of "
22693 "libguestfs all you could do would be to speculatively execute a command to "
22694 "find out if the daemon implemented it.  See also L</version>."
22695 msgstr ""
22696
22697 #. type: =head2
22698 #: ../fish/guestfish-actions.pod:416
22699 msgid "available-all-groups"
22700 msgstr ""
22701
22702 #. type: verbatim
22703 #: ../fish/guestfish-actions.pod:418
22704 #, no-wrap
22705 msgid ""
22706 " available-all-groups\n"
22707 "\n"
22708 msgstr ""
22709
22710 #. type: textblock
22711 #: ../fish/guestfish-actions.pod:420
22712 msgid ""
22713 "This command returns a list of all optional groups that this daemon knows "
22714 "about.  Note this returns both supported and unsupported groups.  To find "
22715 "out which ones the daemon can actually support you have to call L</"
22716 "available> on each member of the returned list."
22717 msgstr ""
22718
22719 #. type: textblock
22720 #: ../fish/guestfish-actions.pod:426
22721 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22722 msgstr ""
22723
22724 #. type: =head2
22725 #: ../fish/guestfish-actions.pod:428
22726 msgid "base64-in"
22727 msgstr ""
22728
22729 #. type: verbatim
22730 #: ../fish/guestfish-actions.pod:430
22731 #, no-wrap
22732 msgid ""
22733 " base64-in (base64file|-) filename\n"
22734 "\n"
22735 msgstr ""
22736
22737 #. type: textblock
22738 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
22739 #: ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837
22740 #: ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230
22741 #: ../fish/guestfish-actions.pod:4523 ../fish/guestfish-actions.pod:4535
22742 #: ../fish/guestfish-actions.pod:4546 ../fish/guestfish-actions.pod:4557
22743 #: ../fish/guestfish-actions.pod:4609 ../fish/guestfish-actions.pod:4618
22744 #: ../fish/guestfish-actions.pod:4672 ../fish/guestfish-actions.pod:4695
22745 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22746 msgstr ""
22747
22748 #. type: =head2
22749 #: ../fish/guestfish-actions.pod:437
22750 msgid "base64-out"
22751 msgstr ""
22752
22753 #. type: verbatim
22754 #: ../fish/guestfish-actions.pod:439
22755 #, no-wrap
22756 msgid ""
22757 " base64-out filename (base64file|-)\n"
22758 "\n"
22759 msgstr ""
22760
22761 #. type: =head2
22762 #: ../fish/guestfish-actions.pod:446
22763 msgid "blockdev-flushbufs"
22764 msgstr ""
22765
22766 #. type: verbatim
22767 #: ../fish/guestfish-actions.pod:448
22768 #, no-wrap
22769 msgid ""
22770 " blockdev-flushbufs device\n"
22771 "\n"
22772 msgstr ""
22773
22774 #. type: =head2
22775 #: ../fish/guestfish-actions.pod:455
22776 msgid "blockdev-getbsz"
22777 msgstr ""
22778
22779 #. type: verbatim
22780 #: ../fish/guestfish-actions.pod:457
22781 #, no-wrap
22782 msgid ""
22783 " blockdev-getbsz device\n"
22784 "\n"
22785 msgstr ""
22786
22787 #. type: =head2
22788 #: ../fish/guestfish-actions.pod:466
22789 msgid "blockdev-getro"
22790 msgstr ""
22791
22792 #. type: verbatim
22793 #: ../fish/guestfish-actions.pod:468
22794 #, no-wrap
22795 msgid ""
22796 " blockdev-getro device\n"
22797 "\n"
22798 msgstr ""
22799
22800 #. type: =head2
22801 #: ../fish/guestfish-actions.pod:475
22802 msgid "blockdev-getsize64"
22803 msgstr ""
22804
22805 #. type: verbatim
22806 #: ../fish/guestfish-actions.pod:477
22807 #, no-wrap
22808 msgid ""
22809 " blockdev-getsize64 device\n"
22810 "\n"
22811 msgstr ""
22812
22813 #. type: textblock
22814 #: ../fish/guestfish-actions.pod:481
22815 msgid "See also L</blockdev-getsz>."
22816 msgstr ""
22817
22818 #. type: =head2
22819 #: ../fish/guestfish-actions.pod:485
22820 msgid "blockdev-getss"
22821 msgstr ""
22822
22823 #. type: verbatim
22824 #: ../fish/guestfish-actions.pod:487
22825 #, no-wrap
22826 msgid ""
22827 " blockdev-getss device\n"
22828 "\n"
22829 msgstr ""
22830
22831 #. type: textblock
22832 #: ../fish/guestfish-actions.pod:492
22833 msgid ""
22834 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22835 msgstr ""
22836
22837 #. type: =head2
22838 #: ../fish/guestfish-actions.pod:497
22839 msgid "blockdev-getsz"
22840 msgstr ""
22841
22842 #. type: verbatim
22843 #: ../fish/guestfish-actions.pod:499
22844 #, no-wrap
22845 msgid ""
22846 " blockdev-getsz device\n"
22847 "\n"
22848 msgstr ""
22849
22850 #. type: textblock
22851 #: ../fish/guestfish-actions.pod:504
22852 msgid ""
22853 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22854 "blockdev-getsize64> for the more useful I<size in bytes>."
22855 msgstr ""
22856
22857 #. type: =head2
22858 #: ../fish/guestfish-actions.pod:510
22859 msgid "blockdev-rereadpt"
22860 msgstr ""
22861
22862 #. type: verbatim
22863 #: ../fish/guestfish-actions.pod:512
22864 #, no-wrap
22865 msgid ""
22866 " blockdev-rereadpt device\n"
22867 "\n"
22868 msgstr ""
22869
22870 #. type: =head2
22871 #: ../fish/guestfish-actions.pod:518
22872 msgid "blockdev-setbsz"
22873 msgstr ""
22874
22875 #. type: verbatim
22876 #: ../fish/guestfish-actions.pod:520
22877 #, no-wrap
22878 msgid ""
22879 " blockdev-setbsz device blocksize\n"
22880 "\n"
22881 msgstr ""
22882
22883 #. type: =head2
22884 #: ../fish/guestfish-actions.pod:529
22885 msgid "blockdev-setro"
22886 msgstr ""
22887
22888 #. type: verbatim
22889 #: ../fish/guestfish-actions.pod:531
22890 #, no-wrap
22891 msgid ""
22892 " blockdev-setro device\n"
22893 "\n"
22894 msgstr ""
22895
22896 #. type: =head2
22897 #: ../fish/guestfish-actions.pod:537
22898 msgid "blockdev-setrw"
22899 msgstr ""
22900
22901 #. type: verbatim
22902 #: ../fish/guestfish-actions.pod:539
22903 #, no-wrap
22904 msgid ""
22905 " blockdev-setrw device\n"
22906 "\n"
22907 msgstr ""
22908
22909 #. type: =head2
22910 #: ../fish/guestfish-actions.pod:545
22911 msgid "case-sensitive-path"
22912 msgstr ""
22913
22914 #. type: verbatim
22915 #: ../fish/guestfish-actions.pod:547
22916 #, no-wrap
22917 msgid ""
22918 " case-sensitive-path path\n"
22919 "\n"
22920 msgstr ""
22921
22922 #. type: textblock
22923 #: ../fish/guestfish-actions.pod:571
22924 msgid ""
22925 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22926 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22927 "the directories were originally created under Windows)."
22928 msgstr ""
22929
22930 #. type: textblock
22931 #: ../fish/guestfish-actions.pod:579
22932 msgid "See also L</realpath>."
22933 msgstr ""
22934
22935 #. type: =head2
22936 #: ../fish/guestfish-actions.pod:581
22937 msgid "cat"
22938 msgstr ""
22939
22940 #. type: verbatim
22941 #: ../fish/guestfish-actions.pod:583
22942 #, no-wrap
22943 msgid ""
22944 " cat path\n"
22945 "\n"
22946 msgstr ""
22947
22948 #. type: textblock
22949 #: ../fish/guestfish-actions.pod:587
22950 msgid ""
22951 "Note that this function cannot correctly handle binary files (specifically, "
22952 "files containing C<\\0> character which is treated as end of string).  For "
22953 "those you need to use the L</read-file> or L</download> functions which have "
22954 "a more complex interface."
22955 msgstr ""
22956
22957 #. type: =head2
22958 #: ../fish/guestfish-actions.pod:595
22959 msgid "checksum"
22960 msgstr ""
22961
22962 #. type: verbatim
22963 #: ../fish/guestfish-actions.pod:597
22964 #, no-wrap
22965 msgid ""
22966 " checksum csumtype path\n"
22967 "\n"
22968 msgstr ""
22969
22970 #. type: textblock
22971 #: ../fish/guestfish-actions.pod:640
22972 msgid "To get the checksum for a device, use L</checksum-device>."
22973 msgstr ""
22974
22975 #. type: textblock
22976 #: ../fish/guestfish-actions.pod:642
22977 msgid "To get the checksums for many files, use L</checksums-out>."
22978 msgstr ""
22979
22980 #. type: =head2
22981 #: ../fish/guestfish-actions.pod:644
22982 msgid "checksum-device"
22983 msgstr ""
22984
22985 #. type: verbatim
22986 #: ../fish/guestfish-actions.pod:646
22987 #, no-wrap
22988 msgid ""
22989 " checksum-device csumtype device\n"
22990 "\n"
22991 msgstr ""
22992
22993 #. type: textblock
22994 #: ../fish/guestfish-actions.pod:648
22995 msgid ""
22996 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22997 "device named C<device>.  For the types of checksums supported see the L</"
22998 "checksum> command."
22999 msgstr ""
23000
23001 #. type: =head2
23002 #: ../fish/guestfish-actions.pod:652
23003 msgid "checksums-out"
23004 msgstr ""
23005
23006 #. type: verbatim
23007 #: ../fish/guestfish-actions.pod:654
23008 #, no-wrap
23009 msgid ""
23010 " checksums-out csumtype directory (sumsfile|-)\n"
23011 "\n"
23012 msgstr ""
23013
23014 #. type: =head2
23015 #: ../fish/guestfish-actions.pod:670
23016 msgid "chmod"
23017 msgstr ""
23018
23019 #. type: verbatim
23020 #: ../fish/guestfish-actions.pod:672
23021 #, no-wrap
23022 msgid ""
23023 " chmod mode path\n"
23024 "\n"
23025 msgstr ""
23026
23027 #. type: =head2
23028 #: ../fish/guestfish-actions.pod:683
23029 msgid "chown"
23030 msgstr ""
23031
23032 #. type: verbatim
23033 #: ../fish/guestfish-actions.pod:685
23034 #, no-wrap
23035 msgid ""
23036 " chown owner group path\n"
23037 "\n"
23038 msgstr ""
23039
23040 #. type: =head2
23041 #: ../fish/guestfish-actions.pod:693
23042 msgid "command"
23043 msgstr ""
23044
23045 #. type: verbatim
23046 #: ../fish/guestfish-actions.pod:695
23047 #, no-wrap
23048 msgid ""
23049 " command 'arguments ...'\n"
23050 "\n"
23051 msgstr ""
23052
23053 #. type: textblock
23054 #: ../fish/guestfish-actions.pod:702
23055 msgid ""
23056 "The single parameter is an argv-style list of arguments.  The first element "
23057 "is the name of the program to run.  Subsequent elements are parameters.  The "
23058 "list must be non-empty (ie. must contain a program name).  Note that the "
23059 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23060 msgstr ""
23061
23062 #. type: =head2
23063 #: ../fish/guestfish-actions.pod:730
23064 msgid "command-lines"
23065 msgstr ""
23066
23067 #. type: verbatim
23068 #: ../fish/guestfish-actions.pod:732
23069 #, no-wrap
23070 msgid ""
23071 " command-lines 'arguments ...'\n"
23072 "\n"
23073 msgstr ""
23074
23075 #. type: textblock
23076 #: ../fish/guestfish-actions.pod:734
23077 msgid ""
23078 "This is the same as L</command>, but splits the result into a list of lines."
23079 msgstr ""
23080
23081 #. type: textblock
23082 #: ../fish/guestfish-actions.pod:737
23083 msgid "See also: L</sh-lines>"
23084 msgstr ""
23085
23086 #. type: =head2
23087 #: ../fish/guestfish-actions.pod:742
23088 msgid "config"
23089 msgstr ""
23090
23091 #. type: verbatim
23092 #: ../fish/guestfish-actions.pod:744
23093 #, no-wrap
23094 msgid ""
23095 " config qemuparam qemuvalue\n"
23096 "\n"
23097 msgstr ""
23098
23099 #. type: =head2
23100 #: ../fish/guestfish-actions.pod:755
23101 msgid "copy-size"
23102 msgstr ""
23103
23104 #. type: verbatim
23105 #: ../fish/guestfish-actions.pod:757
23106 #, no-wrap
23107 msgid ""
23108 " copy-size src dest size\n"
23109 "\n"
23110 msgstr ""
23111
23112 #. type: =head2
23113 #: ../fish/guestfish-actions.pod:765
23114 msgid "cp"
23115 msgstr ""
23116
23117 #. type: verbatim
23118 #: ../fish/guestfish-actions.pod:767
23119 #, no-wrap
23120 msgid ""
23121 " cp src dest\n"
23122 "\n"
23123 msgstr ""
23124
23125 #. type: =head2
23126 #: ../fish/guestfish-actions.pod:772
23127 msgid "cp-a"
23128 msgstr ""
23129
23130 #. type: verbatim
23131 #: ../fish/guestfish-actions.pod:774
23132 #, no-wrap
23133 msgid ""
23134 " cp-a src dest\n"
23135 "\n"
23136 msgstr ""
23137
23138 #. type: =head2
23139 #: ../fish/guestfish-actions.pod:779
23140 msgid "dd"
23141 msgstr ""
23142
23143 #. type: verbatim
23144 #: ../fish/guestfish-actions.pod:781
23145 #, no-wrap
23146 msgid ""
23147 " dd src dest\n"
23148 "\n"
23149 msgstr ""
23150
23151 #. type: textblock
23152 #: ../fish/guestfish-actions.pod:788
23153 msgid ""
23154 "If the destination is a device, it must be as large or larger than the "
23155 "source file or device, otherwise the copy will fail.  This command cannot do "
23156 "partial copies (see L</copy-size>)."
23157 msgstr ""
23158
23159 #. type: =head2
23160 #: ../fish/guestfish-actions.pod:792
23161 msgid "df"
23162 msgstr ""
23163
23164 #. type: verbatim
23165 #: ../fish/guestfish-actions.pod:794
23166 #, no-wrap
23167 msgid ""
23168 " df\n"
23169 "\n"
23170 msgstr ""
23171
23172 #. type: textblock
23173 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
23174 msgid ""
23175 "This command is mostly useful for interactive sessions.  It is I<not> "
23176 "intended that you try to parse the output string.  Use L</statvfs> from "
23177 "programs."
23178 msgstr ""
23179
23180 #. type: =head2
23181 #: ../fish/guestfish-actions.pod:802
23182 msgid "df-h"
23183 msgstr ""
23184
23185 #. type: verbatim
23186 #: ../fish/guestfish-actions.pod:804
23187 #, no-wrap
23188 msgid ""
23189 " df-h\n"
23190 "\n"
23191 msgstr ""
23192
23193 #. type: =head2
23194 #: ../fish/guestfish-actions.pod:813
23195 msgid "dmesg"
23196 msgstr ""
23197
23198 #. type: verbatim
23199 #: ../fish/guestfish-actions.pod:815
23200 #, no-wrap
23201 msgid ""
23202 " dmesg\n"
23203 "\n"
23204 msgstr ""
23205
23206 #. type: textblock
23207 #: ../fish/guestfish-actions.pod:821
23208 msgid ""
23209 "Another way to get the same information is to enable verbose messages with "
23210 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23211 "before running the program."
23212 msgstr ""
23213
23214 #. type: =head2
23215 #: ../fish/guestfish-actions.pod:826
23216 msgid "download"
23217 msgstr ""
23218
23219 #. type: verbatim
23220 #: ../fish/guestfish-actions.pod:828
23221 #, no-wrap
23222 msgid ""
23223 " download remotefilename (filename|-)\n"
23224 "\n"
23225 msgstr ""
23226
23227 #. type: textblock
23228 #: ../fish/guestfish-actions.pod:835
23229 msgid "See also L</upload>, L</cat>."
23230 msgstr ""
23231
23232 #. type: =head2
23233 #: ../fish/guestfish-actions.pod:839
23234 msgid "download-offset"
23235 msgstr ""
23236
23237 #. type: verbatim
23238 #: ../fish/guestfish-actions.pod:841
23239 #, no-wrap
23240 msgid ""
23241 " download-offset remotefilename (filename|-) offset size\n"
23242 "\n"
23243 msgstr ""
23244
23245 #. type: textblock
23246 #: ../fish/guestfish-actions.pod:849
23247 msgid ""
23248 "Note that there is no limit on the amount of data that can be downloaded "
23249 "with this call, unlike with L</pread>, and this call always reads the full "
23250 "amount unless an error occurs."
23251 msgstr ""
23252
23253 #. type: textblock
23254 #: ../fish/guestfish-actions.pod:854
23255 msgid "See also L</download>, L</pread>."
23256 msgstr ""
23257
23258 #. type: =head2
23259 #: ../fish/guestfish-actions.pod:858
23260 msgid "drop-caches"
23261 msgstr ""
23262
23263 #. type: verbatim
23264 #: ../fish/guestfish-actions.pod:860
23265 #, no-wrap
23266 msgid ""
23267 " drop-caches whattodrop\n"
23268 "\n"
23269 msgstr ""
23270
23271 #. type: =head2
23272 #: ../fish/guestfish-actions.pod:872
23273 msgid "du"
23274 msgstr ""
23275
23276 #. type: verbatim
23277 #: ../fish/guestfish-actions.pod:874
23278 #, no-wrap
23279 msgid ""
23280 " du path\n"
23281 "\n"
23282 msgstr ""
23283
23284 #. type: =head2
23285 #: ../fish/guestfish-actions.pod:886
23286 msgid "e2fsck-f"
23287 msgstr ""
23288
23289 #. type: verbatim
23290 #: ../fish/guestfish-actions.pod:888
23291 #, no-wrap
23292 msgid ""
23293 " e2fsck-f device\n"
23294 "\n"
23295 msgstr ""
23296
23297 #. type: textblock
23298 #: ../fish/guestfish-actions.pod:894
23299 msgid ""
23300 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23301 "should use L</fsck>."
23302 msgstr ""
23303
23304 #. type: =head2
23305 #: ../fish/guestfish-actions.pod:897
23306 msgid "echo-daemon"
23307 msgstr ""
23308
23309 #. type: verbatim
23310 #: ../fish/guestfish-actions.pod:899
23311 #, no-wrap
23312 msgid ""
23313 " echo-daemon 'words ...'\n"
23314 "\n"
23315 msgstr ""
23316
23317 #. type: textblock
23318 #: ../fish/guestfish-actions.pod:906
23319 msgid "See also L</ping-daemon>."
23320 msgstr ""
23321
23322 #. type: =head2
23323 #: ../fish/guestfish-actions.pod:908
23324 msgid "egrep"
23325 msgstr ""
23326
23327 #. type: verbatim
23328 #: ../fish/guestfish-actions.pod:910
23329 #, no-wrap
23330 msgid ""
23331 " egrep regex path\n"
23332 "\n"
23333 msgstr ""
23334
23335 #. type: =head2
23336 #: ../fish/guestfish-actions.pod:918
23337 msgid "egrepi"
23338 msgstr ""
23339
23340 #. type: verbatim
23341 #: ../fish/guestfish-actions.pod:920
23342 #, no-wrap
23343 msgid ""
23344 " egrepi regex path\n"
23345 "\n"
23346 msgstr ""
23347
23348 #. type: =head2
23349 #: ../fish/guestfish-actions.pod:928
23350 msgid "equal"
23351 msgstr ""
23352
23353 #. type: verbatim
23354 #: ../fish/guestfish-actions.pod:930
23355 #, no-wrap
23356 msgid ""
23357 " equal file1 file2\n"
23358 "\n"
23359 msgstr ""
23360
23361 #. type: =head2
23362 #: ../fish/guestfish-actions.pod:937
23363 msgid "exists"
23364 msgstr ""
23365
23366 #. type: verbatim
23367 #: ../fish/guestfish-actions.pod:939
23368 #, no-wrap
23369 msgid ""
23370 " exists path\n"
23371 "\n"
23372 msgstr ""
23373
23374 #. type: textblock
23375 #: ../fish/guestfish-actions.pod:944
23376 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23377 msgstr ""
23378
23379 #. type: =head2
23380 #: ../fish/guestfish-actions.pod:946
23381 msgid "fallocate"
23382 msgstr ""
23383
23384 #. type: verbatim
23385 #: ../fish/guestfish-actions.pod:948
23386 #, no-wrap
23387 msgid ""
23388 " fallocate path len\n"
23389 "\n"
23390 msgstr ""
23391
23392 #. type: =head2
23393 #: ../fish/guestfish-actions.pod:965
23394 msgid "fallocate64"
23395 msgstr ""
23396
23397 #. type: verbatim
23398 #: ../fish/guestfish-actions.pod:967
23399 #, no-wrap
23400 msgid ""
23401 " fallocate64 path len\n"
23402 "\n"
23403 msgstr ""
23404
23405 #. type: textblock
23406 #: ../fish/guestfish-actions.pod:973
23407 msgid ""
23408 "Note that this call allocates disk blocks for the file.  To create a sparse "
23409 "file use L</truncate-size> instead."
23410 msgstr ""
23411
23412 #. type: textblock
23413 #: ../fish/guestfish-actions.pod:976
23414 msgid ""
23415 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23416 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23417 "maximum size of files created through that call to 1GB."
23418 msgstr ""
23419
23420 #. type: =head2
23421 #: ../fish/guestfish-actions.pod:985
23422 msgid "fgrep"
23423 msgstr ""
23424
23425 #. type: verbatim
23426 #: ../fish/guestfish-actions.pod:987
23427 #, no-wrap
23428 msgid ""
23429 " fgrep pattern path\n"
23430 "\n"
23431 msgstr ""
23432
23433 #. type: =head2
23434 #: ../fish/guestfish-actions.pod:995
23435 msgid "fgrepi"
23436 msgstr ""
23437
23438 #. type: verbatim
23439 #: ../fish/guestfish-actions.pod:997
23440 #, no-wrap
23441 msgid ""
23442 " fgrepi pattern path\n"
23443 "\n"
23444 msgstr ""
23445
23446 #. type: =head2
23447 #: ../fish/guestfish-actions.pod:1005
23448 msgid "file"
23449 msgstr ""
23450
23451 #. type: verbatim
23452 #: ../fish/guestfish-actions.pod:1007
23453 #, no-wrap
23454 msgid ""
23455 " file path\n"
23456 "\n"
23457 msgstr ""
23458
23459 #. type: textblock
23460 #: ../fish/guestfish-actions.pod:1023
23461 msgid ""
23462 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23463 "(etc), L</is-zero>."
23464 msgstr ""
23465
23466 #. type: =head2
23467 #: ../fish/guestfish-actions.pod:1026
23468 msgid "file-architecture"
23469 msgstr ""
23470
23471 #. type: verbatim
23472 #: ../fish/guestfish-actions.pod:1028
23473 #, no-wrap
23474 msgid ""
23475 " file-architecture filename\n"
23476 "\n"
23477 msgstr ""
23478
23479 #. type: =head2
23480 #: ../fish/guestfish-actions.pod:1131
23481 msgid "filesize"
23482 msgstr ""
23483
23484 #. type: verbatim
23485 #: ../fish/guestfish-actions.pod:1133
23486 #, no-wrap
23487 msgid ""
23488 " filesize file\n"
23489 "\n"
23490 msgstr ""
23491
23492 #. type: textblock
23493 #: ../fish/guestfish-actions.pod:1137
23494 msgid ""
23495 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23496 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23497 msgstr ""
23498
23499 #. type: =head2
23500 #: ../fish/guestfish-actions.pod:1141
23501 msgid "fill"
23502 msgstr ""
23503
23504 #. type: verbatim
23505 #: ../fish/guestfish-actions.pod:1143
23506 #, no-wrap
23507 msgid ""
23508 " fill c len path\n"
23509 "\n"
23510 msgstr ""
23511
23512 #. type: textblock
23513 #: ../fish/guestfish-actions.pod:1149
23514 msgid ""
23515 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23516 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23517 "L</fill-pattern>."
23518 msgstr ""
23519
23520 #. type: =head2
23521 #: ../fish/guestfish-actions.pod:1154
23522 msgid "fill-pattern"
23523 msgstr ""
23524
23525 #. type: verbatim
23526 #: ../fish/guestfish-actions.pod:1156
23527 #, no-wrap
23528 msgid ""
23529 " fill-pattern pattern len path\n"
23530 "\n"
23531 msgstr ""
23532
23533 #. type: textblock
23534 #: ../fish/guestfish-actions.pod:1158
23535 msgid ""
23536 "This function is like L</fill> except that it creates a new file of length "
23537 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23538 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23539 "bytes."
23540 msgstr ""
23541
23542 #. type: =head2
23543 #: ../fish/guestfish-actions.pod:1163
23544 msgid "find"
23545 msgstr ""
23546
23547 #. type: verbatim
23548 #: ../fish/guestfish-actions.pod:1165
23549 #, no-wrap
23550 msgid ""
23551 " find directory\n"
23552 "\n"
23553 msgstr ""
23554
23555 #. type: textblock
23556 #: ../fish/guestfish-actions.pod:1179
23557 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23558 msgstr ""
23559
23560 #. type: textblock
23561 #: ../fish/guestfish-actions.pod:1192
23562 msgid "See also L</find0>."
23563 msgstr ""
23564
23565 #. type: =head2
23566 #: ../fish/guestfish-actions.pod:1197
23567 msgid "find0"
23568 msgstr ""
23569
23570 #. type: verbatim
23571 #: ../fish/guestfish-actions.pod:1199
23572 #, no-wrap
23573 msgid ""
23574 " find0 directory (files|-)\n"
23575 "\n"
23576 msgstr ""
23577
23578 #. type: textblock
23579 #: ../fish/guestfish-actions.pod:1205
23580 msgid ""
23581 "This command works the same way as L</find> with the following exceptions:"
23582 msgstr ""
23583
23584 #. type: =head2
23585 #: ../fish/guestfish-actions.pod:1232
23586 msgid "findfs-label"
23587 msgstr ""
23588
23589 #. type: verbatim
23590 #: ../fish/guestfish-actions.pod:1234
23591 #, no-wrap
23592 msgid ""
23593 " findfs-label label\n"
23594 "\n"
23595 msgstr ""
23596
23597 #. type: textblock
23598 #: ../fish/guestfish-actions.pod:1240
23599 msgid "To find the label of a filesystem, use L</vfs-label>."
23600 msgstr ""
23601
23602 #. type: =head2
23603 #: ../fish/guestfish-actions.pod:1242
23604 msgid "findfs-uuid"
23605 msgstr ""
23606
23607 #. type: verbatim
23608 #: ../fish/guestfish-actions.pod:1244
23609 #, no-wrap
23610 msgid ""
23611 " findfs-uuid uuid\n"
23612 "\n"
23613 msgstr ""
23614
23615 #. type: textblock
23616 #: ../fish/guestfish-actions.pod:1250
23617 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23618 msgstr ""
23619
23620 #. type: =head2
23621 #: ../fish/guestfish-actions.pod:1252
23622 msgid "fsck"
23623 msgstr ""
23624
23625 #. type: verbatim
23626 #: ../fish/guestfish-actions.pod:1254
23627 #, no-wrap
23628 msgid ""
23629 " fsck fstype device\n"
23630 "\n"
23631 msgstr ""
23632
23633 #. type: =head2
23634 #: ../fish/guestfish-actions.pod:1284
23635 msgid "get-append"
23636 msgstr ""
23637
23638 #. type: verbatim
23639 #: ../fish/guestfish-actions.pod:1286
23640 #, no-wrap
23641 msgid ""
23642 " get-append\n"
23643 "\n"
23644 msgstr ""
23645
23646 #. type: =head2
23647 #: ../fish/guestfish-actions.pod:1293
23648 msgid "get-attach-method"
23649 msgstr ""
23650
23651 #. type: verbatim
23652 #: ../fish/guestfish-actions.pod:1295
23653 #, no-wrap
23654 msgid ""
23655 " get-attach-method\n"
23656 "\n"
23657 msgstr ""
23658
23659 #. type: textblock
23660 #: ../fish/guestfish-actions.pod:1297
23661 msgid "Return the current attach method.  See L</set-attach-method>."
23662 msgstr ""
23663
23664 #. type: =head2
23665 #: ../fish/guestfish-actions.pod:1299
23666 msgid "get-autosync"
23667 msgstr ""
23668
23669 #. type: verbatim
23670 #: ../fish/guestfish-actions.pod:1301
23671 #, no-wrap
23672 msgid ""
23673 " get-autosync\n"
23674 "\n"
23675 msgstr ""
23676
23677 #. type: =head2
23678 #: ../fish/guestfish-actions.pod:1305
23679 msgid "get-direct"
23680 msgstr ""
23681
23682 #. type: verbatim
23683 #: ../fish/guestfish-actions.pod:1307
23684 #, no-wrap
23685 msgid ""
23686 " get-direct\n"
23687 "\n"
23688 msgstr ""
23689
23690 #. type: =head2
23691 #: ../fish/guestfish-actions.pod:1311
23692 msgid "get-e2label"
23693 msgstr ""
23694
23695 #. type: verbatim
23696 #: ../fish/guestfish-actions.pod:1313
23697 #, no-wrap
23698 msgid ""
23699 " get-e2label device\n"
23700 "\n"
23701 msgstr ""
23702
23703 #. type: =head2
23704 #: ../fish/guestfish-actions.pod:1325
23705 msgid "get-e2uuid"
23706 msgstr ""
23707
23708 #. type: verbatim
23709 #: ../fish/guestfish-actions.pod:1327
23710 #, no-wrap
23711 msgid ""
23712 " get-e2uuid device\n"
23713 "\n"
23714 msgstr ""
23715
23716 #. type: =head2
23717 #: ../fish/guestfish-actions.pod:1339
23718 msgid "get-memsize"
23719 msgstr ""
23720
23721 #. type: verbatim
23722 #: ../fish/guestfish-actions.pod:1341
23723 #, no-wrap
23724 msgid ""
23725 " get-memsize\n"
23726 "\n"
23727 msgstr ""
23728
23729 #. type: textblock
23730 #: ../fish/guestfish-actions.pod:1346
23731 msgid ""
23732 "If L</set-memsize> was not called on this handle, and if "
23733 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23734 "value for memsize."
23735 msgstr ""
23736
23737 #. type: =head2
23738 #: ../fish/guestfish-actions.pod:1353
23739 msgid "get-network"
23740 msgstr ""
23741
23742 #. type: verbatim
23743 #: ../fish/guestfish-actions.pod:1355
23744 #, no-wrap
23745 msgid ""
23746 " get-network\n"
23747 "\n"
23748 msgstr ""
23749
23750 #. type: =head2
23751 #: ../fish/guestfish-actions.pod:1359
23752 msgid "get-path"
23753 msgstr ""
23754
23755 #. type: verbatim
23756 #: ../fish/guestfish-actions.pod:1361
23757 #, no-wrap
23758 msgid ""
23759 " get-path\n"
23760 "\n"
23761 msgstr ""
23762
23763 #. type: =head2
23764 #: ../fish/guestfish-actions.pod:1368
23765 msgid "get-pid"
23766 msgstr ""
23767
23768 #. type: =head2
23769 #: ../fish/guestfish-actions.pod:1370
23770 msgid "pid"
23771 msgstr ""
23772
23773 #. type: verbatim
23774 #: ../fish/guestfish-actions.pod:1372
23775 #, no-wrap
23776 msgid ""
23777 " get-pid\n"
23778 "\n"
23779 msgstr ""
23780
23781 #. type: =head2
23782 #: ../fish/guestfish-actions.pod:1379
23783 msgid "get-qemu"
23784 msgstr ""
23785
23786 #. type: verbatim
23787 #: ../fish/guestfish-actions.pod:1381
23788 #, no-wrap
23789 msgid ""
23790 " get-qemu\n"
23791 "\n"
23792 msgstr ""
23793
23794 #. type: =head2
23795 #: ../fish/guestfish-actions.pod:1388
23796 msgid "get-recovery-proc"
23797 msgstr ""
23798
23799 #. type: verbatim
23800 #: ../fish/guestfish-actions.pod:1390
23801 #, no-wrap
23802 msgid ""
23803 " get-recovery-proc\n"
23804 "\n"
23805 msgstr ""
23806
23807 #. type: =head2
23808 #: ../fish/guestfish-actions.pod:1394
23809 msgid "get-selinux"
23810 msgstr ""
23811
23812 #. type: verbatim
23813 #: ../fish/guestfish-actions.pod:1396
23814 #, no-wrap
23815 msgid ""
23816 " get-selinux\n"
23817 "\n"
23818 msgstr ""
23819
23820 #. type: textblock
23821 #: ../fish/guestfish-actions.pod:1398
23822 msgid ""
23823 "This returns the current setting of the selinux flag which is passed to the "
23824 "appliance at boot time.  See L</set-selinux>."
23825 msgstr ""
23826
23827 #. type: =head2
23828 #: ../fish/guestfish-actions.pod:1404
23829 msgid "get-state"
23830 msgstr ""
23831
23832 #. type: verbatim
23833 #: ../fish/guestfish-actions.pod:1406
23834 #, no-wrap
23835 msgid ""
23836 " get-state\n"
23837 "\n"
23838 msgstr ""
23839
23840 #. type: =head2
23841 #: ../fish/guestfish-actions.pod:1413
23842 msgid "get-trace"
23843 msgstr ""
23844
23845 #. type: verbatim
23846 #: ../fish/guestfish-actions.pod:1415
23847 #, no-wrap
23848 msgid ""
23849 " get-trace\n"
23850 "\n"
23851 msgstr ""
23852
23853 #. type: =head2
23854 #: ../fish/guestfish-actions.pod:1419
23855 msgid "get-umask"
23856 msgstr ""
23857
23858 #. type: verbatim
23859 #: ../fish/guestfish-actions.pod:1421
23860 #, no-wrap
23861 msgid ""
23862 " get-umask\n"
23863 "\n"
23864 msgstr ""
23865
23866 #. type: textblock
23867 #: ../fish/guestfish-actions.pod:1423
23868 msgid ""
23869 "Return the current umask.  By default the umask is C<022> unless it has been "
23870 "set by calling L</umask>."
23871 msgstr ""
23872
23873 #. type: =head2
23874 #: ../fish/guestfish-actions.pod:1426
23875 msgid "get-verbose"
23876 msgstr ""
23877
23878 #. type: verbatim
23879 #: ../fish/guestfish-actions.pod:1428
23880 #, no-wrap
23881 msgid ""
23882 " get-verbose\n"
23883 "\n"
23884 msgstr ""
23885
23886 #. type: =head2
23887 #: ../fish/guestfish-actions.pod:1432
23888 msgid "getcon"
23889 msgstr ""
23890
23891 #. type: verbatim
23892 #: ../fish/guestfish-actions.pod:1434
23893 #, no-wrap
23894 msgid ""
23895 " getcon\n"
23896 "\n"
23897 msgstr ""
23898
23899 #. type: textblock
23900 #: ../fish/guestfish-actions.pod:1438
23901 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23902 msgstr ""
23903
23904 #. type: =head2
23905 #: ../fish/guestfish-actions.pod:1441
23906 msgid "getxattr"
23907 msgstr ""
23908
23909 #. type: verbatim
23910 #: ../fish/guestfish-actions.pod:1443
23911 #, no-wrap
23912 msgid ""
23913 " getxattr path name\n"
23914 "\n"
23915 msgstr ""
23916
23917 #. type: textblock
23918 #: ../fish/guestfish-actions.pod:1445
23919 msgid ""
23920 "Get a single extended attribute from file C<path> named C<name>.  This call "
23921 "follows symlinks.  If you want to lookup an extended attribute for the "
23922 "symlink itself, use L</lgetxattr>."
23923 msgstr ""
23924
23925 #. type: textblock
23926 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
23927 msgid ""
23928 "Normally it is better to get all extended attributes from a file in one go "
23929 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23930 "buggy and do not provide a way to list out attributes.  For these "
23931 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23932 "attributes you want in advance and call this function."
23933 msgstr ""
23934
23935 #. type: textblock
23936 #: ../fish/guestfish-actions.pod:1459
23937 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23938 msgstr ""
23939
23940 #. type: =head2
23941 #: ../fish/guestfish-actions.pod:1461
23942 msgid "getxattrs"
23943 msgstr ""
23944
23945 #. type: verbatim
23946 #: ../fish/guestfish-actions.pod:1463
23947 #, no-wrap
23948 msgid ""
23949 " getxattrs path\n"
23950 "\n"
23951 msgstr ""
23952
23953 #. type: textblock
23954 #: ../fish/guestfish-actions.pod:1471
23955 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23956 msgstr ""
23957
23958 #. type: =head2
23959 #: ../fish/guestfish-actions.pod:1473
23960 msgid "glob-expand"
23961 msgstr ""
23962
23963 #. type: verbatim
23964 #: ../fish/guestfish-actions.pod:1475
23965 #, no-wrap
23966 msgid ""
23967 " glob-expand pattern\n"
23968 "\n"
23969 msgstr ""
23970
23971 #. type: =head2
23972 #: ../fish/guestfish-actions.pod:1488
23973 msgid "grep"
23974 msgstr ""
23975
23976 #. type: verbatim
23977 #: ../fish/guestfish-actions.pod:1490
23978 #, no-wrap
23979 msgid ""
23980 " grep regex path\n"
23981 "\n"
23982 msgstr ""
23983
23984 #. type: =head2
23985 #: ../fish/guestfish-actions.pod:1498
23986 msgid "grepi"
23987 msgstr ""
23988
23989 #. type: verbatim
23990 #: ../fish/guestfish-actions.pod:1500
23991 #, no-wrap
23992 msgid ""
23993 " grepi regex path\n"
23994 "\n"
23995 msgstr ""
23996
23997 #. type: =head2
23998 #: ../fish/guestfish-actions.pod:1508
23999 msgid "grub-install"
24000 msgstr ""
24001
24002 #. type: verbatim
24003 #: ../fish/guestfish-actions.pod:1510
24004 #, no-wrap
24005 msgid ""
24006 " grub-install root device\n"
24007 "\n"
24008 msgstr ""
24009
24010 #. type: =head2
24011 #: ../fish/guestfish-actions.pod:1526
24012 msgid "head"
24013 msgstr ""
24014
24015 #. type: verbatim
24016 #: ../fish/guestfish-actions.pod:1528
24017 #, no-wrap
24018 msgid ""
24019 " head path\n"
24020 "\n"
24021 msgstr ""
24022
24023 #. type: =head2
24024 #: ../fish/guestfish-actions.pod:1536
24025 msgid "head-n"
24026 msgstr ""
24027
24028 #. type: verbatim
24029 #: ../fish/guestfish-actions.pod:1538
24030 #, no-wrap
24031 msgid ""
24032 " head-n nrlines path\n"
24033 "\n"
24034 msgstr ""
24035
24036 #. type: =head2
24037 #: ../fish/guestfish-actions.pod:1551
24038 msgid "hexdump"
24039 msgstr ""
24040
24041 #. type: verbatim
24042 #: ../fish/guestfish-actions.pod:1553
24043 #, no-wrap
24044 msgid ""
24045 " hexdump path\n"
24046 "\n"
24047 msgstr ""
24048
24049 #. type: =head2
24050 #: ../fish/guestfish-actions.pod:1561
24051 msgid "initrd-cat"
24052 msgstr ""
24053
24054 #. type: verbatim
24055 #: ../fish/guestfish-actions.pod:1563
24056 #, no-wrap
24057 msgid ""
24058 " initrd-cat initrdpath filename\n"
24059 "\n"
24060 msgstr ""
24061
24062 #. type: textblock
24063 #: ../fish/guestfish-actions.pod:1575
24064 msgid "See also L</initrd-list>."
24065 msgstr ""
24066
24067 #. type: =head2
24068 #: ../fish/guestfish-actions.pod:1580
24069 msgid "initrd-list"
24070 msgstr ""
24071
24072 #. type: verbatim
24073 #: ../fish/guestfish-actions.pod:1582
24074 #, no-wrap
24075 msgid ""
24076 " initrd-list path\n"
24077 "\n"
24078 msgstr ""
24079
24080 #. type: =head2
24081 #: ../fish/guestfish-actions.pod:1594
24082 msgid "inotify-add-watch"
24083 msgstr ""
24084
24085 #. type: verbatim
24086 #: ../fish/guestfish-actions.pod:1596
24087 #, no-wrap
24088 msgid ""
24089 " inotify-add-watch path mask\n"
24090 "\n"
24091 msgstr ""
24092
24093 #. type: =head2
24094 #: ../fish/guestfish-actions.pod:1608
24095 msgid "inotify-close"
24096 msgstr ""
24097
24098 #. type: verbatim
24099 #: ../fish/guestfish-actions.pod:1610
24100 #, no-wrap
24101 msgid ""
24102 " inotify-close\n"
24103 "\n"
24104 msgstr ""
24105
24106 #. type: =head2
24107 #: ../fish/guestfish-actions.pod:1616
24108 msgid "inotify-files"
24109 msgstr ""
24110
24111 #. type: verbatim
24112 #: ../fish/guestfish-actions.pod:1618
24113 #, no-wrap
24114 msgid ""
24115 " inotify-files\n"
24116 "\n"
24117 msgstr ""
24118
24119 #. type: textblock
24120 #: ../fish/guestfish-actions.pod:1620
24121 msgid ""
24122 "This function is a helpful wrapper around L</inotify-read> which just "
24123 "returns a list of pathnames of objects that were touched.  The returned "
24124 "pathnames are sorted and deduplicated."
24125 msgstr ""
24126
24127 #. type: =head2
24128 #: ../fish/guestfish-actions.pod:1624
24129 msgid "inotify-init"
24130 msgstr ""
24131
24132 #. type: verbatim
24133 #: ../fish/guestfish-actions.pod:1626
24134 #, no-wrap
24135 msgid ""
24136 " inotify-init maxevents\n"
24137 "\n"
24138 msgstr ""
24139
24140 #. type: textblock
24141 #: ../fish/guestfish-actions.pod:1632
24142 msgid ""
24143 "C<maxevents> is the maximum number of events which will be queued up between "
24144 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
24145 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
24146 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
24147 "but records the fact that it threw them away by setting a flag "
24148 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24149 msgstr ""
24150
24151 #. type: textblock
24152 #: ../fish/guestfish-actions.pod:1642
24153 msgid ""
24154 "Before any events are generated, you have to add some watches to the "
24155 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
24156 "L</inotify-watch-all>."
24157 msgstr ""
24158
24159 #. type: textblock
24160 #: ../fish/guestfish-actions.pod:1648
24161 msgid ""
24162 "Queued up events should be read periodically by calling L</inotify-read> (or "
24163 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
24164 "If you don't read the events out often enough then you risk the internal "
24165 "queue overflowing."
24166 msgstr ""
24167
24168 #. type: textblock
24169 #: ../fish/guestfish-actions.pod:1655
24170 msgid ""
24171 "The handle should be closed after use by calling L</inotify-close>.  This "
24172 "also removes any watches automatically."
24173 msgstr ""
24174
24175 #. type: =head2
24176 #: ../fish/guestfish-actions.pod:1664
24177 msgid "inotify-read"
24178 msgstr ""
24179
24180 #. type: verbatim
24181 #: ../fish/guestfish-actions.pod:1666
24182 #, no-wrap
24183 msgid ""
24184 " inotify-read\n"
24185 "\n"
24186 msgstr ""
24187
24188 #. type: =head2
24189 #: ../fish/guestfish-actions.pod:1679
24190 msgid "inotify-rm-watch"
24191 msgstr ""
24192
24193 #. type: verbatim
24194 #: ../fish/guestfish-actions.pod:1681
24195 #, no-wrap
24196 msgid ""
24197 " inotify-rm-watch wd\n"
24198 "\n"
24199 msgstr ""
24200
24201 #. type: textblock
24202 #: ../fish/guestfish-actions.pod:1683
24203 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24204 msgstr ""
24205
24206 #. type: =head2
24207 #: ../fish/guestfish-actions.pod:1686
24208 msgid "inspect-get-arch"
24209 msgstr ""
24210
24211 #. type: verbatim
24212 #: ../fish/guestfish-actions.pod:1688
24213 #, no-wrap
24214 msgid ""
24215 " inspect-get-arch root\n"
24216 "\n"
24217 msgstr ""
24218
24219 #. type: textblock
24220 #: ../fish/guestfish-actions.pod:1690
24221 msgid ""
24222 "This returns the architecture of the inspected operating system.  The "
24223 "possible return values are listed under L</file-architecture>."
24224 msgstr ""
24225
24226 #. type: =head2
24227 #: ../fish/guestfish-actions.pod:1699
24228 msgid "inspect-get-distro"
24229 msgstr ""
24230
24231 #. type: verbatim
24232 #: ../fish/guestfish-actions.pod:1701
24233 #, no-wrap
24234 msgid ""
24235 " inspect-get-distro root\n"
24236 "\n"
24237 msgstr ""
24238
24239 #. type: =head2
24240 #: ../fish/guestfish-actions.pod:1782
24241 msgid "inspect-get-drive-mappings"
24242 msgstr ""
24243
24244 #. type: verbatim
24245 #: ../fish/guestfish-actions.pod:1784
24246 #, no-wrap
24247 msgid ""
24248 " inspect-get-drive-mappings root\n"
24249 "\n"
24250 msgstr ""
24251
24252 #. type: textblock
24253 #: ../fish/guestfish-actions.pod:1811
24254 msgid ""
24255 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24256 "get-mountpoints>, L</inspect-get-filesystems>."
24257 msgstr ""
24258
24259 #. type: =head2
24260 #: ../fish/guestfish-actions.pod:1815
24261 msgid "inspect-get-filesystems"
24262 msgstr ""
24263
24264 #. type: verbatim
24265 #: ../fish/guestfish-actions.pod:1817
24266 #, no-wrap
24267 msgid ""
24268 " inspect-get-filesystems root\n"
24269 "\n"
24270 msgstr ""
24271
24272 #. type: textblock
24273 #: ../fish/guestfish-actions.pod:1827
24274 msgid ""
24275 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24276 "get-mountpoints>."
24277 msgstr ""
24278
24279 #. type: =head2
24280 #: ../fish/guestfish-actions.pod:1830
24281 msgid "inspect-get-format"
24282 msgstr ""
24283
24284 #. type: verbatim
24285 #: ../fish/guestfish-actions.pod:1832
24286 #, no-wrap
24287 msgid ""
24288 " inspect-get-format root\n"
24289 "\n"
24290 msgstr ""
24291
24292 #. type: =head2
24293 #: ../fish/guestfish-actions.pod:1861
24294 msgid "inspect-get-hostname"
24295 msgstr ""
24296
24297 #. type: verbatim
24298 #: ../fish/guestfish-actions.pod:1863
24299 #, no-wrap
24300 msgid ""
24301 " inspect-get-hostname root\n"
24302 "\n"
24303 msgstr ""
24304
24305 #. type: =head2
24306 #: ../fish/guestfish-actions.pod:1873
24307 msgid "inspect-get-icon"
24308 msgstr ""
24309
24310 #. type: verbatim
24311 #: ../fish/guestfish-actions.pod:1875
24312 #, no-wrap
24313 msgid ""
24314 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24315 "\n"
24316 msgstr ""
24317
24318 #. type: =head2
24319 #: ../fish/guestfish-actions.pod:1939
24320 msgid "inspect-get-major-version"
24321 msgstr ""
24322
24323 #. type: verbatim
24324 #: ../fish/guestfish-actions.pod:1941
24325 #, no-wrap
24326 msgid ""
24327 " inspect-get-major-version root\n"
24328 "\n"
24329 msgstr ""
24330
24331 #. type: =head2
24332 #: ../fish/guestfish-actions.pod:1957
24333 msgid "inspect-get-minor-version"
24334 msgstr ""
24335
24336 #. type: verbatim
24337 #: ../fish/guestfish-actions.pod:1959
24338 #, no-wrap
24339 msgid ""
24340 " inspect-get-minor-version root\n"
24341 "\n"
24342 msgstr ""
24343
24344 #. type: textblock
24345 #: ../fish/guestfish-actions.pod:1966
24346 msgid ""
24347 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24348 "get-major-version>."
24349 msgstr ""
24350
24351 #. type: =head2
24352 #: ../fish/guestfish-actions.pod:1969
24353 msgid "inspect-get-mountpoints"
24354 msgstr ""
24355
24356 #. type: verbatim
24357 #: ../fish/guestfish-actions.pod:1971
24358 #, no-wrap
24359 msgid ""
24360 " inspect-get-mountpoints root\n"
24361 "\n"
24362 msgstr ""
24363
24364 #. type: textblock
24365 #: ../fish/guestfish-actions.pod:1990
24366 msgid ""
24367 "For operating systems like Windows which still use drive letters, this call "
24368 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24369 "information about the mapping of drive letters to partitions, see L</inspect-"
24370 "get-drive-mappings>."
24371 msgstr ""
24372
24373 #. type: textblock
24374 #: ../fish/guestfish-actions.pod:1996
24375 msgid ""
24376 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24377 "get-filesystems>."
24378 msgstr ""
24379
24380 #. type: =head2
24381 #: ../fish/guestfish-actions.pod:1999
24382 msgid "inspect-get-package-format"
24383 msgstr ""
24384
24385 #. type: verbatim
24386 #: ../fish/guestfish-actions.pod:2001
24387 #, no-wrap
24388 msgid ""
24389 " inspect-get-package-format root\n"
24390 "\n"
24391 msgstr ""
24392
24393 #. type: textblock
24394 #: ../fish/guestfish-actions.pod:2003
24395 msgid ""
24396 "This function and L</inspect-get-package-management> return the package "
24397 "format and package management tool used by the inspected operating system.  "
24398 "For example for Fedora these functions would return C<rpm> (package format) "
24399 "and C<yum> (package management)."
24400 msgstr ""
24401
24402 #. type: =head2
24403 #: ../fish/guestfish-actions.pod:2018
24404 msgid "inspect-get-package-management"
24405 msgstr ""
24406
24407 #. type: verbatim
24408 #: ../fish/guestfish-actions.pod:2020
24409 #, no-wrap
24410 msgid ""
24411 " inspect-get-package-management root\n"
24412 "\n"
24413 msgstr ""
24414
24415 #. type: textblock
24416 #: ../fish/guestfish-actions.pod:2022
24417 msgid ""
24418 "L</inspect-get-package-format> and this function return the package format "
24419 "and package management tool used by the inspected operating system.  For "
24420 "example for Fedora these functions would return C<rpm> (package format) and "
24421 "C<yum> (package management)."
24422 msgstr ""
24423
24424 #. type: =head2
24425 #: ../fish/guestfish-actions.pod:2039
24426 msgid "inspect-get-product-name"
24427 msgstr ""
24428
24429 #. type: verbatim
24430 #: ../fish/guestfish-actions.pod:2041
24431 #, no-wrap
24432 msgid ""
24433 " inspect-get-product-name root\n"
24434 "\n"
24435 msgstr ""
24436
24437 #. type: =head2
24438 #: ../fish/guestfish-actions.pod:2053
24439 msgid "inspect-get-product-variant"
24440 msgstr ""
24441
24442 #. type: verbatim
24443 #: ../fish/guestfish-actions.pod:2055
24444 #, no-wrap
24445 msgid ""
24446 " inspect-get-product-variant root\n"
24447 "\n"
24448 msgstr ""
24449
24450 #. type: textblock
24451 #: ../fish/guestfish-actions.pod:2076
24452 msgid ""
24453 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24454 "get-product-name>, L</inspect-get-major-version>."
24455 msgstr ""
24456
24457 #. type: =head2
24458 #: ../fish/guestfish-actions.pod:2080
24459 msgid "inspect-get-roots"
24460 msgstr ""
24461
24462 #. type: verbatim
24463 #: ../fish/guestfish-actions.pod:2082
24464 #, no-wrap
24465 msgid ""
24466 " inspect-get-roots\n"
24467 "\n"
24468 msgstr ""
24469
24470 #. type: textblock
24471 #: ../fish/guestfish-actions.pod:2084
24472 msgid ""
24473 "This function is a convenient way to get the list of root devices, as "
24474 "returned from a previous call to L</inspect-os>, but without redoing the "
24475 "whole inspection process."
24476 msgstr ""
24477
24478 #. type: textblock
24479 #: ../fish/guestfish-actions.pod:2088
24480 msgid ""
24481 "This returns an empty list if either no root devices were found or the "
24482 "caller has not called L</inspect-os>."
24483 msgstr ""
24484
24485 #. type: =head2
24486 #: ../fish/guestfish-actions.pod:2093
24487 msgid "inspect-get-type"
24488 msgstr ""
24489
24490 #. type: verbatim
24491 #: ../fish/guestfish-actions.pod:2095
24492 #, no-wrap
24493 msgid ""
24494 " inspect-get-type root\n"
24495 "\n"
24496 msgstr ""
24497
24498 #. type: =head2
24499 #: ../fish/guestfish-actions.pod:2125
24500 msgid "inspect-get-windows-current-control-set"
24501 msgstr ""
24502
24503 #. type: verbatim
24504 #: ../fish/guestfish-actions.pod:2127
24505 #, no-wrap
24506 msgid ""
24507 " inspect-get-windows-current-control-set root\n"
24508 "\n"
24509 msgstr ""
24510
24511 #. type: =head2
24512 #: ../fish/guestfish-actions.pod:2138
24513 msgid "inspect-get-windows-systemroot"
24514 msgstr ""
24515
24516 #. type: verbatim
24517 #: ../fish/guestfish-actions.pod:2140
24518 #, no-wrap
24519 msgid ""
24520 " inspect-get-windows-systemroot root\n"
24521 "\n"
24522 msgstr ""
24523
24524 #. type: =head2
24525 #: ../fish/guestfish-actions.pod:2151
24526 msgid "inspect-is-live"
24527 msgstr ""
24528
24529 #. type: verbatim
24530 #: ../fish/guestfish-actions.pod:2153
24531 #, no-wrap
24532 msgid ""
24533 " inspect-is-live root\n"
24534 "\n"
24535 msgstr ""
24536
24537 #. type: textblock
24538 #: ../fish/guestfish-actions.pod:2155
24539 msgid ""
24540 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24541 "then this returns true if a live image was detected on the disk."
24542 msgstr ""
24543
24544 #. type: =head2
24545 #: ../fish/guestfish-actions.pod:2161
24546 msgid "inspect-is-multipart"
24547 msgstr ""
24548
24549 #. type: verbatim
24550 #: ../fish/guestfish-actions.pod:2163
24551 #, no-wrap
24552 msgid ""
24553 " inspect-is-multipart root\n"
24554 "\n"
24555 msgstr ""
24556
24557 #. type: textblock
24558 #: ../fish/guestfish-actions.pod:2165
24559 msgid ""
24560 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24561 "then this returns true if the disk is part of a set."
24562 msgstr ""
24563
24564 #. type: =head2
24565 #: ../fish/guestfish-actions.pod:2171
24566 msgid "inspect-is-netinst"
24567 msgstr ""
24568
24569 #. type: verbatim
24570 #: ../fish/guestfish-actions.pod:2173
24571 #, no-wrap
24572 msgid ""
24573 " inspect-is-netinst root\n"
24574 "\n"
24575 msgstr ""
24576
24577 #. type: textblock
24578 #: ../fish/guestfish-actions.pod:2175
24579 msgid ""
24580 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24581 "then this returns true if the disk is a network installer, ie. not a self-"
24582 "contained install CD but one which is likely to require network access to "
24583 "complete the install."
24584 msgstr ""
24585
24586 #. type: =head2
24587 #: ../fish/guestfish-actions.pod:2183
24588 msgid "inspect-list-applications"
24589 msgstr ""
24590
24591 #. type: verbatim
24592 #: ../fish/guestfish-actions.pod:2185
24593 #, no-wrap
24594 msgid ""
24595 " inspect-list-applications root\n"
24596 "\n"
24597 msgstr ""
24598
24599 #. type: textblock
24600 #: ../fish/guestfish-actions.pod:2189
24601 msgid ""
24602 "I<Note:> This call works differently from other parts of the inspection "
24603 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24604 "then mount up the disks, before calling this.  Listing applications is a "
24605 "significantly more difficult operation which requires access to the full "
24606 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24607 "are just returning data cached in the libguestfs handle, this call actually "
24608 "reads parts of the mounted filesystems during the call."
24609 msgstr ""
24610
24611 #. type: =head2
24612 #: ../fish/guestfish-actions.pod:2279
24613 msgid "inspect-os"
24614 msgstr ""
24615
24616 #. type: verbatim
24617 #: ../fish/guestfish-actions.pod:2281
24618 #, no-wrap
24619 msgid ""
24620 " inspect-os\n"
24621 "\n"
24622 msgstr ""
24623
24624 #. type: textblock
24625 #: ../fish/guestfish-actions.pod:2296
24626 msgid ""
24627 "You can pass the root string(s) returned to other L</inspect-get-*> "
24628 "functions in order to query further information about each operating system, "
24629 "such as the name and version."
24630 msgstr ""
24631
24632 #. type: textblock
24633 #: ../fish/guestfish-actions.pod:2301
24634 msgid ""
24635 "This function uses other libguestfs features such as L</mount-ro> and L</"
24636 "umount-all> in order to mount and unmount filesystems and look at the "
24637 "contents.  This should be called with no disks currently mounted.  The "
24638 "function may also use Augeas, so any existing Augeas handle will be closed."
24639 msgstr ""
24640
24641 #. type: textblock
24642 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511
24643 #: ../fish/guestfish-actions.pod:2557
24644 msgid "See also L</list-filesystems>."
24645 msgstr ""
24646
24647 #. type: =head2
24648 #: ../fish/guestfish-actions.pod:2315
24649 msgid "is-blockdev"
24650 msgstr ""
24651
24652 #. type: verbatim
24653 #: ../fish/guestfish-actions.pod:2317
24654 #, no-wrap
24655 msgid ""
24656 " is-blockdev path\n"
24657 "\n"
24658 msgstr ""
24659
24660 #. type: textblock
24661 #: ../fish/guestfish-actions.pod:2322 ../fish/guestfish-actions.pod:2340
24662 #: ../fish/guestfish-actions.pod:2359 ../fish/guestfish-actions.pod:2368
24663 #: ../fish/guestfish-actions.pod:2378 ../fish/guestfish-actions.pod:2412
24664 #: ../fish/guestfish-actions.pod:2421
24665 msgid "See also L</stat>."
24666 msgstr ""
24667
24668 #. type: =head2
24669 #: ../fish/guestfish-actions.pod:2324
24670 msgid "is-busy"
24671 msgstr ""
24672
24673 #. type: verbatim
24674 #: ../fish/guestfish-actions.pod:2326
24675 #, no-wrap
24676 msgid ""
24677 " is-busy\n"
24678 "\n"
24679 msgstr ""
24680
24681 #. type: =head2
24682 #: ../fish/guestfish-actions.pod:2333
24683 msgid "is-chardev"
24684 msgstr ""
24685
24686 #. type: verbatim
24687 #: ../fish/guestfish-actions.pod:2335
24688 #, no-wrap
24689 msgid ""
24690 " is-chardev path\n"
24691 "\n"
24692 msgstr ""
24693
24694 #. type: =head2
24695 #: ../fish/guestfish-actions.pod:2342
24696 msgid "is-config"
24697 msgstr ""
24698
24699 #. type: verbatim
24700 #: ../fish/guestfish-actions.pod:2344
24701 #, no-wrap
24702 msgid ""
24703 " is-config\n"
24704 "\n"
24705 msgstr ""
24706
24707 #. type: =head2
24708 #: ../fish/guestfish-actions.pod:2351
24709 msgid "is-dir"
24710 msgstr ""
24711
24712 #. type: verbatim
24713 #: ../fish/guestfish-actions.pod:2353
24714 #, no-wrap
24715 msgid ""
24716 " is-dir path\n"
24717 "\n"
24718 msgstr ""
24719
24720 #. type: =head2
24721 #: ../fish/guestfish-actions.pod:2361
24722 msgid "is-fifo"
24723 msgstr ""
24724
24725 #. type: verbatim
24726 #: ../fish/guestfish-actions.pod:2363
24727 #, no-wrap
24728 msgid ""
24729 " is-fifo path\n"
24730 "\n"
24731 msgstr ""
24732
24733 #. type: =head2
24734 #: ../fish/guestfish-actions.pod:2370
24735 msgid "is-file"
24736 msgstr ""
24737
24738 #. type: verbatim
24739 #: ../fish/guestfish-actions.pod:2372
24740 #, no-wrap
24741 msgid ""
24742 " is-file path\n"
24743 "\n"
24744 msgstr ""
24745
24746 #. type: =head2
24747 #: ../fish/guestfish-actions.pod:2380
24748 msgid "is-launching"
24749 msgstr ""
24750
24751 #. type: verbatim
24752 #: ../fish/guestfish-actions.pod:2382
24753 #, no-wrap
24754 msgid ""
24755 " is-launching\n"
24756 "\n"
24757 msgstr ""
24758
24759 #. type: =head2
24760 #: ../fish/guestfish-actions.pod:2389
24761 msgid "is-lv"
24762 msgstr ""
24763
24764 #. type: verbatim
24765 #: ../fish/guestfish-actions.pod:2391
24766 #, no-wrap
24767 msgid ""
24768 " is-lv device\n"
24769 "\n"
24770 msgstr ""
24771
24772 #. type: =head2
24773 #: ../fish/guestfish-actions.pod:2396
24774 msgid "is-ready"
24775 msgstr ""
24776
24777 #. type: verbatim
24778 #: ../fish/guestfish-actions.pod:2398
24779 #, no-wrap
24780 msgid ""
24781 " is-ready\n"
24782 "\n"
24783 msgstr ""
24784
24785 #. type: =head2
24786 #: ../fish/guestfish-actions.pod:2405
24787 msgid "is-socket"
24788 msgstr ""
24789
24790 #. type: verbatim
24791 #: ../fish/guestfish-actions.pod:2407
24792 #, no-wrap
24793 msgid ""
24794 " is-socket path\n"
24795 "\n"
24796 msgstr ""
24797
24798 #. type: =head2
24799 #: ../fish/guestfish-actions.pod:2414
24800 msgid "is-symlink"
24801 msgstr ""
24802
24803 #. type: verbatim
24804 #: ../fish/guestfish-actions.pod:2416
24805 #, no-wrap
24806 msgid ""
24807 " is-symlink path\n"
24808 "\n"
24809 msgstr ""
24810
24811 #. type: =head2
24812 #: ../fish/guestfish-actions.pod:2423
24813 msgid "is-zero"
24814 msgstr ""
24815
24816 #. type: verbatim
24817 #: ../fish/guestfish-actions.pod:2425
24818 #, no-wrap
24819 msgid ""
24820 " is-zero path\n"
24821 "\n"
24822 msgstr ""
24823
24824 #. type: =head2
24825 #: ../fish/guestfish-actions.pod:2430
24826 msgid "is-zero-device"
24827 msgstr ""
24828
24829 #. type: verbatim
24830 #: ../fish/guestfish-actions.pod:2432
24831 #, no-wrap
24832 msgid ""
24833 " is-zero-device device\n"
24834 "\n"
24835 msgstr ""
24836
24837 #. type: =head2
24838 #: ../fish/guestfish-actions.pod:2438
24839 msgid "kill-subprocess"
24840 msgstr ""
24841
24842 #. type: verbatim
24843 #: ../fish/guestfish-actions.pod:2440
24844 #, no-wrap
24845 msgid ""
24846 " kill-subprocess\n"
24847 "\n"
24848 msgstr ""
24849
24850 #. type: =head2
24851 #: ../fish/guestfish-actions.pod:2444
24852 msgid "launch"
24853 msgstr ""
24854
24855 #. type: =head2
24856 #: ../fish/guestfish-actions.pod:2446
24857 msgid "run"
24858 msgstr ""
24859
24860 #. type: verbatim
24861 #: ../fish/guestfish-actions.pod:2448
24862 #, no-wrap
24863 msgid ""
24864 " launch\n"
24865 "\n"
24866 msgstr ""
24867
24868 #. type: =head2
24869 #: ../fish/guestfish-actions.pod:2456
24870 msgid "lchown"
24871 msgstr ""
24872
24873 #. type: verbatim
24874 #: ../fish/guestfish-actions.pod:2458
24875 #, no-wrap
24876 msgid ""
24877 " lchown owner group path\n"
24878 "\n"
24879 msgstr ""
24880
24881 #. type: textblock
24882 #: ../fish/guestfish-actions.pod:2460
24883 msgid ""
24884 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24885 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24886 "target."
24887 msgstr ""
24888
24889 #. type: =head2
24890 #: ../fish/guestfish-actions.pod:2468
24891 msgid "lgetxattr"
24892 msgstr ""
24893
24894 #. type: verbatim
24895 #: ../fish/guestfish-actions.pod:2470
24896 #, no-wrap
24897 msgid ""
24898 " lgetxattr path name\n"
24899 "\n"
24900 msgstr ""
24901
24902 #. type: textblock
24903 #: ../fish/guestfish-actions.pod:2486
24904 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24905 msgstr ""
24906
24907 #. type: =head2
24908 #: ../fish/guestfish-actions.pod:2488
24909 msgid "lgetxattrs"
24910 msgstr ""
24911
24912 #. type: verbatim
24913 #: ../fish/guestfish-actions.pod:2490
24914 #, no-wrap
24915 msgid ""
24916 " lgetxattrs path\n"
24917 "\n"
24918 msgstr ""
24919
24920 #. type: textblock
24921 #: ../fish/guestfish-actions.pod:2492
24922 msgid ""
24923 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24924 "it returns the extended attributes of the link itself."
24925 msgstr ""
24926
24927 #. type: =head2
24928 #: ../fish/guestfish-actions.pod:2496
24929 msgid "list-9p"
24930 msgstr ""
24931
24932 #. type: verbatim
24933 #: ../fish/guestfish-actions.pod:2498
24934 #, no-wrap
24935 msgid ""
24936 " list-9p\n"
24937 "\n"
24938 msgstr ""
24939
24940 #. type: =head2
24941 #: ../fish/guestfish-actions.pod:2503
24942 msgid "list-devices"
24943 msgstr ""
24944
24945 #. type: verbatim
24946 #: ../fish/guestfish-actions.pod:2505
24947 #, no-wrap
24948 msgid ""
24949 " list-devices\n"
24950 "\n"
24951 msgstr ""
24952
24953 #. type: =head2
24954 #: ../fish/guestfish-actions.pod:2513
24955 msgid "list-filesystems"
24956 msgstr ""
24957
24958 #. type: verbatim
24959 #: ../fish/guestfish-actions.pod:2515
24960 #, no-wrap
24961 msgid ""
24962 " list-filesystems\n"
24963 "\n"
24964 msgstr ""
24965
24966 #. type: textblock
24967 #: ../fish/guestfish-actions.pod:2534
24968 msgid ""
24969 "This command runs other libguestfs commands, which might include L</mount> "
24970 "and L</umount>, and therefore you should use this soon after launch and only "
24971 "when nothing is mounted."
24972 msgstr ""
24973
24974 #. type: textblock
24975 #: ../fish/guestfish-actions.pod:2538
24976 msgid ""
24977 "Not all of the filesystems returned will be mountable.  In particular, swap "
24978 "partitions are returned in the list.  Also this command does not check that "
24979 "each filesystem found is valid and mountable, and some filesystems might be "
24980 "mountable but require special options.  Filesystems may not all belong to a "
24981 "single logical operating system (use L</inspect-os> to look for OSes)."
24982 msgstr ""
24983
24984 #. type: =head2
24985 #: ../fish/guestfish-actions.pod:2546
24986 msgid "list-partitions"
24987 msgstr ""
24988
24989 #. type: verbatim
24990 #: ../fish/guestfish-actions.pod:2548
24991 #, no-wrap
24992 msgid ""
24993 " list-partitions\n"
24994 "\n"
24995 msgstr ""
24996
24997 #. type: textblock
24998 #: ../fish/guestfish-actions.pod:2554
24999 msgid ""
25000 "This does not return logical volumes.  For that you will need to call L</"
25001 "lvs>."
25002 msgstr ""
25003
25004 #. type: =head2
25005 #: ../fish/guestfish-actions.pod:2559
25006 msgid "ll"
25007 msgstr ""
25008
25009 #. type: verbatim
25010 #: ../fish/guestfish-actions.pod:2561
25011 #, no-wrap
25012 msgid ""
25013 " ll directory\n"
25014 "\n"
25015 msgstr ""
25016
25017 #. type: =head2
25018 #: ../fish/guestfish-actions.pod:2569
25019 msgid "ln"
25020 msgstr ""
25021
25022 #. type: verbatim
25023 #: ../fish/guestfish-actions.pod:2571
25024 #, no-wrap
25025 msgid ""
25026 " ln target linkname\n"
25027 "\n"
25028 msgstr ""
25029
25030 #. type: =head2
25031 #: ../fish/guestfish-actions.pod:2575
25032 msgid "ln-f"
25033 msgstr ""
25034
25035 #. type: verbatim
25036 #: ../fish/guestfish-actions.pod:2577
25037 #, no-wrap
25038 msgid ""
25039 " ln-f target linkname\n"
25040 "\n"
25041 msgstr ""
25042
25043 #. type: =head2
25044 #: ../fish/guestfish-actions.pod:2582
25045 msgid "ln-s"
25046 msgstr ""
25047
25048 #. type: verbatim
25049 #: ../fish/guestfish-actions.pod:2584
25050 #, no-wrap
25051 msgid ""
25052 " ln-s target linkname\n"
25053 "\n"
25054 msgstr ""
25055
25056 #. type: =head2
25057 #: ../fish/guestfish-actions.pod:2588
25058 msgid "ln-sf"
25059 msgstr ""
25060
25061 #. type: verbatim
25062 #: ../fish/guestfish-actions.pod:2590
25063 #, no-wrap
25064 msgid ""
25065 " ln-sf target linkname\n"
25066 "\n"
25067 msgstr ""
25068
25069 #. type: =head2
25070 #: ../fish/guestfish-actions.pod:2595
25071 msgid "lremovexattr"
25072 msgstr ""
25073
25074 #. type: verbatim
25075 #: ../fish/guestfish-actions.pod:2597
25076 #, no-wrap
25077 msgid ""
25078 " lremovexattr xattr path\n"
25079 "\n"
25080 msgstr ""
25081
25082 #. type: textblock
25083 #: ../fish/guestfish-actions.pod:2599
25084 msgid ""
25085 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
25086 "it removes an extended attribute of the link itself."
25087 msgstr ""
25088
25089 #. type: =head2
25090 #: ../fish/guestfish-actions.pod:2603
25091 msgid "ls"
25092 msgstr ""
25093
25094 #. type: verbatim
25095 #: ../fish/guestfish-actions.pod:2605
25096 #, no-wrap
25097 msgid ""
25098 " ls directory\n"
25099 "\n"
25100 msgstr ""
25101
25102 #. type: textblock
25103 #: ../fish/guestfish-actions.pod:2611
25104 msgid ""
25105 "This command is mostly useful for interactive sessions.  Programs should "
25106 "probably use L</readdir> instead."
25107 msgstr ""
25108
25109 #. type: =head2
25110 #: ../fish/guestfish-actions.pod:2614
25111 msgid "lsetxattr"
25112 msgstr ""
25113
25114 #. type: verbatim
25115 #: ../fish/guestfish-actions.pod:2616
25116 #, no-wrap
25117 msgid ""
25118 " lsetxattr xattr val vallen path\n"
25119 "\n"
25120 msgstr ""
25121
25122 #. type: textblock
25123 #: ../fish/guestfish-actions.pod:2618
25124 msgid ""
25125 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
25126 "sets an extended attribute of the link itself."
25127 msgstr ""
25128
25129 #. type: =head2
25130 #: ../fish/guestfish-actions.pod:2622
25131 msgid "lstat"
25132 msgstr ""
25133
25134 #. type: verbatim
25135 #: ../fish/guestfish-actions.pod:2624
25136 #, no-wrap
25137 msgid ""
25138 " lstat path\n"
25139 "\n"
25140 msgstr ""
25141
25142 #. type: textblock
25143 #: ../fish/guestfish-actions.pod:2628
25144 msgid ""
25145 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
25146 "the link is stat-ed, not the file it refers to."
25147 msgstr ""
25148
25149 #. type: =head2
25150 #: ../fish/guestfish-actions.pod:2634
25151 msgid "lstatlist"
25152 msgstr ""
25153
25154 #. type: verbatim
25155 #: ../fish/guestfish-actions.pod:2636
25156 #, no-wrap
25157 msgid ""
25158 " lstatlist path 'names ...'\n"
25159 "\n"
25160 msgstr ""
25161
25162 #. type: textblock
25163 #: ../fish/guestfish-actions.pod:2638
25164 msgid ""
25165 "This call allows you to perform the L</lstat> operation on multiple files, "
25166 "where all files are in the directory C<path>.  C<names> is the list of files "
25167 "from this directory."
25168 msgstr ""
25169
25170 #. type: textblock
25171 #: ../fish/guestfish-actions.pod:2647
25172 msgid ""
25173 "This call is intended for programs that want to efficiently list a directory "
25174 "contents without making many round-trips.  See also L</lxattrlist> for a "
25175 "similarly efficient call for getting extended attributes.  Very long "
25176 "directory listings might cause the protocol message size to be exceeded, "
25177 "causing this call to fail.  The caller must split up such requests into "
25178 "smaller groups of names."
25179 msgstr ""
25180
25181 #. type: =head2
25182 #: ../fish/guestfish-actions.pod:2655
25183 msgid "luks-add-key"
25184 msgstr ""
25185
25186 #. type: verbatim
25187 #: ../fish/guestfish-actions.pod:2657
25188 #, no-wrap
25189 msgid ""
25190 " luks-add-key device keyslot\n"
25191 "\n"
25192 msgstr ""
25193
25194 #. type: textblock
25195 #: ../fish/guestfish-actions.pod:2664
25196 msgid ""
25197 "Note that if C<keyslot> already contains a key, then this command will "
25198 "fail.  You have to use L</luks-kill-slot> first to remove that key."
25199 msgstr ""
25200
25201 #. type: textblock
25202 #: ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2690
25203 #: ../fish/guestfish-actions.pod:2703 ../fish/guestfish-actions.pod:2717
25204 #: ../fish/guestfish-actions.pod:2740 ../fish/guestfish-actions.pod:2750
25205 msgid ""
25206 "This command has one or more key or passphrase parameters.  Guestfish will "
25207 "prompt for these separately."
25208 msgstr ""
25209
25210 #. type: =head2
25211 #: ../fish/guestfish-actions.pod:2671
25212 msgid "luks-close"
25213 msgstr ""
25214
25215 #. type: verbatim
25216 #: ../fish/guestfish-actions.pod:2673
25217 #, no-wrap
25218 msgid ""
25219 " luks-close device\n"
25220 "\n"
25221 msgstr ""
25222
25223 #. type: textblock
25224 #: ../fish/guestfish-actions.pod:2675
25225 msgid ""
25226 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
25227 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
25228 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
25229 "block device."
25230 msgstr ""
25231
25232 #. type: =head2
25233 #: ../fish/guestfish-actions.pod:2681
25234 msgid "luks-format"
25235 msgstr ""
25236
25237 #. type: verbatim
25238 #: ../fish/guestfish-actions.pod:2683
25239 #, no-wrap
25240 msgid ""
25241 " luks-format device keyslot\n"
25242 "\n"
25243 msgstr ""
25244
25245 #. type: =head2
25246 #: ../fish/guestfish-actions.pod:2696
25247 msgid "luks-format-cipher"
25248 msgstr ""
25249
25250 #. type: verbatim
25251 #: ../fish/guestfish-actions.pod:2698
25252 #, no-wrap
25253 msgid ""
25254 " luks-format-cipher device keyslot cipher\n"
25255 "\n"
25256 msgstr ""
25257
25258 #. type: textblock
25259 #: ../fish/guestfish-actions.pod:2700
25260 msgid ""
25261 "This command is the same as L</luks-format> but it also allows you to set "
25262 "the C<cipher> used."
25263 msgstr ""
25264
25265 #. type: =head2
25266 #: ../fish/guestfish-actions.pod:2709
25267 msgid "luks-kill-slot"
25268 msgstr ""
25269
25270 #. type: verbatim
25271 #: ../fish/guestfish-actions.pod:2711
25272 #, no-wrap
25273 msgid ""
25274 " luks-kill-slot device keyslot\n"
25275 "\n"
25276 msgstr ""
25277
25278 #. type: =head2
25279 #: ../fish/guestfish-actions.pod:2720
25280 msgid "luks-open"
25281 msgstr ""
25282
25283 #. type: verbatim
25284 #: ../fish/guestfish-actions.pod:2722
25285 #, no-wrap
25286 msgid ""
25287 " luks-open device mapname\n"
25288 "\n"
25289 msgstr ""
25290
25291 #. type: textblock
25292 #: ../fish/guestfish-actions.pod:2736
25293 msgid ""
25294 "If this block device contains LVM volume groups, then calling L</vgscan> "
25295 "followed by L</vg-activate-all> will make them visible."
25296 msgstr ""
25297
25298 #. type: =head2
25299 #: ../fish/guestfish-actions.pod:2743
25300 msgid "luks-open-ro"
25301 msgstr ""
25302
25303 #. type: verbatim
25304 #: ../fish/guestfish-actions.pod:2745
25305 #, no-wrap
25306 msgid ""
25307 " luks-open-ro device mapname\n"
25308 "\n"
25309 msgstr ""
25310
25311 #. type: textblock
25312 #: ../fish/guestfish-actions.pod:2747
25313 msgid ""
25314 "This is the same as L</luks-open> except that a read-only mapping is created."
25315 msgstr ""
25316
25317 #. type: =head2
25318 #: ../fish/guestfish-actions.pod:2753
25319 msgid "lvcreate"
25320 msgstr ""
25321
25322 #. type: verbatim
25323 #: ../fish/guestfish-actions.pod:2755
25324 #, no-wrap
25325 msgid ""
25326 " lvcreate logvol volgroup mbytes\n"
25327 "\n"
25328 msgstr ""
25329
25330 #. type: =head2
25331 #: ../fish/guestfish-actions.pod:2760
25332 msgid "lvm-canonical-lv-name"
25333 msgstr ""
25334
25335 #. type: verbatim
25336 #: ../fish/guestfish-actions.pod:2762
25337 #, no-wrap
25338 msgid ""
25339 " lvm-canonical-lv-name lvname\n"
25340 "\n"
25341 msgstr ""
25342
25343 #. type: textblock
25344 #: ../fish/guestfish-actions.pod:2771
25345 msgid "See also L</is-lv>."
25346 msgstr ""
25347
25348 #. type: =head2
25349 #: ../fish/guestfish-actions.pod:2773
25350 msgid "lvm-clear-filter"
25351 msgstr ""
25352
25353 #. type: verbatim
25354 #: ../fish/guestfish-actions.pod:2775
25355 #, no-wrap
25356 msgid ""
25357 " lvm-clear-filter\n"
25358 "\n"
25359 msgstr ""
25360
25361 #. type: textblock
25362 #: ../fish/guestfish-actions.pod:2777
25363 msgid ""
25364 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
25365 "block device."
25366 msgstr ""
25367
25368 #. type: =head2
25369 #: ../fish/guestfish-actions.pod:2783
25370 msgid "lvm-remove-all"
25371 msgstr ""
25372
25373 #. type: verbatim
25374 #: ../fish/guestfish-actions.pod:2785
25375 #, no-wrap
25376 msgid ""
25377 " lvm-remove-all\n"
25378 "\n"
25379 msgstr ""
25380
25381 #. type: =head2
25382 #: ../fish/guestfish-actions.pod:2793
25383 msgid "lvm-set-filter"
25384 msgstr ""
25385
25386 #. type: verbatim
25387 #: ../fish/guestfish-actions.pod:2795
25388 #, no-wrap
25389 msgid ""
25390 " lvm-set-filter 'devices ...'\n"
25391 "\n"
25392 msgstr ""
25393
25394 #. type: =head2
25395 #: ../fish/guestfish-actions.pod:2820
25396 msgid "lvremove"
25397 msgstr ""
25398
25399 #. type: verbatim
25400 #: ../fish/guestfish-actions.pod:2822
25401 #, no-wrap
25402 msgid ""
25403 " lvremove device\n"
25404 "\n"
25405 msgstr ""
25406
25407 #. type: =head2
25408 #: ../fish/guestfish-actions.pod:2830
25409 msgid "lvrename"
25410 msgstr ""
25411
25412 #. type: verbatim
25413 #: ../fish/guestfish-actions.pod:2832
25414 #, no-wrap
25415 msgid ""
25416 " lvrename logvol newlogvol\n"
25417 "\n"
25418 msgstr ""
25419
25420 #. type: =head2
25421 #: ../fish/guestfish-actions.pod:2836
25422 msgid "lvresize"
25423 msgstr ""
25424
25425 #. type: verbatim
25426 #: ../fish/guestfish-actions.pod:2838
25427 #, no-wrap
25428 msgid ""
25429 " lvresize device mbytes\n"
25430 "\n"
25431 msgstr ""
25432
25433 #. type: =head2
25434 #: ../fish/guestfish-actions.pod:2844
25435 msgid "lvresize-free"
25436 msgstr ""
25437
25438 #. type: verbatim
25439 #: ../fish/guestfish-actions.pod:2846
25440 #, no-wrap
25441 msgid ""
25442 " lvresize-free lv percent\n"
25443 "\n"
25444 msgstr ""
25445
25446 #. type: =head2
25447 #: ../fish/guestfish-actions.pod:2854
25448 msgid "lvs"
25449 msgstr ""
25450
25451 #. type: verbatim
25452 #: ../fish/guestfish-actions.pod:2856
25453 #, no-wrap
25454 msgid ""
25455 " lvs\n"
25456 "\n"
25457 msgstr ""
25458
25459 #. type: textblock
25460 #: ../fish/guestfish-actions.pod:2864
25461 msgid "See also L</lvs-full>, L</list-filesystems>."
25462 msgstr ""
25463
25464 #. type: =head2
25465 #: ../fish/guestfish-actions.pod:2866
25466 msgid "lvs-full"
25467 msgstr ""
25468
25469 #. type: verbatim
25470 #: ../fish/guestfish-actions.pod:2868
25471 #, no-wrap
25472 msgid ""
25473 " lvs-full\n"
25474 "\n"
25475 msgstr ""
25476
25477 #. type: =head2
25478 #: ../fish/guestfish-actions.pod:2873
25479 msgid "lvuuid"
25480 msgstr ""
25481
25482 #. type: verbatim
25483 #: ../fish/guestfish-actions.pod:2875
25484 #, no-wrap
25485 msgid ""
25486 " lvuuid device\n"
25487 "\n"
25488 msgstr ""
25489
25490 #. type: =head2
25491 #: ../fish/guestfish-actions.pod:2879
25492 msgid "lxattrlist"
25493 msgstr ""
25494
25495 #. type: verbatim
25496 #: ../fish/guestfish-actions.pod:2881
25497 #, no-wrap
25498 msgid ""
25499 " lxattrlist path 'names ...'\n"
25500 "\n"
25501 msgstr ""
25502
25503 #. type: textblock
25504 #: ../fish/guestfish-actions.pod:2897
25505 msgid ""
25506 "This call is intended for programs that want to efficiently list a directory "
25507 "contents without making many round-trips.  See also L</lstatlist> for a "
25508 "similarly efficient call for getting standard stats.  Very long directory "
25509 "listings might cause the protocol message size to be exceeded, causing this "
25510 "call to fail.  The caller must split up such requests into smaller groups of "
25511 "names."
25512 msgstr ""
25513
25514 #. type: =head2
25515 #: ../fish/guestfish-actions.pod:2905
25516 msgid "mkdir"
25517 msgstr ""
25518
25519 #. type: verbatim
25520 #: ../fish/guestfish-actions.pod:2907
25521 #, no-wrap
25522 msgid ""
25523 " mkdir path\n"
25524 "\n"
25525 msgstr ""
25526
25527 #. type: =head2
25528 #: ../fish/guestfish-actions.pod:2911
25529 msgid "mkdir-mode"
25530 msgstr ""
25531
25532 #. type: verbatim
25533 #: ../fish/guestfish-actions.pod:2913
25534 #, no-wrap
25535 msgid ""
25536 " mkdir-mode path mode\n"
25537 "\n"
25538 msgstr ""
25539
25540 #. type: textblock
25541 #: ../fish/guestfish-actions.pod:2922
25542 msgid "See also L</mkdir>, L</umask>"
25543 msgstr ""
25544
25545 #. type: =head2
25546 #: ../fish/guestfish-actions.pod:2924
25547 msgid "mkdir-p"
25548 msgstr ""
25549
25550 #. type: verbatim
25551 #: ../fish/guestfish-actions.pod:2926
25552 #, no-wrap
25553 msgid ""
25554 " mkdir-p path\n"
25555 "\n"
25556 msgstr ""
25557
25558 #. type: =head2
25559 #: ../fish/guestfish-actions.pod:2931
25560 msgid "mkdtemp"
25561 msgstr ""
25562
25563 #. type: verbatim
25564 #: ../fish/guestfish-actions.pod:2933
25565 #, no-wrap
25566 msgid ""
25567 " mkdtemp template\n"
25568 "\n"
25569 msgstr ""
25570
25571 #. type: =head2
25572 #: ../fish/guestfish-actions.pod:2954
25573 msgid "mke2fs-J"
25574 msgstr ""
25575
25576 #. type: verbatim
25577 #: ../fish/guestfish-actions.pod:2956
25578 #, no-wrap
25579 msgid ""
25580 " mke2fs-J fstype blocksize device journal\n"
25581 "\n"
25582 msgstr ""
25583
25584 #. type: textblock
25585 #: ../fish/guestfish-actions.pod:2964
25586 msgid "See also L</mke2journal>."
25587 msgstr ""
25588
25589 #. type: =head2
25590 #: ../fish/guestfish-actions.pod:2966
25591 msgid "mke2fs-JL"
25592 msgstr ""
25593
25594 #. type: verbatim
25595 #: ../fish/guestfish-actions.pod:2968
25596 #, no-wrap
25597 msgid ""
25598 " mke2fs-JL fstype blocksize device label\n"
25599 "\n"
25600 msgstr ""
25601
25602 #. type: textblock
25603 #: ../fish/guestfish-actions.pod:2973
25604 msgid "See also L</mke2journal-L>."
25605 msgstr ""
25606
25607 #. type: =head2
25608 #: ../fish/guestfish-actions.pod:2975
25609 msgid "mke2fs-JU"
25610 msgstr ""
25611
25612 #. type: verbatim
25613 #: ../fish/guestfish-actions.pod:2977
25614 #, no-wrap
25615 msgid ""
25616 " mke2fs-JU fstype blocksize device uuid\n"
25617 "\n"
25618 msgstr ""
25619
25620 #. type: textblock
25621 #: ../fish/guestfish-actions.pod:2982
25622 msgid "See also L</mke2journal-U>."
25623 msgstr ""
25624
25625 #. type: =head2
25626 #: ../fish/guestfish-actions.pod:2984
25627 msgid "mke2journal"
25628 msgstr ""
25629
25630 #. type: verbatim
25631 #: ../fish/guestfish-actions.pod:2986
25632 #, no-wrap
25633 msgid ""
25634 " mke2journal blocksize device\n"
25635 "\n"
25636 msgstr ""
25637
25638 #. type: =head2
25639 #: ../fish/guestfish-actions.pod:2993
25640 msgid "mke2journal-L"
25641 msgstr ""
25642
25643 #. type: verbatim
25644 #: ../fish/guestfish-actions.pod:2995
25645 #, no-wrap
25646 msgid ""
25647 " mke2journal-L blocksize label device\n"
25648 "\n"
25649 msgstr ""
25650
25651 #. type: =head2
25652 #: ../fish/guestfish-actions.pod:2999
25653 msgid "mke2journal-U"
25654 msgstr ""
25655
25656 #. type: verbatim
25657 #: ../fish/guestfish-actions.pod:3001
25658 #, no-wrap
25659 msgid ""
25660 " mke2journal-U blocksize uuid device\n"
25661 "\n"
25662 msgstr ""
25663
25664 #. type: =head2
25665 #: ../fish/guestfish-actions.pod:3005
25666 msgid "mkfifo"
25667 msgstr ""
25668
25669 #. type: verbatim
25670 #: ../fish/guestfish-actions.pod:3007
25671 #, no-wrap
25672 msgid ""
25673 " mkfifo mode path\n"
25674 "\n"
25675 msgstr ""
25676
25677 #. type: textblock
25678 #: ../fish/guestfish-actions.pod:3009
25679 msgid ""
25680 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25681 "is just a convenient wrapper around L</mknod>."
25682 msgstr ""
25683
25684 #. type: =head2
25685 #: ../fish/guestfish-actions.pod:3015
25686 msgid "mkfs"
25687 msgstr ""
25688
25689 #. type: verbatim
25690 #: ../fish/guestfish-actions.pod:3017
25691 #, no-wrap
25692 msgid ""
25693 " mkfs fstype device\n"
25694 "\n"
25695 msgstr ""
25696
25697 #. type: =head2
25698 #: ../fish/guestfish-actions.pod:3023
25699 msgid "mkfs-b"
25700 msgstr ""
25701
25702 #. type: verbatim
25703 #: ../fish/guestfish-actions.pod:3025
25704 #, no-wrap
25705 msgid ""
25706 " mkfs-b fstype blocksize device\n"
25707 "\n"
25708 msgstr ""
25709
25710 #. type: textblock
25711 #: ../fish/guestfish-actions.pod:3027
25712 msgid ""
25713 "This call is similar to L</mkfs>, but it allows you to control the block "
25714 "size of the resulting filesystem.  Supported block sizes depend on the "
25715 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25716 msgstr ""
25717
25718 #. type: =head2
25719 #: ../fish/guestfish-actions.pod:3042
25720 msgid "mkfs-opts"
25721 msgstr ""
25722
25723 #. type: verbatim
25724 #: ../fish/guestfish-actions.pod:3044
25725 #, no-wrap
25726 msgid ""
25727 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25728 "\n"
25729 msgstr ""
25730
25731 #. type: =head2
25732 #: ../fish/guestfish-actions.pod:3079
25733 msgid "mkmountpoint"
25734 msgstr ""
25735
25736 #. type: verbatim
25737 #: ../fish/guestfish-actions.pod:3081
25738 #, no-wrap
25739 msgid ""
25740 " mkmountpoint exemptpath\n"
25741 "\n"
25742 msgstr ""
25743
25744 #. type: textblock
25745 #: ../fish/guestfish-actions.pod:3083
25746 msgid ""
25747 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25748 "to create extra mountpoints before mounting the first filesystem."
25749 msgstr ""
25750
25751 #. type: textblock
25752 #: ../fish/guestfish-actions.pod:3107
25753 msgid ""
25754 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25755 "unexpected errors if you try to mix these calls.  It is safest to manually "
25756 "unmount filesystems and remove mountpoints after use."
25757 msgstr ""
25758
25759 #. type: textblock
25760 #: ../fish/guestfish-actions.pod:3111
25761 msgid ""
25762 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25763 "for this to work for manual mountpoints, you must ensure that the innermost "
25764 "mountpoints have the longest pathnames, as in the example code above."
25765 msgstr ""
25766
25767 #. type: textblock
25768 #: ../fish/guestfish-actions.pod:3118
25769 msgid ""
25770 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25771 "L</umount-all> to be called when the handle is closed which can also trigger "
25772 "these issues."
25773 msgstr ""
25774
25775 #. type: =head2
25776 #: ../fish/guestfish-actions.pod:3122
25777 msgid "mknod"
25778 msgstr ""
25779
25780 #. type: verbatim
25781 #: ../fish/guestfish-actions.pod:3124
25782 #, no-wrap
25783 msgid ""
25784 " mknod mode devmajor devminor path\n"
25785 "\n"
25786 msgstr ""
25787
25788 #. type: textblock
25789 #: ../fish/guestfish-actions.pod:3134
25790 msgid ""
25791 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25792 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25793 "regular file).  These constants are available in the standard Linux header "
25794 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25795 "wrappers around this command which bitwise OR in the appropriate constant "
25796 "for you."
25797 msgstr ""
25798
25799 #. type: =head2
25800 #: ../fish/guestfish-actions.pod:3144
25801 msgid "mknod-b"
25802 msgstr ""
25803
25804 #. type: verbatim
25805 #: ../fish/guestfish-actions.pod:3146
25806 #, no-wrap
25807 msgid ""
25808 " mknod-b mode devmajor devminor path\n"
25809 "\n"
25810 msgstr ""
25811
25812 #. type: textblock
25813 #: ../fish/guestfish-actions.pod:3148
25814 msgid ""
25815 "This call creates a block device node called C<path> with mode C<mode> and "
25816 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25817 "wrapper around L</mknod>."
25818 msgstr ""
25819
25820 #. type: =head2
25821 #: ../fish/guestfish-actions.pod:3154
25822 msgid "mknod-c"
25823 msgstr ""
25824
25825 #. type: verbatim
25826 #: ../fish/guestfish-actions.pod:3156
25827 #, no-wrap
25828 msgid ""
25829 " mknod-c mode devmajor devminor path\n"
25830 "\n"
25831 msgstr ""
25832
25833 #. type: textblock
25834 #: ../fish/guestfish-actions.pod:3158
25835 msgid ""
25836 "This call creates a char device node called C<path> with mode C<mode> and "
25837 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25838 "wrapper around L</mknod>."
25839 msgstr ""
25840
25841 #. type: =head2
25842 #: ../fish/guestfish-actions.pod:3164
25843 msgid "mkswap"
25844 msgstr ""
25845
25846 #. type: verbatim
25847 #: ../fish/guestfish-actions.pod:3166
25848 #, no-wrap
25849 msgid ""
25850 " mkswap device\n"
25851 "\n"
25852 msgstr ""
25853
25854 #. type: =head2
25855 #: ../fish/guestfish-actions.pod:3170
25856 msgid "mkswap-L"
25857 msgstr ""
25858
25859 #. type: verbatim
25860 #: ../fish/guestfish-actions.pod:3172
25861 #, no-wrap
25862 msgid ""
25863 " mkswap-L label device\n"
25864 "\n"
25865 msgstr ""
25866
25867 #. type: =head2
25868 #: ../fish/guestfish-actions.pod:3180
25869 msgid "mkswap-U"
25870 msgstr ""
25871
25872 #. type: verbatim
25873 #: ../fish/guestfish-actions.pod:3182
25874 #, no-wrap
25875 msgid ""
25876 " mkswap-U uuid device\n"
25877 "\n"
25878 msgstr ""
25879
25880 #. type: =head2
25881 #: ../fish/guestfish-actions.pod:3186
25882 msgid "mkswap-file"
25883 msgstr ""
25884
25885 #. type: verbatim
25886 #: ../fish/guestfish-actions.pod:3188
25887 #, no-wrap
25888 msgid ""
25889 " mkswap-file path\n"
25890 "\n"
25891 msgstr ""
25892
25893 #. type: textblock
25894 #: ../fish/guestfish-actions.pod:3192
25895 msgid ""
25896 "This command just writes a swap file signature to an existing file.  To "
25897 "create the file itself, use something like L</fallocate>."
25898 msgstr ""
25899
25900 #. type: =head2
25901 #: ../fish/guestfish-actions.pod:3195
25902 msgid "modprobe"
25903 msgstr ""
25904
25905 #. type: verbatim
25906 #: ../fish/guestfish-actions.pod:3197
25907 #, no-wrap
25908 msgid ""
25909 " modprobe modulename\n"
25910 "\n"
25911 msgstr ""
25912
25913 #. type: =head2
25914 #: ../fish/guestfish-actions.pod:3204
25915 msgid "mount"
25916 msgstr ""
25917
25918 #. type: verbatim
25919 #: ../fish/guestfish-actions.pod:3206
25920 #, no-wrap
25921 msgid ""
25922 " mount device mountpoint\n"
25923 "\n"
25924 msgstr ""
25925
25926 #. type: textblock
25927 #: ../fish/guestfish-actions.pod:3222
25928 msgid ""
25929 "B<Important note:> When you use this call, the filesystem options C<sync> "
25930 "and C<noatime> are set implicitly.  This was originally done because we "
25931 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25932 "very large negative performance impact and negligible effect on "
25933 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25934 "code that needs performance, and instead use L</mount-options> (use an empty "
25935 "string for the first parameter if you don't want any options)."
25936 msgstr ""
25937
25938 #. type: =head2
25939 #: ../fish/guestfish-actions.pod:3239
25940 msgid "mount-9p"
25941 msgstr ""
25942
25943 #. type: verbatim
25944 #: ../fish/guestfish-actions.pod:3241
25945 #, no-wrap
25946 msgid ""
25947 " mount-9p mounttag mountpoint [options:..]\n"
25948 "\n"
25949 msgstr ""
25950
25951 #. type: =head2
25952 #: ../fish/guestfish-actions.pod:3252
25953 msgid "mount-loop"
25954 msgstr ""
25955
25956 #. type: verbatim
25957 #: ../fish/guestfish-actions.pod:3254
25958 #, no-wrap
25959 msgid ""
25960 " mount-loop file mountpoint\n"
25961 "\n"
25962 msgstr ""
25963
25964 #. type: =head2
25965 #: ../fish/guestfish-actions.pod:3260
25966 msgid "mount-options"
25967 msgstr ""
25968
25969 #. type: verbatim
25970 #: ../fish/guestfish-actions.pod:3262
25971 #, no-wrap
25972 msgid ""
25973 " mount-options options device mountpoint\n"
25974 "\n"
25975 msgstr ""
25976
25977 #. type: textblock
25978 #: ../fish/guestfish-actions.pod:3264
25979 msgid ""
25980 "This is the same as the L</mount> command, but it allows you to set the "
25981 "mount options as for the L<mount(8)> I<-o> flag."
25982 msgstr ""
25983
25984 #. type: =head2
25985 #: ../fish/guestfish-actions.pod:3272
25986 msgid "mount-ro"
25987 msgstr ""
25988
25989 #. type: verbatim
25990 #: ../fish/guestfish-actions.pod:3274
25991 #, no-wrap
25992 msgid ""
25993 " mount-ro device mountpoint\n"
25994 "\n"
25995 msgstr ""
25996
25997 #. type: textblock
25998 #: ../fish/guestfish-actions.pod:3276
25999 msgid ""
26000 "This is the same as the L</mount> command, but it mounts the filesystem with "
26001 "the read-only (I<-o ro>) flag."
26002 msgstr ""
26003
26004 #. type: =head2
26005 #: ../fish/guestfish-actions.pod:3279
26006 msgid "mount-vfs"
26007 msgstr ""
26008
26009 #. type: verbatim
26010 #: ../fish/guestfish-actions.pod:3281
26011 #, no-wrap
26012 msgid ""
26013 " mount-vfs options vfstype device mountpoint\n"
26014 "\n"
26015 msgstr ""
26016
26017 #. type: textblock
26018 #: ../fish/guestfish-actions.pod:3283
26019 msgid ""
26020 "This is the same as the L</mount> command, but it allows you to set both the "
26021 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26022 msgstr ""
26023
26024 #. type: =head2
26025 #: ../fish/guestfish-actions.pod:3287
26026 msgid "mountpoints"
26027 msgstr ""
26028
26029 #. type: verbatim
26030 #: ../fish/guestfish-actions.pod:3289
26031 #, no-wrap
26032 msgid ""
26033 " mountpoints\n"
26034 "\n"
26035 msgstr ""
26036
26037 #. type: textblock
26038 #: ../fish/guestfish-actions.pod:3291
26039 msgid ""
26040 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26041 "This one returns a hash table (map) of device name to directory where the "
26042 "device is mounted."
26043 msgstr ""
26044
26045 #. type: =head2
26046 #: ../fish/guestfish-actions.pod:3295
26047 msgid "mounts"
26048 msgstr ""
26049
26050 #. type: verbatim
26051 #: ../fish/guestfish-actions.pod:3297
26052 #, no-wrap
26053 msgid ""
26054 " mounts\n"
26055 "\n"
26056 msgstr ""
26057
26058 #. type: textblock
26059 #: ../fish/guestfish-actions.pod:3304
26060 msgid "See also: L</mountpoints>"
26061 msgstr ""
26062
26063 #. type: =head2
26064 #: ../fish/guestfish-actions.pod:3306
26065 msgid "mv"
26066 msgstr ""
26067
26068 #. type: verbatim
26069 #: ../fish/guestfish-actions.pod:3308
26070 #, no-wrap
26071 msgid ""
26072 " mv src dest\n"
26073 "\n"
26074 msgstr ""
26075
26076 #. type: =head2
26077 #: ../fish/guestfish-actions.pod:3313
26078 msgid "ntfs-3g-probe"
26079 msgstr ""
26080
26081 #. type: verbatim
26082 #: ../fish/guestfish-actions.pod:3315
26083 #, no-wrap
26084 msgid ""
26085 " ntfs-3g-probe true|false device\n"
26086 "\n"
26087 msgstr ""
26088
26089 #. type: =head2
26090 #: ../fish/guestfish-actions.pod:3329
26091 msgid "ntfsresize"
26092 msgstr ""
26093
26094 #. type: verbatim
26095 #: ../fish/guestfish-actions.pod:3331
26096 #, no-wrap
26097 msgid ""
26098 " ntfsresize device\n"
26099 "\n"
26100 msgstr ""
26101
26102 #. type: =head2
26103 #: ../fish/guestfish-actions.pod:3337
26104 msgid "ntfsresize-size"
26105 msgstr ""
26106
26107 #. type: verbatim
26108 #: ../fish/guestfish-actions.pod:3339
26109 #, no-wrap
26110 msgid ""
26111 " ntfsresize-size device size\n"
26112 "\n"
26113 msgstr ""
26114
26115 #. type: textblock
26116 #: ../fish/guestfish-actions.pod:3341
26117 msgid ""
26118 "This command is the same as L</ntfsresize> except that it allows you to "
26119 "specify the new size (in bytes) explicitly."
26120 msgstr ""
26121
26122 #. type: =head2
26123 #: ../fish/guestfish-actions.pod:3344
26124 msgid "part-add"
26125 msgstr ""
26126
26127 #. type: verbatim
26128 #: ../fish/guestfish-actions.pod:3346
26129 #, no-wrap
26130 msgid ""
26131 " part-add device prlogex startsect endsect\n"
26132 "\n"
26133 msgstr ""
26134
26135 #. type: textblock
26136 #: ../fish/guestfish-actions.pod:3348
26137 msgid ""
26138 "This command adds a partition to C<device>.  If there is no partition table "
26139 "on the device, call L</part-init> first."
26140 msgstr ""
26141
26142 #. type: textblock
26143 #: ../fish/guestfish-actions.pod:3360
26144 msgid ""
26145 "Creating a partition which covers the whole disk is not so easy.  Use L</"
26146 "part-disk> to do that."
26147 msgstr ""
26148
26149 #. type: =head2
26150 #: ../fish/guestfish-actions.pod:3363
26151 msgid "part-del"
26152 msgstr ""
26153
26154 #. type: verbatim
26155 #: ../fish/guestfish-actions.pod:3365
26156 #, no-wrap
26157 msgid ""
26158 " part-del device partnum\n"
26159 "\n"
26160 msgstr ""
26161
26162 #. type: =head2
26163 #: ../fish/guestfish-actions.pod:3373
26164 msgid "part-disk"
26165 msgstr ""
26166
26167 #. type: verbatim
26168 #: ../fish/guestfish-actions.pod:3375
26169 #, no-wrap
26170 msgid ""
26171 " part-disk device parttype\n"
26172 "\n"
26173 msgstr ""
26174
26175 #. type: textblock
26176 #: ../fish/guestfish-actions.pod:3377
26177 msgid ""
26178 "This command is simply a combination of L</part-init> followed by L</part-"
26179 "add> to create a single primary partition covering the whole disk."
26180 msgstr ""
26181
26182 #. type: textblock
26183 #: ../fish/guestfish-actions.pod:3381
26184 msgid ""
26185 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
26186 "possible values are described in L</part-init>."
26187 msgstr ""
26188
26189 #. type: =head2
26190 #: ../fish/guestfish-actions.pod:3387
26191 msgid "part-get-bootable"
26192 msgstr ""
26193
26194 #. type: verbatim
26195 #: ../fish/guestfish-actions.pod:3389
26196 #, no-wrap
26197 msgid ""
26198 " part-get-bootable device partnum\n"
26199 "\n"
26200 msgstr ""
26201
26202 #. type: textblock
26203 #: ../fish/guestfish-actions.pod:3394
26204 msgid "See also L</part-set-bootable>."
26205 msgstr ""
26206
26207 #. type: =head2
26208 #: ../fish/guestfish-actions.pod:3396
26209 msgid "part-get-mbr-id"
26210 msgstr ""
26211
26212 #. type: verbatim
26213 #: ../fish/guestfish-actions.pod:3398
26214 #, no-wrap
26215 msgid ""
26216 " part-get-mbr-id device partnum\n"
26217 "\n"
26218 msgstr ""
26219
26220 #. type: textblock
26221 #: ../fish/guestfish-actions.pod:3403 ../fish/guestfish-actions.pod:3541
26222 msgid ""
26223 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
26224 "undefined results for other partition table types (see L</part-get-"
26225 "parttype>)."
26226 msgstr ""
26227
26228 #. type: =head2
26229 #: ../fish/guestfish-actions.pod:3407
26230 msgid "part-get-parttype"
26231 msgstr ""
26232
26233 #. type: verbatim
26234 #: ../fish/guestfish-actions.pod:3409
26235 #, no-wrap
26236 msgid ""
26237 " part-get-parttype device\n"
26238 "\n"
26239 msgstr ""
26240
26241 #. type: textblock
26242 #: ../fish/guestfish-actions.pod:3414
26243 msgid ""
26244 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26245 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26246 "possible, although unusual.  See L</part-init> for a full list."
26247 msgstr ""
26248
26249 #. type: =head2
26250 #: ../fish/guestfish-actions.pod:3419
26251 msgid "part-init"
26252 msgstr ""
26253
26254 #. type: verbatim
26255 #: ../fish/guestfish-actions.pod:3421
26256 #, no-wrap
26257 msgid ""
26258 " part-init device parttype\n"
26259 "\n"
26260 msgstr ""
26261
26262 #. type: textblock
26263 #: ../fish/guestfish-actions.pod:3427
26264 msgid ""
26265 "Initially there are no partitions.  Following this, you should call L</part-"
26266 "add> for each partition required."
26267 msgstr ""
26268
26269 #. type: =head2
26270 #: ../fish/guestfish-actions.pod:3490
26271 msgid "part-list"
26272 msgstr ""
26273
26274 #. type: verbatim
26275 #: ../fish/guestfish-actions.pod:3492
26276 #, no-wrap
26277 msgid ""
26278 " part-list device\n"
26279 "\n"
26280 msgstr ""
26281
26282 #. type: textblock
26283 #: ../fish/guestfish-actions.pod:3507
26284 msgid ""
26285 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26286 "the device's sector size, see L</blockdev-getss>."
26287 msgstr ""
26288
26289 #. type: =head2
26290 #: ../fish/guestfish-actions.pod:3520
26291 msgid "part-set-bootable"
26292 msgstr ""
26293
26294 #. type: verbatim
26295 #: ../fish/guestfish-actions.pod:3522
26296 #, no-wrap
26297 msgid ""
26298 " part-set-bootable device partnum true|false\n"
26299 "\n"
26300 msgstr ""
26301
26302 #. type: =head2
26303 #: ../fish/guestfish-actions.pod:3531
26304 msgid "part-set-mbr-id"
26305 msgstr ""
26306
26307 #. type: verbatim
26308 #: ../fish/guestfish-actions.pod:3533
26309 #, no-wrap
26310 msgid ""
26311 " part-set-mbr-id device partnum idbyte\n"
26312 "\n"
26313 msgstr ""
26314
26315 #. type: =head2
26316 #: ../fish/guestfish-actions.pod:3545
26317 msgid "part-set-name"
26318 msgstr ""
26319
26320 #. type: verbatim
26321 #: ../fish/guestfish-actions.pod:3547
26322 #, no-wrap
26323 msgid ""
26324 " part-set-name device partnum name\n"
26325 "\n"
26326 msgstr ""
26327
26328 #. type: =head2
26329 #: ../fish/guestfish-actions.pod:3555
26330 msgid "part-to-dev"
26331 msgstr ""
26332
26333 #. type: verbatim
26334 #: ../fish/guestfish-actions.pod:3557
26335 #, no-wrap
26336 msgid ""
26337 " part-to-dev partition\n"
26338 "\n"
26339 msgstr ""
26340
26341 #. type: textblock
26342 #: ../fish/guestfish-actions.pod:3563
26343 msgid ""
26344 "The named partition must exist, for example as a string returned from L</"
26345 "list-partitions>."
26346 msgstr ""
26347
26348 #. type: =head2
26349 #: ../fish/guestfish-actions.pod:3566
26350 msgid "ping-daemon"
26351 msgstr ""
26352
26353 #. type: verbatim
26354 #: ../fish/guestfish-actions.pod:3568
26355 #, no-wrap
26356 msgid ""
26357 " ping-daemon\n"
26358 "\n"
26359 msgstr ""
26360
26361 #. type: =head2
26362 #: ../fish/guestfish-actions.pod:3575
26363 msgid "pread"
26364 msgstr ""
26365
26366 #. type: verbatim
26367 #: ../fish/guestfish-actions.pod:3577
26368 #, no-wrap
26369 msgid ""
26370 " pread path count offset\n"
26371 "\n"
26372 msgstr ""
26373
26374 #. type: textblock
26375 #: ../fish/guestfish-actions.pod:3585
26376 msgid "See also L</pwrite>, L</pread-device>."
26377 msgstr ""
26378
26379 #. type: =head2
26380 #: ../fish/guestfish-actions.pod:3590
26381 msgid "pread-device"
26382 msgstr ""
26383
26384 #. type: verbatim
26385 #: ../fish/guestfish-actions.pod:3592
26386 #, no-wrap
26387 msgid ""
26388 " pread-device device count offset\n"
26389 "\n"
26390 msgstr ""
26391
26392 #. type: textblock
26393 #: ../fish/guestfish-actions.pod:3600
26394 msgid "See also L</pread>."
26395 msgstr ""
26396
26397 #. type: =head2
26398 #: ../fish/guestfish-actions.pod:3605
26399 msgid "pvcreate"
26400 msgstr ""
26401
26402 #. type: verbatim
26403 #: ../fish/guestfish-actions.pod:3607
26404 #, no-wrap
26405 msgid ""
26406 " pvcreate device\n"
26407 "\n"
26408 msgstr ""
26409
26410 #. type: =head2
26411 #: ../fish/guestfish-actions.pod:3613
26412 msgid "pvremove"
26413 msgstr ""
26414
26415 #. type: verbatim
26416 #: ../fish/guestfish-actions.pod:3615
26417 #, no-wrap
26418 msgid ""
26419 " pvremove device\n"
26420 "\n"
26421 msgstr ""
26422
26423 #. type: =head2
26424 #: ../fish/guestfish-actions.pod:3624
26425 msgid "pvresize"
26426 msgstr ""
26427
26428 #. type: verbatim
26429 #: ../fish/guestfish-actions.pod:3626
26430 #, no-wrap
26431 msgid ""
26432 " pvresize device\n"
26433 "\n"
26434 msgstr ""
26435
26436 #. type: =head2
26437 #: ../fish/guestfish-actions.pod:3631
26438 msgid "pvresize-size"
26439 msgstr ""
26440
26441 #. type: verbatim
26442 #: ../fish/guestfish-actions.pod:3633
26443 #, no-wrap
26444 msgid ""
26445 " pvresize-size device size\n"
26446 "\n"
26447 msgstr ""
26448
26449 #. type: textblock
26450 #: ../fish/guestfish-actions.pod:3635
26451 msgid ""
26452 "This command is the same as L</pvresize> except that it allows you to "
26453 "specify the new size (in bytes) explicitly."
26454 msgstr ""
26455
26456 #. type: =head2
26457 #: ../fish/guestfish-actions.pod:3638
26458 msgid "pvs"
26459 msgstr ""
26460
26461 #. type: verbatim
26462 #: ../fish/guestfish-actions.pod:3640
26463 #, no-wrap
26464 msgid ""
26465 " pvs\n"
26466 "\n"
26467 msgstr ""
26468
26469 #. type: textblock
26470 #: ../fish/guestfish-actions.pod:3648
26471 msgid "See also L</pvs-full>."
26472 msgstr ""
26473
26474 #. type: =head2
26475 #: ../fish/guestfish-actions.pod:3650
26476 msgid "pvs-full"
26477 msgstr ""
26478
26479 #. type: verbatim
26480 #: ../fish/guestfish-actions.pod:3652
26481 #, no-wrap
26482 msgid ""
26483 " pvs-full\n"
26484 "\n"
26485 msgstr ""
26486
26487 #. type: =head2
26488 #: ../fish/guestfish-actions.pod:3657
26489 msgid "pvuuid"
26490 msgstr ""
26491
26492 #. type: verbatim
26493 #: ../fish/guestfish-actions.pod:3659
26494 #, no-wrap
26495 msgid ""
26496 " pvuuid device\n"
26497 "\n"
26498 msgstr ""
26499
26500 #. type: =head2
26501 #: ../fish/guestfish-actions.pod:3663
26502 msgid "pwrite"
26503 msgstr ""
26504
26505 #. type: verbatim
26506 #: ../fish/guestfish-actions.pod:3665
26507 #, no-wrap
26508 msgid ""
26509 " pwrite path content offset\n"
26510 "\n"
26511 msgstr ""
26512
26513 #. type: textblock
26514 #: ../fish/guestfish-actions.pod:3676
26515 msgid "See also L</pread>, L</pwrite-device>."
26516 msgstr ""
26517
26518 #. type: =head2
26519 #: ../fish/guestfish-actions.pod:3681
26520 msgid "pwrite-device"
26521 msgstr ""
26522
26523 #. type: verbatim
26524 #: ../fish/guestfish-actions.pod:3683
26525 #, no-wrap
26526 msgid ""
26527 " pwrite-device device content offset\n"
26528 "\n"
26529 msgstr ""
26530
26531 #. type: textblock
26532 #: ../fish/guestfish-actions.pod:3693
26533 msgid "See also L</pwrite>."
26534 msgstr ""
26535
26536 #. type: =head2
26537 #: ../fish/guestfish-actions.pod:3698
26538 msgid "read-file"
26539 msgstr ""
26540
26541 #. type: verbatim
26542 #: ../fish/guestfish-actions.pod:3700
26543 #, no-wrap
26544 msgid ""
26545 " read-file path\n"
26546 "\n"
26547 msgstr ""
26548
26549 #. type: textblock
26550 #: ../fish/guestfish-actions.pod:3705
26551 msgid ""
26552 "Unlike L</cat>, this function can correctly handle files that contain "
26553 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26554 "is limited in the total size of file that can be handled."
26555 msgstr ""
26556
26557 #. type: =head2
26558 #: ../fish/guestfish-actions.pod:3713
26559 msgid "read-lines"
26560 msgstr ""
26561
26562 #. type: verbatim
26563 #: ../fish/guestfish-actions.pod:3715
26564 #, no-wrap
26565 msgid ""
26566 " read-lines path\n"
26567 "\n"
26568 msgstr ""
26569
26570 #. type: textblock
26571 #: ../fish/guestfish-actions.pod:3722
26572 msgid ""
26573 "Note that this function cannot correctly handle binary files (specifically, "
26574 "files containing C<\\0> character which is treated as end of line).  For "
26575 "those you need to use the L</read-file> function which has a more complex "
26576 "interface."
26577 msgstr ""
26578
26579 #. type: =head2
26580 #: ../fish/guestfish-actions.pod:3727
26581 msgid "readdir"
26582 msgstr ""
26583
26584 #. type: verbatim
26585 #: ../fish/guestfish-actions.pod:3729
26586 #, no-wrap
26587 msgid ""
26588 " readdir dir\n"
26589 "\n"
26590 msgstr ""
26591
26592 #. type: textblock
26593 #: ../fish/guestfish-actions.pod:3781
26594 msgid ""
26595 "This function is primarily intended for use by programs.  To get a simple "
26596 "list of names, use L</ls>.  To get a printable directory for human "
26597 "consumption, use L</ll>."
26598 msgstr ""
26599
26600 #. type: =head2
26601 #: ../fish/guestfish-actions.pod:3785
26602 msgid "readlink"
26603 msgstr ""
26604
26605 #. type: verbatim
26606 #: ../fish/guestfish-actions.pod:3787
26607 #, no-wrap
26608 msgid ""
26609 " readlink path\n"
26610 "\n"
26611 msgstr ""
26612
26613 #. type: =head2
26614 #: ../fish/guestfish-actions.pod:3791
26615 msgid "readlinklist"
26616 msgstr ""
26617
26618 #. type: verbatim
26619 #: ../fish/guestfish-actions.pod:3793
26620 #, no-wrap
26621 msgid ""
26622 " readlinklist path 'names ...'\n"
26623 "\n"
26624 msgstr ""
26625
26626 #. type: =head2
26627 #: ../fish/guestfish-actions.pod:3817
26628 msgid "realpath"
26629 msgstr ""
26630
26631 #. type: verbatim
26632 #: ../fish/guestfish-actions.pod:3819
26633 #, no-wrap
26634 msgid ""
26635 " realpath path\n"
26636 "\n"
26637 msgstr ""
26638
26639 #. type: =head2
26640 #: ../fish/guestfish-actions.pod:3824
26641 msgid "removexattr"
26642 msgstr ""
26643
26644 #. type: verbatim
26645 #: ../fish/guestfish-actions.pod:3826
26646 #, no-wrap
26647 msgid ""
26648 " removexattr xattr path\n"
26649 "\n"
26650 msgstr ""
26651
26652 #. type: textblock
26653 #: ../fish/guestfish-actions.pod:3831
26654 msgid "See also: L</lremovexattr>, L<attr(5)>."
26655 msgstr ""
26656
26657 #. type: =head2
26658 #: ../fish/guestfish-actions.pod:3833
26659 msgid "resize2fs"
26660 msgstr ""
26661
26662 #. type: verbatim
26663 #: ../fish/guestfish-actions.pod:3835
26664 #, no-wrap
26665 msgid ""
26666 " resize2fs device\n"
26667 "\n"
26668 msgstr ""
26669
26670 #. type: textblock
26671 #: ../fish/guestfish-actions.pod:3840
26672 msgid ""
26673 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26674 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26675 "gives an error about this and sometimes not.  In any case, it is always safe "
26676 "to call L</e2fsck-f> before calling this function."
26677 msgstr ""
26678
26679 #. type: =head2
26680 #: ../fish/guestfish-actions.pod:3846
26681 msgid "resize2fs-M"
26682 msgstr ""
26683
26684 #. type: verbatim
26685 #: ../fish/guestfish-actions.pod:3848
26686 #, no-wrap
26687 msgid ""
26688 " resize2fs-M device\n"
26689 "\n"
26690 msgstr ""
26691
26692 #. type: textblock
26693 #: ../fish/guestfish-actions.pod:3850
26694 msgid ""
26695 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26696 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26697 "command."
26698 msgstr ""
26699
26700 #. type: textblock
26701 #: ../fish/guestfish-actions.pod:3854
26702 msgid ""
26703 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26704 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26705 "multiplied together, give the resulting size of the minimal filesystem in "
26706 "bytes."
26707 msgstr ""
26708
26709 #. type: =head2
26710 #: ../fish/guestfish-actions.pod:3859
26711 msgid "resize2fs-size"
26712 msgstr ""
26713
26714 #. type: verbatim
26715 #: ../fish/guestfish-actions.pod:3861
26716 #, no-wrap
26717 msgid ""
26718 " resize2fs-size device size\n"
26719 "\n"
26720 msgstr ""
26721
26722 #. type: textblock
26723 #: ../fish/guestfish-actions.pod:3863
26724 msgid ""
26725 "This command is the same as L</resize2fs> except that it allows you to "
26726 "specify the new size (in bytes) explicitly."
26727 msgstr ""
26728
26729 #. type: =head2
26730 #: ../fish/guestfish-actions.pod:3866
26731 msgid "rm"
26732 msgstr ""
26733
26734 #. type: verbatim
26735 #: ../fish/guestfish-actions.pod:3868
26736 #, no-wrap
26737 msgid ""
26738 " rm path\n"
26739 "\n"
26740 msgstr ""
26741
26742 #. type: =head2
26743 #: ../fish/guestfish-actions.pod:3872
26744 msgid "rm-rf"
26745 msgstr ""
26746
26747 #. type: verbatim
26748 #: ../fish/guestfish-actions.pod:3874
26749 #, no-wrap
26750 msgid ""
26751 " rm-rf path\n"
26752 "\n"
26753 msgstr ""
26754
26755 #. type: =head2
26756 #: ../fish/guestfish-actions.pod:3880
26757 msgid "rmdir"
26758 msgstr ""
26759
26760 #. type: verbatim
26761 #: ../fish/guestfish-actions.pod:3882
26762 #, no-wrap
26763 msgid ""
26764 " rmdir path\n"
26765 "\n"
26766 msgstr ""
26767
26768 #. type: =head2
26769 #: ../fish/guestfish-actions.pod:3886
26770 msgid "rmmountpoint"
26771 msgstr ""
26772
26773 #. type: verbatim
26774 #: ../fish/guestfish-actions.pod:3888
26775 #, no-wrap
26776 msgid ""
26777 " rmmountpoint exemptpath\n"
26778 "\n"
26779 msgstr ""
26780
26781 #. type: textblock
26782 #: ../fish/guestfish-actions.pod:3890
26783 msgid ""
26784 "This calls removes a mountpoint that was previously created with L</"
26785 "mkmountpoint>.  See L</mkmountpoint> for full details."
26786 msgstr ""
26787
26788 #. type: =head2
26789 #: ../fish/guestfish-actions.pod:3894
26790 msgid "scrub-device"
26791 msgstr ""
26792
26793 #. type: verbatim
26794 #: ../fish/guestfish-actions.pod:3896
26795 #, no-wrap
26796 msgid ""
26797 " scrub-device device\n"
26798 "\n"
26799 msgstr ""
26800
26801 #. type: =head2
26802 #: ../fish/guestfish-actions.pod:3907
26803 msgid "scrub-file"
26804 msgstr ""
26805
26806 #. type: verbatim
26807 #: ../fish/guestfish-actions.pod:3909
26808 #, no-wrap
26809 msgid ""
26810 " scrub-file file\n"
26811 "\n"
26812 msgstr ""
26813
26814 #. type: =head2
26815 #: ../fish/guestfish-actions.pod:3919
26816 msgid "scrub-freespace"
26817 msgstr ""
26818
26819 #. type: verbatim
26820 #: ../fish/guestfish-actions.pod:3921
26821 #, no-wrap
26822 msgid ""
26823 " scrub-freespace dir\n"
26824 "\n"
26825 msgstr ""
26826
26827 #. type: textblock
26828 #: ../fish/guestfish-actions.pod:3923
26829 msgid ""
26830 "This command creates the directory C<dir> and then fills it with files until "
26831 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26832 "deletes them.  The intention is to scrub any free space on the partition "
26833 "containing C<dir>."
26834 msgstr ""
26835
26836 #. type: =head2
26837 #: ../fish/guestfish-actions.pod:3932
26838 msgid "set-append"
26839 msgstr ""
26840
26841 #. type: =head2
26842 #: ../fish/guestfish-actions.pod:3934
26843 msgid "append"
26844 msgstr ""
26845
26846 #. type: verbatim
26847 #: ../fish/guestfish-actions.pod:3936
26848 #, no-wrap
26849 msgid ""
26850 " set-append append\n"
26851 "\n"
26852 msgstr ""
26853
26854 #. type: =head2
26855 #: ../fish/guestfish-actions.pod:3947
26856 msgid "set-attach-method"
26857 msgstr ""
26858
26859 #. type: =head2
26860 #: ../fish/guestfish-actions.pod:3949
26861 msgid "attach-method"
26862 msgstr ""
26863
26864 #. type: verbatim
26865 #: ../fish/guestfish-actions.pod:3951
26866 #, no-wrap
26867 msgid ""
26868 " set-attach-method attachmethod\n"
26869 "\n"
26870 msgstr ""
26871
26872 #. type: =head2
26873 #: ../fish/guestfish-actions.pod:3973
26874 msgid "set-autosync"
26875 msgstr ""
26876
26877 #. type: =head2
26878 #: ../fish/guestfish-actions.pod:3975
26879 msgid "autosync"
26880 msgstr ""
26881
26882 #. type: verbatim
26883 #: ../fish/guestfish-actions.pod:3977
26884 #, no-wrap
26885 msgid ""
26886 " set-autosync true|false\n"
26887 "\n"
26888 msgstr ""
26889
26890 #. type: =head2
26891 #: ../fish/guestfish-actions.pod:3987
26892 msgid "set-direct"
26893 msgstr ""
26894
26895 #. type: =head2
26896 #: ../fish/guestfish-actions.pod:3989
26897 msgid "direct"
26898 msgstr ""
26899
26900 #. type: verbatim
26901 #: ../fish/guestfish-actions.pod:3991
26902 #, no-wrap
26903 msgid ""
26904 " set-direct true|false\n"
26905 "\n"
26906 msgstr ""
26907
26908 #. type: textblock
26909 #: ../fish/guestfish-actions.pod:3997
26910 msgid ""
26911 "One consequence of this is that log messages aren't caught by the library "
26912 "and handled by L</set-log-message-callback>, but go straight to stdout."
26913 msgstr ""
26914
26915 #. type: =head2
26916 #: ../fish/guestfish-actions.pod:4006
26917 msgid "set-e2label"
26918 msgstr ""
26919
26920 #. type: verbatim
26921 #: ../fish/guestfish-actions.pod:4008
26922 #, no-wrap
26923 msgid ""
26924 " set-e2label device label\n"
26925 "\n"
26926 msgstr ""
26927
26928 #. type: textblock
26929 #: ../fish/guestfish-actions.pod:4014
26930 msgid ""
26931 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26932 "label on a filesystem."
26933 msgstr ""
26934
26935 #. type: =head2
26936 #: ../fish/guestfish-actions.pod:4017
26937 msgid "set-e2uuid"
26938 msgstr ""
26939
26940 #. type: verbatim
26941 #: ../fish/guestfish-actions.pod:4019
26942 #, no-wrap
26943 msgid ""
26944 " set-e2uuid device uuid\n"
26945 "\n"
26946 msgstr ""
26947
26948 #. type: textblock
26949 #: ../fish/guestfish-actions.pod:4026
26950 msgid ""
26951 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26952 "UUID of a filesystem."
26953 msgstr ""
26954
26955 #. type: =head2
26956 #: ../fish/guestfish-actions.pod:4029
26957 msgid "set-memsize"
26958 msgstr ""
26959
26960 #. type: =head2
26961 #: ../fish/guestfish-actions.pod:4031
26962 msgid "memsize"
26963 msgstr ""
26964
26965 #. type: verbatim
26966 #: ../fish/guestfish-actions.pod:4033
26967 #, no-wrap
26968 msgid ""
26969 " set-memsize memsize\n"
26970 "\n"
26971 msgstr ""
26972
26973 #. type: textblock
26974 #: ../fish/guestfish-actions.pod:4035
26975 msgid ""
26976 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26977 "This only has any effect if called before L</launch>."
26978 msgstr ""
26979
26980 #. type: =head2
26981 #: ../fish/guestfish-actions.pod:4046
26982 msgid "set-network"
26983 msgstr ""
26984
26985 #. type: =head2
26986 #: ../fish/guestfish-actions.pod:4048
26987 msgid "network"
26988 msgstr ""
26989
26990 #. type: verbatim
26991 #: ../fish/guestfish-actions.pod:4050
26992 #, no-wrap
26993 msgid ""
26994 " set-network true|false\n"
26995 "\n"
26996 msgstr ""
26997
26998 #. type: textblock
26999 #: ../fish/guestfish-actions.pod:4058
27000 msgid ""
27001 "You must call this before calling L</launch>, otherwise it has no effect."
27002 msgstr ""
27003
27004 #. type: =head2
27005 #: ../fish/guestfish-actions.pod:4061
27006 msgid "set-path"
27007 msgstr ""
27008
27009 #. type: =head2
27010 #: ../fish/guestfish-actions.pod:4063
27011 msgid "path"
27012 msgstr ""
27013
27014 #. type: verbatim
27015 #: ../fish/guestfish-actions.pod:4065
27016 #, no-wrap
27017 msgid ""
27018 " set-path searchpath\n"
27019 "\n"
27020 msgstr ""
27021
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:4074
27024 msgid "set-qemu"
27025 msgstr ""
27026
27027 #. type: =head2
27028 #: ../fish/guestfish-actions.pod:4076
27029 msgid "qemu"
27030 msgstr ""
27031
27032 #. type: verbatim
27033 #: ../fish/guestfish-actions.pod:4078
27034 #, no-wrap
27035 msgid ""
27036 " set-qemu qemu\n"
27037 "\n"
27038 msgstr ""
27039
27040 #. type: =head2
27041 #: ../fish/guestfish-actions.pod:4098
27042 msgid "set-recovery-proc"
27043 msgstr ""
27044
27045 #. type: =head2
27046 #: ../fish/guestfish-actions.pod:4100
27047 msgid "recovery-proc"
27048 msgstr ""
27049
27050 #. type: verbatim
27051 #: ../fish/guestfish-actions.pod:4102
27052 #, no-wrap
27053 msgid ""
27054 " set-recovery-proc true|false\n"
27055 "\n"
27056 msgstr ""
27057
27058 #. type: textblock
27059 #: ../fish/guestfish-actions.pod:4104
27060 msgid ""
27061 "If this is called with the parameter C<false> then L</launch> does not "
27062 "create a recovery process.  The purpose of the recovery process is to stop "
27063 "runaway qemu processes in the case where the main program aborts abruptly."
27064 msgstr ""
27065
27066 #. type: textblock
27067 #: ../fish/guestfish-actions.pod:4109
27068 msgid ""
27069 "This only has any effect if called before L</launch>, and the default is "
27070 "true."
27071 msgstr ""
27072
27073 #. type: =head2
27074 #: ../fish/guestfish-actions.pod:4118
27075 msgid "set-selinux"
27076 msgstr ""
27077
27078 #. type: =head2
27079 #: ../fish/guestfish-actions.pod:4120
27080 msgid "selinux"
27081 msgstr ""
27082
27083 #. type: verbatim
27084 #: ../fish/guestfish-actions.pod:4122
27085 #, no-wrap
27086 msgid ""
27087 " set-selinux true|false\n"
27088 "\n"
27089 msgstr ""
27090
27091 #. type: =head2
27092 #: ../fish/guestfish-actions.pod:4133
27093 msgid "set-trace"
27094 msgstr ""
27095
27096 #. type: =head2
27097 #: ../fish/guestfish-actions.pod:4135
27098 msgid "trace"
27099 msgstr ""
27100
27101 #. type: verbatim
27102 #: ../fish/guestfish-actions.pod:4137
27103 #, no-wrap
27104 msgid ""
27105 " set-trace true|false\n"
27106 "\n"
27107 msgstr ""
27108
27109 #. type: textblock
27110 #: ../fish/guestfish-actions.pod:4149
27111 msgid ""
27112 "Trace messages are normally sent to C<stderr>, unless you register a "
27113 "callback to send them somewhere else (see L</set-event-callback>)."
27114 msgstr ""
27115
27116 #. type: =head2
27117 #: ../fish/guestfish-actions.pod:4153
27118 msgid "set-verbose"
27119 msgstr ""
27120
27121 #. type: =head2
27122 #: ../fish/guestfish-actions.pod:4155
27123 msgid "verbose"
27124 msgstr ""
27125
27126 #. type: verbatim
27127 #: ../fish/guestfish-actions.pod:4157
27128 #, no-wrap
27129 msgid ""
27130 " set-verbose true|false\n"
27131 "\n"
27132 msgstr ""
27133
27134 #. type: textblock
27135 #: ../fish/guestfish-actions.pod:4164
27136 msgid ""
27137 "Verbose messages are normally sent to C<stderr>, unless you register a "
27138 "callback to send them somewhere else (see L</set-event-callback>)."
27139 msgstr ""
27140
27141 #. type: =head2
27142 #: ../fish/guestfish-actions.pod:4168
27143 msgid "setcon"
27144 msgstr ""
27145
27146 #. type: verbatim
27147 #: ../fish/guestfish-actions.pod:4170
27148 #, no-wrap
27149 msgid ""
27150 " setcon context\n"
27151 "\n"
27152 msgstr ""
27153
27154 #. type: =head2
27155 #: ../fish/guestfish-actions.pod:4177
27156 msgid "setxattr"
27157 msgstr ""
27158
27159 #. type: verbatim
27160 #: ../fish/guestfish-actions.pod:4179
27161 #, no-wrap
27162 msgid ""
27163 " setxattr xattr val vallen path\n"
27164 "\n"
27165 msgstr ""
27166
27167 #. type: textblock
27168 #: ../fish/guestfish-actions.pod:4185
27169 msgid "See also: L</lsetxattr>, L<attr(5)>."
27170 msgstr ""
27171
27172 #. type: =head2
27173 #: ../fish/guestfish-actions.pod:4187
27174 msgid "sfdisk"
27175 msgstr ""
27176
27177 #. type: verbatim
27178 #: ../fish/guestfish-actions.pod:4189
27179 #, no-wrap
27180 msgid ""
27181 " sfdisk device cyls heads sectors 'lines ...'\n"
27182 "\n"
27183 msgstr ""
27184
27185 #. type: textblock
27186 #: ../fish/guestfish-actions.pod:4211
27187 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27188 msgstr ""
27189
27190 #. type: =head2
27191 #: ../fish/guestfish-actions.pod:4224
27192 msgid "sfdiskM"
27193 msgstr ""
27194
27195 #. type: verbatim
27196 #: ../fish/guestfish-actions.pod:4226
27197 #, no-wrap
27198 msgid ""
27199 " sfdiskM device 'lines ...'\n"
27200 "\n"
27201 msgstr ""
27202
27203 #. type: textblock
27204 #: ../fish/guestfish-actions.pod:4228
27205 msgid ""
27206 "This is a simplified interface to the L</sfdisk> command, where partition "
27207 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27208 "you don't need to specify the cyls, heads and sectors parameters which were "
27209 "rarely if ever used anyway."
27210 msgstr ""
27211
27212 #. type: textblock
27213 #: ../fish/guestfish-actions.pod:4234
27214 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27215 msgstr ""
27216
27217 #. type: =head2
27218 #: ../fish/guestfish-actions.pod:4247
27219 msgid "sfdisk-N"
27220 msgstr ""
27221
27222 #. type: verbatim
27223 #: ../fish/guestfish-actions.pod:4249
27224 #, no-wrap
27225 msgid ""
27226 " sfdisk-N device partnum cyls heads sectors line\n"
27227 "\n"
27228 msgstr ""
27229
27230 #. type: textblock
27231 #: ../fish/guestfish-actions.pod:4254
27232 msgid ""
27233 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27234 "cyls/heads/sectors parameters."
27235 msgstr ""
27236
27237 #. type: textblock
27238 #: ../fish/guestfish-actions.pod:4257
27239 msgid "See also: L</part-add>"
27240 msgstr ""
27241
27242 #. type: =head2
27243 #: ../fish/guestfish-actions.pod:4269
27244 msgid "sfdisk-disk-geometry"
27245 msgstr ""
27246
27247 #. type: verbatim
27248 #: ../fish/guestfish-actions.pod:4271
27249 #, no-wrap
27250 msgid ""
27251 " sfdisk-disk-geometry device\n"
27252 "\n"
27253 msgstr ""
27254
27255 #. type: textblock
27256 #: ../fish/guestfish-actions.pod:4273
27257 msgid ""
27258 "This displays the disk geometry of C<device> read from the partition table.  "
27259 "Especially in the case where the underlying block device has been resized, "
27260 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
27261 "kernel-geometry>)."
27262 msgstr ""
27263
27264 #. type: =head2
27265 #: ../fish/guestfish-actions.pod:4281
27266 msgid "sfdisk-kernel-geometry"
27267 msgstr ""
27268
27269 #. type: verbatim
27270 #: ../fish/guestfish-actions.pod:4283
27271 #, no-wrap
27272 msgid ""
27273 " sfdisk-kernel-geometry device\n"
27274 "\n"
27275 msgstr ""
27276
27277 #. type: =head2
27278 #: ../fish/guestfish-actions.pod:4290
27279 msgid "sfdisk-l"
27280 msgstr ""
27281
27282 #. type: verbatim
27283 #: ../fish/guestfish-actions.pod:4292
27284 #, no-wrap
27285 msgid ""
27286 " sfdisk-l device\n"
27287 "\n"
27288 msgstr ""
27289
27290 #. type: textblock
27291 #: ../fish/guestfish-actions.pod:4298
27292 msgid "See also: L</part-list>"
27293 msgstr ""
27294
27295 #. type: =head2
27296 #: ../fish/guestfish-actions.pod:4307
27297 msgid "sh"
27298 msgstr ""
27299
27300 #. type: verbatim
27301 #: ../fish/guestfish-actions.pod:4309
27302 #, no-wrap
27303 msgid ""
27304 " sh command\n"
27305 "\n"
27306 msgstr ""
27307
27308 #. type: textblock
27309 #: ../fish/guestfish-actions.pod:4314
27310 msgid "This is like L</command>, but passes the command to:"
27311 msgstr ""
27312
27313 #. type: textblock
27314 #: ../fish/guestfish-actions.pod:4322
27315 msgid "All the provisos about L</command> apply to this call."
27316 msgstr ""
27317
27318 #. type: =head2
27319 #: ../fish/guestfish-actions.pod:4324
27320 msgid "sh-lines"
27321 msgstr ""
27322
27323 #. type: verbatim
27324 #: ../fish/guestfish-actions.pod:4326
27325 #, no-wrap
27326 msgid ""
27327 " sh-lines command\n"
27328 "\n"
27329 msgstr ""
27330
27331 #. type: textblock
27332 #: ../fish/guestfish-actions.pod:4328
27333 msgid "This is the same as L</sh>, but splits the result into a list of lines."
27334 msgstr ""
27335
27336 #. type: textblock
27337 #: ../fish/guestfish-actions.pod:4331
27338 msgid "See also: L</command-lines>"
27339 msgstr ""
27340
27341 #. type: =head2
27342 #: ../fish/guestfish-actions.pod:4333
27343 msgid "sleep"
27344 msgstr ""
27345
27346 #. type: verbatim
27347 #: ../fish/guestfish-actions.pod:4335
27348 #, no-wrap
27349 msgid ""
27350 " sleep secs\n"
27351 "\n"
27352 msgstr ""
27353
27354 #. type: =head2
27355 #: ../fish/guestfish-actions.pod:4339
27356 msgid "stat"
27357 msgstr ""
27358
27359 #. type: verbatim
27360 #: ../fish/guestfish-actions.pod:4341
27361 #, no-wrap
27362 msgid ""
27363 " stat path\n"
27364 "\n"
27365 msgstr ""
27366
27367 #. type: =head2
27368 #: ../fish/guestfish-actions.pod:4347
27369 msgid "statvfs"
27370 msgstr ""
27371
27372 #. type: verbatim
27373 #: ../fish/guestfish-actions.pod:4349
27374 #, no-wrap
27375 msgid ""
27376 " statvfs path\n"
27377 "\n"
27378 msgstr ""
27379
27380 #. type: =head2
27381 #: ../fish/guestfish-actions.pod:4357
27382 msgid "strings"
27383 msgstr ""
27384
27385 #. type: verbatim
27386 #: ../fish/guestfish-actions.pod:4359
27387 #, no-wrap
27388 msgid ""
27389 " strings path\n"
27390 "\n"
27391 msgstr ""
27392
27393 #. type: =head2
27394 #: ../fish/guestfish-actions.pod:4367
27395 msgid "strings-e"
27396 msgstr ""
27397
27398 #. type: verbatim
27399 #: ../fish/guestfish-actions.pod:4369
27400 #, no-wrap
27401 msgid ""
27402 " strings-e encoding path\n"
27403 "\n"
27404 msgstr ""
27405
27406 #. type: textblock
27407 #: ../fish/guestfish-actions.pod:4371
27408 msgid ""
27409 "This is like the L</strings> command, but allows you to specify the encoding "
27410 "of strings that are looked for in the source file C<path>."
27411 msgstr ""
27412
27413 #. type: textblock
27414 #: ../fish/guestfish-actions.pod:4381
27415 msgid ""
27416 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27417 "ISO-8859-X (this is what L</strings> uses)."
27418 msgstr ""
27419
27420 #. type: =head2
27421 #: ../fish/guestfish-actions.pod:4413
27422 msgid "swapoff-device"
27423 msgstr ""
27424
27425 #. type: verbatim
27426 #: ../fish/guestfish-actions.pod:4415
27427 #, no-wrap
27428 msgid ""
27429 " swapoff-device device\n"
27430 "\n"
27431 msgstr ""
27432
27433 #. type: textblock
27434 #: ../fish/guestfish-actions.pod:4417
27435 msgid ""
27436 "This command disables the libguestfs appliance swap device or partition "
27437 "named C<device>.  See L</swapon-device>."
27438 msgstr ""
27439
27440 #. type: =head2
27441 #: ../fish/guestfish-actions.pod:4421
27442 msgid "swapoff-file"
27443 msgstr ""
27444
27445 #. type: verbatim
27446 #: ../fish/guestfish-actions.pod:4423
27447 #, no-wrap
27448 msgid ""
27449 " swapoff-file file\n"
27450 "\n"
27451 msgstr ""
27452
27453 #. type: =head2
27454 #: ../fish/guestfish-actions.pod:4427
27455 msgid "swapoff-label"
27456 msgstr ""
27457
27458 #. type: verbatim
27459 #: ../fish/guestfish-actions.pod:4429
27460 #, no-wrap
27461 msgid ""
27462 " swapoff-label label\n"
27463 "\n"
27464 msgstr ""
27465
27466 #. type: =head2
27467 #: ../fish/guestfish-actions.pod:4434
27468 msgid "swapoff-uuid"
27469 msgstr ""
27470
27471 #. type: verbatim
27472 #: ../fish/guestfish-actions.pod:4436
27473 #, no-wrap
27474 msgid ""
27475 " swapoff-uuid uuid\n"
27476 "\n"
27477 msgstr ""
27478
27479 #. type: =head2
27480 #: ../fish/guestfish-actions.pod:4441
27481 msgid "swapon-device"
27482 msgstr ""
27483
27484 #. type: verbatim
27485 #: ../fish/guestfish-actions.pod:4443
27486 #, no-wrap
27487 msgid ""
27488 " swapon-device device\n"
27489 "\n"
27490 msgstr ""
27491
27492 #. type: textblock
27493 #: ../fish/guestfish-actions.pod:4445
27494 msgid ""
27495 "This command enables the libguestfs appliance to use the swap device or "
27496 "partition named C<device>.  The increased memory is made available for all "
27497 "commands, for example those run using L</command> or L</sh>."
27498 msgstr ""
27499
27500 #. type: =head2
27501 #: ../fish/guestfish-actions.pod:4457
27502 msgid "swapon-file"
27503 msgstr ""
27504
27505 #. type: verbatim
27506 #: ../fish/guestfish-actions.pod:4459
27507 #, no-wrap
27508 msgid ""
27509 " swapon-file file\n"
27510 "\n"
27511 msgstr ""
27512
27513 #. type: textblock
27514 #: ../fish/guestfish-actions.pod:4461
27515 msgid ""
27516 "This command enables swap to a file.  See L</swapon-device> for other notes."
27517 msgstr ""
27518
27519 #. type: =head2
27520 #: ../fish/guestfish-actions.pod:4464
27521 msgid "swapon-label"
27522 msgstr ""
27523
27524 #. type: verbatim
27525 #: ../fish/guestfish-actions.pod:4466
27526 #, no-wrap
27527 msgid ""
27528 " swapon-label label\n"
27529 "\n"
27530 msgstr ""
27531
27532 #. type: textblock
27533 #: ../fish/guestfish-actions.pod:4468
27534 msgid ""
27535 "This command enables swap to a labeled swap partition.  See L</swapon-"
27536 "device> for other notes."
27537 msgstr ""
27538
27539 #. type: =head2
27540 #: ../fish/guestfish-actions.pod:4471
27541 msgid "swapon-uuid"
27542 msgstr ""
27543
27544 #. type: verbatim
27545 #: ../fish/guestfish-actions.pod:4473
27546 #, no-wrap
27547 msgid ""
27548 " swapon-uuid uuid\n"
27549 "\n"
27550 msgstr ""
27551
27552 #. type: textblock
27553 #: ../fish/guestfish-actions.pod:4475
27554 msgid ""
27555 "This command enables swap to a swap partition with the given UUID.  See L</"
27556 "swapon-device> for other notes."
27557 msgstr ""
27558
27559 #. type: =head2
27560 #: ../fish/guestfish-actions.pod:4478
27561 msgid "sync"
27562 msgstr ""
27563
27564 #. type: verbatim
27565 #: ../fish/guestfish-actions.pod:4480
27566 #, no-wrap
27567 msgid ""
27568 " sync\n"
27569 "\n"
27570 msgstr ""
27571
27572 #. type: =head2
27573 #: ../fish/guestfish-actions.pod:4488
27574 msgid "tail"
27575 msgstr ""
27576
27577 #. type: verbatim
27578 #: ../fish/guestfish-actions.pod:4490
27579 #, no-wrap
27580 msgid ""
27581 " tail path\n"
27582 "\n"
27583 msgstr ""
27584
27585 #. type: =head2
27586 #: ../fish/guestfish-actions.pod:4498
27587 msgid "tail-n"
27588 msgstr ""
27589
27590 #. type: verbatim
27591 #: ../fish/guestfish-actions.pod:4500
27592 #, no-wrap
27593 msgid ""
27594 " tail-n nrlines path\n"
27595 "\n"
27596 msgstr ""
27597
27598 #. type: =head2
27599 #: ../fish/guestfish-actions.pod:4513
27600 msgid "tar-in"
27601 msgstr ""
27602
27603 #. type: verbatim
27604 #: ../fish/guestfish-actions.pod:4515
27605 #, no-wrap
27606 msgid ""
27607 " tar-in (tarfile|-) directory\n"
27608 "\n"
27609 msgstr ""
27610
27611 #. type: textblock
27612 #: ../fish/guestfish-actions.pod:4520
27613 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27614 msgstr ""
27615
27616 #. type: =head2
27617 #: ../fish/guestfish-actions.pod:4525
27618 msgid "tar-out"
27619 msgstr ""
27620
27621 #. type: verbatim
27622 #: ../fish/guestfish-actions.pod:4527
27623 #, no-wrap
27624 msgid ""
27625 " tar-out directory (tarfile|-)\n"
27626 "\n"
27627 msgstr ""
27628
27629 #. type: textblock
27630 #: ../fish/guestfish-actions.pod:4532
27631 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27632 msgstr ""
27633
27634 #. type: =head2
27635 #: ../fish/guestfish-actions.pod:4537
27636 msgid "tgz-in"
27637 msgstr ""
27638
27639 #. type: verbatim
27640 #: ../fish/guestfish-actions.pod:4539
27641 #, no-wrap
27642 msgid ""
27643 " tgz-in (tarball|-) directory\n"
27644 "\n"
27645 msgstr ""
27646
27647 #. type: textblock
27648 #: ../fish/guestfish-actions.pod:4544
27649 msgid "To upload an uncompressed tarball, use L</tar-in>."
27650 msgstr ""
27651
27652 #. type: =head2
27653 #: ../fish/guestfish-actions.pod:4548
27654 msgid "tgz-out"
27655 msgstr ""
27656
27657 #. type: verbatim
27658 #: ../fish/guestfish-actions.pod:4550
27659 #, no-wrap
27660 msgid ""
27661 " tgz-out directory (tarball|-)\n"
27662 "\n"
27663 msgstr ""
27664
27665 #. type: textblock
27666 #: ../fish/guestfish-actions.pod:4555
27667 msgid "To download an uncompressed tarball, use L</tar-out>."
27668 msgstr ""
27669
27670 #. type: =head2
27671 #: ../fish/guestfish-actions.pod:4559
27672 msgid "touch"
27673 msgstr ""
27674
27675 #. type: verbatim
27676 #: ../fish/guestfish-actions.pod:4561
27677 #, no-wrap
27678 msgid ""
27679 " touch path\n"
27680 "\n"
27681 msgstr ""
27682
27683 #. type: =head2
27684 #: ../fish/guestfish-actions.pod:4570
27685 msgid "truncate"
27686 msgstr ""
27687
27688 #. type: verbatim
27689 #: ../fish/guestfish-actions.pod:4572
27690 #, no-wrap
27691 msgid ""
27692 " truncate path\n"
27693 "\n"
27694 msgstr ""
27695
27696 #. type: =head2
27697 #: ../fish/guestfish-actions.pod:4577
27698 msgid "truncate-size"
27699 msgstr ""
27700
27701 #. type: verbatim
27702 #: ../fish/guestfish-actions.pod:4579
27703 #, no-wrap
27704 msgid ""
27705 " truncate-size path size\n"
27706 "\n"
27707 msgstr ""
27708
27709 #. type: textblock
27710 #: ../fish/guestfish-actions.pod:4584
27711 msgid ""
27712 "If the current file size is less than C<size> then the file is extended to "
27713 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27714 "blocks are not allocated for the file until you write to it).  To create a "
27715 "non-sparse file of zeroes, use L</fallocate64> instead."
27716 msgstr ""
27717
27718 #. type: =head2
27719 #: ../fish/guestfish-actions.pod:4590
27720 msgid "tune2fs-l"
27721 msgstr ""
27722
27723 #. type: verbatim
27724 #: ../fish/guestfish-actions.pod:4592
27725 #, no-wrap
27726 msgid ""
27727 " tune2fs-l device\n"
27728 "\n"
27729 msgstr ""
27730
27731 #. type: =head2
27732 #: ../fish/guestfish-actions.pod:4602
27733 msgid "txz-in"
27734 msgstr ""
27735
27736 #. type: verbatim
27737 #: ../fish/guestfish-actions.pod:4604
27738 #, no-wrap
27739 msgid ""
27740 " txz-in (tarball|-) directory\n"
27741 "\n"
27742 msgstr ""
27743
27744 #. type: =head2
27745 #: ../fish/guestfish-actions.pod:4611
27746 msgid "txz-out"
27747 msgstr ""
27748
27749 #. type: verbatim
27750 #: ../fish/guestfish-actions.pod:4613
27751 #, no-wrap
27752 msgid ""
27753 " txz-out directory (tarball|-)\n"
27754 "\n"
27755 msgstr ""
27756
27757 #. type: =head2
27758 #: ../fish/guestfish-actions.pod:4620
27759 msgid "umask"
27760 msgstr ""
27761
27762 #. type: verbatim
27763 #: ../fish/guestfish-actions.pod:4622
27764 #, no-wrap
27765 msgid ""
27766 " umask mask\n"
27767 "\n"
27768 msgstr ""
27769
27770 #. type: textblock
27771 #: ../fish/guestfish-actions.pod:4636
27772 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27773 msgstr ""
27774
27775 #. type: =head2
27776 #: ../fish/guestfish-actions.pod:4641
27777 msgid "umount"
27778 msgstr ""
27779
27780 #. type: =head2
27781 #: ../fish/guestfish-actions.pod:4643
27782 msgid "unmount"
27783 msgstr ""
27784
27785 #. type: verbatim
27786 #: ../fish/guestfish-actions.pod:4645
27787 #, no-wrap
27788 msgid ""
27789 " umount pathordevice\n"
27790 "\n"
27791 msgstr ""
27792
27793 #. type: =head2
27794 #: ../fish/guestfish-actions.pod:4651
27795 msgid "umount-all"
27796 msgstr ""
27797
27798 #. type: =head2
27799 #: ../fish/guestfish-actions.pod:4653
27800 msgid "unmount-all"
27801 msgstr ""
27802
27803 #. type: verbatim
27804 #: ../fish/guestfish-actions.pod:4655
27805 #, no-wrap
27806 msgid ""
27807 " umount-all\n"
27808 "\n"
27809 msgstr ""
27810
27811 #. type: =head2
27812 #: ../fish/guestfish-actions.pod:4661
27813 msgid "upload"
27814 msgstr ""
27815
27816 #. type: verbatim
27817 #: ../fish/guestfish-actions.pod:4663
27818 #, no-wrap
27819 msgid ""
27820 " upload (filename|-) remotefilename\n"
27821 "\n"
27822 msgstr ""
27823
27824 #. type: textblock
27825 #: ../fish/guestfish-actions.pod:4670
27826 msgid "See also L</download>."
27827 msgstr ""
27828
27829 #. type: =head2
27830 #: ../fish/guestfish-actions.pod:4674
27831 msgid "upload-offset"
27832 msgstr ""
27833
27834 #. type: verbatim
27835 #: ../fish/guestfish-actions.pod:4676
27836 #, no-wrap
27837 msgid ""
27838 " upload-offset (filename|-) remotefilename offset\n"
27839 "\n"
27840 msgstr ""
27841
27842 #. type: textblock
27843 #: ../fish/guestfish-actions.pod:4688
27844 msgid ""
27845 "Note that there is no limit on the amount of data that can be uploaded with "
27846 "this call, unlike with L</pwrite>, and this call always writes the full "
27847 "amount unless an error occurs."
27848 msgstr ""
27849
27850 #. type: textblock
27851 #: ../fish/guestfish-actions.pod:4693
27852 msgid "See also L</upload>, L</pwrite>."
27853 msgstr ""
27854
27855 #. type: =head2
27856 #: ../fish/guestfish-actions.pod:4697
27857 msgid "utimens"
27858 msgstr ""
27859
27860 #. type: verbatim
27861 #: ../fish/guestfish-actions.pod:4699
27862 #, no-wrap
27863 msgid ""
27864 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27865 "\n"
27866 msgstr ""
27867
27868 #. type: =head2
27869 #: ../fish/guestfish-actions.pod:4718
27870 msgid "version"
27871 msgstr ""
27872
27873 #. type: verbatim
27874 #: ../fish/guestfish-actions.pod:4720
27875 #, no-wrap
27876 msgid ""
27877 " version\n"
27878 "\n"
27879 msgstr ""
27880
27881 #. type: textblock
27882 #: ../fish/guestfish-actions.pod:4747
27883 msgid ""
27884 "I<Note:> Don't use this call to test for availability of features.  In "
27885 "enterprise distributions we backport features from later versions into "
27886 "earlier versions, making this an unreliable way to test for features.  Use "
27887 "L</available> instead."
27888 msgstr ""
27889
27890 #. type: =head2
27891 #: ../fish/guestfish-actions.pod:4753
27892 msgid "vfs-label"
27893 msgstr ""
27894
27895 #. type: verbatim
27896 #: ../fish/guestfish-actions.pod:4755
27897 #, no-wrap
27898 msgid ""
27899 " vfs-label device\n"
27900 "\n"
27901 msgstr ""
27902
27903 #. type: textblock
27904 #: ../fish/guestfish-actions.pod:4762
27905 msgid "To find a filesystem from the label, use L</findfs-label>."
27906 msgstr ""
27907
27908 #. type: =head2
27909 #: ../fish/guestfish-actions.pod:4764
27910 msgid "vfs-type"
27911 msgstr ""
27912
27913 #. type: verbatim
27914 #: ../fish/guestfish-actions.pod:4766
27915 #, no-wrap
27916 msgid ""
27917 " vfs-type device\n"
27918 "\n"
27919 msgstr ""
27920
27921 #. type: =head2
27922 #: ../fish/guestfish-actions.pod:4776
27923 msgid "vfs-uuid"
27924 msgstr ""
27925
27926 #. type: verbatim
27927 #: ../fish/guestfish-actions.pod:4778
27928 #, no-wrap
27929 msgid ""
27930 " vfs-uuid device\n"
27931 "\n"
27932 msgstr ""
27933
27934 #. type: textblock
27935 #: ../fish/guestfish-actions.pod:4785
27936 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27937 msgstr ""
27938
27939 #. type: =head2
27940 #: ../fish/guestfish-actions.pod:4787
27941 msgid "vg-activate"
27942 msgstr ""
27943
27944 #. type: verbatim
27945 #: ../fish/guestfish-actions.pod:4789
27946 #, no-wrap
27947 msgid ""
27948 " vg-activate true|false 'volgroups ...'\n"
27949 "\n"
27950 msgstr ""
27951
27952 #. type: =head2
27953 #: ../fish/guestfish-actions.pod:4802
27954 msgid "vg-activate-all"
27955 msgstr ""
27956
27957 #. type: verbatim
27958 #: ../fish/guestfish-actions.pod:4804
27959 #, no-wrap
27960 msgid ""
27961 " vg-activate-all true|false\n"
27962 "\n"
27963 msgstr ""
27964
27965 #. type: =head2
27966 #: ../fish/guestfish-actions.pod:4814
27967 msgid "vgcreate"
27968 msgstr ""
27969
27970 #. type: verbatim
27971 #: ../fish/guestfish-actions.pod:4816
27972 #, no-wrap
27973 msgid ""
27974 " vgcreate volgroup 'physvols ...'\n"
27975 "\n"
27976 msgstr ""
27977
27978 #. type: =head2
27979 #: ../fish/guestfish-actions.pod:4821
27980 msgid "vglvuuids"
27981 msgstr ""
27982
27983 #. type: verbatim
27984 #: ../fish/guestfish-actions.pod:4823
27985 #, no-wrap
27986 msgid ""
27987 " vglvuuids vgname\n"
27988 "\n"
27989 msgstr ""
27990
27991 #. type: textblock
27992 #: ../fish/guestfish-actions.pod:4828
27993 msgid ""
27994 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27995 "logical volumes and volume groups."
27996 msgstr ""
27997
27998 #. type: textblock
27999 #: ../fish/guestfish-actions.pod:4831
28000 msgid "See also L</vgpvuuids>."
28001 msgstr ""
28002
28003 #. type: =head2
28004 #: ../fish/guestfish-actions.pod:4833
28005 msgid "vgpvuuids"
28006 msgstr ""
28007
28008 #. type: verbatim
28009 #: ../fish/guestfish-actions.pod:4835
28010 #, no-wrap
28011 msgid ""
28012 " vgpvuuids vgname\n"
28013 "\n"
28014 msgstr ""
28015
28016 #. type: textblock
28017 #: ../fish/guestfish-actions.pod:4840
28018 msgid ""
28019 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28020 "physical volumes and volume groups."
28021 msgstr ""
28022
28023 #. type: textblock
28024 #: ../fish/guestfish-actions.pod:4843
28025 msgid "See also L</vglvuuids>."
28026 msgstr ""
28027
28028 #. type: =head2
28029 #: ../fish/guestfish-actions.pod:4845
28030 msgid "vgremove"
28031 msgstr ""
28032
28033 #. type: verbatim
28034 #: ../fish/guestfish-actions.pod:4847
28035 #, no-wrap
28036 msgid ""
28037 " vgremove vgname\n"
28038 "\n"
28039 msgstr ""
28040
28041 #. type: =head2
28042 #: ../fish/guestfish-actions.pod:4854
28043 msgid "vgrename"
28044 msgstr ""
28045
28046 #. type: verbatim
28047 #: ../fish/guestfish-actions.pod:4856
28048 #, no-wrap
28049 msgid ""
28050 " vgrename volgroup newvolgroup\n"
28051 "\n"
28052 msgstr ""
28053
28054 #. type: =head2
28055 #: ../fish/guestfish-actions.pod:4860
28056 msgid "vgs"
28057 msgstr ""
28058
28059 #. type: verbatim
28060 #: ../fish/guestfish-actions.pod:4862
28061 #, no-wrap
28062 msgid ""
28063 " vgs\n"
28064 "\n"
28065 msgstr ""
28066
28067 #. type: textblock
28068 #: ../fish/guestfish-actions.pod:4870
28069 msgid "See also L</vgs-full>."
28070 msgstr ""
28071
28072 #. type: =head2
28073 #: ../fish/guestfish-actions.pod:4872
28074 msgid "vgs-full"
28075 msgstr ""
28076
28077 #. type: verbatim
28078 #: ../fish/guestfish-actions.pod:4874
28079 #, no-wrap
28080 msgid ""
28081 " vgs-full\n"
28082 "\n"
28083 msgstr ""
28084
28085 #. type: =head2
28086 #: ../fish/guestfish-actions.pod:4879
28087 msgid "vgscan"
28088 msgstr ""
28089
28090 #. type: verbatim
28091 #: ../fish/guestfish-actions.pod:4881
28092 #, no-wrap
28093 msgid ""
28094 " vgscan\n"
28095 "\n"
28096 msgstr ""
28097
28098 #. type: =head2
28099 #: ../fish/guestfish-actions.pod:4886
28100 msgid "vguuid"
28101 msgstr ""
28102
28103 #. type: verbatim
28104 #: ../fish/guestfish-actions.pod:4888
28105 #, no-wrap
28106 msgid ""
28107 " vguuid vgname\n"
28108 "\n"
28109 msgstr ""
28110
28111 #. type: =head2
28112 #: ../fish/guestfish-actions.pod:4892
28113 msgid "wc-c"
28114 msgstr ""
28115
28116 #. type: verbatim
28117 #: ../fish/guestfish-actions.pod:4894
28118 #, no-wrap
28119 msgid ""
28120 " wc-c path\n"
28121 "\n"
28122 msgstr ""
28123
28124 #. type: =head2
28125 #: ../fish/guestfish-actions.pod:4899
28126 msgid "wc-l"
28127 msgstr ""
28128
28129 #. type: verbatim
28130 #: ../fish/guestfish-actions.pod:4901
28131 #, no-wrap
28132 msgid ""
28133 " wc-l path\n"
28134 "\n"
28135 msgstr ""
28136
28137 #. type: =head2
28138 #: ../fish/guestfish-actions.pod:4906
28139 msgid "wc-w"
28140 msgstr ""
28141
28142 #. type: verbatim
28143 #: ../fish/guestfish-actions.pod:4908
28144 #, no-wrap
28145 msgid ""
28146 " wc-w path\n"
28147 "\n"
28148 msgstr ""
28149
28150 #. type: =head2
28151 #: ../fish/guestfish-actions.pod:4913
28152 msgid "write"
28153 msgstr ""
28154
28155 #. type: verbatim
28156 #: ../fish/guestfish-actions.pod:4915
28157 #, no-wrap
28158 msgid ""
28159 " write path content\n"
28160 "\n"
28161 msgstr ""
28162
28163 #. type: =head2
28164 #: ../fish/guestfish-actions.pod:4923
28165 msgid "write-file"
28166 msgstr ""
28167
28168 #. type: verbatim
28169 #: ../fish/guestfish-actions.pod:4925
28170 #, no-wrap
28171 msgid ""
28172 " write-file path content size\n"
28173 "\n"
28174 msgstr ""
28175
28176 #. type: =head2
28177 #: ../fish/guestfish-actions.pod:4948
28178 msgid "zegrep"
28179 msgstr ""
28180
28181 #. type: verbatim
28182 #: ../fish/guestfish-actions.pod:4950
28183 #, no-wrap
28184 msgid ""
28185 " zegrep regex path\n"
28186 "\n"
28187 msgstr ""
28188
28189 #. type: =head2
28190 #: ../fish/guestfish-actions.pod:4958
28191 msgid "zegrepi"
28192 msgstr ""
28193
28194 #. type: verbatim
28195 #: ../fish/guestfish-actions.pod:4960
28196 #, no-wrap
28197 msgid ""
28198 " zegrepi regex path\n"
28199 "\n"
28200 msgstr ""
28201
28202 #. type: =head2
28203 #: ../fish/guestfish-actions.pod:4968
28204 msgid "zero"
28205 msgstr ""
28206
28207 #. type: verbatim
28208 #: ../fish/guestfish-actions.pod:4970
28209 #, no-wrap
28210 msgid ""
28211 " zero device\n"
28212 "\n"
28213 msgstr ""
28214
28215 #. type: textblock
28216 #: ../fish/guestfish-actions.pod:4978
28217 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28218 msgstr ""
28219
28220 #. type: =head2
28221 #: ../fish/guestfish-actions.pod:4981
28222 msgid "zero-device"
28223 msgstr ""
28224
28225 #. type: verbatim
28226 #: ../fish/guestfish-actions.pod:4983
28227 #, no-wrap
28228 msgid ""
28229 " zero-device device\n"
28230 "\n"
28231 msgstr ""
28232
28233 #. type: textblock
28234 #: ../fish/guestfish-actions.pod:4985
28235 msgid ""
28236 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
28237 "which just zeroes the first few blocks of a device."
28238 msgstr ""
28239
28240 #. type: =head2
28241 #: ../fish/guestfish-actions.pod:4992
28242 msgid "zerofree"
28243 msgstr ""
28244
28245 #. type: verbatim
28246 #: ../fish/guestfish-actions.pod:4994
28247 #, no-wrap
28248 msgid ""
28249 " zerofree device\n"
28250 "\n"
28251 msgstr ""
28252
28253 #. type: =head2
28254 #: ../fish/guestfish-actions.pod:5007
28255 msgid "zfgrep"
28256 msgstr ""
28257
28258 #. type: verbatim
28259 #: ../fish/guestfish-actions.pod:5009
28260 #, no-wrap
28261 msgid ""
28262 " zfgrep pattern path\n"
28263 "\n"
28264 msgstr ""
28265
28266 #. type: =head2
28267 #: ../fish/guestfish-actions.pod:5017
28268 msgid "zfgrepi"
28269 msgstr ""
28270
28271 #. type: verbatim
28272 #: ../fish/guestfish-actions.pod:5019
28273 #, no-wrap
28274 msgid ""
28275 " zfgrepi pattern path\n"
28276 "\n"
28277 msgstr ""
28278
28279 #. type: =head2
28280 #: ../fish/guestfish-actions.pod:5027
28281 msgid "zfile"
28282 msgstr ""
28283
28284 #. type: verbatim
28285 #: ../fish/guestfish-actions.pod:5029
28286 #, no-wrap
28287 msgid ""
28288 " zfile meth path\n"
28289 "\n"
28290 msgstr ""
28291
28292 #. type: textblock
28293 #: ../fish/guestfish-actions.pod:5036
28294 msgid ""
28295 "Since 1.0.63, use L</file> instead which can now process compressed files."
28296 msgstr ""
28297
28298 #. type: =head2
28299 #: ../fish/guestfish-actions.pod:5046
28300 msgid "zgrep"
28301 msgstr ""
28302
28303 #. type: verbatim
28304 #: ../fish/guestfish-actions.pod:5048
28305 #, no-wrap
28306 msgid ""
28307 " zgrep regex path\n"
28308 "\n"
28309 msgstr ""
28310
28311 #. type: =head2
28312 #: ../fish/guestfish-actions.pod:5056
28313 msgid "zgrepi"
28314 msgstr ""
28315
28316 #. type: verbatim
28317 #: ../fish/guestfish-actions.pod:5058
28318 #, no-wrap
28319 msgid ""
28320 " zgrepi regex path\n"
28321 "\n"
28322 msgstr ""
28323
28324 #. type: =head2
28325 #: ../fish/guestfish-commands.pod:1
28326 msgid "alloc"
28327 msgstr ""
28328
28329 #. type: =head2
28330 #: ../fish/guestfish-commands.pod:3
28331 msgid "allocate"
28332 msgstr ""
28333
28334 #. type: verbatim
28335 #: ../fish/guestfish-commands.pod:5
28336 #, no-wrap
28337 msgid ""
28338 " alloc filename size\n"
28339 "\n"
28340 msgstr ""
28341
28342 #. type: textblock
28343 #: ../fish/guestfish-commands.pod:7
28344 msgid ""
28345 "This creates an empty (zeroed) file of the given size, and then adds so it "
28346 "can be further examined."
28347 msgstr ""
28348
28349 #. type: textblock
28350 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
28351 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
28352 msgstr ""
28353
28354 #. type: textblock
28355 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
28356 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28357 msgstr ""
28358
28359 #. type: textblock
28360 #: ../fish/guestfish-commands.pod:14
28361 msgid ""
28362 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28363 "image, see L</PREPARED DISK IMAGES>."
28364 msgstr ""
28365
28366 #. type: =head2
28367 #: ../fish/guestfish-commands.pod:17
28368 msgid "copy-in"
28369 msgstr ""
28370
28371 #. type: verbatim
28372 #: ../fish/guestfish-commands.pod:19
28373 #, no-wrap
28374 msgid ""
28375 " copy-in local [local ...] /remotedir\n"
28376 "\n"
28377 msgstr ""
28378
28379 #. type: textblock
28380 #: ../fish/guestfish-commands.pod:21
28381 msgid ""
28382 "C<copy-in> copies local files or directories recursively into the disk "
28383 "image, placing them in the directory called C</remotedir> (which must "
28384 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28385 "other commands as necessary."
28386 msgstr ""
28387
28388 #. type: textblock
28389 #: ../fish/guestfish-commands.pod:26
28390 msgid ""
28391 "Multiple local files and directories can be specified, but the last "
28392 "parameter must always be a remote directory.  Wildcards cannot be used."
28393 msgstr ""
28394
28395 #. type: =head2
28396 #: ../fish/guestfish-commands.pod:30
28397 msgid "copy-out"
28398 msgstr ""
28399
28400 #. type: verbatim
28401 #: ../fish/guestfish-commands.pod:32
28402 #, no-wrap
28403 msgid ""
28404 " copy-out remote [remote ...] localdir\n"
28405 "\n"
28406 msgstr ""
28407
28408 #. type: textblock
28409 #: ../fish/guestfish-commands.pod:34
28410 msgid ""
28411 "C<copy-out> copies remote files or directories recursively out of the disk "
28412 "image, placing them on the host disk in a local directory called C<localdir> "
28413 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28414 "download>, L</tar-out> and other commands as necessary."
28415 msgstr ""
28416
28417 #. type: textblock
28418 #: ../fish/guestfish-commands.pod:40
28419 msgid ""
28420 "Multiple remote files and directories can be specified, but the last "
28421 "parameter must always be a local directory.  To download to the current "
28422 "directory, use C<.> as in:"
28423 msgstr ""
28424
28425 #. type: verbatim
28426 #: ../fish/guestfish-commands.pod:44
28427 #, no-wrap
28428 msgid ""
28429 " copy-out /home .\n"
28430 "\n"
28431 msgstr ""
28432
28433 #. type: textblock
28434 #: ../fish/guestfish-commands.pod:46
28435 msgid ""
28436 "Wildcards cannot be used in the ordinary command, but you can use them with "
28437 "the help of L</glob> like this:"
28438 msgstr ""
28439
28440 #. type: verbatim
28441 #: ../fish/guestfish-commands.pod:49
28442 #, no-wrap
28443 msgid ""
28444 " glob copy-out /home/* .\n"
28445 "\n"
28446 msgstr ""
28447
28448 #. type: =head2
28449 #: ../fish/guestfish-commands.pod:51
28450 msgid "display"
28451 msgstr ""
28452
28453 #. type: verbatim
28454 #: ../fish/guestfish-commands.pod:53
28455 #, no-wrap
28456 msgid ""
28457 " display filename\n"
28458 "\n"
28459 msgstr ""
28460
28461 #. type: textblock
28462 #: ../fish/guestfish-commands.pod:55
28463 msgid ""
28464 "Use C<display> (a graphical display program) to display an image file.  It "
28465 "downloads the file, and runs C<display> on it."
28466 msgstr ""
28467
28468 #. type: textblock
28469 #: ../fish/guestfish-commands.pod:58
28470 msgid ""
28471 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28472 "environment variable.  For example to use the GNOME display program:"
28473 msgstr ""
28474
28475 #. type: verbatim
28476 #: ../fish/guestfish-commands.pod:61
28477 #, no-wrap
28478 msgid ""
28479 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28480 "\n"
28481 msgstr ""
28482
28483 #. type: textblock
28484 #: ../fish/guestfish-commands.pod:63
28485 #, fuzzy
28486 #| msgid "See L<guestfish(1)>."
28487 msgid "See also L<display(1)>."
28488 msgstr "Див. L<guestfish(1)>."
28489
28490 #. type: =head2
28491 #: ../fish/guestfish-commands.pod:65
28492 msgid "echo"
28493 msgstr ""
28494
28495 #. type: verbatim
28496 #: ../fish/guestfish-commands.pod:67
28497 #, no-wrap
28498 msgid ""
28499 " echo [params ...]\n"
28500 "\n"
28501 msgstr ""
28502
28503 #. type: textblock
28504 #: ../fish/guestfish-commands.pod:69
28505 msgid "This echos the parameters to the terminal."
28506 msgstr ""
28507
28508 #. type: =head2
28509 #: ../fish/guestfish-commands.pod:71
28510 msgid "edit"
28511 msgstr ""
28512
28513 #. type: =head2
28514 #: ../fish/guestfish-commands.pod:73
28515 msgid "vi"
28516 msgstr ""
28517
28518 #. type: =head2
28519 #: ../fish/guestfish-commands.pod:75
28520 msgid "emacs"
28521 msgstr ""
28522
28523 #. type: verbatim
28524 #: ../fish/guestfish-commands.pod:77
28525 #, no-wrap
28526 msgid ""
28527 " edit filename\n"
28528 "\n"
28529 msgstr ""
28530
28531 #. type: textblock
28532 #: ../fish/guestfish-commands.pod:79
28533 msgid ""
28534 "This is used to edit a file.  It downloads the file, edits it locally using "
28535 "your editor, then uploads the result."
28536 msgstr ""
28537
28538 #. type: textblock
28539 #: ../fish/guestfish-commands.pod:82
28540 msgid ""
28541 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28542 "or C<emacs> you will get those corresponding editors."
28543 msgstr ""
28544
28545 #. type: =head2
28546 #: ../fish/guestfish-commands.pod:86
28547 msgid "glob"
28548 msgstr ""
28549
28550 #. type: verbatim
28551 #: ../fish/guestfish-commands.pod:88
28552 #, no-wrap
28553 msgid ""
28554 " glob command args...\n"
28555 "\n"
28556 msgstr ""
28557
28558 #. type: textblock
28559 #: ../fish/guestfish-commands.pod:90
28560 msgid ""
28561 "Expand wildcards in any paths in the args list, and run C<command> "
28562 "repeatedly on each matching path."
28563 msgstr ""
28564
28565 #. type: textblock
28566 #: ../fish/guestfish-commands.pod:93
28567 msgid "See L</WILDCARDS AND GLOBBING>."
28568 msgstr ""
28569
28570 #. type: =head2
28571 #: ../fish/guestfish-commands.pod:95
28572 msgid "hexedit"
28573 msgstr ""
28574
28575 #. type: verbatim
28576 #: ../fish/guestfish-commands.pod:97
28577 #, no-wrap
28578 msgid ""
28579 " hexedit <filename|device>\n"
28580 " hexedit <filename|device> <max>\n"
28581 " hexedit <filename|device> <start> <max>\n"
28582 "\n"
28583 msgstr ""
28584
28585 #. type: textblock
28586 #: ../fish/guestfish-commands.pod:101
28587 msgid ""
28588 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28589 "device."
28590 msgstr ""
28591
28592 #. type: textblock
28593 #: ../fish/guestfish-commands.pod:104
28594 msgid ""
28595 "This command works by downloading potentially the whole file or device, "
28596 "editing it locally, then uploading it.  If the file or device is large, you "
28597 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28598 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28599 "usual modifiers allowed such as C<1M> (1 megabyte)."
28600 msgstr ""
28601
28602 #. type: textblock
28603 #: ../fish/guestfish-commands.pod:111
28604 msgid "For example to edit the first few sectors of a disk you might do:"
28605 msgstr ""
28606
28607 #. type: verbatim
28608 #: ../fish/guestfish-commands.pod:114
28609 #, no-wrap
28610 msgid ""
28611 " hexedit /dev/sda 1M\n"
28612 "\n"
28613 msgstr ""
28614
28615 #. type: textblock
28616 #: ../fish/guestfish-commands.pod:116
28617 msgid ""
28618 "which would allow you to edit anywhere within the first megabyte of the disk."
28619 msgstr ""
28620
28621 #. type: textblock
28622 #: ../fish/guestfish-commands.pod:119
28623 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28624 msgstr ""
28625
28626 #. type: verbatim
28627 #: ../fish/guestfish-commands.pod:121
28628 #, no-wrap
28629 msgid ""
28630 " hexedit /dev/sda1 0x400 0x400\n"
28631 "\n"
28632 msgstr ""
28633
28634 #. type: textblock
28635 #: ../fish/guestfish-commands.pod:123
28636 msgid "(assuming the superblock is in the standard location)."
28637 msgstr ""
28638
28639 #. type: textblock
28640 #: ../fish/guestfish-commands.pod:125
28641 msgid ""
28642 "This command requires the external L<hexedit(1)> program.  You can specify "
28643 "another program to use by setting the C<HEXEDITOR> environment variable."
28644 msgstr ""
28645
28646 #. type: textblock
28647 #: ../fish/guestfish-commands.pod:129
28648 msgid "See also L</hexdump>."
28649 msgstr ""
28650
28651 #. type: =head2
28652 #: ../fish/guestfish-commands.pod:131
28653 msgid "lcd"
28654 msgstr ""
28655
28656 #. type: verbatim
28657 #: ../fish/guestfish-commands.pod:133
28658 #, no-wrap
28659 msgid ""
28660 " lcd directory\n"
28661 "\n"
28662 msgstr ""
28663
28664 #. type: textblock
28665 #: ../fish/guestfish-commands.pod:135
28666 msgid ""
28667 "Change the local directory, ie. the current directory of guestfish itself."
28668 msgstr ""
28669
28670 #. type: textblock
28671 #: ../fish/guestfish-commands.pod:138
28672 msgid "Note that C<!cd> won't do what you might expect."
28673 msgstr ""
28674
28675 #. type: =head2
28676 #: ../fish/guestfish-commands.pod:140
28677 msgid "man"
28678 msgstr ""
28679
28680 #. type: =head2
28681 #: ../fish/guestfish-commands.pod:142
28682 msgid "manual"
28683 msgstr ""
28684
28685 #. type: verbatim
28686 #: ../fish/guestfish-commands.pod:144
28687 #, no-wrap
28688 msgid ""
28689 "  man\n"
28690 "\n"
28691 msgstr ""
28692
28693 #. type: textblock
28694 #: ../fish/guestfish-commands.pod:146
28695 msgid "Opens the manual page for guestfish."
28696 msgstr ""
28697
28698 #. type: =head2
28699 #: ../fish/guestfish-commands.pod:148
28700 msgid "more"
28701 msgstr ""
28702
28703 #. type: =head2
28704 #: ../fish/guestfish-commands.pod:150
28705 msgid "less"
28706 msgstr ""
28707
28708 #. type: verbatim
28709 #: ../fish/guestfish-commands.pod:152
28710 #, no-wrap
28711 msgid ""
28712 " more filename\n"
28713 "\n"
28714 msgstr ""
28715
28716 #. type: verbatim
28717 #: ../fish/guestfish-commands.pod:154
28718 #, no-wrap
28719 msgid ""
28720 " less filename\n"
28721 "\n"
28722 msgstr ""
28723
28724 #. type: textblock
28725 #: ../fish/guestfish-commands.pod:156
28726 msgid "This is used to view a file."
28727 msgstr ""
28728
28729 #. type: textblock
28730 #: ../fish/guestfish-commands.pod:158
28731 msgid ""
28732 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28733 "C<less> you will get the C<less> command specifically."
28734 msgstr ""
28735
28736 #. type: =head2
28737 #: ../fish/guestfish-commands.pod:161
28738 msgid "reopen"
28739 msgstr ""
28740
28741 #. type: verbatim
28742 #: ../fish/guestfish-commands.pod:163
28743 #, no-wrap
28744 msgid ""
28745 "  reopen\n"
28746 "\n"
28747 msgstr ""
28748
28749 #. type: textblock
28750 #: ../fish/guestfish-commands.pod:165
28751 msgid ""
28752 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28753 "normally, because the handle is closed properly when guestfish exits.  "
28754 "However this is occasionally useful for testing."
28755 msgstr ""
28756
28757 #. type: =head2
28758 #: ../fish/guestfish-commands.pod:169
28759 msgid "sparse"
28760 msgstr ""
28761
28762 #. type: verbatim
28763 #: ../fish/guestfish-commands.pod:171
28764 #, no-wrap
28765 msgid ""
28766 " sparse filename size\n"
28767 "\n"
28768 msgstr ""
28769
28770 #. type: textblock
28771 #: ../fish/guestfish-commands.pod:173
28772 msgid ""
28773 "This creates an empty sparse file of the given size, and then adds so it can "
28774 "be further examined."
28775 msgstr ""
28776
28777 #. type: textblock
28778 #: ../fish/guestfish-commands.pod:176
28779 msgid ""
28780 "In all respects it works the same as the L</alloc> command, except that the "
28781 "image file is allocated sparsely, which means that disk blocks are not "
28782 "assigned to the file until they are needed.  Sparse disk files only use "
28783 "space when written to, but they are slower and there is a danger you could "
28784 "run out of real disk space during a write operation."
28785 msgstr ""
28786
28787 #. type: =head2
28788 #: ../fish/guestfish-commands.pod:186
28789 msgid "supported"
28790 msgstr ""
28791
28792 #. type: verbatim
28793 #: ../fish/guestfish-commands.pod:188
28794 #, no-wrap
28795 msgid ""
28796 " supported\n"
28797 "\n"
28798 msgstr ""
28799
28800 #. type: textblock
28801 #: ../fish/guestfish-commands.pod:190
28802 msgid ""
28803 "This command returns a list of the optional groups known to the daemon, and "
28804 "indicates which ones are supported by this build of the libguestfs appliance."
28805 msgstr ""
28806
28807 #. type: textblock
28808 #: ../fish/guestfish-commands.pod:194
28809 msgid "See also L<guestfs(3)/AVAILABILITY>."
28810 msgstr ""
28811
28812 #. type: =head2
28813 #: ../fish/guestfish-commands.pod:196
28814 msgid "time"
28815 msgstr ""
28816
28817 #. type: verbatim
28818 #: ../fish/guestfish-commands.pod:198
28819 #, no-wrap
28820 msgid ""
28821 " time command args...\n"
28822 "\n"
28823 msgstr ""
28824
28825 #. type: textblock
28826 #: ../fish/guestfish-commands.pod:200
28827 msgid ""
28828 "Run the command as usual, but print the elapsed time afterwards.  This can "
28829 "be useful for benchmarking operations."
28830 msgstr ""
28831
28832 #. type: textblock
28833 #: ../test-tool/libguestfs-test-tool.pod:5
28834 msgid "libguestfs-test-tool - End user tests for libguestfs"
28835 msgstr ""
28836
28837 #. type: verbatim
28838 #: ../test-tool/libguestfs-test-tool.pod:9
28839 #, no-wrap
28840 msgid ""
28841 " libguestfs-test-tool [--options]\n"
28842 "\n"
28843 msgstr ""
28844
28845 #. type: textblock
28846 #: ../test-tool/libguestfs-test-tool.pod:13
28847 msgid ""
28848 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28849 "and developers, to allow them to check basic libguestfs functionality is "
28850 "working.  This is needed because libguestfs occasionally breaks for reasons "
28851 "beyond our control: usually because of changes in the underlying qemu or "
28852 "kernel packages, or the host environment."
28853 msgstr ""
28854
28855 #. type: textblock
28856 #: ../test-tool/libguestfs-test-tool.pod:20
28857 msgid "If you suspect a problem in libguestfs, then just run:"
28858 msgstr ""
28859
28860 #. type: verbatim
28861 #: ../test-tool/libguestfs-test-tool.pod:22
28862 #, no-wrap
28863 msgid ""
28864 " libguestfs-test-tool\n"
28865 "\n"
28866 msgstr ""
28867
28868 #. type: textblock
28869 #: ../test-tool/libguestfs-test-tool.pod:24
28870 msgid "It will print lots of diagnostic messages."
28871 msgstr ""
28872
28873 #. type: textblock
28874 #: ../test-tool/libguestfs-test-tool.pod:26
28875 msgid "If it runs to completion successfully, you will see this near the end:"
28876 msgstr ""
28877
28878 #. type: verbatim
28879 #: ../test-tool/libguestfs-test-tool.pod:28
28880 #, no-wrap
28881 msgid ""
28882 " ===== TEST FINISHED OK =====\n"
28883 "\n"
28884 msgstr ""
28885
28886 #. type: textblock
28887 #: ../test-tool/libguestfs-test-tool.pod:30
28888 msgid "and the test tool will exit with code 0."
28889 msgstr ""
28890
28891 #. type: textblock
28892 #: ../test-tool/libguestfs-test-tool.pod:32
28893 msgid ""
28894 "If it fails (and/or exits with non-zero error code), please paste the "
28895 "B<complete, unedited> output of the test tool into a bug report.  More "
28896 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28897 "> website."
28898 msgstr ""
28899
28900 #. type: =item
28901 #: ../test-tool/libguestfs-test-tool.pod:41
28902 msgid "I<--help>"
28903 msgstr ""
28904
28905 #. type: textblock
28906 #: ../test-tool/libguestfs-test-tool.pod:43
28907 msgid "Display short usage information and exit."
28908 msgstr ""
28909
28910 #. type: =item
28911 #: ../test-tool/libguestfs-test-tool.pod:45
28912 msgid "I<--qemu qemu_binary>"
28913 msgstr ""
28914
28915 #. type: textblock
28916 #: ../test-tool/libguestfs-test-tool.pod:47
28917 msgid ""
28918 "If you have downloaded another qemu binary, point this option at the full "
28919 "path of the binary to try it."
28920 msgstr ""
28921
28922 #. type: =item
28923 #: ../test-tool/libguestfs-test-tool.pod:50
28924 msgid "I<--qemudir qemu_source_dir>"
28925 msgstr ""
28926
28927 #. type: textblock
28928 #: ../test-tool/libguestfs-test-tool.pod:52
28929 msgid ""
28930 "If you have compiled qemu from source, point this option at the source "
28931 "directory to try it."
28932 msgstr ""
28933
28934 #. type: =item
28935 #: ../test-tool/libguestfs-test-tool.pod:55
28936 msgid "I<--timeout N>"
28937 msgstr ""
28938
28939 #. type: textblock
28940 #: ../test-tool/libguestfs-test-tool.pod:57
28941 msgid ""
28942 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28943 "does not usually need to be adjusted unless your machine is very slow."
28944 msgstr ""
28945
28946 #. type: =head1
28947 #: ../test-tool/libguestfs-test-tool.pod:63
28948 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28949 msgstr ""
28950
28951 #. type: textblock
28952 #: ../test-tool/libguestfs-test-tool.pod:65
28953 msgid ""
28954 "If you have compiled another version of qemu from source and would like to "
28955 "try that, then you can use the I<--qemudir> option to point to the qemu "
28956 "source directory."
28957 msgstr ""
28958
28959 #. type: textblock
28960 #: ../test-tool/libguestfs-test-tool.pod:69
28961 msgid ""
28962 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28963 "option to point to the binary."
28964 msgstr ""
28965
28966 #. type: textblock
28967 #: ../test-tool/libguestfs-test-tool.pod:72
28968 msgid ""
28969 "When using an alternate qemu with libguestfs, usually you would need to "
28970 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28971 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28972 "use either of the I<--qemudir> or I<--qemu> options."
28973 msgstr ""
28974
28975 #. type: textblock
28976 #: ../test-tool/libguestfs-test-tool.pod:79
28977 msgid ""
28978 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28979 "I<1> if there was an error."
28980 msgstr ""
28981
28982 #. type: textblock
28983 #: ../test-tool/libguestfs-test-tool.pod:84
28984 msgid ""
28985 "For the full list of environment variables which may affect libguestfs, "
28986 "please see the L<guestfs(3)> manual page."
28987 msgstr ""
28988
28989 #. type: textblock
28990 #: ../test-tool/libguestfs-test-tool.pod:89
28991 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28992 msgstr ""
28993
28994 #. type: textblock
28995 #: ../fuse/guestmount.pod:5
28996 msgid ""
28997 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28998 msgstr ""
28999
29000 #. type: verbatim
29001 #: ../fuse/guestmount.pod:9
29002 #, no-wrap
29003 msgid ""
29004 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29005 "\n"
29006 msgstr ""
29007
29008 #. type: verbatim
29009 #: ../fuse/guestmount.pod:11
29010 #, no-wrap
29011 msgid ""
29012 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29013 "\n"
29014 msgstr ""
29015
29016 #. type: verbatim
29017 #: ../fuse/guestmount.pod:13
29018 #, no-wrap
29019 msgid ""
29020 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29021 "\n"
29022 msgstr ""
29023
29024 #. type: textblock
29025 #: ../fuse/guestmount.pod:17
29026 msgid ""
29027 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29028 "machines.  If you do this, you risk disk corruption in the VM."
29029 msgstr ""
29030
29031 #. type: textblock
29032 #: ../fuse/guestmount.pod:22
29033 msgid ""
29034 "The guestmount program can be used to mount virtual machine filesystems and "
29035 "other disk images on the host.  It uses libguestfs for access to the guest "
29036 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29037 "a mountable device."
29038 msgstr ""
29039
29040 #. type: textblock
29041 #: ../fuse/guestmount.pod:27
29042 msgid ""
29043 "Along with other options, you have to give at least one device (I<-a> "
29044 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
29045 "option) or use the I<-i> inspection option.  How this works is better "
29046 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29047 "below."
29048 msgstr ""
29049
29050 #. type: textblock
29051 #: ../fuse/guestmount.pod:33
29052 msgid ""
29053 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29054 "by you, and the filesystem will not be visible to any other users unless you "
29055 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
29056 "the filesystem, use the C<fusermount -u> command."
29057 msgstr ""
29058
29059 #. type: textblock
29060 #: ../fuse/guestmount.pod:41
29061 msgid ""
29062 "For a typical Windows guest which has its main filesystem on the first "
29063 "partition:"
29064 msgstr ""
29065
29066 #. type: verbatim
29067 #: ../fuse/guestmount.pod:44
29068 #, no-wrap
29069 msgid ""
29070 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29071 "\n"
29072 msgstr ""
29073
29074 #. type: textblock
29075 #: ../fuse/guestmount.pod:46
29076 msgid ""
29077 "For a typical Linux guest which has a /boot filesystem on the first "
29078 "partition, and the root filesystem on a logical volume:"
29079 msgstr ""
29080
29081 #. type: verbatim
29082 #: ../fuse/guestmount.pod:49
29083 #, no-wrap
29084 msgid ""
29085 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29086 "\n"
29087 msgstr ""
29088
29089 #. type: textblock
29090 #: ../fuse/guestmount.pod:51
29091 msgid "To get libguestfs to detect guest mountpoints for you:"
29092 msgstr ""
29093
29094 #. type: verbatim
29095 #: ../fuse/guestmount.pod:53
29096 #, no-wrap
29097 msgid ""
29098 " guestmount -a guest.img -i --ro /mnt\n"
29099 "\n"
29100 msgstr ""
29101
29102 #. type: textblock
29103 #: ../fuse/guestmount.pod:55
29104 msgid "For a libvirt guest called \"Guest\" you could do:"
29105 msgstr ""
29106
29107 #. type: verbatim
29108 #: ../fuse/guestmount.pod:57
29109 #, no-wrap
29110 msgid ""
29111 " guestmount -d Guest -i --ro /mnt\n"
29112 "\n"
29113 msgstr ""
29114
29115 #. type: textblock
29116 #: ../fuse/guestmount.pod:59
29117 msgid ""
29118 "If you don't know what filesystems are contained in a guest or disk image, "
29119 "use L<virt-filesystems(1)> first:"
29120 msgstr ""
29121
29122 #. type: verbatim
29123 #: ../fuse/guestmount.pod:62
29124 #, no-wrap
29125 msgid ""
29126 " virt-filesystems MyGuest\n"
29127 "\n"
29128 msgstr ""
29129
29130 #. type: textblock
29131 #: ../fuse/guestmount.pod:64
29132 msgid ""
29133 "If you want to trace the libguestfs calls but without excessive debugging "
29134 "information, we recommend:"
29135 msgstr ""
29136
29137 #. type: verbatim
29138 #: ../fuse/guestmount.pod:67
29139 #, no-wrap
29140 msgid ""
29141 " guestmount [...] --trace /mnt\n"
29142 "\n"
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../fuse/guestmount.pod:69
29147 msgid "If you want to debug the program, we recommend:"
29148 msgstr ""
29149
29150 #. type: verbatim
29151 #: ../fuse/guestmount.pod:71
29152 #, no-wrap
29153 msgid ""
29154 " guestmount [...] --trace --verbose /mnt\n"
29155 "\n"
29156 msgstr ""
29157
29158 #. type: =head1
29159 #: ../fuse/guestmount.pod:73
29160 msgid "NOTES"
29161 msgstr ""
29162
29163 #. type: =head2
29164 #: ../fuse/guestmount.pod:75
29165 msgid "Other users cannot see the filesystem by default"
29166 msgstr ""
29167
29168 #. type: textblock
29169 #: ../fuse/guestmount.pod:77
29170 msgid ""
29171 "If you mount a filesystem as one user (eg. root), then other users will not "
29172 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29173 "option when mounting:"
29174 msgstr ""
29175
29176 #. type: verbatim
29177 #: ../fuse/guestmount.pod:81
29178 #, no-wrap
29179 msgid ""
29180 " sudo guestmount [...] -o allow_other /mnt\n"
29181 "\n"
29182 msgstr ""
29183
29184 #. type: =item
29185 #: ../fuse/guestmount.pod:87
29186 msgid "B<-a image> | B<--add image>"
29187 msgstr ""
29188
29189 #. type: textblock
29190 #: ../fuse/guestmount.pod:89
29191 msgid "Add a block device or virtual machine image."
29192 msgstr ""
29193
29194 #. type: =item
29195 #: ../fuse/guestmount.pod:94
29196 msgid "B<-c URI> | B<--connect URI>"
29197 msgstr ""
29198
29199 #. type: =item
29200 #: ../fuse/guestmount.pod:100
29201 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29202 msgstr ""
29203
29204 #. type: =item
29205 #: ../fuse/guestmount.pod:108
29206 msgid "B<--dir-cache-timeout N>"
29207 msgstr ""
29208
29209 #. type: textblock
29210 #: ../fuse/guestmount.pod:110
29211 msgid ""
29212 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
29213 "seconds.  The readdir cache [actually, there are several semi-independent "
29214 "caches] is populated after a readdir(2) call with the stat and extended "
29215 "attributes of the files in the directory, in anticipation that they will be "
29216 "requested soon after."
29217 msgstr ""
29218
29219 #. type: textblock
29220 #: ../fuse/guestmount.pod:116
29221 msgid ""
29222 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29223 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29224 "requests, only cache existing ones."
29225 msgstr ""
29226
29227 #. type: =item
29228 #: ../fuse/guestmount.pod:127
29229 msgid "B<--format=raw|qcow2|..> | B<--format>"
29230 msgstr ""
29231
29232 #. type: textblock
29233 #: ../fuse/guestmount.pod:134
29234 msgid ""
29235 "If you have untrusted raw-format guest disk images, you should use this "
29236 "option to specify the disk format.  This avoids a possible security problem "
29237 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
29238 "guestfs_add_drive_opts>."
29239 msgstr ""
29240
29241 #. type: =item
29242 #: ../fuse/guestmount.pod:139
29243 msgid "B<--fuse-help>"
29244 msgstr ""
29245
29246 #. type: textblock
29247 #: ../fuse/guestmount.pod:141
29248 msgid "Display help on special FUSE options (see I<-o> below)."
29249 msgstr ""
29250
29251 #. type: textblock
29252 #: ../fuse/guestmount.pod:145
29253 msgid "Display brief help and exit."
29254 msgstr ""
29255
29256 #. type: =item
29257 #: ../fuse/guestmount.pod:147
29258 msgid "B<-i> | B<--inspector>"
29259 msgstr ""
29260
29261 #. type: textblock
29262 #: ../fuse/guestmount.pod:167
29263 msgid ""
29264 "Mount the named partition or logical volume on the given mountpoint B<in the "
29265 "guest> (this has nothing to do with mountpoints in the host)."
29266 msgstr ""
29267
29268 #. type: textblock
29269 #: ../fuse/guestmount.pod:170
29270 msgid ""
29271 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
29272 "something on C</>."
29273 msgstr ""
29274
29275 #. type: =item
29276 #: ../fuse/guestmount.pod:183
29277 msgid "B<-n> | B<--no-sync>"
29278 msgstr ""
29279
29280 #. type: textblock
29281 #: ../fuse/guestmount.pod:185
29282 msgid ""
29283 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
29284 "unmounted.  If you specify this option, then we don't attempt to sync the "
29285 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
29286 msgstr ""
29287
29288 #. type: =item
29289 #: ../fuse/guestmount.pod:190
29290 msgid "B<-o option> | B<--option option>"
29291 msgstr ""
29292
29293 #. type: textblock
29294 #: ../fuse/guestmount.pod:192
29295 msgid "Pass extra options to FUSE."
29296 msgstr ""
29297
29298 #. type: textblock
29299 #: ../fuse/guestmount.pod:194
29300 msgid ""
29301 "To get a list of all the extra options supported by FUSE, use the command "
29302 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
29303 "of them are a good idea."
29304 msgstr ""
29305
29306 #. type: verbatim
29307 #: ../fuse/guestmount.pod:198
29308 #, no-wrap
29309 msgid ""
29310 " guestmount --fuse-help\n"
29311 "\n"
29312 msgstr ""
29313
29314 #. type: textblock
29315 #: ../fuse/guestmount.pod:200
29316 msgid "Some potentially useful FUSE options:"
29317 msgstr ""
29318
29319 #. type: =item
29320 #: ../fuse/guestmount.pod:204
29321 msgid "B<-o allow_other>"
29322 msgstr ""
29323
29324 #. type: textblock
29325 #: ../fuse/guestmount.pod:206
29326 msgid "Allow other users to see the filesystem."
29327 msgstr ""
29328
29329 #. type: =item
29330 #: ../fuse/guestmount.pod:208
29331 msgid "B<-o attr_timeout=N>"
29332 msgstr ""
29333
29334 #. type: textblock
29335 #: ../fuse/guestmount.pod:210
29336 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
29337 msgstr ""
29338
29339 #. type: =item
29340 #: ../fuse/guestmount.pod:212
29341 msgid "B<-o kernel_cache>"
29342 msgstr ""
29343
29344 #. type: textblock
29345 #: ../fuse/guestmount.pod:214
29346 msgid ""
29347 "Allow the kernel to cache files (reduces the number of reads that have to go "
29348 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
29349 "afford the extra memory usage."
29350 msgstr ""
29351
29352 #. type: =item
29353 #: ../fuse/guestmount.pod:218
29354 msgid "B<-o uid=N> B<-o gid=N>"
29355 msgstr ""
29356
29357 #. type: textblock
29358 #: ../fuse/guestmount.pod:220
29359 msgid ""
29360 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29361 "the chosen values."
29362 msgstr ""
29363
29364 #. type: =item
29365 #: ../fuse/guestmount.pod:225
29366 msgid "B<-r> | B<--ro>"
29367 msgstr ""
29368
29369 #. type: textblock
29370 #: ../fuse/guestmount.pod:227
29371 msgid ""
29372 "Add devices and mount everything read-only.  Also disallow writes and make "
29373 "the disk appear read-only to FUSE."
29374 msgstr ""
29375
29376 #. type: textblock
29377 #: ../fuse/guestmount.pod:230
29378 msgid ""
29379 "This is highly recommended if you are not going to edit the guest disk.  If "
29380 "the guest is running and this option is I<not> supplied, then there is a "
29381 "strong risk of disk corruption in the guest.  We try to prevent this from "
29382 "happening, but it is not always possible."
29383 msgstr ""
29384
29385 #. type: textblock
29386 #: ../fuse/guestmount.pod:235
29387 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29388 msgstr ""
29389
29390 #. type: textblock
29391 #: ../fuse/guestmount.pod:239
29392 msgid "Enable SELinux support for the guest."
29393 msgstr ""
29394
29395 #. type: =item
29396 #: ../fuse/guestmount.pod:241
29397 msgid "B<-v> | B<--verbose>"
29398 msgstr ""
29399
29400 #. type: textblock
29401 #: ../fuse/guestmount.pod:243
29402 msgid "Enable verbose messages from underlying libguestfs."
29403 msgstr ""
29404
29405 #. type: =item
29406 #: ../fuse/guestmount.pod:245
29407 msgid "B<-V> | B<--version>"
29408 msgstr ""
29409
29410 #. type: textblock
29411 #: ../fuse/guestmount.pod:247
29412 msgid "Display the program version and exit."
29413 msgstr ""
29414
29415 #. type: =item
29416 #: ../fuse/guestmount.pod:249
29417 msgid "B<-w> | B<--rw>"
29418 msgstr ""
29419
29420 #. type: textblock
29421 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29422 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29423 msgstr ""
29424
29425 #. type: =item
29426 #: ../fuse/guestmount.pod:256
29427 msgid "B<-x> | B<--trace>"
29428 msgstr ""
29429
29430 #. type: textblock
29431 #: ../fuse/guestmount.pod:258
29432 msgid "Trace libguestfs calls and entry into each FUSE function."
29433 msgstr ""
29434
29435 #. type: textblock
29436 #: ../fuse/guestmount.pod:260
29437 msgid "This also stops the daemon from forking into the background."
29438 msgstr ""
29439
29440 #. type: textblock
29441 #: ../fuse/guestmount.pod:281
29442 msgid ""
29443 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29444 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29445 "net/>."
29446 msgstr ""
29447
29448 #. type: textblock
29449 #: ../fuse/guestmount.pod:296
29450 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29451 msgstr ""
29452
29453 #. type: textblock
29454 #: ../tools/virt-win-reg.pl:37
29455 msgid ""
29456 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29457 msgstr ""
29458
29459 #. type: verbatim
29460 #: ../tools/virt-win-reg.pl:41
29461 #, no-wrap
29462 msgid ""
29463 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29464 "\n"
29465 msgstr ""
29466
29467 #. type: verbatim
29468 #: ../tools/virt-win-reg.pl:43
29469 #, no-wrap
29470 msgid ""
29471 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29472 "\n"
29473 msgstr ""
29474
29475 #. type: verbatim
29476 #: ../tools/virt-win-reg.pl:45
29477 #, no-wrap
29478 msgid ""
29479 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29480 "\n"
29481 msgstr ""
29482
29483 #. type: verbatim
29484 #: ../tools/virt-win-reg.pl:47
29485 #, no-wrap
29486 msgid ""
29487 " virt-win-reg --merge domname [input.reg ...]\n"
29488 "\n"
29489 msgstr ""
29490
29491 #. type: verbatim
29492 #: ../tools/virt-win-reg.pl:49
29493 #, no-wrap
29494 msgid ""
29495 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29496 "\n"
29497 msgstr ""
29498
29499 #. type: textblock
29500 #: ../tools/virt-win-reg.pl:53
29501 msgid ""
29502 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29503 "virtual machines.  If you do this, you I<will> get irreversible disk "
29504 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29505 "but doesn't catch all cases."
29506 msgstr ""
29507
29508 #. type: textblock
29509 #: ../tools/virt-win-reg.pl:58
29510 msgid ""
29511 "Modifying the Windows Registry is an inherently risky operation.  The format "
29512 "is deliberately obscure and undocumented, and Registry changes can leave the "
29513 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29514 "you have a reliable backup first."
29515 msgstr ""
29516
29517 #. type: textblock
29518 #: ../tools/virt-win-reg.pl:65
29519 msgid ""
29520 "This program can export and merge Windows Registry entries from a Windows "
29521 "guest."
29522 msgstr ""
29523
29524 #. type: textblock
29525 #: ../tools/virt-win-reg.pl:68
29526 msgid ""
29527 "The first parameter is the libvirt guest name or the raw disk image of a "
29528 "Windows guest."
29529 msgstr ""
29530
29531 #. type: textblock
29532 #: ../tools/virt-win-reg.pl:71
29533 msgid ""
29534 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29535 "exported (recursively).  For example:"
29536 msgstr ""
29537
29538 #. type: verbatim
29539 #: ../tools/virt-win-reg.pl:74
29540 #, no-wrap
29541 msgid ""
29542 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29543 "\n"
29544 msgstr ""
29545
29546 #. type: textblock
29547 #: ../tools/virt-win-reg.pl:76
29548 msgid ""
29549 "You can also display single values from within registry keys, for example:"
29550 msgstr ""
29551
29552 #. type: verbatim
29553 #: ../tools/virt-win-reg.pl:79
29554 #, no-wrap
29555 msgid ""
29556 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29557 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29558 " Windows 7 Enterprise\n"
29559 "\n"
29560 msgstr ""
29561
29562 #. type: textblock
29563 #: ../tools/virt-win-reg.pl:83
29564 msgid ""
29565 "With I<--merge>, you can merge a textual regedit file into the Windows "
29566 "Registry:"
29567 msgstr ""
29568
29569 #. type: verbatim
29570 #: ../tools/virt-win-reg.pl:86
29571 #, no-wrap
29572 msgid ""
29573 " $ virt-win-reg --merge Windows7 changes.reg\n"
29574 "\n"
29575 msgstr ""
29576
29577 #. type: =head1
29578 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29579 msgid "NOTE"
29580 msgstr ""
29581
29582 #. type: textblock
29583 #: ../tools/virt-win-reg.pl:90
29584 msgid ""
29585 "This program is only meant for simple access to the registry.  If you want "
29586 "to do complicated things with the registry, we suggest you download the "
29587 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29588 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29589 "L<hivexregedit(1)>."
29590 msgstr ""
29591
29592 #. type: textblock
29593 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
29594 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
29595 #: ../tools/virt-list-partitions.pl:64
29596 msgid "Display brief help."
29597 msgstr ""
29598
29599 #. type: textblock
29600 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
29601 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
29602 #: ../tools/virt-list-partitions.pl:72
29603 msgid "Display version number and exit."
29604 msgstr ""
29605
29606 #. type: =item
29607 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29608 msgid "B<--debug>"
29609 msgstr ""
29610
29611 #. type: textblock
29612 #: ../tools/virt-win-reg.pl:122
29613 msgid "Enable debugging messages."
29614 msgstr ""
29615
29616 #. type: =item
29617 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
29618 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29619 msgid "B<--connect URI> | B<-c URI>"
29620 msgstr ""
29621
29622 #. type: textblock
29623 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
29624 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29625 msgid ""
29626 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29627 "to the default libvirt hypervisor."
29628 msgstr ""
29629
29630 #. type: textblock
29631 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
29632 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29633 msgid ""
29634 "If you specify guest block devices directly, then libvirt is not used at all."
29635 msgstr ""
29636
29637 #. type: =item
29638 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
29639 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29640 msgid "B<--format> raw"
29641 msgstr ""
29642
29643 #. type: textblock
29644 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
29645 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29646 msgid ""
29647 "Specify the format of disk images given on the command line.  If this is "
29648 "omitted then the format is autodetected from the content of the disk image."
29649 msgstr ""
29650
29651 #. type: textblock
29652 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
29653 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29654 msgid ""
29655 "If disk images are requested from libvirt, then this program asks libvirt "
29656 "for this information.  In this case, the value of the format parameter is "
29657 "ignored."
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
29662 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29663 msgid ""
29664 "If working with untrusted raw-format guest disk images, you should ensure "
29665 "the format is always specified."
29666 msgstr ""
29667
29668 #. type: =item
29669 #: ../tools/virt-win-reg.pl:157
29670 msgid "B<--merge>"
29671 msgstr ""
29672
29673 #. type: textblock
29674 #: ../tools/virt-win-reg.pl:159
29675 msgid ""
29676 "In merge mode, this merges a textual regedit file into the Windows Registry "
29677 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29678 "displays or exports Registry entries instead."
29679 msgstr ""
29680
29681 #. type: textblock
29682 #: ../tools/virt-win-reg.pl:163
29683 msgid ""
29684 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29685 "result in disk corruption.  However exporting (without this flag)  is always "
29686 "safe."
29687 msgstr ""
29688
29689 #. type: =item
29690 #: ../tools/virt-win-reg.pl:171
29691 msgid "B<--encoding> UTF-16LE|ASCII"
29692 msgstr ""
29693
29694 #. type: textblock
29695 #: ../tools/virt-win-reg.pl:173
29696 msgid ""
29697 "When merging (only), you may need to specify the encoding for strings to be "
29698 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29699 "(3)/ENCODING STRINGS>."
29700 msgstr ""
29701
29702 #. type: textblock
29703 #: ../tools/virt-win-reg.pl:177
29704 msgid ""
29705 "The default is to use UTF-16LE, which should work with recent versions of "
29706 "Windows."
29707 msgstr ""
29708
29709 #. type: =item
29710 #: ../tools/virt-win-reg.pl:184
29711 msgid "B<--unsafe-printable-strings>"
29712 msgstr ""
29713
29714 #. type: textblock
29715 #: ../tools/virt-win-reg.pl:186
29716 msgid ""
29717 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29718 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29719 "present."
29720 msgstr ""
29721
29722 #. type: textblock
29723 #: ../tools/virt-win-reg.pl:190
29724 msgid ""
29725 "This is unsafe and does not preserve the fidelity of strings in the original "
29726 "Registry for various reasons:"
29727 msgstr ""
29728
29729 #. type: textblock
29730 #: ../tools/virt-win-reg.pl:197
29731 msgid ""
29732 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29733 "other encodings will be corrupted by this transformation."
29734 msgstr ""
29735
29736 #. type: textblock
29737 #: ../tools/virt-win-reg.pl:202
29738 msgid ""
29739 "Assumes that everything which has type 1 or 2 is really a string and that "
29740 "everything else is not a string, but the type field in real Registries is "
29741 "not reliable."
29742 msgstr ""
29743
29744 #. type: textblock
29745 #: ../tools/virt-win-reg.pl:208
29746 msgid ""
29747 "Loses information about whether a zero codepoint followed the string in the "
29748 "Registry or not."
29749 msgstr ""
29750
29751 #. type: textblock
29752 #: ../tools/virt-win-reg.pl:213
29753 msgid ""
29754 "This all happens because the Registry itself contains no information about "
29755 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29756 msgstr ""
29757
29758 #. type: textblock
29759 #: ../tools/virt-win-reg.pl:217
29760 msgid ""
29761 "You should only use this option for quick hacking and debugging of the "
29762 "Registry contents, and I<never> use it if the output is going to be passed "
29763 "into another program or stored in another Registry."
29764 msgstr ""
29765
29766 #. type: =head1
29767 #: ../tools/virt-win-reg.pl:554
29768 msgid "SUPPORTED SYSTEMS"
29769 msgstr ""
29770
29771 #. type: textblock
29772 #: ../tools/virt-win-reg.pl:556
29773 msgid ""
29774 "The program currently supports Windows NT-derived guests starting with "
29775 "Windows XP through to at least Windows 7."
29776 msgstr ""
29777
29778 #. type: textblock
29779 #: ../tools/virt-win-reg.pl:559
29780 msgid "The following Registry keys are supported:"
29781 msgstr ""
29782
29783 #. type: =item
29784 #: ../tools/virt-win-reg.pl:563
29785 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29786 msgstr ""
29787
29788 #. type: =item
29789 #: ../tools/virt-win-reg.pl:565
29790 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29791 msgstr ""
29792
29793 #. type: =item
29794 #: ../tools/virt-win-reg.pl:567
29795 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29796 msgstr ""
29797
29798 #. type: =item
29799 #: ../tools/virt-win-reg.pl:569
29800 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29801 msgstr ""
29802
29803 #. type: =item
29804 #: ../tools/virt-win-reg.pl:571
29805 msgid "C<HKEY_USERS\\.DEFAULT>"
29806 msgstr ""
29807
29808 #. type: =item
29809 #: ../tools/virt-win-reg.pl:573
29810 msgid "C<HKEY_USERS\\I<SID>>"
29811 msgstr ""
29812
29813 #. type: textblock
29814 #: ../tools/virt-win-reg.pl:575
29815 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29816 msgstr ""
29817
29818 #. type: =item
29819 #: ../tools/virt-win-reg.pl:577
29820 msgid "C<HKEY_USERS\\I<username>>"
29821 msgstr ""
29822
29823 #. type: textblock
29824 #: ../tools/virt-win-reg.pl:579
29825 msgid ""
29826 "where I<username> is a local user name (this is a libguestfs extension)."
29827 msgstr ""
29828
29829 #. type: textblock
29830 #: ../tools/virt-win-reg.pl:583
29831 msgid ""
29832 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29833 "C<HKEY_USERS>."
29834 msgstr ""
29835
29836 #. type: textblock
29837 #: ../tools/virt-win-reg.pl:586
29838 msgid ""
29839 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29840 "supported (there is no \"current user\")."
29841 msgstr ""
29842
29843 #. type: =head1
29844 #: ../tools/virt-win-reg.pl:589
29845 msgid "ENCODING"
29846 msgstr ""
29847
29848 #. type: textblock
29849 #: ../tools/virt-win-reg.pl:591
29850 msgid ""
29851 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29852 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29853 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29854 "Windows-style line endings, you may need to reencode the whole file before "
29855 "or after processing."
29856 msgstr ""
29857
29858 #. type: textblock
29859 #: ../tools/virt-win-reg.pl:597
29860 msgid ""
29861 "To reencode a file from Windows format to Linux (before processing it with "
29862 "the I<--merge> option), you would do something like this:"
29863 msgstr ""
29864
29865 #. type: verbatim
29866 #: ../tools/virt-win-reg.pl:600
29867 #, no-wrap
29868 msgid ""
29869 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29870 "\n"
29871 msgstr ""
29872
29873 #. type: textblock
29874 #: ../tools/virt-win-reg.pl:602
29875 msgid ""
29876 "To go in the opposite direction, after exporting and before sending the file "
29877 "to a Windows user, do something like this:"
29878 msgstr ""
29879
29880 #. type: verbatim
29881 #: ../tools/virt-win-reg.pl:605
29882 #, no-wrap
29883 msgid ""
29884 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29885 "\n"
29886 msgstr ""
29887
29888 #. type: textblock
29889 #: ../tools/virt-win-reg.pl:607
29890 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29891 msgstr ""
29892
29893 #. type: textblock
29894 #: ../tools/virt-win-reg.pl:609
29895 msgid ""
29896 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29897 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
29898 "style (CRLF) line endings, like this:"
29899 msgstr ""
29900
29901 #. type: verbatim
29902 #: ../tools/virt-win-reg.pl:613
29903 #, no-wrap
29904 msgid ""
29905 " $ file software.reg\n"
29906 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29907 " with CRLF line terminators\n"
29908 "\n"
29909 msgstr ""
29910
29911 #. type: textblock
29912 #: ../tools/virt-win-reg.pl:617
29913 msgid "This file would need conversion before you could I<--merge> it."
29914 msgstr ""
29915
29916 #. type: =head1
29917 #: ../tools/virt-win-reg.pl:619
29918 msgid "CurrentControlSet etc."
29919 msgstr ""
29920
29921 #. type: textblock
29922 #: ../tools/virt-win-reg.pl:621
29923 msgid ""
29924 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29925 "Registry at the level of the hive file, and therefore you cannot modify "
29926 "these."
29927 msgstr ""
29928
29929 #. type: textblock
29930 #: ../tools/virt-win-reg.pl:625
29931 msgid ""
29932 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29933 "circumstances it might refer to another control set.  The way to find out is "
29934 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29935 msgstr ""
29936
29937 #. type: verbatim
29938 #: ../tools/virt-win-reg.pl:629
29939 #, no-wrap
29940 msgid ""
29941 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29942 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29943 " \"Current\"=dword:00000001\n"
29944 " \"Default\"=dword:00000001\n"
29945 " \"Failed\"=dword:00000000\n"
29946 " \"LastKnownGood\"=dword:00000002\n"
29947 "\n"
29948 msgstr ""
29949
29950 #. type: textblock
29951 #: ../tools/virt-win-reg.pl:636
29952 msgid "\"Current\" is the one which Windows will choose when it boots."
29953 msgstr ""
29954
29955 #. type: textblock
29956 #: ../tools/virt-win-reg.pl:638
29957 msgid ""
29958 "Similarly, other C<Current...> keys in the path may need to be replaced."
29959 msgstr ""
29960
29961 #. type: =head1
29962 #: ../tools/virt-win-reg.pl:641
29963 msgid "WINDOWS TIPS"
29964 msgstr ""
29965
29966 #. type: textblock
29967 #: ../tools/virt-win-reg.pl:643
29968 msgid ""
29969 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29970 "be shut off, else you will get disk corruption."
29971 msgstr ""
29972
29973 #. type: =head2
29974 #: ../tools/virt-win-reg.pl:646
29975 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29976 msgstr ""
29977
29978 #. type: textblock
29979 #: ../tools/virt-win-reg.pl:648
29980 msgid ""
29981 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29982 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29983 "is uploaded into C<C:\\>:"
29984 msgstr ""
29985
29986 #. type: verbatim
29987 #: ../tools/virt-win-reg.pl:652
29988 #, no-wrap
29989 msgid ""
29990 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29991 "\n"
29992 msgstr ""
29993
29994 #. type: textblock
29995 #: ../tools/virt-win-reg.pl:654
29996 msgid "Prepare a regedit file containing the registry change:"
29997 msgstr ""
29998
29999 #. type: verbatim
30000 #: ../tools/virt-win-reg.pl:656
30001 #, no-wrap
30002 msgid ""
30003 " cat > test.reg <<'EOF'\n"
30004 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30005 " \"Test\"=\"c:\\\\test.bat\"\n"
30006 " EOF\n"
30007 "\n"
30008 msgstr ""
30009
30010 #. type: textblock
30011 #: ../tools/virt-win-reg.pl:661
30012 msgid ""
30013 "In this example we use the key C<RunOnce> which means that the script will "
30014 "run precisely once when the first user logs in.  If you want it to run every "
30015 "time a user logs in, replace C<RunOnce> with C<Run>."
30016 msgstr ""
30017
30018 #. type: textblock
30019 #: ../tools/virt-win-reg.pl:665
30020 msgid "Now update the registry:"
30021 msgstr ""
30022
30023 #. type: verbatim
30024 #: ../tools/virt-win-reg.pl:667
30025 #, no-wrap
30026 msgid ""
30027 " virt-win-reg --merge WindowsGuest test.reg\n"
30028 "\n"
30029 msgstr ""
30030
30031 #. type: =head2
30032 #: ../tools/virt-win-reg.pl:669
30033 msgid "INSTALLING A SERVICE"
30034 msgstr ""
30035
30036 #. type: textblock
30037 #: ../tools/virt-win-reg.pl:671
30038 msgid ""
30039 "This section assumes you are familiar with Windows services, and you either "
30040 "have a program which handles the Windows Service Control Protocol directly "
30041 "or you want to run any program using a service wrapper like SrvAny or the "
30042 "free RHSrvAny."
30043 msgstr ""
30044
30045 #. type: textblock
30046 #: ../tools/virt-win-reg.pl:676
30047 msgid ""
30048 "First upload the program and optionally the service wrapper.  In this case "
30049 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30050 msgstr ""
30051
30052 #. type: verbatim
30053 #: ../tools/virt-win-reg.pl:680
30054 #, no-wrap
30055 msgid ""
30056 " guestfish -i -d WindowsGuest <<EOF\n"
30057 "   upload rhsrvany.exe /rhsrvany.exe\n"
30058 "   upload test.exe /test.exe\n"
30059 " EOF\n"
30060 "\n"
30061 msgstr ""
30062
30063 #. type: textblock
30064 #: ../tools/virt-win-reg.pl:685
30065 msgid ""
30066 "Prepare a regedit file containing the registry changes.  In this example, "
30067 "the first registry change is needed for the service itself or the service "
30068 "wrapper (if used).  The second registry change is only needed because I am "
30069 "using the RHSrvAny service wrapper."
30070 msgstr ""
30071
30072 #. type: verbatim
30073 #: ../tools/virt-win-reg.pl:690
30074 #, no-wrap
30075 msgid ""
30076 " cat > service.reg <<'EOF'\n"
30077 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30078 " \"Type\"=dword:00000010\n"
30079 " \"Start\"=dword:00000002\n"
30080 " \"ErrorControl\"=dword:00000001\n"
30081 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30082 " \"DisplayName\"=\"RHSrvAny\"\n"
30083 " \"ObjectName\"=\"NetworkService\"\n"
30084 " \n"
30085 msgstr ""
30086
30087 #. type: verbatim
30088 #: ../tools/virt-win-reg.pl:699
30089 #, no-wrap
30090 msgid ""
30091 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30092 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30093 " \"PWD\"=\"c:\\\\Temp\"\n"
30094 " EOF\n"
30095 "\n"
30096 msgstr ""
30097
30098 #. type: textblock
30099 #: ../tools/virt-win-reg.pl:710
30100 msgid ""
30101 "For use of C<ControlSet001> see the section above in this manual page.  You "
30102 "may need to adjust this according to the control set that is in use by the "
30103 "guest."
30104 msgstr ""
30105
30106 #. type: textblock
30107 #: ../tools/virt-win-reg.pl:716
30108 msgid ""
30109 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30110 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30111 "privileged account."
30112 msgstr ""
30113
30114 #. type: textblock
30115 #: ../tools/virt-win-reg.pl:722
30116 msgid ""
30117 "For the meaning of the magic numbers, see this Microsoft KB article: "
30118 "L<http://support.microsoft.com/kb/103000>."
30119 msgstr ""
30120
30121 #. type: textblock
30122 #: ../tools/virt-win-reg.pl:727
30123 msgid "Update the registry:"
30124 msgstr ""
30125
30126 #. type: verbatim
30127 #: ../tools/virt-win-reg.pl:729
30128 #, no-wrap
30129 msgid ""
30130 " virt-win-reg --merge WindowsGuest service.reg\n"
30131 "\n"
30132 msgstr ""
30133
30134 #. type: =head1
30135 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30136 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30137 #: ../tools/virt-list-partitions.pl:250
30138 msgid "SHELL QUOTING"
30139 msgstr ""
30140
30141 #. type: textblock
30142 #: ../tools/virt-win-reg.pl:733
30143 msgid ""
30144 "Be careful when passing parameters containing C<\\> (backslash) in the "
30145 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30146 "(but not both) to protect them from the shell."
30147 msgstr ""
30148
30149 #. type: textblock
30150 #: ../tools/virt-win-reg.pl:737
30151 msgid "Paths and value names are case-insensitive."
30152 msgstr ""
30153
30154 #. type: textblock
30155 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30156 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30157 #: ../tools/virt-list-partitions.pl:252
30158 msgid ""
30159 "Libvirt guest names can contain arbitrary characters, some of which have "
30160 "meaning to the shell such as C<#> and space.  You may need to quote or "
30161 "escape these characters on the command line.  See the shell manual page L<sh"
30162 "(1)> for details."
30163 msgstr ""
30164
30165 #. type: textblock
30166 #: ../tools/virt-win-reg.pl:746
30167 msgid ""
30168 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30169 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30170 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30171 msgstr ""
30172
30173 #. type: textblock
30174 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30175 msgid ""
30176 "When reporting bugs, please enable debugging and capture the I<complete> "
30177 "output:"
30178 msgstr ""
30179
30180 #. type: verbatim
30181 #: ../tools/virt-win-reg.pl:764
30182 #, no-wrap
30183 msgid ""
30184 " export LIBGUESTFS_DEBUG=1\n"
30185 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30186 "\n"
30187 msgstr ""
30188
30189 #. type: textblock
30190 #: ../tools/virt-win-reg.pl:767
30191 msgid ""
30192 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30193 "redhat.com/>"
30194 msgstr ""
30195
30196 #. type: =head1
30197 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30198 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30199 #: ../tools/virt-list-partitions.pl:269
30200 msgid "AUTHOR"
30201 msgstr ""
30202
30203 #. type: textblock
30204 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30205 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30206 #: ../tools/virt-list-partitions.pl:271
30207 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30208 msgstr ""
30209
30210 #. type: textblock
30211 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30212 msgid "Copyright (C) 2010 Red Hat Inc."
30213 msgstr ""
30214
30215 #. type: textblock
30216 #: ../tools/virt-list-filesystems.pl:32
30217 msgid ""
30218 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30219 msgstr ""
30220
30221 #. type: verbatim
30222 #: ../tools/virt-list-filesystems.pl:36
30223 #, no-wrap
30224 msgid ""
30225 " virt-list-filesystems [--options] domname\n"
30226 "\n"
30227 msgstr ""
30228
30229 #. type: verbatim
30230 #: ../tools/virt-list-filesystems.pl:38
30231 #, no-wrap
30232 msgid ""
30233 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30234 "\n"
30235 msgstr ""
30236
30237 #. type: textblock
30238 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30239 msgid ""
30240 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30241 "replacement."
30242 msgstr ""
30243
30244 #. type: textblock
30245 #: ../tools/virt-list-filesystems.pl:45
30246 msgid ""
30247 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30248 "are contained in a virtual machine or disk image."
30249 msgstr ""
30250
30251 #. type: textblock
30252 #: ../tools/virt-list-filesystems.pl:49
30253 msgid ""
30254 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30255 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30256 "> tool."
30257 msgstr ""
30258
30259 #. type: =item
30260 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30261 msgid "B<-l> | B<--long>"
30262 msgstr ""
30263
30264 #. type: textblock
30265 #: ../tools/virt-list-filesystems.pl:108
30266 msgid ""
30267 "With this option, C<virt-list-filesystems> displays the type of each "
30268 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30269 msgstr ""
30270
30271 #. type: =item
30272 #: ../tools/virt-list-filesystems.pl:115
30273 msgid "B<-a> | B<--all>"
30274 msgstr ""
30275
30276 #. type: textblock
30277 #: ../tools/virt-list-filesystems.pl:117
30278 msgid ""
30279 "Normally we only show mountable filesystems.  If this option is given then "
30280 "swap devices are shown too."
30281 msgstr ""
30282
30283 #. type: textblock
30284 #: ../tools/virt-list-filesystems.pl:191
30285 msgid ""
30286 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30287 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30288 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30289 msgstr ""
30290
30291 #. type: textblock
30292 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30293 msgid "Copyright (C) 2009 Red Hat Inc."
30294 msgstr ""
30295
30296 #. type: textblock
30297 #: ../tools/virt-tar.pl:33
30298 msgid "virt-tar - Extract or upload files to a virtual machine"
30299 msgstr ""
30300
30301 #. type: verbatim
30302 #: ../tools/virt-tar.pl:37
30303 #, no-wrap
30304 msgid ""
30305 " virt-tar [--options] -x domname directory tarball\n"
30306 "\n"
30307 msgstr ""
30308
30309 #. type: verbatim
30310 #: ../tools/virt-tar.pl:39
30311 #, no-wrap
30312 msgid ""
30313 " virt-tar [--options] -u domname tarball directory\n"
30314 "\n"
30315 msgstr ""
30316
30317 #. type: verbatim
30318 #: ../tools/virt-tar.pl:41
30319 #, no-wrap
30320 msgid ""
30321 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30322 "\n"
30323 msgstr ""
30324
30325 #. type: verbatim
30326 #: ../tools/virt-tar.pl:43
30327 #, no-wrap
30328 msgid ""
30329 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30330 "\n"
30331 msgstr ""
30332
30333 #. type: textblock
30334 #: ../tools/virt-tar.pl:47
30335 msgid ""
30336 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30337 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30338 msgstr ""
30339
30340 #. type: textblock
30341 #: ../tools/virt-tar.pl:52
30342 msgid "Download C</home> from the VM into a local tarball:"
30343 msgstr ""
30344
30345 #. type: verbatim
30346 #: ../tools/virt-tar.pl:54
30347 #, no-wrap
30348 msgid ""
30349 " virt-tar -x domname /home home.tar\n"
30350 "\n"
30351 msgstr ""
30352
30353 #. type: verbatim
30354 #: ../tools/virt-tar.pl:56
30355 #, no-wrap
30356 msgid ""
30357 " virt-tar -zx domname /home home.tar.gz\n"
30358 "\n"
30359 msgstr ""
30360
30361 #. type: textblock
30362 #: ../tools/virt-tar.pl:58
30363 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30364 msgstr ""
30365
30366 #. type: verbatim
30367 #: ../tools/virt-tar.pl:60
30368 #, no-wrap
30369 msgid ""
30370 " virt-tar -u domname uploadstuff.tar /tmp\n"
30371 "\n"
30372 msgstr ""
30373
30374 #. type: verbatim
30375 #: ../tools/virt-tar.pl:62
30376 #, no-wrap
30377 msgid ""
30378 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30379 "\n"
30380 msgstr ""
30381
30382 #. type: textblock
30383 #: ../tools/virt-tar.pl:66
30384 msgid ""
30385 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30386 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30387 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30388 msgstr ""
30389
30390 #. type: textblock
30391 #: ../tools/virt-tar.pl:71
30392 msgid ""
30393 "You can use I<-x> (extract) on live virtual machines, but you might get "
30394 "inconsistent results or errors if there is filesystem activity inside the "
30395 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30396 "work, but the only way to guarantee consistent results is if the virtual "
30397 "machine is shut down."
30398 msgstr ""
30399
30400 #. type: textblock
30401 #: ../tools/virt-tar.pl:79
30402 msgid ""
30403 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30404 "parts of a guest filesystem.  There are many possibilities: making backups, "
30405 "uploading data files, snooping on guest activity, fixing or customizing "
30406 "guests, etc."
30407 msgstr ""
30408
30409 #. type: textblock
30410 #: ../tools/virt-tar.pl:84
30411 msgid ""
30412 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30413 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30414 "should look at the L<guestfish(1)> tool."
30415 msgstr ""
30416
30417 #. type: textblock
30418 #: ../tools/virt-tar.pl:88
30419 msgid ""
30420 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30421 "its contents (recursively) from the virtual machine into a local tarball.  "
30422 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30423 "virtual machine.  You cannot use these two options together."
30424 msgstr ""
30425
30426 #. type: textblock
30427 #: ../tools/virt-tar.pl:94
30428 msgid ""
30429 "In addition, you may need to use the I<-z> (gZip) option to enable "
30430 "compression.  When uploading, you have to specify I<-z> if the upload file "
30431 "is compressed because virt-tar won't detect this on its own."
30432 msgstr ""
30433
30434 #. type: textblock
30435 #: ../tools/virt-tar.pl:98
30436 msgid ""
30437 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30438 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30439 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30440 "the L<libguestfs(3)> API)."
30441 msgstr ""
30442
30443 #. type: =item
30444 #: ../tools/virt-tar.pl:156
30445 msgid "B<-x> | B<--extract> | B<--download>"
30446 msgstr ""
30447
30448 #. type: =item
30449 #: ../tools/virt-tar.pl:158
30450 msgid "B<-u> | B<--upload>"
30451 msgstr ""
30452
30453 #. type: textblock
30454 #: ../tools/virt-tar.pl:160
30455 msgid ""
30456 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30457 "local tarball."
30458 msgstr ""
30459
30460 #. type: textblock
30461 #: ../tools/virt-tar.pl:163
30462 msgid ""
30463 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30464 "Please read the L</WARNING> section above before using this option."
30465 msgstr ""
30466
30467 #. type: textblock
30468 #: ../tools/virt-tar.pl:167
30469 msgid "You must specify exactly one of these options."
30470 msgstr ""
30471
30472 #. type: =item
30473 #: ../tools/virt-tar.pl:173
30474 msgid "B<-z> | B<--gzip>"
30475 msgstr ""
30476
30477 #. type: textblock
30478 #: ../tools/virt-tar.pl:175
30479 msgid "Specify that the input or output tarball is gzip-compressed."
30480 msgstr ""
30481
30482 #. type: textblock
30483 #: ../tools/virt-tar.pl:288
30484 msgid ""
30485 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30486 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30487 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30488 "org/>."
30489 msgstr ""
30490
30491 #. type: textblock
30492 #: ../tools/virt-make-fs.pl:37
30493 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30494 msgstr ""
30495
30496 #. type: verbatim
30497 #: ../tools/virt-make-fs.pl:41
30498 #, no-wrap
30499 msgid ""
30500 " virt-make-fs [--options] input.tar output.img\n"
30501 "\n"
30502 msgstr ""
30503
30504 #. type: verbatim
30505 #: ../tools/virt-make-fs.pl:43
30506 #, no-wrap
30507 msgid ""
30508 " virt-make-fs [--options] input.tar.gz output.img\n"
30509 "\n"
30510 msgstr ""
30511
30512 #. type: verbatim
30513 #: ../tools/virt-make-fs.pl:45
30514 #, no-wrap
30515 msgid ""
30516 " virt-make-fs [--options] directory output.img\n"
30517 "\n"
30518 msgstr ""
30519
30520 #. type: textblock
30521 #: ../tools/virt-make-fs.pl:49
30522 msgid ""
30523 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30524 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30525 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30526 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30527 "you want to attach these filesystems to existing virtual machines (eg. to "
30528 "import large amounts of read-only data to a VM)."
30529 msgstr ""
30530
30531 #. type: textblock
30532 #: ../tools/virt-make-fs.pl:57
30533 msgid "Basic usage is:"
30534 msgstr ""
30535
30536 #. type: verbatim
30537 #: ../tools/virt-make-fs.pl:59
30538 #, no-wrap
30539 msgid ""
30540 " virt-make-fs input output\n"
30541 "\n"
30542 msgstr ""
30543
30544 #. type: textblock
30545 #: ../tools/virt-make-fs.pl:61
30546 msgid ""
30547 "where C<input> is either a directory containing files that you want to add, "
30548 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30549 "C<output> is a disk image.  The input type is detected automatically.  The "
30550 "output disk image defaults to a raw ext2 image unless you specify extra "
30551 "flags (see L</OPTIONS> below)."
30552 msgstr ""
30553
30554 #. type: =head2
30555 #: ../tools/virt-make-fs.pl:67
30556 msgid "EXTRA SPACE"
30557 msgstr ""
30558
30559 #. type: textblock
30560 #: ../tools/virt-make-fs.pl:69
30561 msgid ""
30562 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30563 "the files that it contains, but might have extra space.  Depending on how "
30564 "you are going to use the output, you might think this extra space is wasted "
30565 "and want to minimize it, or you might want to leave space so that more files "
30566 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30567 "but you can use the I<--size> flag to leave space in the filesystem if you "
30568 "want it."
30569 msgstr ""
30570
30571 #. type: textblock
30572 #: ../tools/virt-make-fs.pl:77
30573 msgid ""
30574 "An alternative way to leave extra space but not make the output image any "
30575 "bigger is to use an alternative disk image format (instead of the default "
30576 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30577 "image format (check your hypervisor supports this before using it).  This "
30578 "allows you to choose a large I<--size> but the extra space won't actually be "
30579 "allocated in the image until you try to store something in it."
30580 msgstr ""
30581
30582 #. type: textblock
30583 #: ../tools/virt-make-fs.pl:85
30584 msgid ""
30585 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30586 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30587 "to build another image from scratch."
30588 msgstr ""
30589
30590 #. type: =head3
30591 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30592 #: ../tools/virt-make-fs.pl:142
30593 msgid "EXAMPLE"
30594 msgstr ""
30595
30596 #. type: verbatim
30597 #: ../tools/virt-make-fs.pl:91
30598 #, no-wrap
30599 msgid ""
30600 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30601 "\n"
30602 msgstr ""
30603
30604 #. type: =head2
30605 #: ../tools/virt-make-fs.pl:93
30606 msgid "FILESYSTEM TYPE"
30607 msgstr ""
30608
30609 #. type: textblock
30610 #: ../tools/virt-make-fs.pl:95
30611 msgid ""
30612 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30613 "libguestfs supports can be used (but I<not> read-only formats like "
30614 "ISO9660).  Here are some of the more common choices:"
30615 msgstr ""
30616
30617 #. type: =item
30618 #: ../tools/virt-make-fs.pl:101
30619 msgid "I<ext3>"
30620 msgstr ""
30621
30622 #. type: textblock
30623 #: ../tools/virt-make-fs.pl:103
30624 msgid ""
30625 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30626 "you are not going to use the filesystem in a way that requires the journal, "
30627 "then this is just wasted overhead."
30628 msgstr ""
30629
30630 #. type: =item
30631 #: ../tools/virt-make-fs.pl:107
30632 msgid "I<ntfs> or I<vfat>"
30633 msgstr ""
30634
30635 #. type: textblock
30636 #: ../tools/virt-make-fs.pl:109
30637 msgid "Useful if exporting data to a Windows guest."
30638 msgstr ""
30639
30640 #. type: textblock
30641 #: ../tools/virt-make-fs.pl:111
30642 msgid ""
30643 "I<Note for vfat>: The tar archive or local directory must only contain files "
30644 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30645 "program running within libguestfs is unable to change the ownership of non-"
30646 "root files, since vfat itself does not support this."
30647 msgstr ""
30648
30649 #. type: =item
30650 #: ../tools/virt-make-fs.pl:116
30651 msgid "I<minix>"
30652 msgstr ""
30653
30654 #. type: textblock
30655 #: ../tools/virt-make-fs.pl:118
30656 msgid ""
30657 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30658 "total filesystem size."
30659 msgstr ""
30660
30661 #. type: verbatim
30662 #: ../tools/virt-make-fs.pl:125
30663 #, no-wrap
30664 msgid ""
30665 " virt-make-fs --type=minix input minixfs.img\n"
30666 "\n"
30667 msgstr ""
30668
30669 #. type: =head2
30670 #: ../tools/virt-make-fs.pl:127
30671 msgid "TO PARTITION OR NOT TO PARTITION"
30672 msgstr ""
30673
30674 #. type: textblock
30675 #: ../tools/virt-make-fs.pl:129
30676 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30677 msgstr ""
30678
30679 #. type: textblock
30680 #: ../tools/virt-make-fs.pl:131
30681 msgid ""
30682 "Adding a partition can make the disk image more compatible with certain "
30683 "virtualized operating systems which don't expect to see a filesystem "
30684 "directly located on a block device (Linux doesn't care and will happily "
30685 "handle both types)."
30686 msgstr ""
30687
30688 #. type: textblock
30689 #: ../tools/virt-make-fs.pl:136
30690 msgid ""
30691 "On the other hand, if you have a partition table then the output image is no "
30692 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30693 "directly on a partitioned disk image.  (However libguestfs tools such as "
30694 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30695 msgstr ""
30696
30697 #. type: textblock
30698 #: ../tools/virt-make-fs.pl:144
30699 msgid "Add an MBR partition:"
30700 msgstr ""
30701
30702 #. type: verbatim
30703 #: ../tools/virt-make-fs.pl:146
30704 #, no-wrap
30705 msgid ""
30706 " virt-make-fs --partition -- input disk.img\n"
30707 "\n"
30708 msgstr ""
30709
30710 #. type: textblock
30711 #: ../tools/virt-make-fs.pl:148
30712 msgid ""
30713 "If the output disk image could be terabyte-sized or larger, it's better to "
30714 "use an EFI/GPT-compatible partition table:"
30715 msgstr ""
30716
30717 #. type: verbatim
30718 #: ../tools/virt-make-fs.pl:151
30719 #, no-wrap
30720 msgid ""
30721 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30722 "\n"
30723 msgstr ""
30724
30725 #. type: textblock
30726 #: ../tools/virt-make-fs.pl:179
30727 msgid "Enable debugging information."
30728 msgstr ""
30729
30730 #. type: =item
30731 #: ../tools/virt-make-fs.pl:185
30732 msgid "B<--size=E<lt>NE<gt>>"
30733 msgstr ""
30734
30735 #. type: =item
30736 #: ../tools/virt-make-fs.pl:187
30737 msgid "B<--size=+E<lt>NE<gt>>"
30738 msgstr ""
30739
30740 #. type: =item
30741 #: ../tools/virt-make-fs.pl:189
30742 msgid "B<-s E<lt>NE<gt>>"
30743 msgstr ""
30744
30745 #. type: =item
30746 #: ../tools/virt-make-fs.pl:191
30747 msgid "B<-s +E<lt>NE<gt>>"
30748 msgstr ""
30749
30750 #. type: textblock
30751 #: ../tools/virt-make-fs.pl:193
30752 msgid ""
30753 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30754 msgstr ""
30755
30756 #. type: textblock
30757 #: ../tools/virt-make-fs.pl:196
30758 msgid ""
30759 "If this option is I<not> given, then the output image will be just large "
30760 "enough to contain all the files, with not much wasted space."
30761 msgstr ""
30762
30763 #. type: textblock
30764 #: ../tools/virt-make-fs.pl:199
30765 msgid ""
30766 "To choose a fixed size output disk, specify an absolute number followed by b/"
30767 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30768 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30769 "files, else you will get an error."
30770 msgstr ""
30771
30772 #. type: textblock
30773 #: ../tools/virt-make-fs.pl:204
30774 msgid ""
30775 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30776 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30777 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30778 "the input files, and (approximately) an extra 200 MB free space."
30779 msgstr ""
30780
30781 #. type: textblock
30782 #: ../tools/virt-make-fs.pl:210
30783 msgid ""
30784 "Note that virt-make-fs estimates free space, and therefore will not produce "
30785 "filesystems containing precisely the free space requested.  (It is much more "
30786 "expensive and time-consuming to produce a filesystem which has precisely the "
30787 "desired free space)."
30788 msgstr ""
30789
30790 #. type: =item
30791 #: ../tools/virt-make-fs.pl:219
30792 msgid "B<--format=E<lt>fmtE<gt>>"
30793 msgstr ""
30794
30795 #. type: =item
30796 #: ../tools/virt-make-fs.pl:221
30797 msgid "B<-F E<lt>fmtE<gt>>"
30798 msgstr ""
30799
30800 #. type: textblock
30801 #: ../tools/virt-make-fs.pl:223
30802 msgid "Choose the output disk image format."
30803 msgstr ""
30804
30805 #. type: textblock
30806 #: ../tools/virt-make-fs.pl:225
30807 msgid "The default is C<raw> (raw disk image)."
30808 msgstr ""
30809
30810 #. type: textblock
30811 #: ../tools/virt-make-fs.pl:227
30812 msgid ""
30813 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30814 "that would really make sense here is C<qcow2>."
30815 msgstr ""
30816
30817 #. type: =item
30818 #: ../tools/virt-make-fs.pl:234
30819 msgid "B<--type=E<lt>fsE<gt>>"
30820 msgstr ""
30821
30822 #. type: =item
30823 #: ../tools/virt-make-fs.pl:236
30824 msgid "B<-t E<lt>fsE<gt>>"
30825 msgstr ""
30826
30827 #. type: textblock
30828 #: ../tools/virt-make-fs.pl:238
30829 msgid "Choose the output filesystem type."
30830 msgstr ""
30831
30832 #. type: textblock
30833 #: ../tools/virt-make-fs.pl:240
30834 msgid "The default is C<ext2>."
30835 msgstr ""
30836
30837 #. type: textblock
30838 #: ../tools/virt-make-fs.pl:242
30839 msgid ""
30840 "Any filesystem which is supported read-write by libguestfs can be used here."
30841 msgstr ""
30842
30843 #. type: =item
30844 #: ../tools/virt-make-fs.pl:249
30845 msgid "B<--partition>"
30846 msgstr ""
30847
30848 #. type: =item
30849 #: ../tools/virt-make-fs.pl:251
30850 msgid "B<--partition=E<lt>parttypeE<gt>>"
30851 msgstr ""
30852
30853 #. type: textblock
30854 #: ../tools/virt-make-fs.pl:253
30855 msgid ""
30856 "If specified, this flag adds an MBR partition table to the output disk image."
30857 msgstr ""
30858
30859 #. type: textblock
30860 #: ../tools/virt-make-fs.pl:256
30861 msgid ""
30862 "You can change the partition table type, eg. I<--partition=gpt> for large "
30863 "disks."
30864 msgstr ""
30865
30866 #. type: textblock
30867 #: ../tools/virt-make-fs.pl:259
30868 msgid ""
30869 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30870 "might consider the next parameter to be the partition type.  For example:"
30871 msgstr ""
30872
30873 #. type: verbatim
30874 #: ../tools/virt-make-fs.pl:263
30875 #, no-wrap
30876 msgid ""
30877 " virt-make-fs --partition input.tar ...\n"
30878 "\n"
30879 msgstr ""
30880
30881 #. type: textblock
30882 #: ../tools/virt-make-fs.pl:265
30883 msgid ""
30884 "would cause virt-make-fs to think you wanted to use a partition type of "
30885 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30886 "dash) between options and the input file argument:"
30887 msgstr ""
30888
30889 #. type: verbatim
30890 #: ../tools/virt-make-fs.pl:269
30891 #, no-wrap
30892 msgid ""
30893 " virt-make-fs --partition -- input.tar ...\n"
30894 "\n"
30895 msgstr ""
30896
30897 #. type: textblock
30898 #: ../tools/virt-make-fs.pl:541
30899 msgid ""
30900 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30901 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
30902 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30903 msgstr ""
30904
30905 #. type: verbatim
30906 #: ../tools/virt-make-fs.pl:558
30907 #, no-wrap
30908 msgid ""
30909 " export LIBGUESTFS_DEBUG=1\n"
30910 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30911 "\n"
30912 msgstr ""
30913
30914 #. type: textblock
30915 #: ../tools/virt-make-fs.pl:561
30916 msgid ""
30917 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
30918 "redhat.com/>"
30919 msgstr ""
30920
30921 #. type: textblock
30922 #: ../tools/virt-list-partitions.pl:32
30923 msgid ""
30924 "virt-list-partitions - List partitions in a virtual machine or disk image"
30925 msgstr ""
30926
30927 #. type: verbatim
30928 #: ../tools/virt-list-partitions.pl:36
30929 #, no-wrap
30930 msgid ""
30931 " virt-list-partitions [--options] domname\n"
30932 "\n"
30933 msgstr ""
30934
30935 #. type: verbatim
30936 #: ../tools/virt-list-partitions.pl:38
30937 #, no-wrap
30938 msgid ""
30939 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30940 "\n"
30941 msgstr ""
30942
30943 #. type: textblock
30944 #: ../tools/virt-list-partitions.pl:45
30945 msgid ""
30946 "C<virt-list-partitions> is a command line tool to list the partitions that "
30947 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30948 "first step to using L<virt-resize(1)>."
30949 msgstr ""
30950
30951 #. type: textblock
30952 #: ../tools/virt-list-partitions.pl:50
30953 msgid ""
30954 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30955 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30956 "> tool."
30957 msgstr ""
30958
30959 #. type: =item
30960 #: ../tools/virt-list-partitions.pl:107
30961 msgid "B<-h> | B<--human-readable>"
30962 msgstr ""
30963
30964 #. type: textblock
30965 #: ../tools/virt-list-partitions.pl:109
30966 msgid "Show sizes in human-readable form (eg. \"1G\")."
30967 msgstr ""
30968
30969 #. type: textblock
30970 #: ../tools/virt-list-partitions.pl:117
30971 msgid ""
30972 "With this option, C<virt-list-partitions> displays the type and size of each "
30973 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30974 msgstr ""
30975
30976 #. type: =item
30977 #: ../tools/virt-list-partitions.pl:124
30978 msgid "B<-t> | B<--total>"
30979 msgstr ""
30980
30981 #. type: textblock
30982 #: ../tools/virt-list-partitions.pl:126
30983 msgid ""
30984 "Display the total size of each block device (as a separate row or rows)."
30985 msgstr ""
30986
30987 #. type: textblock
30988 #: ../tools/virt-list-partitions.pl:259
30989 msgid ""
30990 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
30991 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
30992 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30993 msgstr ""
30994
30995 #. type: textblock
30996 #: ../tools/virt-list-partitions.pl:275
30997 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30998 msgstr ""