Version 1.11.16.
[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-07-13 15:55+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:6106
5141 #: ../fish/guestfish-actions.pod:4041
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:3780 ../src/guestfs-actions.pod:3794
5960 #: ../src/guestfs-actions.pod:3807 ../src/guestfs-actions.pod:3821
5961 #: ../src/guestfs-actions.pod:3836 ../src/guestfs-actions.pod:3872
5962 #: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3964
5963 #: ../src/guestfs-actions.pod:3981 ../src/guestfs-actions.pod:4004
5964 #: ../src/guestfs-actions.pod:4027 ../src/guestfs-actions.pod:4062
5965 #: ../src/guestfs-actions.pod:4081 ../src/guestfs-actions.pod:4100
5966 #: ../src/guestfs-actions.pod:4135 ../src/guestfs-actions.pod:4147
5967 #: ../src/guestfs-actions.pod:4183 ../src/guestfs-actions.pod:4199
5968 #: ../src/guestfs-actions.pod:4212 ../src/guestfs-actions.pod:4227
5969 #: ../src/guestfs-actions.pod:4244 ../src/guestfs-actions.pod:4337
5970 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4370
5971 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4439
5972 #: ../src/guestfs-actions.pod:4457 ../src/guestfs-actions.pod:4473
5973 #: ../src/guestfs-actions.pod:4487 ../src/guestfs-actions.pod:4501
5974 #: ../src/guestfs-actions.pod:4518 ../src/guestfs-actions.pod:4533
5975 #: ../src/guestfs-actions.pod:4553 ../src/guestfs-actions.pod:4623
5976 #: ../src/guestfs-actions.pod:4696 ../src/guestfs-actions.pod:4727
5977 #: ../src/guestfs-actions.pod:4746 ../src/guestfs-actions.pod:4765
5978 #: ../src/guestfs-actions.pod:4777 ../src/guestfs-actions.pod:4794
5979 #: ../src/guestfs-actions.pod:4807 ../src/guestfs-actions.pod:4822
5980 #: ../src/guestfs-actions.pod:4837 ../src/guestfs-actions.pod:4872
5981 #: ../src/guestfs-actions.pod:4905 ../src/guestfs-actions.pod:4944
5982 #: ../src/guestfs-actions.pod:4964 ../src/guestfs-actions.pod:4978
5983 #: ../src/guestfs-actions.pod:4995 ../src/guestfs-actions.pod:5044
5984 #: ../src/guestfs-actions.pod:5090 ../src/guestfs-actions.pod:5144
5985 #: ../src/guestfs-actions.pod:5180 ../src/guestfs-actions.pod:5215
5986 #: ../src/guestfs-actions.pod:5232 ../src/guestfs-actions.pod:5250
5987 #: ../src/guestfs-actions.pod:5384 ../src/guestfs-actions.pod:5441
5988 #: ../src/guestfs-actions.pod:5463 ../src/guestfs-actions.pod:5481
5989 #: ../src/guestfs-actions.pod:5513 ../src/guestfs-actions.pod:5579
5990 #: ../src/guestfs-actions.pod:5596 ../src/guestfs-actions.pod:5609
5991 #: ../src/guestfs-actions.pod:5623 ../src/guestfs-actions.pod:5912
5992 #: ../src/guestfs-actions.pod:5931 ../src/guestfs-actions.pod:5950
5993 #: ../src/guestfs-actions.pod:5964 ../src/guestfs-actions.pod:5976
5994 #: ../src/guestfs-actions.pod:5990 ../src/guestfs-actions.pod:6002
5995 #: ../src/guestfs-actions.pod:6016 ../src/guestfs-actions.pod:6032
5996 #: ../src/guestfs-actions.pod:6053 ../src/guestfs-actions.pod:6072
5997 #: ../src/guestfs-actions.pod:6091 ../src/guestfs-actions.pod:6121
5998 #: ../src/guestfs-actions.pod:6139 ../src/guestfs-actions.pod:6162
5999 #: ../src/guestfs-actions.pod:6180 ../src/guestfs-actions.pod:6199
6000 #: ../src/guestfs-actions.pod:6220 ../src/guestfs-actions.pod:6239
6001 #: ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6284
6002 #: ../src/guestfs-actions.pod:6308 ../src/guestfs-actions.pod:6327
6003 #: ../src/guestfs-actions.pod:6351 ../src/guestfs-actions.pod:6370
6004 #: ../src/guestfs-actions.pod:6385 ../src/guestfs-actions.pod:6404
6005 #: ../src/guestfs-actions.pod:6441 ../src/guestfs-actions.pod:6471
6006 #: ../src/guestfs-actions.pod:6504 ../src/guestfs-actions.pod:6626
6007 #: ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:6759
6008 #: ../src/guestfs-actions.pod:6772 ../src/guestfs-actions.pod:6785
6009 #: ../src/guestfs-actions.pod:6807 ../src/guestfs-actions.pod:6820
6010 #: ../src/guestfs-actions.pod:6833 ../src/guestfs-actions.pod:6846
6011 #: ../src/guestfs-actions.pod:6861 ../src/guestfs-actions.pod:6920
6012 #: ../src/guestfs-actions.pod:6937 ../src/guestfs-actions.pod:6953
6013 #: ../src/guestfs-actions.pod:6969 ../src/guestfs-actions.pod:6986
6014 #: ../src/guestfs-actions.pod:6999 ../src/guestfs-actions.pod:7019
6015 #: ../src/guestfs-actions.pod:7055 ../src/guestfs-actions.pod:7069
6016 #: ../src/guestfs-actions.pod:7110 ../src/guestfs-actions.pod:7123
6017 #: ../src/guestfs-actions.pod:7141 ../src/guestfs-actions.pod:7175
6018 #: ../src/guestfs-actions.pod:7211 ../src/guestfs-actions.pod:7327
6019 #: ../src/guestfs-actions.pod:7342 ../src/guestfs-actions.pod:7356
6020 #: ../src/guestfs-actions.pod:7411 ../src/guestfs-actions.pod:7424
6021 #: ../src/guestfs-actions.pod:7469 ../src/guestfs-actions.pod:7502
6022 #: ../src/guestfs-actions.pod:7563 ../src/guestfs-actions.pod:7589
6023 #: ../src/guestfs-actions.pod:7656 ../src/guestfs-actions.pod:7675
6024 #: ../src/guestfs-actions.pod:7704
6025 msgid "This function returns 0 on success or -1 on error."
6026 msgstr ""
6027
6028 #. type: textblock
6029 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6030 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6031 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6032 msgid ""
6033 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6034 "instead."
6035 msgstr ""
6036
6037 #. type: textblock
6038 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6039 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454
6040 #: ../src/guestfs-actions.pod:1949 ../src/guestfs-actions.pod:1970
6041 #: ../src/guestfs-actions.pod:4558 ../src/guestfs-actions.pod:4877
6042 #: ../src/guestfs-actions.pod:5095 ../src/guestfs-actions.pod:5185
6043 #: ../src/guestfs-actions.pod:6449 ../src/guestfs-actions.pod:6479
6044 #: ../src/guestfs-actions.pod:6512 ../src/guestfs-actions.pod:6571
6045 #: ../src/guestfs-actions.pod:7507 ../src/guestfs-actions.pod:7597
6046 #: ../src/guestfs-actions.pod:7767 ../fish/guestfish-actions.pod:31
6047 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6048 #: ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321
6049 #: ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3054
6050 #: ../fish/guestfish-actions.pod:3261 ../fish/guestfish-actions.pod:3375
6051 #: ../fish/guestfish-actions.pod:3423 ../fish/guestfish-actions.pod:4303
6052 #: ../fish/guestfish-actions.pod:4326 ../fish/guestfish-actions.pod:4348
6053 #: ../fish/guestfish-actions.pod:4386 ../fish/guestfish-actions.pod:5021
6054 #: ../fish/guestfish-actions.pod:5119
6055 msgid ""
6056 "Deprecated functions will not be removed from the API, but the fact that "
6057 "they are deprecated indicates that there are problems with correct use of "
6058 "these functions."
6059 msgstr ""
6060
6061 #. type: textblock
6062 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6063 #: ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1921
6064 #: ../src/guestfs-actions.pod:2019 ../src/guestfs-actions.pod:2122
6065 #: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3573
6066 #: ../src/guestfs-actions.pod:4881 ../src/guestfs-actions.pod:6141
6067 #: ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6372
6068 #: ../src/guestfs-actions.pod:6863 ../src/guestfs-actions.pod:6988
6069 #: ../src/guestfs-actions.pod:7511
6070 msgid "(Added in 0.3)"
6071 msgstr ""
6072
6073 #. type: =head2
6074 #: ../src/guestfs-actions.pod:41
6075 msgid "guestfs_add_domain"
6076 msgstr ""
6077
6078 #. type: verbatim
6079 #: ../src/guestfs-actions.pod:43
6080 #, no-wrap
6081 msgid ""
6082 " int\n"
6083 " guestfs_add_domain (guestfs_h *g,\n"
6084 "                     const char *dom,\n"
6085 "                     ...);\n"
6086 "\n"
6087 msgstr ""
6088
6089 #. type: textblock
6090 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6091 #: ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:4572
6092 #: ../src/guestfs-actions.pod:4891 ../src/guestfs-actions.pod:5108
6093 msgid ""
6094 "You may supply a list of optional arguments to this call.  Use zero or more "
6095 "of the following pairs of parameters, and terminate the list with C<-1> on "
6096 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6097 msgstr ""
6098
6099 #. type: verbatim
6100 #: ../src/guestfs-actions.pod:53
6101 #, no-wrap
6102 msgid ""
6103 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6104 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6105 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6106 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6107 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6108 "\n"
6109 msgstr ""
6110
6111 #. type: textblock
6112 #: ../src/guestfs-actions.pod:59
6113 msgid ""
6114 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6115 "It works by connecting to libvirt, requesting the domain and domain XML from "
6116 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6117 "one."
6118 msgstr ""
6119
6120 #. type: textblock
6121 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6122 msgid ""
6123 "The number of disks added is returned.  This operation is atomic: if an "
6124 "error is returned, then no disks are added."
6125 msgstr ""
6126
6127 #. type: textblock
6128 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6129 msgid ""
6130 "This function does some minimal checks to make sure the libvirt domain is "
6131 "not running (unless C<readonly> is true).  In a future version we will try "
6132 "to acquire the libvirt lock on each disk."
6133 msgstr ""
6134
6135 #. type: textblock
6136 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6137 msgid ""
6138 "Disks must be accessible locally.  This often means that adding disks from a "
6139 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6140 "unless those disks are accessible via the same device path locally too."
6141 msgstr ""
6142
6143 #. type: textblock
6144 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6145 msgid ""
6146 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6147 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6148 "libvirt URI (or one set through an environment variable, see the libvirt "
6149 "documentation for full details)."
6150 msgstr ""
6151
6152 #. type: textblock
6153 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6154 msgid ""
6155 "The optional C<live> flag controls whether this call will try to connect to "
6156 "a running virtual machine C<guestfsd> process if it sees a suitable "
6157 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6158 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6159 "DAEMONS> for more information."
6160 msgstr ""
6161
6162 #. type: textblock
6163 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6164 msgid ""
6165 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6166 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6167 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
6168 "as usual."
6169 msgstr ""
6170
6171 #. type: textblock
6172 #: ../src/guestfs-actions.pod:94
6173 msgid ""
6174 "The other optional parameters are passed directly through to "
6175 "C<guestfs_add_drive_opts>."
6176 msgstr ""
6177
6178 #. type: textblock
6179 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6180 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6181 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6182 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321
6183 #: ../src/guestfs-actions.pod:1677 ../src/guestfs-actions.pod:1880
6184 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:2031
6185 #: ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2109
6186 #: ../src/guestfs-actions.pod:2402 ../src/guestfs-actions.pod:2874
6187 #: ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:5067
6188 #: ../src/guestfs-actions.pod:5287 ../src/guestfs-actions.pod:5693
6189 #: ../src/guestfs-actions.pod:5719 ../src/guestfs-actions.pod:7096
6190 #: ../src/guestfs-actions.pod:7522 ../src/guestfs-actions.pod:7535
6191 #: ../src/guestfs-actions.pod:7548
6192 msgid "On error this function returns -1."
6193 msgstr ""
6194
6195 #. type: textblock
6196 #: ../src/guestfs-actions.pod:99
6197 msgid "(Added in 1.7.4)"
6198 msgstr ""
6199
6200 #. type: =head2
6201 #: ../src/guestfs-actions.pod:101
6202 msgid "guestfs_add_domain_va"
6203 msgstr ""
6204
6205 #. type: verbatim
6206 #: ../src/guestfs-actions.pod:103
6207 #, no-wrap
6208 msgid ""
6209 " int\n"
6210 " guestfs_add_domain_va (guestfs_h *g,\n"
6211 "                        const char *dom,\n"
6212 "                        va_list args);\n"
6213 "\n"
6214 msgstr ""
6215
6216 #. type: textblock
6217 #: ../src/guestfs-actions.pod:108
6218 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6219 msgstr ""
6220
6221 #. type: textblock
6222 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6223 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6224 #: ../src/guestfs-actions.pod:2840 ../src/guestfs-actions.pod:2852
6225 #: ../src/guestfs-actions.pod:4637 ../src/guestfs-actions.pod:4649
6226 #: ../src/guestfs-actions.pod:4919 ../src/guestfs-actions.pod:4931
6227 #: ../src/guestfs-actions.pod:5157 ../src/guestfs-actions.pod:5168
6228 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6229 msgstr ""
6230
6231 #. type: =head2
6232 #: ../src/guestfs-actions.pod:112
6233 msgid "guestfs_add_domain_argv"
6234 msgstr ""
6235
6236 #. type: verbatim
6237 #: ../src/guestfs-actions.pod:114
6238 #, no-wrap
6239 msgid ""
6240 " int\n"
6241 " guestfs_add_domain_argv (guestfs_h *g,\n"
6242 "                          const char *dom,\n"
6243 "                          const struct guestfs_add_domain_argv *optargs);\n"
6244 "\n"
6245 msgstr ""
6246
6247 #. type: textblock
6248 #: ../src/guestfs-actions.pod:119
6249 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6250 msgstr ""
6251
6252 #. type: =head2
6253 #: ../src/guestfs-actions.pod:123
6254 msgid "guestfs_add_drive"
6255 msgstr ""
6256
6257 #. type: verbatim
6258 #: ../src/guestfs-actions.pod:125
6259 #, no-wrap
6260 msgid ""
6261 " int\n"
6262 " guestfs_add_drive (guestfs_h *g,\n"
6263 "                    const char *filename);\n"
6264 "\n"
6265 msgstr ""
6266
6267 #. type: textblock
6268 #: ../src/guestfs-actions.pod:129
6269 msgid ""
6270 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6271 "optional parameters, so the disk is added writable, with the format being "
6272 "detected automatically."
6273 msgstr ""
6274
6275 #. type: textblock
6276 #: ../src/guestfs-actions.pod:133
6277 msgid ""
6278 "Automatic detection of the format opens you up to a potential security hole "
6279 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6280 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6281 "you should think about replacing calls to this function with calls to "
6282 "C<guestfs_add_drive_opts>, and specifying the format."
6283 msgstr ""
6284
6285 #. type: =head2
6286 #: ../src/guestfs-actions.pod:144
6287 msgid "guestfs_add_drive_opts"
6288 msgstr ""
6289
6290 #. type: verbatim
6291 #: ../src/guestfs-actions.pod:146
6292 #, no-wrap
6293 msgid ""
6294 " int\n"
6295 " guestfs_add_drive_opts (guestfs_h *g,\n"
6296 "                         const char *filename,\n"
6297 "                         ...);\n"
6298 "\n"
6299 msgstr ""
6300
6301 #. type: verbatim
6302 #: ../src/guestfs-actions.pod:156
6303 #, no-wrap
6304 msgid ""
6305 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6306 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6307 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6308 "\n"
6309 msgstr ""
6310
6311 #. type: textblock
6312 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6313 msgid ""
6314 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6315 "The first time you call this function, the disk appears as C</dev/sda>, the "
6316 "second time as C</dev/sdb>, and so on."
6317 msgstr ""
6318
6319 #. type: textblock
6320 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6321 msgid ""
6322 "You don't necessarily need to be root when using libguestfs.  However you "
6323 "obviously do need sufficient permissions to access the filename for whatever "
6324 "operations you want to perform (ie. read access if you just want to read the "
6325 "image or write access if you want to modify the image)."
6326 msgstr ""
6327
6328 #. type: textblock
6329 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6330 msgid "This call checks that C<filename> exists."
6331 msgstr ""
6332
6333 #. type: textblock
6334 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4585
6335 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3065
6336 msgid "The optional arguments are:"
6337 msgstr ""
6338
6339 #. type: =item
6340 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6341 msgid "C<readonly>"
6342 msgstr "C<readonly>"
6343
6344 #. type: textblock
6345 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6346 msgid ""
6347 "If true then the image is treated as read-only.  Writes are still allowed, "
6348 "but they are stored in a temporary snapshot overlay which is discarded at "
6349 "the end.  The disk that you add is not modified."
6350 msgstr ""
6351
6352 #. type: =item
6353 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6354 msgid "C<format>"
6355 msgstr "C<format>"
6356
6357 #. type: textblock
6358 #: ../src/guestfs-actions.pod:185
6359 msgid ""
6360 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6361 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6362 "Possible formats include C<raw> and C<qcow2>."
6363 msgstr ""
6364
6365 #. type: textblock
6366 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6367 msgid ""
6368 "Automatic detection of the format opens you up to a potential security hole "
6369 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6370 "RHBZ#642934.  Specifying the format closes this security hole."
6371 msgstr ""
6372
6373 #. type: =item
6374 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6375 msgid "C<iface>"
6376 msgstr "C<iface>"
6377
6378 #. type: textblock
6379 #: ../src/guestfs-actions.pod:196
6380 msgid ""
6381 "This rarely-used option lets you emulate the behaviour of the deprecated "
6382 "C<guestfs_add_drive_with_if> call (q.v.)"
6383 msgstr ""
6384
6385 #. type: textblock
6386 #: ../src/guestfs-actions.pod:203
6387 msgid "(Added in 1.5.23)"
6388 msgstr ""
6389
6390 #. type: =head2
6391 #: ../src/guestfs-actions.pod:205
6392 msgid "guestfs_add_drive_opts_va"
6393 msgstr ""
6394
6395 #. type: verbatim
6396 #: ../src/guestfs-actions.pod:207
6397 #, no-wrap
6398 msgid ""
6399 " int\n"
6400 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6401 "                            const char *filename,\n"
6402 "                            va_list args);\n"
6403 "\n"
6404 msgstr ""
6405
6406 #. type: textblock
6407 #: ../src/guestfs-actions.pod:212
6408 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6409 msgstr ""
6410
6411 #. type: =head2
6412 #: ../src/guestfs-actions.pod:216
6413 msgid "guestfs_add_drive_opts_argv"
6414 msgstr ""
6415
6416 #. type: verbatim
6417 #: ../src/guestfs-actions.pod:218
6418 #, no-wrap
6419 msgid ""
6420 " int\n"
6421 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6422 "                              const char *filename,\n"
6423 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6424 "\n"
6425 msgstr ""
6426
6427 #. type: textblock
6428 #: ../src/guestfs-actions.pod:223
6429 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6430 msgstr ""
6431
6432 #. type: =head2
6433 #: ../src/guestfs-actions.pod:227
6434 msgid "guestfs_add_drive_ro"
6435 msgstr ""
6436
6437 #. type: verbatim
6438 #: ../src/guestfs-actions.pod:229
6439 #, no-wrap
6440 msgid ""
6441 " int\n"
6442 " guestfs_add_drive_ro (guestfs_h *g,\n"
6443 "                       const char *filename);\n"
6444 "\n"
6445 msgstr ""
6446
6447 #. type: textblock
6448 #: ../src/guestfs-actions.pod:233
6449 msgid ""
6450 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6451 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6452 "disk is added read-only, with the format being detected automatically."
6453 msgstr ""
6454
6455 #. type: textblock
6456 #: ../src/guestfs-actions.pod:240
6457 msgid "(Added in 1.0.38)"
6458 msgstr ""
6459
6460 #. type: =head2
6461 #: ../src/guestfs-actions.pod:242
6462 msgid "guestfs_add_drive_ro_with_if"
6463 msgstr ""
6464
6465 #. type: verbatim
6466 #: ../src/guestfs-actions.pod:244
6467 #, no-wrap
6468 msgid ""
6469 " int\n"
6470 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6471 "                               const char *filename,\n"
6472 "                               const char *iface);\n"
6473 "\n"
6474 msgstr ""
6475
6476 #. type: textblock
6477 #: ../src/guestfs-actions.pod:249
6478 msgid ""
6479 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6480 "QEMU interface emulation to use at run time."
6481 msgstr ""
6482
6483 #. type: textblock
6484 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6485 #: ../src/guestfs-actions.pod:2361
6486 msgid "(Added in 1.0.84)"
6487 msgstr ""
6488
6489 #. type: =head2
6490 #: ../src/guestfs-actions.pod:263
6491 msgid "guestfs_add_drive_with_if"
6492 msgstr ""
6493
6494 #. type: verbatim
6495 #: ../src/guestfs-actions.pod:265
6496 #, no-wrap
6497 msgid ""
6498 " int\n"
6499 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6500 "                            const char *filename,\n"
6501 "                            const char *iface);\n"
6502 "\n"
6503 msgstr ""
6504
6505 #. type: textblock
6506 #: ../src/guestfs-actions.pod:270
6507 msgid ""
6508 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6509 "QEMU interface emulation to use at run time."
6510 msgstr ""
6511
6512 #. type: =head2
6513 #: ../src/guestfs-actions.pod:284
6514 msgid "guestfs_aug_clear"
6515 msgstr ""
6516
6517 #. type: verbatim
6518 #: ../src/guestfs-actions.pod:286
6519 #, no-wrap
6520 msgid ""
6521 " int\n"
6522 " guestfs_aug_clear (guestfs_h *g,\n"
6523 "                    const char *augpath);\n"
6524 "\n"
6525 msgstr ""
6526
6527 #. type: textblock
6528 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6529 msgid ""
6530 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6531 "L<augtool(1)> C<clear> command."
6532 msgstr ""
6533
6534 #. type: textblock
6535 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2111
6536 msgid "(Added in 1.3.4)"
6537 msgstr ""
6538
6539 #. type: =head2
6540 #: ../src/guestfs-actions.pod:297
6541 msgid "guestfs_aug_close"
6542 msgstr ""
6543
6544 #. type: verbatim
6545 #: ../src/guestfs-actions.pod:299
6546 #, no-wrap
6547 msgid ""
6548 " int\n"
6549 " guestfs_aug_close (guestfs_h *g);\n"
6550 "\n"
6551 msgstr ""
6552
6553 #. type: textblock
6554 #: ../src/guestfs-actions.pod:302
6555 msgid ""
6556 "Close the current Augeas handle and free up any resources used by it.  After "
6557 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6558 "any other Augeas functions."
6559 msgstr ""
6560
6561 #. type: textblock
6562 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6563 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6564 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6565 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6566 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6567 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6568 #: ../src/guestfs-actions.pod:5770
6569 msgid "(Added in 0.7)"
6570 msgstr ""
6571
6572 #. type: =head2
6573 #: ../src/guestfs-actions.pod:311
6574 msgid "guestfs_aug_defnode"
6575 msgstr ""
6576
6577 #. type: verbatim
6578 #: ../src/guestfs-actions.pod:313
6579 #, no-wrap
6580 msgid ""
6581 " struct guestfs_int_bool *\n"
6582 " guestfs_aug_defnode (guestfs_h *g,\n"
6583 "                      const char *name,\n"
6584 "                      const char *expr,\n"
6585 "                      const char *val);\n"
6586 "\n"
6587 msgstr ""
6588
6589 #. type: textblock
6590 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6591 msgid ""
6592 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6593 msgstr ""
6594
6595 #. type: textblock
6596 #: ../src/guestfs-actions.pod:322
6597 msgid ""
6598 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6599 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6600 "containing that single node."
6601 msgstr ""
6602
6603 #. type: textblock
6604 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6605 msgid ""
6606 "On success this returns a pair containing the number of nodes in the "
6607 "nodeset, and a boolean flag if a node was created."
6608 msgstr ""
6609
6610 #. type: textblock
6611 #: ../src/guestfs-actions.pod:330
6612 msgid ""
6613 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6614 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6615 msgstr ""
6616
6617 #. type: =head2
6618 #: ../src/guestfs-actions.pod:336
6619 msgid "guestfs_aug_defvar"
6620 msgstr ""
6621
6622 #. type: verbatim
6623 #: ../src/guestfs-actions.pod:338
6624 #, no-wrap
6625 msgid ""
6626 " int\n"
6627 " guestfs_aug_defvar (guestfs_h *g,\n"
6628 "                     const char *name,\n"
6629 "                     const char *expr);\n"
6630 "\n"
6631 msgstr ""
6632
6633 #. type: textblock
6634 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6635 msgid ""
6636 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6637 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6638 msgstr ""
6639
6640 #. type: textblock
6641 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6642 msgid ""
6643 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6644 "evaluates to something which is not a nodeset."
6645 msgstr ""
6646
6647 #. type: =head2
6648 #: ../src/guestfs-actions.pod:354
6649 msgid "guestfs_aug_get"
6650 msgstr ""
6651
6652 #. type: verbatim
6653 #: ../src/guestfs-actions.pod:356
6654 #, no-wrap
6655 msgid ""
6656 " char *\n"
6657 " guestfs_aug_get (guestfs_h *g,\n"
6658 "                  const char *augpath);\n"
6659 "\n"
6660 msgstr ""
6661
6662 #. type: textblock
6663 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6664 msgid ""
6665 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6666 "node, the C<value> is returned."
6667 msgstr ""
6668
6669 #. type: textblock
6670 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863
6671 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941
6672 #: ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060
6673 #: ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207
6674 #: ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360
6675 #: ../src/guestfs-actions.pod:1548 ../src/guestfs-actions.pod:1660
6676 #: ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:1840
6677 #: ../src/guestfs-actions.pod:1907 ../src/guestfs-actions.pod:1943
6678 #: ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2134
6679 #: ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:2530
6680 #: ../src/guestfs-actions.pod:2620 ../src/guestfs-actions.pod:2724
6681 #: ../src/guestfs-actions.pod:2743 ../src/guestfs-actions.pod:2957
6682 #: ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3006
6683 #: ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3099
6684 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3139
6685 #: ../src/guestfs-actions.pod:3766 ../src/guestfs-actions.pod:4119
6686 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4399
6687 #: ../src/guestfs-actions.pod:5305 ../src/guestfs-actions.pod:5498
6688 #: ../src/guestfs-actions.pod:5668 ../src/guestfs-actions.pod:5846
6689 #: ../src/guestfs-actions.pod:5895 ../src/guestfs-actions.pod:6532
6690 #: ../src/guestfs-actions.pod:6548 ../src/guestfs-actions.pod:6565
6691 #: ../src/guestfs-actions.pod:6596 ../src/guestfs-actions.pod:7270
6692 #: ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7307
6693 #: ../src/guestfs-actions.pod:7481 ../src/guestfs-actions.pod:7761
6694 msgid ""
6695 "This function returns a string, or NULL on error.  I<The caller must free "
6696 "the returned string after use>."
6697 msgstr ""
6698
6699 #. type: =head2
6700 #: ../src/guestfs-actions.pod:368
6701 msgid "guestfs_aug_init"
6702 msgstr ""
6703
6704 #. type: verbatim
6705 #: ../src/guestfs-actions.pod:370
6706 #, no-wrap
6707 msgid ""
6708 " int\n"
6709 " guestfs_aug_init (guestfs_h *g,\n"
6710 "                   const char *root,\n"
6711 "                   int flags);\n"
6712 "\n"
6713 msgstr ""
6714
6715 #. type: textblock
6716 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6717 msgid ""
6718 "Create a new Augeas handle for editing configuration files.  If there was "
6719 "any previous Augeas handle associated with this guestfs session, then it is "
6720 "closed."
6721 msgstr ""
6722
6723 #. type: textblock
6724 #: ../src/guestfs-actions.pod:379
6725 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6726 msgstr ""
6727
6728 #. type: textblock
6729 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6730 msgid ""
6731 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6732 msgstr ""
6733
6734 #. type: textblock
6735 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6736 msgid ""
6737 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6738 "logical I<or> of the following integers:"
6739 msgstr ""
6740
6741 #. type: =item
6742 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6743 msgid "C<AUG_SAVE_BACKUP> = 1"
6744 msgstr "C<AUG_SAVE_BACKUP> = 1"
6745
6746 #. type: textblock
6747 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6748 msgid "Keep the original file with a C<.augsave> extension."
6749 msgstr ""
6750
6751 #. type: =item
6752 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6753 msgid "C<AUG_SAVE_NEWFILE> = 2"
6754 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6755
6756 #. type: textblock
6757 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6758 msgid ""
6759 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6760 "original.  Overrides C<AUG_SAVE_BACKUP>."
6761 msgstr ""
6762
6763 #. type: =item
6764 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6765 msgid "C<AUG_TYPE_CHECK> = 4"
6766 msgstr "C<AUG_TYPE_CHECK> = 4"
6767
6768 #. type: textblock
6769 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6770 msgid "Typecheck lenses (can be expensive)."
6771 msgstr ""
6772
6773 #. type: =item
6774 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6775 msgid "C<AUG_NO_STDINC> = 8"
6776 msgstr "C<AUG_NO_STDINC> = 8"
6777
6778 #. type: textblock
6779 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6780 msgid "Do not use standard load path for modules."
6781 msgstr ""
6782
6783 #. type: =item
6784 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6785 msgid "C<AUG_SAVE_NOOP> = 16"
6786 msgstr "C<AUG_SAVE_NOOP> = 16"
6787
6788 #. type: textblock
6789 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6790 msgid "Make save a no-op, just record what would have been changed."
6791 msgstr ""
6792
6793 #. type: =item
6794 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6795 msgid "C<AUG_NO_LOAD> = 32"
6796 msgstr "C<AUG_NO_LOAD> = 32"
6797
6798 #. type: textblock
6799 #: ../src/guestfs-actions.pod:414
6800 msgid "Do not load the tree in C<guestfs_aug_init>."
6801 msgstr ""
6802
6803 #. type: textblock
6804 #: ../src/guestfs-actions.pod:418
6805 msgid "To close the handle, you can call C<guestfs_aug_close>."
6806 msgstr ""
6807
6808 #. type: textblock
6809 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6810 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6811 msgstr ""
6812
6813 #. type: =head2
6814 #: ../src/guestfs-actions.pod:426
6815 msgid "guestfs_aug_insert"
6816 msgstr ""
6817
6818 #. type: verbatim
6819 #: ../src/guestfs-actions.pod:428
6820 #, no-wrap
6821 msgid ""
6822 " int\n"
6823 " guestfs_aug_insert (guestfs_h *g,\n"
6824 "                     const char *augpath,\n"
6825 "                     const char *label,\n"
6826 "                     int before);\n"
6827 "\n"
6828 msgstr ""
6829
6830 #. type: textblock
6831 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6832 msgid ""
6833 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6834 "or after C<path> (depending on the boolean flag C<before>)."
6835 msgstr ""
6836
6837 #. type: textblock
6838 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6839 msgid ""
6840 "C<path> must match exactly one existing node in the tree, and C<label> must "
6841 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6842 msgstr ""
6843
6844 #. type: =head2
6845 #: ../src/guestfs-actions.pod:446
6846 msgid "guestfs_aug_load"
6847 msgstr ""
6848
6849 #. type: verbatim
6850 #: ../src/guestfs-actions.pod:448
6851 #, no-wrap
6852 msgid ""
6853 " int\n"
6854 " guestfs_aug_load (guestfs_h *g);\n"
6855 "\n"
6856 msgstr ""
6857
6858 #. type: textblock
6859 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6860 msgid "Load files into the tree."
6861 msgstr "Завантажити файли до ієрархії."
6862
6863 #. type: textblock
6864 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6865 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6866 msgstr ""
6867
6868 #. type: =head2
6869 #: ../src/guestfs-actions.pod:460
6870 msgid "guestfs_aug_ls"
6871 msgstr ""
6872
6873 #. type: verbatim
6874 #: ../src/guestfs-actions.pod:462
6875 #, no-wrap
6876 msgid ""
6877 " char **\n"
6878 " guestfs_aug_ls (guestfs_h *g,\n"
6879 "                 const char *augpath);\n"
6880 "\n"
6881 msgstr ""
6882
6883 #. type: textblock
6884 #: ../src/guestfs-actions.pod:466
6885 msgid ""
6886 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6887 "sorting the resulting nodes into alphabetical order."
6888 msgstr ""
6889
6890 #. type: textblock
6891 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6892 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079
6893 #: ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394
6894 #: ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516
6895 #: ../src/guestfs-actions.pod:1762 ../src/guestfs-actions.pod:2206
6896 #: ../src/guestfs-actions.pod:2222 ../src/guestfs-actions.pod:2241
6897 #: ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2308
6898 #: ../src/guestfs-actions.pod:2379 ../src/guestfs-actions.pod:2428
6899 #: ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:3059
6900 #: ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:3649
6901 #: ../src/guestfs-actions.pod:3666 ../src/guestfs-actions.pod:3686
6902 #: ../src/guestfs-actions.pod:3748 ../src/guestfs-actions.pod:3853
6903 #: ../src/guestfs-actions.pod:4261 ../src/guestfs-actions.pod:5028
6904 #: ../src/guestfs-actions.pod:5640 ../src/guestfs-actions.pod:5766
6905 #: ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:6612
6906 #: ../src/guestfs-actions.pod:6673 ../src/guestfs-actions.pod:6728
6907 #: ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6898
6908 #: ../src/guestfs-actions.pod:7374 ../src/guestfs-actions.pod:7394
6909 #: ../src/guestfs-actions.pod:7441 ../src/guestfs-actions.pod:7613
6910 #: ../src/guestfs-actions.pod:7632 ../src/guestfs-actions.pod:7718
6911 #: ../src/guestfs-actions.pod:7737 ../src/guestfs-actions.pod:7783
6912 #: ../src/guestfs-actions.pod:7802
6913 msgid ""
6914 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6915 ">), or NULL if there was an error.  I<The caller must free the strings and "
6916 "the array after use>."
6917 msgstr ""
6918
6919 #. type: textblock
6920 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004
6921 #: ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432
6922 #: ../src/guestfs-actions.pod:3413 ../src/guestfs-actions.pod:3444
6923 #: ../src/guestfs-actions.pod:4102 ../src/guestfs-actions.pod:4152
6924 #: ../src/guestfs-actions.pod:4339 ../src/guestfs-actions.pod:4372
6925 #: ../src/guestfs-actions.pod:4535 ../src/guestfs-actions.pod:5032
6926 #: ../src/guestfs-actions.pod:5581 ../src/guestfs-actions.pod:5978
6927 #: ../src/guestfs-actions.pod:5992 ../src/guestfs-actions.pod:6004
6928 #: ../src/guestfs-actions.pod:6453 ../src/guestfs-actions.pod:7112
6929 #: ../src/guestfs-actions.pod:7125 ../src/guestfs-actions.pod:7358
6930 #: ../src/guestfs-actions.pod:7601
6931 msgid "(Added in 0.8)"
6932 msgstr ""
6933
6934 #. type: =head2
6935 #: ../src/guestfs-actions.pod:475
6936 msgid "guestfs_aug_match"
6937 msgstr ""
6938
6939 #. type: verbatim
6940 #: ../src/guestfs-actions.pod:477
6941 #, no-wrap
6942 msgid ""
6943 " char **\n"
6944 " guestfs_aug_match (guestfs_h *g,\n"
6945 "                    const char *augpath);\n"
6946 "\n"
6947 msgstr ""
6948
6949 #. type: textblock
6950 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6951 msgid ""
6952 "Returns a list of paths which match the path expression C<path>.  The "
6953 "returned paths are sufficiently qualified so that they match exactly one "
6954 "node in the current tree."
6955 msgstr ""
6956
6957 #. type: =head2
6958 #: ../src/guestfs-actions.pod:491
6959 msgid "guestfs_aug_mv"
6960 msgstr ""
6961
6962 #. type: verbatim
6963 #: ../src/guestfs-actions.pod:493
6964 #, no-wrap
6965 msgid ""
6966 " int\n"
6967 " guestfs_aug_mv (guestfs_h *g,\n"
6968 "                 const char *src,\n"
6969 "                 const char *dest);\n"
6970 "\n"
6971 msgstr ""
6972
6973 #. type: textblock
6974 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6975 msgid ""
6976 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6977 "C<dest> is overwritten if it exists."
6978 msgstr ""
6979
6980 #. type: =head2
6981 #: ../src/guestfs-actions.pod:505
6982 msgid "guestfs_aug_rm"
6983 msgstr ""
6984
6985 #. type: verbatim
6986 #: ../src/guestfs-actions.pod:507
6987 #, no-wrap
6988 msgid ""
6989 " int\n"
6990 " guestfs_aug_rm (guestfs_h *g,\n"
6991 "                 const char *augpath);\n"
6992 "\n"
6993 msgstr ""
6994
6995 #. type: textblock
6996 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6997 msgid "Remove C<path> and all of its children."
6998 msgstr ""
6999
7000 #. type: textblock
7001 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
7002 msgid "On success this returns the number of entries which were removed."
7003 msgstr ""
7004
7005 #. type: =head2
7006 #: ../src/guestfs-actions.pod:519
7007 msgid "guestfs_aug_save"
7008 msgstr ""
7009
7010 #. type: verbatim
7011 #: ../src/guestfs-actions.pod:521
7012 #, no-wrap
7013 msgid ""
7014 " int\n"
7015 " guestfs_aug_save (guestfs_h *g);\n"
7016 "\n"
7017 msgstr ""
7018
7019 #. type: textblock
7020 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7021 msgid "This writes all pending changes to disk."
7022 msgstr ""
7023
7024 #. type: textblock
7025 #: ../src/guestfs-actions.pod:526
7026 msgid ""
7027 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7028 "are saved."
7029 msgstr ""
7030
7031 #. type: =head2
7032 #: ../src/guestfs-actions.pod:533
7033 msgid "guestfs_aug_set"
7034 msgstr ""
7035
7036 #. type: verbatim
7037 #: ../src/guestfs-actions.pod:535
7038 #, no-wrap
7039 msgid ""
7040 " int\n"
7041 " guestfs_aug_set (guestfs_h *g,\n"
7042 "                  const char *augpath,\n"
7043 "                  const char *val);\n"
7044 "\n"
7045 msgstr ""
7046
7047 #. type: textblock
7048 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7049 msgid "Set the value associated with C<path> to C<val>."
7050 msgstr ""
7051
7052 #. type: textblock
7053 #: ../src/guestfs-actions.pod:542
7054 msgid ""
7055 "In the Augeas API, it is possible to clear a node by setting the value to "
7056 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7057 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7058 msgstr ""
7059
7060 #. type: =head2
7061 #: ../src/guestfs-actions.pod:551
7062 msgid "guestfs_available"
7063 msgstr ""
7064
7065 #. type: verbatim
7066 #: ../src/guestfs-actions.pod:553
7067 #, no-wrap
7068 msgid ""
7069 " int\n"
7070 " guestfs_available (guestfs_h *g,\n"
7071 "                    char *const *groups);\n"
7072 "\n"
7073 msgstr ""
7074
7075 #. type: textblock
7076 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7077 msgid ""
7078 "This command is used to check the availability of some groups of "
7079 "functionality in the appliance, which not all builds of the libguestfs "
7080 "appliance will be able to provide."
7081 msgstr ""
7082
7083 #. type: textblock
7084 #: ../src/guestfs-actions.pod:561
7085 msgid ""
7086 "The libguestfs groups, and the functions that those groups correspond to, "
7087 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7088 "runtime by calling C<guestfs_available_all_groups>."
7089 msgstr ""
7090
7091 #. type: textblock
7092 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7093 msgid ""
7094 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7095 "\"]> would check for the availability of the Linux inotify functions and "
7096 "Augeas (configuration file editing) functions."
7097 msgstr ""
7098
7099 #. type: textblock
7100 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7101 msgid "The command returns no error if I<all> requested groups are available."
7102 msgstr ""
7103
7104 #. type: textblock
7105 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7106 msgid ""
7107 "It fails with an error if one or more of the requested groups is unavailable "
7108 "in the appliance."
7109 msgstr ""
7110
7111 #. type: textblock
7112 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7113 msgid ""
7114 "If an unknown group name is included in the list of groups then an error is "
7115 "always returned."
7116 msgstr ""
7117
7118 #. type: textblock
7119 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7120 msgid "I<Notes:>"
7121 msgstr "I<Нотатки:>"
7122
7123 #. type: textblock
7124 #: ../src/guestfs-actions.pod:585
7125 msgid "You must call C<guestfs_launch> before calling this function."
7126 msgstr ""
7127
7128 #. type: textblock
7129 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7130 msgid ""
7131 "The reason is because we don't know what groups are supported by the "
7132 "appliance/daemon until it is running and can be queried."
7133 msgstr ""
7134
7135 #. type: textblock
7136 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7137 msgid ""
7138 "If a group of functions is available, this does not necessarily mean that "
7139 "they will work.  You still have to check for errors when calling individual "
7140 "API functions even if they are available."
7141 msgstr ""
7142
7143 #. type: textblock
7144 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7145 msgid ""
7146 "It is usually the job of distro packagers to build complete functionality "
7147 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7148 "with all requirements satisfied, will support everything."
7149 msgstr ""
7150
7151 #. type: textblock
7152 #: ../src/guestfs-actions.pod:607
7153 msgid ""
7154 "This call was added in version C<1.0.80>.  In previous versions of "
7155 "libguestfs all you could do would be to speculatively execute a command to "
7156 "find out if the daemon implemented it.  See also C<guestfs_version>."
7157 msgstr ""
7158
7159 #. type: textblock
7160 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
7161 msgid "(Added in 1.0.80)"
7162 msgstr ""
7163
7164 #. type: =head2
7165 #: ../src/guestfs-actions.pod:618
7166 msgid "guestfs_available_all_groups"
7167 msgstr ""
7168
7169 #. type: verbatim
7170 #: ../src/guestfs-actions.pod:620
7171 #, no-wrap
7172 msgid ""
7173 " char **\n"
7174 " guestfs_available_all_groups (guestfs_h *g);\n"
7175 "\n"
7176 msgstr ""
7177
7178 #. type: textblock
7179 #: ../src/guestfs-actions.pod:623
7180 msgid ""
7181 "This command returns a list of all optional groups that this daemon knows "
7182 "about.  Note this returns both supported and unsupported groups.  To find "
7183 "out which ones the daemon can actually support you have to call "
7184 "C<guestfs_available> on each member of the returned list."
7185 msgstr ""
7186
7187 #. type: textblock
7188 #: ../src/guestfs-actions.pod:629
7189 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7190 msgstr ""
7191
7192 #. type: textblock
7193 #: ../src/guestfs-actions.pod:635
7194 msgid "(Added in 1.3.15)"
7195 msgstr ""
7196
7197 #. type: =head2
7198 #: ../src/guestfs-actions.pod:637
7199 msgid "guestfs_base64_in"
7200 msgstr ""
7201
7202 #. type: verbatim
7203 #: ../src/guestfs-actions.pod:639
7204 #, no-wrap
7205 msgid ""
7206 " int\n"
7207 " guestfs_base64_in (guestfs_h *g,\n"
7208 "                    const char *base64file,\n"
7209 "                    const char *filename);\n"
7210 "\n"
7211 msgstr ""
7212
7213 #. type: textblock
7214 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7215 msgid ""
7216 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7217 msgstr ""
7218
7219 #. type: textblock
7220 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7221 msgid "(Added in 1.3.5)"
7222 msgstr ""
7223
7224 #. type: =head2
7225 #: ../src/guestfs-actions.pod:651
7226 msgid "guestfs_base64_out"
7227 msgstr ""
7228
7229 #. type: verbatim
7230 #: ../src/guestfs-actions.pod:653
7231 #, no-wrap
7232 msgid ""
7233 " int\n"
7234 " guestfs_base64_out (guestfs_h *g,\n"
7235 "                     const char *filename,\n"
7236 "                     const char *base64file);\n"
7237 "\n"
7238 msgstr ""
7239
7240 #. type: textblock
7241 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7242 msgid ""
7243 "This command downloads the contents of C<filename>, writing it out to local "
7244 "file C<base64file> encoded as base64."
7245 msgstr ""
7246
7247 #. type: =head2
7248 #: ../src/guestfs-actions.pod:665
7249 msgid "guestfs_blockdev_flushbufs"
7250 msgstr ""
7251
7252 #. type: verbatim
7253 #: ../src/guestfs-actions.pod:667
7254 #, no-wrap
7255 msgid ""
7256 " int\n"
7257 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7258 "                             const char *device);\n"
7259 "\n"
7260 msgstr ""
7261
7262 #. type: textblock
7263 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7264 msgid ""
7265 "This tells the kernel to flush internal buffers associated with C<device>."
7266 msgstr ""
7267
7268 #. type: textblock
7269 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7270 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7271 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7272 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7273 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7274 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7275 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7276 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7277 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7278 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7279 msgid "This uses the L<blockdev(8)> command."
7280 msgstr ""
7281
7282 #. type: textblock
7283 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7284 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7285 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7286 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7287 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7288 msgid "(Added in 0.9.3)"
7289 msgstr ""
7290
7291 #. type: =head2
7292 #: ../src/guestfs-actions.pod:680
7293 msgid "guestfs_blockdev_getbsz"
7294 msgstr ""
7295
7296 #. type: verbatim
7297 #: ../src/guestfs-actions.pod:682
7298 #, no-wrap
7299 msgid ""
7300 " int\n"
7301 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7302 "                          const char *device);\n"
7303 "\n"
7304 msgstr ""
7305
7306 #. type: textblock
7307 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7308 msgid "This returns the block size of a device."
7309 msgstr ""
7310
7311 #. type: textblock
7312 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7313 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7314 msgid ""
7315 "(Note this is different from both I<size in blocks> and I<filesystem block "
7316 "size>)."
7317 msgstr ""
7318
7319 #. type: =head2
7320 #: ../src/guestfs-actions.pod:697
7321 msgid "guestfs_blockdev_getro"
7322 msgstr ""
7323
7324 #. type: verbatim
7325 #: ../src/guestfs-actions.pod:699
7326 #, no-wrap
7327 msgid ""
7328 " int\n"
7329 " guestfs_blockdev_getro (guestfs_h *g,\n"
7330 "                         const char *device);\n"
7331 "\n"
7332 msgstr ""
7333
7334 #. type: textblock
7335 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7336 msgid ""
7337 "Returns a boolean indicating if the block device is read-only (true if read-"
7338 "only, false if not)."
7339 msgstr ""
7340
7341 #. type: textblock
7342 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415
7343 #: ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1919
7344 #: ../src/guestfs-actions.pod:1930 ../src/guestfs-actions.pod:2002
7345 #: ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:2072
7346 #: ../src/guestfs-actions.pod:2097 ../src/guestfs-actions.pod:2120
7347 #: ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3172
7348 #: ../src/guestfs-actions.pod:3190 ../src/guestfs-actions.pod:3352
7349 #: ../src/guestfs-actions.pod:3366 ../src/guestfs-actions.pod:3381
7350 #: ../src/guestfs-actions.pod:3395 ../src/guestfs-actions.pod:3411
7351 #: ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:3442
7352 #: ../src/guestfs-actions.pod:3456 ../src/guestfs-actions.pod:3469
7353 #: ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3498
7354 #: ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526
7355 #: ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:5269
7356 msgid "This function returns a C truth value on success or -1 on error."
7357 msgstr ""
7358
7359 #. type: =head2
7360 #: ../src/guestfs-actions.pod:712
7361 msgid "guestfs_blockdev_getsize64"
7362 msgstr ""
7363
7364 #. type: verbatim
7365 #: ../src/guestfs-actions.pod:714
7366 #, no-wrap
7367 msgid ""
7368 " int64_t\n"
7369 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7370 "                             const char *device);\n"
7371 "\n"
7372 msgstr ""
7373
7374 #. type: textblock
7375 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7376 msgid "This returns the size of the device in bytes."
7377 msgstr ""
7378
7379 #. type: textblock
7380 #: ../src/guestfs-actions.pod:720
7381 msgid "See also C<guestfs_blockdev_getsz>."
7382 msgstr ""
7383
7384 #. type: =head2
7385 #: ../src/guestfs-actions.pod:728
7386 msgid "guestfs_blockdev_getss"
7387 msgstr ""
7388
7389 #. type: verbatim
7390 #: ../src/guestfs-actions.pod:730
7391 #, no-wrap
7392 msgid ""
7393 " int\n"
7394 " guestfs_blockdev_getss (guestfs_h *g,\n"
7395 "                         const char *device);\n"
7396 "\n"
7397 msgstr ""
7398
7399 #. type: textblock
7400 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7401 msgid ""
7402 "This returns the size of sectors on a block device.  Usually 512, but can be "
7403 "larger for modern devices."
7404 msgstr ""
7405
7406 #. type: textblock
7407 #: ../src/guestfs-actions.pod:737
7408 msgid ""
7409 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7410 "that)."
7411 msgstr ""
7412
7413 #. type: =head2
7414 #: ../src/guestfs-actions.pod:746
7415 msgid "guestfs_blockdev_getsz"
7416 msgstr ""
7417
7418 #. type: verbatim
7419 #: ../src/guestfs-actions.pod:748
7420 #, no-wrap
7421 msgid ""
7422 " int64_t\n"
7423 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7424 "                         const char *device);\n"
7425 "\n"
7426 msgstr ""
7427
7428 #. type: textblock
7429 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7430 msgid ""
7431 "This returns the size of the device in units of 512-byte sectors (even if "
7432 "the sectorsize isn't 512 bytes ... weird)."
7433 msgstr ""
7434
7435 #. type: textblock
7436 #: ../src/guestfs-actions.pod:755
7437 msgid ""
7438 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7439 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7440 msgstr ""
7441
7442 #. type: =head2
7443 #: ../src/guestfs-actions.pod:765
7444 msgid "guestfs_blockdev_rereadpt"
7445 msgstr ""
7446
7447 #. type: verbatim
7448 #: ../src/guestfs-actions.pod:767
7449 #, no-wrap
7450 msgid ""
7451 " int\n"
7452 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7453 "                            const char *device);\n"
7454 "\n"
7455 msgstr ""
7456
7457 #. type: textblock
7458 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7459 msgid "Reread the partition table on C<device>."
7460 msgstr ""
7461
7462 #. type: =head2
7463 #: ../src/guestfs-actions.pod:779
7464 msgid "guestfs_blockdev_setbsz"
7465 msgstr ""
7466
7467 #. type: verbatim
7468 #: ../src/guestfs-actions.pod:781
7469 #, no-wrap
7470 msgid ""
7471 " int\n"
7472 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7473 "                          const char *device,\n"
7474 "                          int blocksize);\n"
7475 "\n"
7476 msgstr ""
7477
7478 #. type: textblock
7479 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7480 msgid "This sets the block size of a device."
7481 msgstr ""
7482
7483 #. type: =head2
7484 #: ../src/guestfs-actions.pod:797
7485 msgid "guestfs_blockdev_setro"
7486 msgstr ""
7487
7488 #. type: verbatim
7489 #: ../src/guestfs-actions.pod:799
7490 #, no-wrap
7491 msgid ""
7492 " int\n"
7493 " guestfs_blockdev_setro (guestfs_h *g,\n"
7494 "                         const char *device);\n"
7495 "\n"
7496 msgstr ""
7497
7498 #. type: textblock
7499 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7500 msgid "Sets the block device named C<device> to read-only."
7501 msgstr ""
7502
7503 #. type: =head2
7504 #: ../src/guestfs-actions.pod:811
7505 msgid "guestfs_blockdev_setrw"
7506 msgstr ""
7507
7508 #. type: verbatim
7509 #: ../src/guestfs-actions.pod:813
7510 #, no-wrap
7511 msgid ""
7512 " int\n"
7513 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7514 "                         const char *device);\n"
7515 "\n"
7516 msgstr ""
7517
7518 #. type: textblock
7519 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7520 msgid "Sets the block device named C<device> to read-write."
7521 msgstr ""
7522
7523 #. type: =head2
7524 #: ../src/guestfs-actions.pod:825
7525 msgid "guestfs_case_sensitive_path"
7526 msgstr ""
7527
7528 #. type: verbatim
7529 #: ../src/guestfs-actions.pod:827
7530 #, no-wrap
7531 msgid ""
7532 " char *\n"
7533 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7534 "                              const char *path);\n"
7535 "\n"
7536 msgstr ""
7537
7538 #. type: textblock
7539 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7540 msgid ""
7541 "This can be used to resolve case insensitive paths on a filesystem which is "
7542 "case sensitive.  The use case is to resolve paths which you have read from "
7543 "Windows configuration files or the Windows Registry, to the true path."
7544 msgstr ""
7545
7546 #. type: textblock
7547 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7548 msgid ""
7549 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7550 "(and probably others), which is that although the underlying filesystem is "
7551 "case-insensitive, the driver exports the filesystem to Linux as case-"
7552 "sensitive."
7553 msgstr ""
7554
7555 #. type: textblock
7556 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7557 msgid ""
7558 "One consequence of this is that special directories such as C<c:\\windows> "
7559 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7560 "precise details of how they were created.  In Windows itself this would not "
7561 "be a problem."
7562 msgstr ""
7563
7564 #. type: textblock
7565 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7566 msgid ""
7567 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7568 "#posixfilenames1>"
7569 msgstr ""
7570
7571 #. type: textblock
7572 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7573 msgid ""
7574 "This function resolves the true case of each element in the path and returns "
7575 "the case-sensitive path."
7576 msgstr ""
7577
7578 #. type: textblock
7579 #: ../src/guestfs-actions.pod:853
7580 msgid ""
7581 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7582 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7583 "how the directories were originally created under Windows)."
7584 msgstr ""
7585
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7588 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7589 msgstr ""
7590
7591 #. type: textblock
7592 #: ../src/guestfs-actions.pod:861
7593 msgid "See also C<guestfs_realpath>."
7594 msgstr ""
7595
7596 #. type: textblock
7597 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7292
7598 msgid "(Added in 1.0.75)"
7599 msgstr ""
7600
7601 #. type: =head2
7602 #: ../src/guestfs-actions.pod:868
7603 msgid "guestfs_cat"
7604 msgstr ""
7605
7606 #. type: verbatim
7607 #: ../src/guestfs-actions.pod:870
7608 #, no-wrap
7609 msgid ""
7610 " char *\n"
7611 " guestfs_cat (guestfs_h *g,\n"
7612 "              const char *path);\n"
7613 "\n"
7614 msgstr ""
7615
7616 #. type: textblock
7617 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5756
7618 #: ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3800
7619 msgid "Return the contents of the file named C<path>."
7620 msgstr ""
7621
7622 #. type: textblock
7623 #: ../src/guestfs-actions.pod:876
7624 msgid ""
7625 "Note that this function cannot correctly handle binary files (specifically, "
7626 "files containing C<\\0> character which is treated as end of string).  For "
7627 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7628 "functions which have a more complex interface."
7629 msgstr ""
7630
7631 #. type: textblock
7632 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063
7633 #: ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379
7634 #: ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501
7635 #: ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1766
7636 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:2245
7637 #: ../src/guestfs-actions.pod:2288 ../src/guestfs-actions.pod:2312
7638 #: ../src/guestfs-actions.pod:2329 ../src/guestfs-actions.pod:2358
7639 #: ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5564
7640 #: ../src/guestfs-actions.pod:5695 ../src/guestfs-actions.pod:5721
7641 #: ../src/guestfs-actions.pod:5745 ../src/guestfs-actions.pod:6677
7642 #: ../src/guestfs-actions.pod:6732 ../src/guestfs-actions.pod:6878
7643 #: ../src/guestfs-actions.pod:6902 ../src/guestfs-actions.pod:7565
7644 #: ../src/guestfs-actions.pod:7591 ../src/guestfs-actions.pod:7617
7645 #: ../src/guestfs-actions.pod:7636 ../src/guestfs-actions.pod:7722
7646 #: ../src/guestfs-actions.pod:7741 ../src/guestfs-actions.pod:7787
7647 #: ../src/guestfs-actions.pod:7806 ../fish/guestfish-actions.pod:592
7648 #: ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739
7649 #: ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925
7650 #: ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002
7651 #: ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495
7652 #: ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533
7653 #: ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558
7654 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3670
7655 #: ../fish/guestfish-actions.pod:3685 ../fish/guestfish-actions.pod:3761
7656 #: ../fish/guestfish-actions.pod:3778 ../fish/guestfish-actions.pod:3793
7657 #: ../fish/guestfish-actions.pod:4447 ../fish/guestfish-actions.pod:4493
7658 #: ../fish/guestfish-actions.pod:4578 ../fish/guestfish-actions.pod:4593
7659 #: ../fish/guestfish-actions.pod:4997 ../fish/guestfish-actions.pod:5015
7660 #: ../fish/guestfish-actions.pod:5032 ../fish/guestfish-actions.pod:5042
7661 #: ../fish/guestfish-actions.pod:5091 ../fish/guestfish-actions.pod:5101
7662 #: ../fish/guestfish-actions.pod:5130 ../fish/guestfish-actions.pod:5140
7663 msgid ""
7664 "Because of the message protocol, there is a transfer limit of somewhere "
7665 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7666 msgstr ""
7667
7668 #. type: textblock
7669 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3670
7670 #: ../src/guestfs-actions.pod:3752 ../src/guestfs-actions.pod:3769
7671 #: ../src/guestfs-actions.pod:3857 ../src/guestfs-actions.pod:4265
7672 #: ../src/guestfs-actions.pod:4279 ../src/guestfs-actions.pod:5644
7673 #: ../src/guestfs-actions.pod:5658 ../src/guestfs-actions.pod:7445
7674 #: ../src/guestfs-actions.pod:7459
7675 msgid "(Added in 0.4)"
7676 msgstr ""
7677
7678 #. type: =head2
7679 #: ../src/guestfs-actions.pod:889
7680 msgid "guestfs_checksum"
7681 msgstr ""
7682
7683 #. type: verbatim
7684 #: ../src/guestfs-actions.pod:891
7685 #, no-wrap
7686 msgid ""
7687 " char *\n"
7688 " guestfs_checksum (guestfs_h *g,\n"
7689 "                   const char *csumtype,\n"
7690 "                   const char *path);\n"
7691 "\n"
7692 msgstr ""
7693
7694 #. type: textblock
7695 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7696 msgid ""
7697 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7702 msgid ""
7703 "The type of checksum to compute is given by the C<csumtype> parameter which "
7704 "must have one of the following values:"
7705 msgstr ""
7706
7707 #. type: =item
7708 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7709 msgid "C<crc>"
7710 msgstr "C<crc>"
7711
7712 #. type: textblock
7713 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7714 msgid ""
7715 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7716 "C<cksum> command."
7717 msgstr ""
7718
7719 #. type: =item
7720 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7721 msgid "C<md5>"
7722 msgstr "C<md5>"
7723
7724 #. type: textblock
7725 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7726 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7727 msgstr ""
7728
7729 #. type: =item
7730 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7731 msgid "C<sha1>"
7732 msgstr "C<sha1>"
7733
7734 #. type: textblock
7735 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7736 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7737 msgstr ""
7738
7739 #. type: =item
7740 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7741 msgid "C<sha224>"
7742 msgstr "C<sha224>"
7743
7744 #. type: textblock
7745 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7746 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7747 msgstr ""
7748
7749 #. type: =item
7750 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7751 msgid "C<sha256>"
7752 msgstr "C<sha256>"
7753
7754 #. type: textblock
7755 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7756 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7757 msgstr ""
7758
7759 #. type: =item
7760 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7761 msgid "C<sha384>"
7762 msgstr "C<sha384>"
7763
7764 #. type: textblock
7765 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7766 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7767 msgstr ""
7768
7769 #. type: =item
7770 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7771 msgid "C<sha512>"
7772 msgstr "C<sha512>"
7773
7774 #. type: textblock
7775 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7776 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7777 msgstr ""
7778
7779 #. type: textblock
7780 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7781 msgid "The checksum is returned as a printable string."
7782 msgstr ""
7783
7784 #. type: textblock
7785 #: ../src/guestfs-actions.pod:937
7786 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7787 msgstr ""
7788
7789 #. type: textblock
7790 #: ../src/guestfs-actions.pod:939
7791 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7792 msgstr ""
7793
7794 #. type: textblock
7795 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252
7796 #: ../src/guestfs-actions.pod:2088 ../src/guestfs-actions.pod:3368
7797 #: ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3458
7798 #: ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:7148
7799 msgid "(Added in 1.0.2)"
7800 msgstr ""
7801
7802 #. type: =head2
7803 #: ../src/guestfs-actions.pod:946
7804 msgid "guestfs_checksum_device"
7805 msgstr ""
7806
7807 #. type: verbatim
7808 #: ../src/guestfs-actions.pod:948
7809 #, no-wrap
7810 msgid ""
7811 " char *\n"
7812 " guestfs_checksum_device (guestfs_h *g,\n"
7813 "                          const char *csumtype,\n"
7814 "                          const char *device);\n"
7815 "\n"
7816 msgstr ""
7817
7818 #. type: textblock
7819 #: ../src/guestfs-actions.pod:953
7820 msgid ""
7821 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7822 "device named C<device>.  For the types of checksums supported see the "
7823 "C<guestfs_checksum> command."
7824 msgstr ""
7825
7826 #. type: textblock
7827 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:5099
7828 #: ../src/guestfs-actions.pod:5234 ../src/guestfs-actions.pod:5271
7829 #: ../src/guestfs-actions.pod:5289 ../src/guestfs-actions.pod:5465
7830 #: ../src/guestfs-actions.pod:7057 ../src/guestfs-actions.pod:7071
7831 #: ../src/guestfs-actions.pod:7471
7832 msgid "(Added in 1.3.2)"
7833 msgstr ""
7834
7835 #. type: =head2
7836 #: ../src/guestfs-actions.pod:962
7837 msgid "guestfs_checksums_out"
7838 msgstr ""
7839
7840 #. type: verbatim
7841 #: ../src/guestfs-actions.pod:964
7842 #, no-wrap
7843 msgid ""
7844 " int\n"
7845 " guestfs_checksums_out (guestfs_h *g,\n"
7846 "                        const char *csumtype,\n"
7847 "                        const char *directory,\n"
7848 "                        const char *sumsfile);\n"
7849 "\n"
7850 msgstr ""
7851
7852 #. type: textblock
7853 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7854 msgid ""
7855 "This command computes the checksums of all regular files in C<directory> and "
7856 "then emits a list of those checksums to the local output file C<sumsfile>."
7857 msgstr ""
7858
7859 #. type: textblock
7860 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7861 msgid ""
7862 "This can be used for verifying the integrity of a virtual machine.  However "
7863 "to be properly secure you should pay attention to the output of the checksum "
7864 "command (it uses the ones from GNU coreutils).  In particular when the "
7865 "filename is not printable, coreutils uses a special backslash syntax.  For "
7866 "more information, see the GNU coreutils info file."
7867 msgstr ""
7868
7869 #. type: textblock
7870 #: ../src/guestfs-actions.pod:984
7871 msgid "(Added in 1.3.7)"
7872 msgstr ""
7873
7874 #. type: =head2
7875 #: ../src/guestfs-actions.pod:986
7876 msgid "guestfs_chmod"
7877 msgstr ""
7878
7879 #. type: verbatim
7880 #: ../src/guestfs-actions.pod:988
7881 #, no-wrap
7882 msgid ""
7883 " int\n"
7884 " guestfs_chmod (guestfs_h *g,\n"
7885 "                int mode,\n"
7886 "                const char *path);\n"
7887 "\n"
7888 msgstr ""
7889
7890 #. type: textblock
7891 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7892 msgid ""
7893 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7894 "supported."
7895 msgstr ""
7896
7897 #. type: textblock
7898 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7899 msgid ""
7900 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7901 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7902 "C<700>."
7903 msgstr ""
7904
7905 #. type: textblock
7906 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4516
7907 #: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:4744
7908 #: ../src/guestfs-actions.pod:4763 ../fish/guestfish-actions.pod:681
7909 #: ../fish/guestfish-actions.pod:3029 ../fish/guestfish-actions.pod:3168
7910 #: ../fish/guestfish-actions.pod:3178 ../fish/guestfish-actions.pod:3188
7911 msgid "The mode actually set is affected by the umask."
7912 msgstr ""
7913
7914 #. type: =head2
7915 #: ../src/guestfs-actions.pod:1006
7916 msgid "guestfs_chown"
7917 msgstr ""
7918
7919 #. type: verbatim
7920 #: ../src/guestfs-actions.pod:1008
7921 #, no-wrap
7922 msgid ""
7923 " int\n"
7924 " guestfs_chown (guestfs_h *g,\n"
7925 "                int owner,\n"
7926 "                int group,\n"
7927 "                const char *path);\n"
7928 "\n"
7929 msgstr ""
7930
7931 #. type: textblock
7932 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7933 msgid "Change the file owner to C<owner> and group to C<group>."
7934 msgstr ""
7935
7936 #. type: textblock
7937 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3587
7938 #: ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2464
7939 msgid ""
7940 "Only numeric uid and gid are supported.  If you want to use names, you will "
7941 "need to locate and parse the password file yourself (Augeas support makes "
7942 "this relatively easy)."
7943 msgstr ""
7944
7945 #. type: =head2
7946 #: ../src/guestfs-actions.pod:1024
7947 msgid "guestfs_command"
7948 msgstr ""
7949
7950 #. type: verbatim
7951 #: ../src/guestfs-actions.pod:1026
7952 #, no-wrap
7953 msgid ""
7954 " char *\n"
7955 " guestfs_command (guestfs_h *g,\n"
7956 "                  char *const *arguments);\n"
7957 "\n"
7958 msgstr ""
7959
7960 #. type: textblock
7961 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7962 msgid ""
7963 "This call runs a command from the guest filesystem.  The filesystem must be "
7964 "mounted, and must contain a compatible operating system (ie. something "
7965 "Linux, with the same or compatible processor architecture)."
7966 msgstr ""
7967
7968 #. type: textblock
7969 #: ../src/guestfs-actions.pod:1035
7970 msgid ""
7971 "The single parameter is an argv-style list of arguments.  The first element "
7972 "is the name of the program to run.  Subsequent elements are parameters.  The "
7973 "list must be non-empty (ie. must contain a program name).  Note that the "
7974 "command runs directly, and is I<not> invoked via the shell (see "
7975 "C<guestfs_sh>)."
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7980 msgid "The return value is anything printed to I<stdout> by the command."
7981 msgstr ""
7982
7983 #. type: textblock
7984 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7985 msgid ""
7986 "If the command returns a non-zero exit status, then this function returns an "
7987 "error message.  The error message string is the content of I<stderr> from "
7988 "the command."
7989 msgstr ""
7990
7991 #. type: textblock
7992 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7993 msgid ""
7994 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7995 "bin>.  If you require a program from another location, you should provide "
7996 "the full path in the first parameter."
7997 msgstr ""
7998
7999 #. type: textblock
8000 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
8001 msgid ""
8002 "Shared libraries and data files required by the program must be available on "
8003 "filesystems which are mounted in the correct places.  It is the caller's "
8004 "responsibility to ensure all filesystems that are needed are mounted at the "
8005 "right locations."
8006 msgstr ""
8007
8008 #. type: textblock
8009 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086
8010 #: ../src/guestfs-actions.pod:1551
8011 msgid "(Added in 0.9.1)"
8012 msgstr ""
8013
8014 #. type: =head2
8015 #: ../src/guestfs-actions.pod:1068
8016 msgid "guestfs_command_lines"
8017 msgstr ""
8018
8019 #. type: verbatim
8020 #: ../src/guestfs-actions.pod:1070
8021 #, no-wrap
8022 msgid ""
8023 " char **\n"
8024 " guestfs_command_lines (guestfs_h *g,\n"
8025 "                        char *const *arguments);\n"
8026 "\n"
8027 msgstr ""
8028
8029 #. type: textblock
8030 #: ../src/guestfs-actions.pod:1074
8031 msgid ""
8032 "This is the same as C<guestfs_command>, but splits the result into a list of "
8033 "lines."
8034 msgstr ""
8035
8036 #. type: textblock
8037 #: ../src/guestfs-actions.pod:1077
8038 msgid "See also: C<guestfs_sh_lines>"
8039 msgstr ""
8040
8041 #. type: =head2
8042 #: ../src/guestfs-actions.pod:1088
8043 msgid "guestfs_config"
8044 msgstr ""
8045
8046 #. type: verbatim
8047 #: ../src/guestfs-actions.pod:1090
8048 #, no-wrap
8049 msgid ""
8050 " int\n"
8051 " guestfs_config (guestfs_h *g,\n"
8052 "                 const char *qemuparam,\n"
8053 "                 const char *qemuvalue);\n"
8054 "\n"
8055 msgstr ""
8056
8057 #. type: textblock
8058 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
8059 msgid ""
8060 "This can be used to add arbitrary qemu command line parameters of the form "
8061 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8062 "setting some parameters which would interfere with parameters that we use."
8063 msgstr ""
8064
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
8067 msgid "The first character of C<param> string must be a C<-> (dash)."
8068 msgstr ""
8069
8070 #. type: textblock
8071 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
8072 msgid "C<value> can be NULL."
8073 msgstr ""
8074
8075 #. type: =head2
8076 #: ../src/guestfs-actions.pod:1108
8077 msgid "guestfs_copy_size"
8078 msgstr ""
8079
8080 #. type: verbatim
8081 #: ../src/guestfs-actions.pod:1110
8082 #, no-wrap
8083 msgid ""
8084 " int\n"
8085 " guestfs_copy_size (guestfs_h *g,\n"
8086 "                    const char *src,\n"
8087 "                    const char *dest,\n"
8088 "                    int64_t size);\n"
8089 "\n"
8090 msgstr ""
8091
8092 #. type: textblock
8093 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
8094 msgid ""
8095 "This command copies exactly C<size> bytes from one source device or file "
8096 "C<src> to another destination device or file C<dest>."
8097 msgstr ""
8098
8099 #. type: textblock
8100 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
8101 msgid ""
8102 "Note this will fail if the source is too short or if the destination is not "
8103 "large enough."
8104 msgstr ""
8105
8106 #. type: textblock
8107 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247
8108 #: ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323
8109 #: ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1722
8110 #: ../src/guestfs-actions.pod:3568 ../src/guestfs-actions.pod:7143
8111 #: ../src/guestfs-actions.pod:7177 ../src/guestfs-actions.pod:7658
8112 #: ../src/guestfs-actions.pod:7677
8113 msgid ""
8114 "This long-running command can generate progress notification messages so "
8115 "that the caller can display a progress bar or indicator.  To receive these "
8116 "messages, the caller must register a progress event callback.  See L<guestfs"
8117 "(3)/GUESTFS_EVENT_PROGRESS>."
8118 msgstr ""
8119
8120 #. type: textblock
8121 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4292
8122 #: ../src/guestfs-actions.pod:5671 ../src/guestfs-actions.pod:7378
8123 #: ../src/guestfs-actions.pod:7398 ../src/guestfs-actions.pod:7484
8124 msgid "(Added in 1.0.87)"
8125 msgstr ""
8126
8127 #. type: =head2
8128 #: ../src/guestfs-actions.pod:1131
8129 msgid "guestfs_cp"
8130 msgstr ""
8131
8132 #. type: verbatim
8133 #: ../src/guestfs-actions.pod:1133
8134 #, no-wrap
8135 msgid ""
8136 " int\n"
8137 " guestfs_cp (guestfs_h *g,\n"
8138 "             const char *src,\n"
8139 "             const char *dest);\n"
8140 "\n"
8141 msgstr ""
8142
8143 #. type: textblock
8144 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
8145 msgid ""
8146 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8147 "destination filename or destination directory."
8148 msgstr ""
8149
8150 #. type: textblock
8151 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157
8152 #: ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303
8153 #: ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:5046
8154 #: ../src/guestfs-actions.pod:5515
8155 msgid "(Added in 1.0.18)"
8156 msgstr ""
8157
8158 #. type: =head2
8159 #: ../src/guestfs-actions.pod:1145
8160 msgid "guestfs_cp_a"
8161 msgstr ""
8162
8163 #. type: verbatim
8164 #: ../src/guestfs-actions.pod:1147
8165 #, no-wrap
8166 msgid ""
8167 " int\n"
8168 " guestfs_cp_a (guestfs_h *g,\n"
8169 "               const char *src,\n"
8170 "               const char *dest);\n"
8171 "\n"
8172 msgstr ""
8173
8174 #. type: textblock
8175 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
8176 msgid ""
8177 "This copies a file or directory from C<src> to C<dest> recursively using the "
8178 "C<cp -a> command."
8179 msgstr ""
8180
8181 #. type: =head2
8182 #: ../src/guestfs-actions.pod:1159
8183 msgid "guestfs_dd"
8184 msgstr ""
8185
8186 #. type: verbatim
8187 #: ../src/guestfs-actions.pod:1161
8188 #, no-wrap
8189 msgid ""
8190 " int\n"
8191 " guestfs_dd (guestfs_h *g,\n"
8192 "             const char *src,\n"
8193 "             const char *dest);\n"
8194 "\n"
8195 msgstr ""
8196
8197 #. type: textblock
8198 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
8199 msgid ""
8200 "This command copies from one source device or file C<src> to another "
8201 "destination device or file C<dest>.  Normally you would use this to copy to "
8202 "or from a device or partition, for example to duplicate a filesystem."
8203 msgstr ""
8204
8205 #. type: textblock
8206 #: ../src/guestfs-actions.pod:1171
8207 msgid ""
8208 "If the destination is a device, it must be as large or larger than the "
8209 "source file or device, otherwise the copy will fail.  This command cannot do "
8210 "partial copies (see C<guestfs_copy_size>)."
8211 msgstr ""
8212
8213 #. type: =head2
8214 #: ../src/guestfs-actions.pod:1179
8215 msgid "guestfs_df"
8216 msgstr ""
8217
8218 #. type: verbatim
8219 #: ../src/guestfs-actions.pod:1181
8220 #, no-wrap
8221 msgid ""
8222 " char *\n"
8223 " guestfs_df (guestfs_h *g);\n"
8224 "\n"
8225 msgstr ""
8226
8227 #. type: textblock
8228 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
8229 msgid "This command runs the C<df> command to report disk space used."
8230 msgstr ""
8231
8232 #. type: textblock
8233 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
8234 msgid ""
8235 "This command is mostly useful for interactive sessions.  It is I<not> "
8236 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8237 "from programs."
8238 msgstr ""
8239
8240 #. type: textblock
8241 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210
8242 #: ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2291
8243 #: ../src/guestfs-actions.pod:2315 ../src/guestfs-actions.pod:2383
8244 #: ../src/guestfs-actions.pod:4402 ../src/guestfs-actions.pod:4946
8245 #: ../src/guestfs-actions.pod:6881 ../src/guestfs-actions.pod:6905
8246 #: ../src/guestfs-actions.pod:7524 ../src/guestfs-actions.pod:7537
8247 #: ../src/guestfs-actions.pod:7550
8248 msgid "(Added in 1.0.54)"
8249 msgstr ""
8250
8251 #. type: =head2
8252 #: ../src/guestfs-actions.pod:1195
8253 msgid "guestfs_df_h"
8254 msgstr ""
8255
8256 #. type: verbatim
8257 #: ../src/guestfs-actions.pod:1197
8258 #, no-wrap
8259 msgid ""
8260 " char *\n"
8261 " guestfs_df_h (guestfs_h *g);\n"
8262 "\n"
8263 msgstr ""
8264
8265 #. type: textblock
8266 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
8267 msgid ""
8268 "This command runs the C<df -h> command to report disk space used in human-"
8269 "readable format."
8270 msgstr ""
8271
8272 #. type: =head2
8273 #: ../src/guestfs-actions.pod:1212
8274 msgid "guestfs_dmesg"
8275 msgstr ""
8276
8277 #. type: verbatim
8278 #: ../src/guestfs-actions.pod:1214
8279 #, no-wrap
8280 msgid ""
8281 " char *\n"
8282 " guestfs_dmesg (guestfs_h *g);\n"
8283 "\n"
8284 msgstr ""
8285
8286 #. type: textblock
8287 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
8288 msgid ""
8289 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8290 "This is sometimes useful for extended debugging of problems."
8291 msgstr ""
8292
8293 #. type: textblock
8294 #: ../src/guestfs-actions.pod:1221
8295 msgid ""
8296 "Another way to get the same information is to enable verbose messages with "
8297 "C<guestfs_set_verbose> or by setting the environment variable "
8298 "C<LIBGUESTFS_DEBUG=1> before running the program."
8299 msgstr ""
8300
8301 #. type: =head2
8302 #: ../src/guestfs-actions.pod:1231
8303 msgid "guestfs_download"
8304 msgstr ""
8305
8306 #. type: verbatim
8307 #: ../src/guestfs-actions.pod:1233
8308 #, no-wrap
8309 msgid ""
8310 " int\n"
8311 " guestfs_download (guestfs_h *g,\n"
8312 "                   const char *remotefilename,\n"
8313 "                   const char *filename);\n"
8314 "\n"
8315 msgstr ""
8316
8317 #. type: textblock
8318 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263
8319 #: ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
8320 msgid ""
8321 "Download file C<remotefilename> and save it as C<filename> on the local "
8322 "machine."
8323 msgstr ""
8324
8325 #. type: textblock
8326 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:7137
8327 #: ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4751
8328 msgid "C<filename> can also be a named pipe."
8329 msgstr ""
8330
8331 #. type: textblock
8332 #: ../src/guestfs-actions.pod:1243
8333 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8334 msgstr ""
8335
8336 #. type: =head2
8337 #: ../src/guestfs-actions.pod:1254
8338 msgid "guestfs_download_offset"
8339 msgstr ""
8340
8341 #. type: verbatim
8342 #: ../src/guestfs-actions.pod:1256
8343 #, no-wrap
8344 msgid ""
8345 " int\n"
8346 " guestfs_download_offset (guestfs_h *g,\n"
8347 "                          const char *remotefilename,\n"
8348 "                          const char *filename,\n"
8349 "                          int64_t offset,\n"
8350 "                          int64_t size);\n"
8351 "\n"
8352 msgstr ""
8353
8354 #. type: textblock
8355 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
8356 msgid ""
8357 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8358 "region must be within the file or device)."
8359 msgstr ""
8360
8361 #. type: textblock
8362 #: ../src/guestfs-actions.pod:1269
8363 msgid ""
8364 "Note that there is no limit on the amount of data that can be downloaded "
8365 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8366 "full amount unless an error occurs."
8367 msgstr ""
8368
8369 #. type: textblock
8370 #: ../src/guestfs-actions.pod:1274
8371 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8372 msgstr ""
8373
8374 #. type: textblock
8375 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:7182
8376 msgid "(Added in 1.5.17)"
8377 msgstr ""
8378
8379 #. type: =head2
8380 #: ../src/guestfs-actions.pod:1285
8381 msgid "guestfs_drop_caches"
8382 msgstr ""
8383
8384 #. type: verbatim
8385 #: ../src/guestfs-actions.pod:1287
8386 #, no-wrap
8387 msgid ""
8388 " int\n"
8389 " guestfs_drop_caches (guestfs_h *g,\n"
8390 "                      int whattodrop);\n"
8391 "\n"
8392 msgstr ""
8393
8394 #. type: textblock
8395 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
8396 msgid ""
8397 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8398 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8399 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8400 msgstr ""
8401
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
8404 msgid "Setting C<whattodrop> to 3 should drop everything."
8405 msgstr ""
8406
8407 #. type: textblock
8408 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
8409 msgid ""
8410 "This automatically calls L<sync(2)> before the operation, so that the "
8411 "maximum guest memory is freed."
8412 msgstr ""
8413
8414 #. type: =head2
8415 #: ../src/guestfs-actions.pod:1305
8416 msgid "guestfs_du"
8417 msgstr ""
8418
8419 #. type: verbatim
8420 #: ../src/guestfs-actions.pod:1307
8421 #, no-wrap
8422 msgid ""
8423 " int64_t\n"
8424 " guestfs_du (guestfs_h *g,\n"
8425 "             const char *path);\n"
8426 "\n"
8427 msgstr ""
8428
8429 #. type: textblock
8430 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
8431 msgid ""
8432 "This command runs the C<du -s> command to estimate file space usage for "
8433 "C<path>."
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8438 msgid ""
8439 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8440 "estimate includes the contents of the directory and all subdirectories "
8441 "(recursively)."
8442 msgstr ""
8443
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8446 msgid ""
8447 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8448 msgstr ""
8449
8450 #. type: =head2
8451 #: ../src/guestfs-actions.pod:1330
8452 msgid "guestfs_e2fsck_f"
8453 msgstr ""
8454
8455 #. type: verbatim
8456 #: ../src/guestfs-actions.pod:1332
8457 #, no-wrap
8458 msgid ""
8459 " int\n"
8460 " guestfs_e2fsck_f (guestfs_h *g,\n"
8461 "                   const char *device);\n"
8462 "\n"
8463 msgstr ""
8464
8465 #. type: textblock
8466 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8467 msgid ""
8468 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8469 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8470 "clean (I<-f>)."
8471 msgstr ""
8472
8473 #. type: textblock
8474 #: ../src/guestfs-actions.pod:1340
8475 msgid ""
8476 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8477 "Normally you should use C<guestfs_fsck>."
8478 msgstr ""
8479
8480 #. type: textblock
8481 #: ../src/guestfs-actions.pod:1345
8482 msgid "(Added in 1.0.29)"
8483 msgstr ""
8484
8485 #. type: =head2
8486 #: ../src/guestfs-actions.pod:1347
8487 msgid "guestfs_echo_daemon"
8488 msgstr ""
8489
8490 #. type: verbatim
8491 #: ../src/guestfs-actions.pod:1349
8492 #, no-wrap
8493 msgid ""
8494 " char *\n"
8495 " guestfs_echo_daemon (guestfs_h *g,\n"
8496 "                      char *const *words);\n"
8497 "\n"
8498 msgstr ""
8499
8500 #. type: textblock
8501 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8502 msgid ""
8503 "This command concatenates the list of C<words> passed with single spaces "
8504 "between them and returns the resulting string."
8505 msgstr ""
8506
8507 #. type: textblock
8508 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8509 msgid "You can use this command to test the connection through to the daemon."
8510 msgstr ""
8511
8512 #. type: textblock
8513 #: ../src/guestfs-actions.pod:1358
8514 msgid "See also C<guestfs_ping_daemon>."
8515 msgstr ""
8516
8517 #. type: textblock
8518 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2099
8519 #: ../src/guestfs-actions.pod:6353
8520 msgid "(Added in 1.0.69)"
8521 msgstr ""
8522
8523 #. type: =head2
8524 #: ../src/guestfs-actions.pod:1365
8525 msgid "guestfs_egrep"
8526 msgstr ""
8527
8528 #. type: verbatim
8529 #: ../src/guestfs-actions.pod:1367
8530 #, no-wrap
8531 msgid ""
8532 " char **\n"
8533 " guestfs_egrep (guestfs_h *g,\n"
8534 "                const char *regex,\n"
8535 "                const char *path);\n"
8536 "\n"
8537 msgstr ""
8538
8539 #. type: textblock
8540 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8541 msgid ""
8542 "This calls the external C<egrep> program and returns the matching lines."
8543 msgstr ""
8544
8545 #. type: textblock
8546 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401
8547 #: ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504
8548 #: ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2229
8549 #: ../src/guestfs-actions.pod:2248 ../src/guestfs-actions.pod:2404
8550 #: ../src/guestfs-actions.pod:2417 ../src/guestfs-actions.pod:2432
8551 #: ../src/guestfs-actions.pod:2478 ../src/guestfs-actions.pod:2500
8552 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:3782
8553 #: ../src/guestfs-actions.pod:3796 ../src/guestfs-actions.pod:3809
8554 #: ../src/guestfs-actions.pod:3823 ../src/guestfs-actions.pod:4824
8555 #: ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:5898
8556 #: ../src/guestfs-actions.pod:6749 ../src/guestfs-actions.pod:6761
8557 #: ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6787
8558 #: ../src/guestfs-actions.pod:6809 ../src/guestfs-actions.pod:6822
8559 #: ../src/guestfs-actions.pod:6835 ../src/guestfs-actions.pod:6848
8560 #: ../src/guestfs-actions.pod:7620 ../src/guestfs-actions.pod:7639
8561 #: ../src/guestfs-actions.pod:7725 ../src/guestfs-actions.pod:7744
8562 #: ../src/guestfs-actions.pod:7790 ../src/guestfs-actions.pod:7809
8563 msgid "(Added in 1.0.66)"
8564 msgstr ""
8565
8566 #. type: =head2
8567 #: ../src/guestfs-actions.pod:1384
8568 msgid "guestfs_egrepi"
8569 msgstr ""
8570
8571 #. type: verbatim
8572 #: ../src/guestfs-actions.pod:1386
8573 #, no-wrap
8574 msgid ""
8575 " char **\n"
8576 " guestfs_egrepi (guestfs_h *g,\n"
8577 "                 const char *regex,\n"
8578 "                 const char *path);\n"
8579 "\n"
8580 msgstr ""
8581
8582 #. type: textblock
8583 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8584 msgid ""
8585 "This calls the external C<egrep -i> program and returns the matching lines."
8586 msgstr ""
8587
8588 #. type: =head2
8589 #: ../src/guestfs-actions.pod:1403
8590 msgid "guestfs_equal"
8591 msgstr ""
8592
8593 #. type: verbatim
8594 #: ../src/guestfs-actions.pod:1405
8595 #, no-wrap
8596 msgid ""
8597 " int\n"
8598 " guestfs_equal (guestfs_h *g,\n"
8599 "                const char *file1,\n"
8600 "                const char *file2);\n"
8601 "\n"
8602 msgstr ""
8603
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8606 msgid ""
8607 "This compares the two files C<file1> and C<file2> and returns true if their "
8608 "content is exactly equal, or false otherwise."
8609 msgstr ""
8610
8611 #. type: textblock
8612 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8613 msgid "The external L<cmp(1)> program is used for the comparison."
8614 msgstr ""
8615
8616 #. type: =head2
8617 #: ../src/guestfs-actions.pod:1419
8618 msgid "guestfs_exists"
8619 msgstr ""
8620
8621 #. type: verbatim
8622 #: ../src/guestfs-actions.pod:1421
8623 #, no-wrap
8624 msgid ""
8625 " int\n"
8626 " guestfs_exists (guestfs_h *g,\n"
8627 "                 const char *path);\n"
8628 "\n"
8629 msgstr ""
8630
8631 #. type: textblock
8632 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8633 msgid ""
8634 "This returns C<true> if and only if there is a file, directory (or anything) "
8635 "with the given C<path> name."
8636 msgstr ""
8637
8638 #. type: textblock
8639 #: ../src/guestfs-actions.pod:1428
8640 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8641 msgstr ""
8642
8643 #. type: =head2
8644 #: ../src/guestfs-actions.pod:1434
8645 msgid "guestfs_fallocate"
8646 msgstr ""
8647
8648 #. type: verbatim
8649 #: ../src/guestfs-actions.pod:1436
8650 #, no-wrap
8651 msgid ""
8652 " int\n"
8653 " guestfs_fallocate (guestfs_h *g,\n"
8654 "                    const char *path,\n"
8655 "                    int len);\n"
8656 "\n"
8657 msgstr ""
8658
8659 #. type: textblock
8660 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467
8661 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8662 msgid ""
8663 "This command preallocates a file (containing zero bytes) named C<path> of "
8664 "size C<len> bytes.  If the file exists already, it is overwritten."
8665 msgstr ""
8666
8667 #. type: textblock
8668 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8669 msgid ""
8670 "Do not confuse this with the guestfish-specific C<alloc> command which "
8671 "allocates a file in the host and attaches it as a device."
8672 msgstr ""
8673
8674 #. type: textblock
8675 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8676 msgid ""
8677 "This function is deprecated.  In new code, use the C<fallocate64> call "
8678 "instead."
8679 msgstr ""
8680
8681 #. type: =head2
8682 #: ../src/guestfs-actions.pod:1460
8683 msgid "guestfs_fallocate64"
8684 msgstr ""
8685
8686 #. type: verbatim
8687 #: ../src/guestfs-actions.pod:1462
8688 #, no-wrap
8689 msgid ""
8690 " int\n"
8691 " guestfs_fallocate64 (guestfs_h *g,\n"
8692 "                      const char *path,\n"
8693 "                      int64_t len);\n"
8694 "\n"
8695 msgstr ""
8696
8697 #. type: textblock
8698 #: ../src/guestfs-actions.pod:1471
8699 msgid ""
8700 "Note that this call allocates disk blocks for the file.  To create a sparse "
8701 "file use C<guestfs_truncate_size> instead."
8702 msgstr ""
8703
8704 #. type: textblock
8705 #: ../src/guestfs-actions.pod:1474
8706 msgid ""
8707 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8708 "oversight it only allowed 30 bit lengths to be specified, effectively "
8709 "limiting the maximum size of files created through that call to 1GB."
8710 msgstr ""
8711
8712 #. type: textblock
8713 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8714 msgid ""
8715 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8716 "commands which create a file in the host and attach it as a device."
8717 msgstr ""
8718
8719 #. type: textblock
8720 #: ../src/guestfs-actions.pod:1485
8721 msgid "(Added in 1.3.17)"
8722 msgstr ""
8723
8724 #. type: =head2
8725 #: ../src/guestfs-actions.pod:1487
8726 msgid "guestfs_fgrep"
8727 msgstr ""
8728
8729 #. type: verbatim
8730 #: ../src/guestfs-actions.pod:1489
8731 #, no-wrap
8732 msgid ""
8733 " char **\n"
8734 " guestfs_fgrep (guestfs_h *g,\n"
8735 "                const char *pattern,\n"
8736 "                const char *path);\n"
8737 "\n"
8738 msgstr ""
8739
8740 #. type: textblock
8741 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8742 msgid ""
8743 "This calls the external C<fgrep> program and returns the matching lines."
8744 msgstr ""
8745
8746 #. type: =head2
8747 #: ../src/guestfs-actions.pod:1506
8748 msgid "guestfs_fgrepi"
8749 msgstr ""
8750
8751 #. type: verbatim
8752 #: ../src/guestfs-actions.pod:1508
8753 #, no-wrap
8754 msgid ""
8755 " char **\n"
8756 " guestfs_fgrepi (guestfs_h *g,\n"
8757 "                 const char *pattern,\n"
8758 "                 const char *path);\n"
8759 "\n"
8760 msgstr ""
8761
8762 #. type: textblock
8763 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8764 msgid ""
8765 "This calls the external C<fgrep -i> program and returns the matching lines."
8766 msgstr ""
8767
8768 #. type: =head2
8769 #: ../src/guestfs-actions.pod:1525
8770 msgid "guestfs_file"
8771 msgstr ""
8772
8773 #. type: verbatim
8774 #: ../src/guestfs-actions.pod:1527
8775 #, no-wrap
8776 msgid ""
8777 " char *\n"
8778 " guestfs_file (guestfs_h *g,\n"
8779 "               const char *path);\n"
8780 "\n"
8781 msgstr ""
8782
8783 #. type: textblock
8784 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8785 msgid ""
8786 "This call uses the standard L<file(1)> command to determine the type or "
8787 "contents of the file."
8788 msgstr ""
8789
8790 #. type: textblock
8791 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8792 msgid ""
8793 "This call will also transparently look inside various types of compressed "
8794 "file."
8795 msgstr ""
8796
8797 #. type: textblock
8798 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8799 msgid ""
8800 "The exact command which runs is C<file -zb path>.  Note in particular that "
8801 "the filename is not prepended to the output (the I<-b> option)."
8802 msgstr ""
8803
8804 #. type: textblock
8805 #: ../src/guestfs-actions.pod:1541 ../fish/guestfish-actions.pod:1019
8806 msgid ""
8807 "The output depends on the output of the underlying L<file(1)> command and it "
8808 "can change in future in ways beyond our control.  In other words, the output "
8809 "is not guaranteed by the ABI."
8810 msgstr ""
8811
8812 #. type: textblock
8813 #: ../src/guestfs-actions.pod:1545
8814 msgid ""
8815 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8816 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8817 msgstr ""
8818
8819 #. type: =head2
8820 #: ../src/guestfs-actions.pod:1553
8821 msgid "guestfs_file_architecture"
8822 msgstr ""
8823
8824 #. type: verbatim
8825 #: ../src/guestfs-actions.pod:1555
8826 #, no-wrap
8827 msgid ""
8828 " char *\n"
8829 " guestfs_file_architecture (guestfs_h *g,\n"
8830 "                            const char *filename);\n"
8831 "\n"
8832 msgstr ""
8833
8834 #. type: textblock
8835 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1030
8836 msgid ""
8837 "This detects the architecture of the binary C<filename>, and returns it if "
8838 "known."
8839 msgstr ""
8840
8841 #. type: textblock
8842 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8843 msgid "Currently defined architectures are:"
8844 msgstr ""
8845
8846 #. type: =item
8847 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1037
8848 msgid "\"i386\""
8849 msgstr "\"i386\""
8850
8851 #. type: textblock
8852 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1039
8853 msgid ""
8854 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8855 "irrespective of the precise processor requirements of the binary."
8856 msgstr ""
8857
8858 #. type: =item
8859 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8860 msgid "\"x86_64\""
8861 msgstr "\"x86_64\""
8862
8863 #. type: textblock
8864 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1044
8865 msgid "64 bit x86-64."
8866 msgstr ""
8867
8868 #. type: =item
8869 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1046
8870 msgid "\"sparc\""
8871 msgstr ""
8872
8873 #. type: textblock
8874 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1048
8875 msgid "32 bit SPARC."
8876 msgstr ""
8877
8878 #. type: =item
8879 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1050
8880 msgid "\"sparc64\""
8881 msgstr ""
8882
8883 #. type: textblock
8884 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1052
8885 msgid "64 bit SPARC V9 and above."
8886 msgstr ""
8887
8888 #. type: =item
8889 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1054
8890 msgid "\"ia64\""
8891 msgstr "\"ia64\""
8892
8893 #. type: textblock
8894 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1056
8895 msgid "Intel Itanium."
8896 msgstr "Intel Itanium."
8897
8898 #. type: =item
8899 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1058
8900 msgid "\"ppc\""
8901 msgstr ""
8902
8903 #. type: textblock
8904 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1060
8905 msgid "32 bit Power PC."
8906 msgstr ""
8907
8908 #. type: =item
8909 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1062
8910 msgid "\"ppc64\""
8911 msgstr ""
8912
8913 #. type: textblock
8914 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1064
8915 msgid "64 bit Power PC."
8916 msgstr ""
8917
8918 #. type: textblock
8919 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1068
8920 msgid "Libguestfs may return other architecture strings in future."
8921 msgstr ""
8922
8923 #. type: textblock
8924 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1070
8925 msgid "The function works on at least the following types of files:"
8926 msgstr ""
8927
8928 #. type: textblock
8929 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1076
8930 msgid "many types of Un*x and Linux binary"
8931 msgstr ""
8932
8933 #. type: textblock
8934 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1080
8935 msgid "many types of Un*x and Linux shared library"
8936 msgstr ""
8937
8938 #. type: textblock
8939 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1084
8940 msgid "Windows Win32 and Win64 binaries"
8941 msgstr ""
8942
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1088
8945 msgid "Windows Win32 and Win64 DLLs"
8946 msgstr ""
8947
8948 #. type: textblock
8949 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1090
8950 msgid "Win32 binaries and DLLs return C<i386>."
8951 msgstr ""
8952
8953 #. type: textblock
8954 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1092
8955 msgid "Win64 binaries and DLLs return C<x86_64>."
8956 msgstr ""
8957
8958 #. type: textblock
8959 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1096
8960 msgid "Linux kernel modules"
8961 msgstr ""
8962
8963 #. type: textblock
8964 #: ../src/guestfs-actions.pod:1629 ../fish/guestfish-actions.pod:1100
8965 msgid "Linux new-style initrd images"
8966 msgstr ""
8967
8968 #. type: textblock
8969 #: ../src/guestfs-actions.pod:1633 ../fish/guestfish-actions.pod:1104
8970 msgid "some non-x86 Linux vmlinuz kernels"
8971 msgstr ""
8972
8973 #. type: textblock
8974 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1108
8975 msgid "What it can't do currently:"
8976 msgstr ""
8977
8978 #. type: textblock
8979 #: ../src/guestfs-actions.pod:1643 ../fish/guestfish-actions.pod:1114
8980 msgid "static libraries (libfoo.a)"
8981 msgstr ""
8982
8983 #. type: textblock
8984 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1118
8985 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:1651 ../fish/guestfish-actions.pod:1122
8990 msgid "x86 Linux vmlinuz kernels"
8991 msgstr ""
8992
8993 #. type: textblock
8994 #: ../src/guestfs-actions.pod:1653 ../fish/guestfish-actions.pod:1124
8995 msgid ""
8996 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8997 "compressed code, and are horribly hard to unpack.  If you want to find the "
8998 "architecture of a kernel, use the architecture of the associated initrd or "
8999 "kernel module(s) instead."
9000 msgstr ""
9001
9002 #. type: textblock
9003 #: ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826
9004 #: ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:2533
9005 #: ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2689
9006 #: ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2894
9007 #: ../src/guestfs-actions.pod:2934 ../src/guestfs-actions.pod:3009
9008 #: ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3339
9009 #: ../src/guestfs-actions.pod:3471
9010 msgid "(Added in 1.5.3)"
9011 msgstr ""
9012
9013 #. type: =head2
9014 #: ../src/guestfs-actions.pod:1665
9015 msgid "guestfs_filesize"
9016 msgstr ""
9017
9018 #. type: verbatim
9019 #: ../src/guestfs-actions.pod:1667
9020 #, no-wrap
9021 msgid ""
9022 " int64_t\n"
9023 " guestfs_filesize (guestfs_h *g,\n"
9024 "                   const char *file);\n"
9025 "\n"
9026 msgstr ""
9027
9028 #. type: textblock
9029 #: ../src/guestfs-actions.pod:1671 ../fish/guestfish-actions.pod:1135
9030 msgid "This command returns the size of C<file> in bytes."
9031 msgstr ""
9032
9033 #. type: textblock
9034 #: ../src/guestfs-actions.pod:1673
9035 msgid ""
9036 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9037 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9038 "devices, use C<guestfs_blockdev_getsize64>."
9039 msgstr ""
9040
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1679
9043 msgid "(Added in 1.0.82)"
9044 msgstr ""
9045
9046 #. type: =head2
9047 #: ../src/guestfs-actions.pod:1681
9048 msgid "guestfs_fill"
9049 msgstr ""
9050
9051 #. type: verbatim
9052 #: ../src/guestfs-actions.pod:1683
9053 #, no-wrap
9054 msgid ""
9055 " int\n"
9056 " guestfs_fill (guestfs_h *g,\n"
9057 "               int c,\n"
9058 "               int len,\n"
9059 "               const char *path);\n"
9060 "\n"
9061 msgstr ""
9062
9063 #. type: textblock
9064 #: ../src/guestfs-actions.pod:1689 ../fish/guestfish-actions.pod:1145
9065 msgid ""
9066 "This command creates a new file called C<path>.  The initial content of the "
9067 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9068 "[0..255]>."
9069 msgstr ""
9070
9071 #. type: textblock
9072 #: ../src/guestfs-actions.pod:1693
9073 msgid ""
9074 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9075 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9076 "bytes use C<guestfs_fill_pattern>."
9077 msgstr ""
9078
9079 #. type: textblock
9080 #: ../src/guestfs-actions.pod:1705
9081 msgid "(Added in 1.0.79)"
9082 msgstr ""
9083
9084 #. type: =head2
9085 #: ../src/guestfs-actions.pod:1707
9086 msgid "guestfs_fill_pattern"
9087 msgstr ""
9088
9089 #. type: verbatim
9090 #: ../src/guestfs-actions.pod:1709
9091 #, no-wrap
9092 msgid ""
9093 " int\n"
9094 " guestfs_fill_pattern (guestfs_h *g,\n"
9095 "                       const char *pattern,\n"
9096 "                       int len,\n"
9097 "                       const char *path);\n"
9098 "\n"
9099 msgstr ""
9100
9101 #. type: textblock
9102 #: ../src/guestfs-actions.pod:1715
9103 msgid ""
9104 "This function is like C<guestfs_fill> except that it creates a new file of "
9105 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9106 "pattern is truncated if necessary to ensure the length of the file is "
9107 "exactly C<len> bytes."
9108 msgstr ""
9109
9110 #. type: textblock
9111 #: ../src/guestfs-actions.pod:1727
9112 msgid "(Added in 1.3.12)"
9113 msgstr ""
9114
9115 #. type: =head2
9116 #: ../src/guestfs-actions.pod:1729
9117 msgid "guestfs_find"
9118 msgstr ""
9119
9120 #. type: verbatim
9121 #: ../src/guestfs-actions.pod:1731
9122 #, no-wrap
9123 msgid ""
9124 " char **\n"
9125 " guestfs_find (guestfs_h *g,\n"
9126 "               const char *directory);\n"
9127 "\n"
9128 msgstr ""
9129
9130 #. type: textblock
9131 #: ../src/guestfs-actions.pod:1735 ../fish/guestfish-actions.pod:1167
9132 msgid ""
9133 "This command lists out all files and directories, recursively, starting at "
9134 "C<directory>.  It is essentially equivalent to running the shell command "
9135 "C<find directory -print> but some post-processing happens on the output, "
9136 "described below."
9137 msgstr ""
9138
9139 #. type: textblock
9140 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1172
9141 msgid ""
9142 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9143 "structure was:"
9144 msgstr ""
9145
9146 #. type: verbatim
9147 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
9148 #, no-wrap
9149 msgid ""
9150 " /tmp/a\n"
9151 " /tmp/b\n"
9152 " /tmp/c/d\n"
9153 "\n"
9154 msgstr ""
9155
9156 #. type: textblock
9157 #: ../src/guestfs-actions.pod:1747
9158 msgid ""
9159 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9160 msgstr ""
9161
9162 #. type: verbatim
9163 #: ../src/guestfs-actions.pod:1750 ../fish/guestfish-actions.pod:1182
9164 #, no-wrap
9165 msgid ""
9166 " a\n"
9167 " b\n"
9168 " c\n"
9169 " c/d\n"
9170 "\n"
9171 msgstr ""
9172
9173 #. type: textblock
9174 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1187
9175 msgid "If C<directory> is not a directory, then this command returns an error."
9176 msgstr ""
9177
9178 #. type: textblock
9179 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
9180 msgid "The returned list is sorted."
9181 msgstr ""
9182
9183 #. type: textblock
9184 #: ../src/guestfs-actions.pod:1760
9185 msgid "See also C<guestfs_find0>."
9186 msgstr ""
9187
9188 #. type: textblock
9189 #: ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:4229
9190 #: ../src/guestfs-actions.pod:5933
9191 msgid "(Added in 1.0.27)"
9192 msgstr ""
9193
9194 #. type: =head2
9195 #: ../src/guestfs-actions.pod:1771
9196 msgid "guestfs_find0"
9197 msgstr ""
9198
9199 #. type: verbatim
9200 #: ../src/guestfs-actions.pod:1773
9201 #, no-wrap
9202 msgid ""
9203 " int\n"
9204 " guestfs_find0 (guestfs_h *g,\n"
9205 "                const char *directory,\n"
9206 "                const char *files);\n"
9207 "\n"
9208 msgstr ""
9209
9210 #. type: textblock
9211 #: ../src/guestfs-actions.pod:1778 ../fish/guestfish-actions.pod:1201
9212 msgid ""
9213 "This command lists out all files and directories, recursively, starting at "
9214 "C<directory>, placing the resulting list in the external file called "
9215 "C<files>."
9216 msgstr ""
9217
9218 #. type: textblock
9219 #: ../src/guestfs-actions.pod:1782
9220 msgid ""
9221 "This command works the same way as C<guestfs_find> with the following "
9222 "exceptions:"
9223 msgstr ""
9224
9225 #. type: textblock
9226 #: ../src/guestfs-actions.pod:1789 ../fish/guestfish-actions.pod:1212
9227 msgid "The resulting list is written to an external file."
9228 msgstr ""
9229
9230 #. type: textblock
9231 #: ../src/guestfs-actions.pod:1793 ../fish/guestfish-actions.pod:1216
9232 msgid ""
9233 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9234 "L<find(1)> option I<-print0>."
9235 msgstr ""
9236
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1221
9239 msgid "This command is not limited in the number of names that it can return."
9240 msgstr ""
9241
9242 #. type: textblock
9243 #: ../src/guestfs-actions.pod:1803 ../fish/guestfish-actions.pod:1226
9244 msgid "The result list is not sorted."
9245 msgstr ""
9246
9247 #. type: textblock
9248 #: ../src/guestfs-actions.pod:1809
9249 msgid "(Added in 1.0.74)"
9250 msgstr ""
9251
9252 #. type: =head2
9253 #: ../src/guestfs-actions.pod:1811
9254 msgid "guestfs_findfs_label"
9255 msgstr ""
9256
9257 #. type: verbatim
9258 #: ../src/guestfs-actions.pod:1813
9259 #, no-wrap
9260 msgid ""
9261 " char *\n"
9262 " guestfs_findfs_label (guestfs_h *g,\n"
9263 "                       const char *label);\n"
9264 "\n"
9265 msgstr ""
9266
9267 #. type: textblock
9268 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1236
9269 msgid ""
9270 "This command searches the filesystems and returns the one which has the "
9271 "given label.  An error is returned if no such filesystem can be found."
9272 msgstr ""
9273
9274 #. type: textblock
9275 #: ../src/guestfs-actions.pod:1821
9276 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9277 msgstr ""
9278
9279 #. type: =head2
9280 #: ../src/guestfs-actions.pod:1828
9281 msgid "guestfs_findfs_uuid"
9282 msgstr ""
9283
9284 #. type: verbatim
9285 #: ../src/guestfs-actions.pod:1830
9286 #, no-wrap
9287 msgid ""
9288 " char *\n"
9289 " guestfs_findfs_uuid (guestfs_h *g,\n"
9290 "                      const char *uuid);\n"
9291 "\n"
9292 msgstr ""
9293
9294 #. type: textblock
9295 #: ../src/guestfs-actions.pod:1834 ../fish/guestfish-actions.pod:1246
9296 msgid ""
9297 "This command searches the filesystems and returns the one which has the "
9298 "given UUID.  An error is returned if no such filesystem can be found."
9299 msgstr ""
9300
9301 #. type: textblock
9302 #: ../src/guestfs-actions.pod:1838
9303 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9304 msgstr ""
9305
9306 #. type: =head2
9307 #: ../src/guestfs-actions.pod:1845
9308 msgid "guestfs_fsck"
9309 msgstr ""
9310
9311 #. type: verbatim
9312 #: ../src/guestfs-actions.pod:1847
9313 #, no-wrap
9314 msgid ""
9315 " int\n"
9316 " guestfs_fsck (guestfs_h *g,\n"
9317 "               const char *fstype,\n"
9318 "               const char *device);\n"
9319 "\n"
9320 msgstr ""
9321
9322 #. type: textblock
9323 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1256
9324 msgid ""
9325 "This runs the filesystem checker (fsck) on C<device> which should have "
9326 "filesystem type C<fstype>."
9327 msgstr ""
9328
9329 #. type: textblock
9330 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
9331 msgid ""
9332 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9333 "codes from C<fsck>."
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:1864 ../fish/guestfish-actions.pod:1268
9338 msgid "Multiple status codes can be summed together."
9339 msgstr ""
9340
9341 #. type: textblock
9342 #: ../src/guestfs-actions.pod:1868 ../fish/guestfish-actions.pod:1272
9343 msgid ""
9344 "A non-zero return code can mean \"success\", for example if errors have been "
9345 "corrected on the filesystem."
9346 msgstr ""
9347
9348 #. type: textblock
9349 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1277
9350 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9351 msgstr ""
9352
9353 #. type: textblock
9354 #: ../src/guestfs-actions.pod:1878 ../fish/guestfish-actions.pod:1282
9355 msgid ""
9356 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9357 msgstr ""
9358
9359 #. type: textblock
9360 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:7663
9361 msgid "(Added in 1.0.16)"
9362 msgstr ""
9363
9364 #. type: =head2
9365 #: ../src/guestfs-actions.pod:1884
9366 msgid "guestfs_get_append"
9367 msgstr ""
9368
9369 #. type: verbatim
9370 #: ../src/guestfs-actions.pod:1886
9371 #, no-wrap
9372 msgid ""
9373 " const char *\n"
9374 " guestfs_get_append (guestfs_h *g);\n"
9375 "\n"
9376 msgstr ""
9377
9378 #. type: textblock
9379 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
9380 msgid ""
9381 "Return the additional kernel options which are added to the guest kernel "
9382 "command line."
9383 msgstr ""
9384
9385 #. type: textblock
9386 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
9387 msgid "If C<NULL> then no options are added."
9388 msgstr ""
9389
9390 #. type: textblock
9391 #: ../src/guestfs-actions.pod:1894
9392 msgid ""
9393 "This function returns a string which may be NULL.  There is no way to return "
9394 "an error from this function.  The string is owned by the guest handle and "
9395 "must I<not> be freed."
9396 msgstr ""
9397
9398 #. type: textblock
9399 #: ../src/guestfs-actions.pod:1898 ../src/guestfs-actions.pod:5611
9400 #: ../src/guestfs-actions.pod:6093 ../src/guestfs-actions.pod:6516
9401 #: ../src/guestfs-actions.pod:6535 ../src/guestfs-actions.pod:6551
9402 #: ../src/guestfs-actions.pod:6575 ../src/guestfs-actions.pod:7329
9403 #: ../src/guestfs-actions.pod:7344 ../src/guestfs-actions.pod:7706
9404 msgid "(Added in 1.0.26)"
9405 msgstr ""
9406
9407 #. type: =head2
9408 #: ../src/guestfs-actions.pod:1900
9409 msgid "guestfs_get_attach_method"
9410 msgstr ""
9411
9412 #. type: verbatim
9413 #: ../src/guestfs-actions.pod:1902
9414 #, no-wrap
9415 msgid ""
9416 " char *\n"
9417 " guestfs_get_attach_method (guestfs_h *g);\n"
9418 "\n"
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:1905
9423 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9424 msgstr ""
9425
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:6123
9428 msgid "(Added in 1.9.8)"
9429 msgstr ""
9430
9431 #. type: =head2
9432 #: ../src/guestfs-actions.pod:1912
9433 msgid "guestfs_get_autosync"
9434 msgstr ""
9435
9436 #. type: verbatim
9437 #: ../src/guestfs-actions.pod:1914
9438 #, no-wrap
9439 msgid ""
9440 " int\n"
9441 " guestfs_get_autosync (guestfs_h *g);\n"
9442 "\n"
9443 msgstr ""
9444
9445 #. type: textblock
9446 #: ../src/guestfs-actions.pod:1917 ../fish/guestfish-actions.pod:1303
9447 msgid "Get the autosync flag."
9448 msgstr ""
9449
9450 #. type: =head2
9451 #: ../src/guestfs-actions.pod:1923
9452 msgid "guestfs_get_direct"
9453 msgstr ""
9454
9455 #. type: verbatim
9456 #: ../src/guestfs-actions.pod:1925
9457 #, no-wrap
9458 msgid ""
9459 " int\n"
9460 " guestfs_get_direct (guestfs_h *g);\n"
9461 "\n"
9462 msgstr ""
9463
9464 #. type: textblock
9465 #: ../src/guestfs-actions.pod:1928 ../fish/guestfish-actions.pod:1309
9466 msgid "Return the direct appliance mode flag."
9467 msgstr ""
9468
9469 #. type: textblock
9470 #: ../src/guestfs-actions.pod:1932 ../src/guestfs-actions.pod:6164
9471 msgid "(Added in 1.0.72)"
9472 msgstr ""
9473
9474 #. type: =head2
9475 #: ../src/guestfs-actions.pod:1934
9476 msgid "guestfs_get_e2label"
9477 msgstr ""
9478
9479 #. type: verbatim
9480 #: ../src/guestfs-actions.pod:1936
9481 #, no-wrap
9482 msgid ""
9483 " char *\n"
9484 " guestfs_get_e2label (guestfs_h *g,\n"
9485 "                      const char *device);\n"
9486 "\n"
9487 msgstr ""
9488
9489 #. type: textblock
9490 #: ../src/guestfs-actions.pod:1940 ../fish/guestfish-actions.pod:1315
9491 msgid ""
9492 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9493 msgstr ""
9494
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1318
9497 msgid ""
9498 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9499 msgstr ""
9500
9501 #. type: textblock
9502 #: ../src/guestfs-actions.pod:1953 ../src/guestfs-actions.pod:1974
9503 #: ../src/guestfs-actions.pod:6182 ../src/guestfs-actions.pod:6201
9504 msgid "(Added in 1.0.15)"
9505 msgstr ""
9506
9507 #. type: =head2
9508 #: ../src/guestfs-actions.pod:1955
9509 msgid "guestfs_get_e2uuid"
9510 msgstr ""
9511
9512 #. type: verbatim
9513 #: ../src/guestfs-actions.pod:1957
9514 #, no-wrap
9515 msgid ""
9516 " char *\n"
9517 " guestfs_get_e2uuid (guestfs_h *g,\n"
9518 "                     const char *device);\n"
9519 "\n"
9520 msgstr ""
9521
9522 #. type: textblock
9523 #: ../src/guestfs-actions.pod:1961 ../fish/guestfish-actions.pod:1329
9524 msgid ""
9525 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9526 msgstr ""
9527
9528 #. type: textblock
9529 #: ../src/guestfs-actions.pod:1967 ../fish/guestfish-actions.pod:1332
9530 msgid ""
9531 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9532 msgstr ""
9533
9534 #. type: =head2
9535 #: ../src/guestfs-actions.pod:1976
9536 msgid "guestfs_get_memsize"
9537 msgstr ""
9538
9539 #. type: verbatim
9540 #: ../src/guestfs-actions.pod:1978
9541 #, no-wrap
9542 msgid ""
9543 " int\n"
9544 " guestfs_get_memsize (guestfs_h *g);\n"
9545 "\n"
9546 msgstr ""
9547
9548 #. type: textblock
9549 #: ../src/guestfs-actions.pod:1981 ../fish/guestfish-actions.pod:1343
9550 msgid ""
9551 "This gets the memory size in megabytes allocated to the qemu subprocess."
9552 msgstr ""
9553
9554 #. type: textblock
9555 #: ../src/guestfs-actions.pod:1984
9556 msgid ""
9557 "If C<guestfs_set_memsize> was not called on this handle, and if "
9558 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9559 "value for memsize."
9560 msgstr ""
9561
9562 #. type: textblock
9563 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2069
9564 #: ../src/guestfs-actions.pod:6217 ../src/guestfs-actions.pod:6324
9565 #: ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401
9566 #: ../fish/guestfish-actions.pod:4126 ../fish/guestfish-actions.pod:4213
9567 msgid ""
9568 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9569 msgstr ""
9570
9571 #. type: textblock
9572 #: ../src/guestfs-actions.pod:1993 ../src/guestfs-actions.pod:4520
9573 #: ../src/guestfs-actions.pod:4729 ../src/guestfs-actions.pod:4748
9574 #: ../src/guestfs-actions.pod:4767 ../src/guestfs-actions.pod:4779
9575 #: ../src/guestfs-actions.pod:4796 ../src/guestfs-actions.pod:4809
9576 #: ../src/guestfs-actions.pod:5836 ../src/guestfs-actions.pod:6222
9577 #: ../src/guestfs-actions.pod:6483 ../src/guestfs-actions.pod:7098
9578 msgid "(Added in 1.0.55)"
9579 msgstr ""
9580
9581 #. type: =head2
9582 #: ../src/guestfs-actions.pod:1995
9583 msgid "guestfs_get_network"
9584 msgstr ""
9585
9586 #. type: verbatim
9587 #: ../src/guestfs-actions.pod:1997
9588 #, no-wrap
9589 msgid ""
9590 " int\n"
9591 " guestfs_get_network (guestfs_h *g);\n"
9592 "\n"
9593 msgstr ""
9594
9595 #. type: textblock
9596 #: ../src/guestfs-actions.pod:2000 ../fish/guestfish-actions.pod:1357
9597 msgid "This returns the enable network flag."
9598 msgstr ""
9599
9600 #. type: textblock
9601 #: ../src/guestfs-actions.pod:2004 ../src/guestfs-actions.pod:6241
9602 msgid "(Added in 1.5.4)"
9603 msgstr ""
9604
9605 #. type: =head2
9606 #: ../src/guestfs-actions.pod:2006
9607 msgid "guestfs_get_path"
9608 msgstr ""
9609
9610 #. type: verbatim
9611 #: ../src/guestfs-actions.pod:2008
9612 #, no-wrap
9613 msgid ""
9614 " const char *\n"
9615 " guestfs_get_path (guestfs_h *g);\n"
9616 "\n"
9617 msgstr ""
9618
9619 #. type: textblock
9620 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1363
9621 msgid "Return the current search path."
9622 msgstr ""
9623
9624 #. type: textblock
9625 #: ../src/guestfs-actions.pod:2013 ../fish/guestfish-actions.pod:1365
9626 msgid ""
9627 "This is always non-NULL.  If it wasn't set already, then this will return "
9628 "the default path."
9629 msgstr ""
9630
9631 #. type: textblock
9632 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2045
9633 msgid ""
9634 "This function returns a string, or NULL on error.  The string is owned by "
9635 "the guest handle and must I<not> be freed."
9636 msgstr ""
9637
9638 #. type: =head2
9639 #: ../src/guestfs-actions.pod:2021
9640 msgid "guestfs_get_pid"
9641 msgstr ""
9642
9643 #. type: verbatim
9644 #: ../src/guestfs-actions.pod:2023
9645 #, no-wrap
9646 msgid ""
9647 " int\n"
9648 " guestfs_get_pid (guestfs_h *g);\n"
9649 "\n"
9650 msgstr ""
9651
9652 #. type: textblock
9653 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1374
9654 msgid ""
9655 "Return the process ID of the qemu subprocess.  If there is no qemu "
9656 "subprocess, then this will return an error."
9657 msgstr ""
9658
9659 #. type: textblock
9660 #: ../src/guestfs-actions.pod:2029 ../fish/guestfish-actions.pod:1377
9661 msgid "This is an internal call used for debugging and testing."
9662 msgstr ""
9663
9664 #. type: textblock
9665 #: ../src/guestfs-actions.pod:2033
9666 msgid "(Added in 1.0.56)"
9667 msgstr ""
9668
9669 #. type: =head2
9670 #: ../src/guestfs-actions.pod:2035
9671 msgid "guestfs_get_qemu"
9672 msgstr ""
9673
9674 #. type: verbatim
9675 #: ../src/guestfs-actions.pod:2037
9676 #, no-wrap
9677 msgid ""
9678 " const char *\n"
9679 " guestfs_get_qemu (guestfs_h *g);\n"
9680 "\n"
9681 msgstr ""
9682
9683 #. type: textblock
9684 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1383
9685 msgid "Return the current qemu binary."
9686 msgstr ""
9687
9688 #. type: textblock
9689 #: ../src/guestfs-actions.pod:2042 ../fish/guestfish-actions.pod:1385
9690 msgid ""
9691 "This is always non-NULL.  If it wasn't set already, then this will return "
9692 "the default qemu binary name."
9693 msgstr ""
9694
9695 #. type: textblock
9696 #: ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:6286
9697 msgid "(Added in 1.0.6)"
9698 msgstr ""
9699
9700 #. type: =head2
9701 #: ../src/guestfs-actions.pod:2050
9702 msgid "guestfs_get_recovery_proc"
9703 msgstr ""
9704
9705 #. type: verbatim
9706 #: ../src/guestfs-actions.pod:2052
9707 #, no-wrap
9708 msgid ""
9709 " int\n"
9710 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9711 "\n"
9712 msgstr ""
9713
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:2055 ../fish/guestfish-actions.pod:1392
9716 msgid "Return the recovery process enabled flag."
9717 msgstr ""
9718
9719 #. type: textblock
9720 #: ../src/guestfs-actions.pod:2059 ../src/guestfs-actions.pod:3593
9721 #: ../src/guestfs-actions.pod:3924 ../src/guestfs-actions.pod:4327
9722 #: ../src/guestfs-actions.pod:4359 ../src/guestfs-actions.pod:5541
9723 #: ../src/guestfs-actions.pod:5884 ../src/guestfs-actions.pod:6310
9724 #: ../src/guestfs-actions.pod:7001 ../src/guestfs-actions.pod:7021
9725 #: ../src/guestfs-actions.pod:7213
9726 msgid "(Added in 1.0.77)"
9727 msgstr ""
9728
9729 #. type: =head2
9730 #: ../src/guestfs-actions.pod:2061
9731 msgid "guestfs_get_selinux"
9732 msgstr ""
9733
9734 #. type: verbatim
9735 #: ../src/guestfs-actions.pod:2063
9736 #, no-wrap
9737 msgid ""
9738 " int\n"
9739 " guestfs_get_selinux (guestfs_h *g);\n"
9740 "\n"
9741 msgstr ""
9742
9743 #. type: textblock
9744 #: ../src/guestfs-actions.pod:2066
9745 msgid ""
9746 "This returns the current setting of the selinux flag which is passed to the "
9747 "appliance at boot time.  See C<guestfs_set_selinux>."
9748 msgstr ""
9749
9750 #. type: textblock
9751 #: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:2137
9752 #: ../src/guestfs-actions.pod:6329 ../src/guestfs-actions.pod:6387
9753 msgid "(Added in 1.0.67)"
9754 msgstr ""
9755
9756 #. type: =head2
9757 #: ../src/guestfs-actions.pod:2076
9758 msgid "guestfs_get_state"
9759 msgstr ""
9760
9761 #. type: verbatim
9762 #: ../src/guestfs-actions.pod:2078
9763 #, no-wrap
9764 msgid ""
9765 " int\n"
9766 " guestfs_get_state (guestfs_h *g);\n"
9767 "\n"
9768 msgstr ""
9769
9770 #. type: textblock
9771 #: ../src/guestfs-actions.pod:2081 ../fish/guestfish-actions.pod:1408
9772 msgid ""
9773 "This returns the current state as an opaque integer.  This is only useful "
9774 "for printing debug and internal error messages."
9775 msgstr ""
9776
9777 #. type: textblock
9778 #: ../src/guestfs-actions.pod:2084 ../src/guestfs-actions.pod:3364
9779 #: ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3454
9780 #: ../src/guestfs-actions.pod:3481 ../fish/guestfish-actions.pod:1411
9781 #: ../fish/guestfish-actions.pod:2331 ../fish/guestfish-actions.pod:2349
9782 #: ../fish/guestfish-actions.pod:2387 ../fish/guestfish-actions.pod:2403
9783 msgid "For more information on states, see L<guestfs(3)>."
9784 msgstr ""
9785
9786 #. type: =head2
9787 #: ../src/guestfs-actions.pod:2090
9788 msgid "guestfs_get_trace"
9789 msgstr ""
9790
9791 #. type: verbatim
9792 #: ../src/guestfs-actions.pod:2092
9793 #, no-wrap
9794 msgid ""
9795 " int\n"
9796 " guestfs_get_trace (guestfs_h *g);\n"
9797 "\n"
9798 msgstr ""
9799
9800 #. type: textblock
9801 #: ../src/guestfs-actions.pod:2095 ../fish/guestfish-actions.pod:1417
9802 msgid "Return the command trace flag."
9803 msgstr ""
9804
9805 #. type: =head2
9806 #: ../src/guestfs-actions.pod:2101
9807 msgid "guestfs_get_umask"
9808 msgstr ""
9809
9810 #. type: verbatim
9811 #: ../src/guestfs-actions.pod:2103
9812 #, no-wrap
9813 msgid ""
9814 " int\n"
9815 " guestfs_get_umask (guestfs_h *g);\n"
9816 "\n"
9817 msgstr ""
9818
9819 #. type: textblock
9820 #: ../src/guestfs-actions.pod:2106
9821 msgid ""
9822 "Return the current umask.  By default the umask is C<022> unless it has been "
9823 "set by calling C<guestfs_umask>."
9824 msgstr ""
9825
9826 #. type: =head2
9827 #: ../src/guestfs-actions.pod:2113
9828 msgid "guestfs_get_verbose"
9829 msgstr ""
9830
9831 #. type: verbatim
9832 #: ../src/guestfs-actions.pod:2115
9833 #, no-wrap
9834 msgid ""
9835 " int\n"
9836 " guestfs_get_verbose (guestfs_h *g);\n"
9837 "\n"
9838 msgstr ""
9839
9840 #. type: textblock
9841 #: ../src/guestfs-actions.pod:2118 ../fish/guestfish-actions.pod:1430
9842 msgid "This returns the verbose messages flag."
9843 msgstr ""
9844
9845 #. type: =head2
9846 #: ../src/guestfs-actions.pod:2124
9847 msgid "guestfs_getcon"
9848 msgstr ""
9849
9850 #. type: verbatim
9851 #: ../src/guestfs-actions.pod:2126
9852 #, no-wrap
9853 msgid ""
9854 " char *\n"
9855 " guestfs_getcon (guestfs_h *g);\n"
9856 "\n"
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2129 ../fish/guestfish-actions.pod:1436
9861 msgid "This gets the SELinux security context of the daemon."
9862 msgstr ""
9863
9864 #. type: textblock
9865 #: ../src/guestfs-actions.pod:2131
9866 msgid ""
9867 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9868 msgstr ""
9869
9870 #. type: =head2
9871 #: ../src/guestfs-actions.pod:2139
9872 msgid "guestfs_getxattr"
9873 msgstr ""
9874
9875 #. type: verbatim
9876 #: ../src/guestfs-actions.pod:2141
9877 #, no-wrap
9878 msgid ""
9879 " char *\n"
9880 " guestfs_getxattr (guestfs_h *g,\n"
9881 "                   const char *path,\n"
9882 "                   const char *name,\n"
9883 "                   size_t *size_r);\n"
9884 "\n"
9885 msgstr ""
9886
9887 #. type: textblock
9888 #: ../src/guestfs-actions.pod:2147
9889 msgid ""
9890 "Get a single extended attribute from file C<path> named C<name>.  This call "
9891 "follows symlinks.  If you want to lookup an extended attribute for the "
9892 "symlink itself, use C<guestfs_lgetxattr>."
9893 msgstr ""
9894
9895 #. type: textblock
9896 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:3607
9897 msgid ""
9898 "Normally it is better to get all extended attributes from a file in one go "
9899 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9900 "implementations are buggy and do not provide a way to list out attributes.  "
9901 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9902 "extended attributes you want in advance and call this function."
9903 msgstr ""
9904
9905 #. type: textblock
9906 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:3614
9907 #: ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2483
9908 msgid ""
9909 "Extended attribute values are blobs of binary data.  If there is no extended "
9910 "attribute named C<name>, this returns an error."
9911 msgstr ""
9912
9913 #. type: textblock
9914 #: ../src/guestfs-actions.pod:2161
9915 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9916 msgstr ""
9917
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:2163 ../src/guestfs-actions.pod:2354
9920 #: ../src/guestfs-actions.pod:2824 ../src/guestfs-actions.pod:3619
9921 #: ../src/guestfs-actions.pod:5534 ../src/guestfs-actions.pod:5560
9922 #: ../src/guestfs-actions.pod:5741
9923 msgid ""
9924 "This function returns a buffer, or NULL on error.  The size of the returned "
9925 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9926 "after use>."
9927 msgstr ""
9928
9929 #. type: textblock
9930 #: ../src/guestfs-actions.pod:2167 ../src/guestfs-actions.pod:3623
9931 msgid "(Added in 1.7.24)"
9932 msgstr ""
9933
9934 #. type: =head2
9935 #: ../src/guestfs-actions.pod:2169
9936 msgid "guestfs_getxattrs"
9937 msgstr ""
9938
9939 #. type: verbatim
9940 #: ../src/guestfs-actions.pod:2171
9941 #, no-wrap
9942 msgid ""
9943 " struct guestfs_xattr_list *\n"
9944 " guestfs_getxattrs (guestfs_h *g,\n"
9945 "                    const char *path);\n"
9946 "\n"
9947 msgstr ""
9948
9949 #. type: textblock
9950 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1465
9951 msgid ""
9952 "This call lists the extended attributes of the file or directory C<path>."
9953 msgstr ""
9954
9955 #. type: textblock
9956 #: ../src/guestfs-actions.pod:2178 ../fish/guestfish-actions.pod:1468
9957 msgid ""
9958 "At the system call level, this is a combination of the L<listxattr(2)> and "
9959 "L<getxattr(2)> calls."
9960 msgstr ""
9961
9962 #. type: textblock
9963 #: ../src/guestfs-actions.pod:2181
9964 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9965 msgstr ""
9966
9967 #. type: textblock
9968 #: ../src/guestfs-actions.pod:2183 ../src/guestfs-actions.pod:3635
9969 #: ../src/guestfs-actions.pod:4323
9970 msgid ""
9971 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9972 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9973 msgstr ""
9974
9975 #. type: textblock
9976 #: ../src/guestfs-actions.pod:2187 ../src/guestfs-actions.pod:3639
9977 #: ../src/guestfs-actions.pod:3838 ../src/guestfs-actions.pod:3874
9978 #: ../src/guestfs-actions.pod:5914 ../src/guestfs-actions.pod:6406
9979 #: ../src/guestfs-actions.pod:7771
9980 msgid "(Added in 1.0.59)"
9981 msgstr ""
9982
9983 #. type: =head2
9984 #: ../src/guestfs-actions.pod:2189
9985 msgid "guestfs_glob_expand"
9986 msgstr ""
9987
9988 #. type: verbatim
9989 #: ../src/guestfs-actions.pod:2191
9990 #, no-wrap
9991 msgid ""
9992 " char **\n"
9993 " guestfs_glob_expand (guestfs_h *g,\n"
9994 "                      const char *pattern);\n"
9995 "\n"
9996 msgstr ""
9997
9998 #. type: textblock
9999 #: ../src/guestfs-actions.pod:2195 ../fish/guestfish-actions.pod:1477
10000 msgid ""
10001 "This command searches for all the pathnames matching C<pattern> according to "
10002 "the wildcard expansion rules used by the shell."
10003 msgstr ""
10004
10005 #. type: textblock
10006 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1481
10007 msgid ""
10008 "If no paths match, then this returns an empty list (note: not an error)."
10009 msgstr ""
10010
10011 #. type: textblock
10012 #: ../src/guestfs-actions.pod:2202 ../fish/guestfish-actions.pod:1484
10013 msgid ""
10014 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10015 "GLOB_BRACE>.  See that manual page for more details."
10016 msgstr ""
10017
10018 #. type: textblock
10019 #: ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:6599
10020 #: ../src/guestfs-actions.pod:6616
10021 msgid "(Added in 1.0.50)"
10022 msgstr ""
10023
10024 #. type: =head2
10025 #: ../src/guestfs-actions.pod:2212
10026 msgid "guestfs_grep"
10027 msgstr ""
10028
10029 #. type: verbatim
10030 #: ../src/guestfs-actions.pod:2214
10031 #, no-wrap
10032 msgid ""
10033 " char **\n"
10034 " guestfs_grep (guestfs_h *g,\n"
10035 "               const char *regex,\n"
10036 "               const char *path);\n"
10037 "\n"
10038 msgstr ""
10039
10040 #. type: textblock
10041 #: ../src/guestfs-actions.pod:2219 ../fish/guestfish-actions.pod:1492
10042 msgid "This calls the external C<grep> program and returns the matching lines."
10043 msgstr ""
10044
10045 #. type: =head2
10046 #: ../src/guestfs-actions.pod:2231
10047 msgid "guestfs_grepi"
10048 msgstr ""
10049
10050 #. type: verbatim
10051 #: ../src/guestfs-actions.pod:2233
10052 #, no-wrap
10053 msgid ""
10054 " char **\n"
10055 " guestfs_grepi (guestfs_h *g,\n"
10056 "                const char *regex,\n"
10057 "                const char *path);\n"
10058 "\n"
10059 msgstr ""
10060
10061 #. type: textblock
10062 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1502
10063 msgid ""
10064 "This calls the external C<grep -i> program and returns the matching lines."
10065 msgstr ""
10066
10067 #. type: =head2
10068 #: ../src/guestfs-actions.pod:2250
10069 msgid "guestfs_grub_install"
10070 msgstr ""
10071
10072 #. type: verbatim
10073 #: ../src/guestfs-actions.pod:2252
10074 #, no-wrap
10075 msgid ""
10076 " int\n"
10077 " guestfs_grub_install (guestfs_h *g,\n"
10078 "                       const char *root,\n"
10079 "                       const char *device);\n"
10080 "\n"
10081 msgstr ""
10082
10083 #. type: textblock
10084 #: ../src/guestfs-actions.pod:2257 ../fish/guestfish-actions.pod:1512
10085 msgid ""
10086 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10087 "the root directory being C<root>."
10088 msgstr ""
10089
10090 #. type: textblock
10091 #: ../src/guestfs-actions.pod:2260 ../fish/guestfish-actions.pod:1515
10092 msgid ""
10093 "Note: If grub-install reports the error \"No suitable drive was found in the "
10094 "generated device map.\" it may be that you need to create a C</boot/grub/"
10095 "device.map> file first that contains the mapping between grub device names "
10096 "and Linux device names.  It is usually sufficient to create a file "
10097 "containing:"
10098 msgstr ""
10099
10100 #. type: verbatim
10101 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1522
10102 #, no-wrap
10103 msgid ""
10104 " (hd0) /dev/vda\n"
10105 "\n"
10106 msgstr ""
10107
10108 #. type: textblock
10109 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1524
10110 msgid "replacing C</dev/vda> with the name of the installation device."
10111 msgstr ""
10112
10113 #. type: textblock
10114 #: ../src/guestfs-actions.pod:2273
10115 msgid "(Added in 1.0.17)"
10116 msgstr ""
10117
10118 #. type: =head2
10119 #: ../src/guestfs-actions.pod:2275
10120 msgid "guestfs_head"
10121 msgstr ""
10122
10123 #. type: verbatim
10124 #: ../src/guestfs-actions.pod:2277
10125 #, no-wrap
10126 msgid ""
10127 " char **\n"
10128 " guestfs_head (guestfs_h *g,\n"
10129 "               const char *path);\n"
10130 "\n"
10131 msgstr ""
10132
10133 #. type: textblock
10134 #: ../src/guestfs-actions.pod:2281 ../fish/guestfish-actions.pod:1530
10135 msgid ""
10136 "This command returns up to the first 10 lines of a file as a list of strings."
10137 msgstr ""
10138
10139 #. type: =head2
10140 #: ../src/guestfs-actions.pod:2293
10141 msgid "guestfs_head_n"
10142 msgstr ""
10143
10144 #. type: verbatim
10145 #: ../src/guestfs-actions.pod:2295
10146 #, no-wrap
10147 msgid ""
10148 " char **\n"
10149 " guestfs_head_n (guestfs_h *g,\n"
10150 "                 int nrlines,\n"
10151 "                 const char *path);\n"
10152 "\n"
10153 msgstr ""
10154
10155 #. type: textblock
10156 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1540
10157 msgid ""
10158 "If the parameter C<nrlines> is a positive number, this returns the first "
10159 "C<nrlines> lines of the file C<path>."
10160 msgstr ""
10161
10162 #. type: textblock
10163 #: ../src/guestfs-actions.pod:2303 ../fish/guestfish-actions.pod:1543
10164 msgid ""
10165 "If the parameter C<nrlines> is a negative number, this returns lines from "
10166 "the file C<path>, excluding the last C<nrlines> lines."
10167 msgstr ""
10168
10169 #. type: textblock
10170 #: ../src/guestfs-actions.pod:2306 ../src/guestfs-actions.pod:6896
10171 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4591
10172 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10173 msgstr ""
10174
10175 #. type: =head2
10176 #: ../src/guestfs-actions.pod:2317
10177 msgid "guestfs_hexdump"
10178 msgstr ""
10179
10180 #. type: verbatim
10181 #: ../src/guestfs-actions.pod:2319
10182 #, no-wrap
10183 msgid ""
10184 " char *\n"
10185 " guestfs_hexdump (guestfs_h *g,\n"
10186 "                  const char *path);\n"
10187 "\n"
10188 msgstr ""
10189
10190 #. type: textblock
10191 #: ../src/guestfs-actions.pod:2323 ../fish/guestfish-actions.pod:1555
10192 msgid ""
10193 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10194 "readable, canonical hex dump of the file."
10195 msgstr ""
10196
10197 #. type: textblock
10198 #: ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:6680
10199 #: ../src/guestfs-actions.pod:6735
10200 msgid "(Added in 1.0.22)"
10201 msgstr ""
10202
10203 #. type: =head2
10204 #: ../src/guestfs-actions.pod:2334
10205 msgid "guestfs_initrd_cat"
10206 msgstr ""
10207
10208 #. type: verbatim
10209 #: ../src/guestfs-actions.pod:2336
10210 #, no-wrap
10211 msgid ""
10212 " char *\n"
10213 " guestfs_initrd_cat (guestfs_h *g,\n"
10214 "                     const char *initrdpath,\n"
10215 "                     const char *filename,\n"
10216 "                     size_t *size_r);\n"
10217 "\n"
10218 msgstr ""
10219
10220 #. type: textblock
10221 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1565
10222 msgid ""
10223 "This command unpacks the file C<filename> from the initrd file called "
10224 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10225 "character."
10226 msgstr ""
10227
10228 #. type: textblock
10229 #: ../src/guestfs-actions.pod:2346 ../fish/guestfish-actions.pod:1569
10230 msgid ""
10231 "For example, in guestfish you could use the following command to examine the "
10232 "boot script (usually called C</init>)  contained in a Linux initrd or "
10233 "initramfs image:"
10234 msgstr ""
10235
10236 #. type: verbatim
10237 #: ../src/guestfs-actions.pod:2350 ../fish/guestfish-actions.pod:1573
10238 #, no-wrap
10239 msgid ""
10240 " initrd-cat /boot/initrd-<version>.img init\n"
10241 "\n"
10242 msgstr ""
10243
10244 #. type: textblock
10245 #: ../src/guestfs-actions.pod:2352
10246 msgid "See also C<guestfs_initrd_list>."
10247 msgstr ""
10248
10249 #. type: =head2
10250 #: ../src/guestfs-actions.pod:2363
10251 msgid "guestfs_initrd_list"
10252 msgstr ""
10253
10254 #. type: verbatim
10255 #: ../src/guestfs-actions.pod:2365
10256 #, no-wrap
10257 msgid ""
10258 " char **\n"
10259 " guestfs_initrd_list (guestfs_h *g,\n"
10260 "                      const char *path);\n"
10261 "\n"
10262 msgstr ""
10263
10264 #. type: textblock
10265 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1584
10266 msgid "This command lists out files contained in an initrd."
10267 msgstr ""
10268
10269 #. type: textblock
10270 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1586
10271 msgid ""
10272 "The files are listed without any initial C</> character.  The files are "
10273 "listed in the order they appear (not necessarily alphabetical).  Directory "
10274 "names are listed as separate items."
10275 msgstr ""
10276
10277 #. type: textblock
10278 #: ../src/guestfs-actions.pod:2375 ../fish/guestfish-actions.pod:1590
10279 msgid ""
10280 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10281 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10282 "files)."
10283 msgstr ""
10284
10285 #. type: =head2
10286 #: ../src/guestfs-actions.pod:2385
10287 msgid "guestfs_inotify_add_watch"
10288 msgstr ""
10289
10290 #. type: verbatim
10291 #: ../src/guestfs-actions.pod:2387
10292 #, no-wrap
10293 msgid ""
10294 " int64_t\n"
10295 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10296 "                            const char *path,\n"
10297 "                            int mask);\n"
10298 "\n"
10299 msgstr ""
10300
10301 #. type: textblock
10302 #: ../src/guestfs-actions.pod:2392 ../fish/guestfish-actions.pod:1598
10303 msgid "Watch C<path> for the events listed in C<mask>."
10304 msgstr ""
10305
10306 #. type: textblock
10307 #: ../src/guestfs-actions.pod:2394 ../fish/guestfish-actions.pod:1600
10308 msgid ""
10309 "Note that if C<path> is a directory then events within that directory are "
10310 "watched, but this does I<not> happen recursively (in subdirectories)."
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:2398 ../fish/guestfish-actions.pod:1604
10315 msgid ""
10316 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10317 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10318 msgstr ""
10319
10320 #. type: =head2
10321 #: ../src/guestfs-actions.pod:2406
10322 msgid "guestfs_inotify_close"
10323 msgstr ""
10324
10325 #. type: verbatim
10326 #: ../src/guestfs-actions.pod:2408
10327 #, no-wrap
10328 msgid ""
10329 " int\n"
10330 " guestfs_inotify_close (guestfs_h *g);\n"
10331 "\n"
10332 msgstr ""
10333
10334 #. type: textblock
10335 #: ../src/guestfs-actions.pod:2411 ../fish/guestfish-actions.pod:1612
10336 msgid ""
10337 "This closes the inotify handle which was previously opened by inotify_init.  "
10338 "It removes all watches, throws away any pending events, and deallocates all "
10339 "resources."
10340 msgstr ""
10341
10342 #. type: =head2
10343 #: ../src/guestfs-actions.pod:2419
10344 msgid "guestfs_inotify_files"
10345 msgstr ""
10346
10347 #. type: verbatim
10348 #: ../src/guestfs-actions.pod:2421
10349 #, no-wrap
10350 msgid ""
10351 " char **\n"
10352 " guestfs_inotify_files (guestfs_h *g);\n"
10353 "\n"
10354 msgstr ""
10355
10356 #. type: textblock
10357 #: ../src/guestfs-actions.pod:2424
10358 msgid ""
10359 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10360 "returns a list of pathnames of objects that were touched.  The returned "
10361 "pathnames are sorted and deduplicated."
10362 msgstr ""
10363
10364 #. type: =head2
10365 #: ../src/guestfs-actions.pod:2434
10366 msgid "guestfs_inotify_init"
10367 msgstr ""
10368
10369 #. type: verbatim
10370 #: ../src/guestfs-actions.pod:2436
10371 #, no-wrap
10372 msgid ""
10373 " int\n"
10374 " guestfs_inotify_init (guestfs_h *g,\n"
10375 "                       int maxevents);\n"
10376 "\n"
10377 msgstr ""
10378
10379 #. type: textblock
10380 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1628
10381 msgid ""
10382 "This command creates a new inotify handle.  The inotify subsystem can be "
10383 "used to notify events which happen to objects in the guest filesystem."
10384 msgstr ""
10385
10386 #. type: textblock
10387 #: ../src/guestfs-actions.pod:2444
10388 msgid ""
10389 "C<maxevents> is the maximum number of events which will be queued up between "
10390 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10391 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10392 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10393 "throws away events, but records the fact that it threw them away by setting "
10394 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10395 "C<guestfs_inotify_read>)."
10396 msgstr ""
10397
10398 #. type: textblock
10399 #: ../src/guestfs-actions.pod:2454
10400 msgid ""
10401 "Before any events are generated, you have to add some watches to the "
10402 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10403 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10404 msgstr ""
10405
10406 #. type: textblock
10407 #: ../src/guestfs-actions.pod:2460
10408 msgid ""
10409 "Queued up events should be read periodically by calling "
10410 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10411 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10412 "often enough then you risk the internal queue overflowing."
10413 msgstr ""
10414
10415 #. type: textblock
10416 #: ../src/guestfs-actions.pod:2467
10417 msgid ""
10418 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10419 "This also removes any watches automatically."
10420 msgstr ""
10421
10422 #. type: textblock
10423 #: ../src/guestfs-actions.pod:2471 ../fish/guestfish-actions.pod:1659
10424 msgid ""
10425 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10426 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10427 "that there is one global inotify handle per libguestfs instance."
10428 msgstr ""
10429
10430 #. type: =head2
10431 #: ../src/guestfs-actions.pod:2480
10432 msgid "guestfs_inotify_read"
10433 msgstr ""
10434
10435 #. type: verbatim
10436 #: ../src/guestfs-actions.pod:2482
10437 #, no-wrap
10438 msgid ""
10439 " struct guestfs_inotify_event_list *\n"
10440 " guestfs_inotify_read (guestfs_h *g);\n"
10441 "\n"
10442 msgstr ""
10443
10444 #. type: textblock
10445 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1668
10446 msgid ""
10447 "Return the complete queue of events that have happened since the previous "
10448 "read call."
10449 msgstr ""
10450
10451 #. type: textblock
10452 #: ../src/guestfs-actions.pod:2488 ../fish/guestfish-actions.pod:1671
10453 msgid "If no events have happened, this returns an empty list."
10454 msgstr ""
10455
10456 #. type: textblock
10457 #: ../src/guestfs-actions.pod:2490 ../fish/guestfish-actions.pod:1673
10458 msgid ""
10459 "I<Note>: In order to make sure that all events have been read, you must call "
10460 "this function repeatedly until it returns an empty list.  The reason is that "
10461 "the call will read events up to the maximum appliance-to-host message size "
10462 "and leave remaining events in the queue."
10463 msgstr ""
10464
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:2496
10467 msgid ""
10468 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10469 "there was an error.  I<The caller must call "
10470 "C<guestfs_free_inotify_event_list> after use>."
10471 msgstr ""
10472
10473 #. type: =head2
10474 #: ../src/guestfs-actions.pod:2502
10475 msgid "guestfs_inotify_rm_watch"
10476 msgstr ""
10477
10478 #. type: verbatim
10479 #: ../src/guestfs-actions.pod:2504
10480 #, no-wrap
10481 msgid ""
10482 " int\n"
10483 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10484 "                           int wd);\n"
10485 "\n"
10486 msgstr ""
10487
10488 #. type: textblock
10489 #: ../src/guestfs-actions.pod:2508
10490 msgid ""
10491 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10492 msgstr ""
10493
10494 #. type: =head2
10495 #: ../src/guestfs-actions.pod:2515
10496 msgid "guestfs_inspect_get_arch"
10497 msgstr ""
10498
10499 #. type: verbatim
10500 #: ../src/guestfs-actions.pod:2517
10501 #, no-wrap
10502 msgid ""
10503 " char *\n"
10504 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10505 "                           const char *root);\n"
10506 "\n"
10507 msgstr ""
10508
10509 #. type: textblock
10510 #: ../src/guestfs-actions.pod:2521
10511 msgid ""
10512 "This returns the architecture of the inspected operating system.  The "
10513 "possible return values are listed under C<guestfs_file_architecture>."
10514 msgstr ""
10515
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1694
10518 msgid ""
10519 "If the architecture could not be determined, then the string C<unknown> is "
10520 "returned."
10521 msgstr ""
10522
10523 #. type: textblock
10524 #: ../src/guestfs-actions.pod:2528 ../src/guestfs-actions.pod:2618
10525 #: ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2741
10526 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2955
10527 #: ../src/guestfs-actions.pod:2983 ../src/guestfs-actions.pod:3004
10528 #: ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3097
10529 #: ../src/guestfs-actions.pod:3117 ../src/guestfs-actions.pod:3137
10530 #: ../src/guestfs-actions.pod:3154 ../src/guestfs-actions.pod:3170
10531 #: ../src/guestfs-actions.pod:3188 ../src/guestfs-actions.pod:3290
10532 #: ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:1697
10533 #: ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1859
10534 #: ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:1955
10535 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2037
10536 #: ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2091
10537 #: ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2136
10538 #: ../fish/guestfish-actions.pod:2149 ../fish/guestfish-actions.pod:2159
10539 #: ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2181
10540 #: ../fish/guestfish-actions.pod:2277 ../fish/guestfish-actions.pod:2311
10541 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10542 msgstr ""
10543
10544 #. type: =head2
10545 #: ../src/guestfs-actions.pod:2535
10546 msgid "guestfs_inspect_get_distro"
10547 msgstr ""
10548
10549 #. type: verbatim
10550 #: ../src/guestfs-actions.pod:2537
10551 #, no-wrap
10552 msgid ""
10553 " char *\n"
10554 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10555 "                             const char *root);\n"
10556 "\n"
10557 msgstr ""
10558
10559 #. type: textblock
10560 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1703
10561 msgid ""
10562 "This returns the distro (distribution) of the inspected operating system."
10563 msgstr ""
10564
10565 #. type: textblock
10566 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1706
10567 msgid "Currently defined distros are:"
10568 msgstr ""
10569
10570 #. type: =item
10571 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1710
10572 msgid "\"archlinux\""
10573 msgstr "\"archlinux\""
10574
10575 #. type: textblock
10576 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1712
10577 msgid "Arch Linux."
10578 msgstr "Arch Linux."
10579
10580 #. type: =item
10581 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1714
10582 #, fuzzy
10583 #| msgid "\"gentoo\""
10584 msgid "\"centos\""
10585 msgstr "\"gentoo\""
10586
10587 #. type: textblock
10588 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1716
10589 msgid "CentOS."
10590 msgstr ""
10591
10592 #. type: =item
10593 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1718
10594 msgid "\"debian\""
10595 msgstr "\"debian\""
10596
10597 #. type: textblock
10598 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1720
10599 msgid "Debian."
10600 msgstr "Debian."
10601
10602 #. type: =item
10603 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1722
10604 msgid "\"fedora\""
10605 msgstr "\"fedora\""
10606
10607 #. type: textblock
10608 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1724
10609 msgid "Fedora."
10610 msgstr "Fedora."
10611
10612 #. type: =item
10613 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1726
10614 msgid "\"gentoo\""
10615 msgstr "\"gentoo\""
10616
10617 #. type: textblock
10618 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1728
10619 msgid "Gentoo."
10620 msgstr "Gentoo."
10621
10622 #. type: =item
10623 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1730
10624 msgid "\"linuxmint\""
10625 msgstr "\"linuxmint\""
10626
10627 #. type: textblock
10628 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1732
10629 msgid "Linux Mint."
10630 msgstr "Linux Mint."
10631
10632 #. type: =item
10633 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1734
10634 msgid "\"mandriva\""
10635 msgstr "\"mandriva\""
10636
10637 #. type: textblock
10638 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1736
10639 msgid "Mandriva."
10640 msgstr "Mandriva."
10641
10642 #. type: =item
10643 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1738
10644 msgid "\"meego\""
10645 msgstr "\"meego\""
10646
10647 #. type: textblock
10648 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1740
10649 msgid "MeeGo."
10650 msgstr "MeeGo."
10651
10652 #. type: =item
10653 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1742
10654 msgid "\"pardus\""
10655 msgstr "\"pardus\""
10656
10657 #. type: textblock
10658 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1744
10659 msgid "Pardus."
10660 msgstr "Pardus."
10661
10662 #. type: =item
10663 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1746
10664 msgid "\"redhat-based\""
10665 msgstr "\"redhat-based\""
10666
10667 #. type: textblock
10668 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1748
10669 msgid "Some Red Hat-derived distro."
10670 msgstr "Дистрибутив, що походить від Red Hat."
10671
10672 #. type: =item
10673 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1750
10674 msgid "\"rhel\""
10675 msgstr "\"rhel\""
10676
10677 #. type: textblock
10678 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1752
10679 #, fuzzy
10680 #| msgid "Red Hat Enterprise Linux and some derivatives."
10681 msgid "Red Hat Enterprise Linux."
10682 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10683
10684 #. type: =item
10685 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1754
10686 msgid "\"scientificlinux\""
10687 msgstr ""
10688
10689 #. type: textblock
10690 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1756
10691 msgid "Scientific Linux."
10692 msgstr ""
10693
10694 #. type: =item
10695 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1758
10696 msgid "\"slackware\""
10697 msgstr ""
10698
10699 #. type: textblock
10700 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1760
10701 msgid "Slackware."
10702 msgstr ""
10703
10704 #. type: =item
10705 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1762
10706 msgid "\"ubuntu\""
10707 msgstr "\"ubuntu\""
10708
10709 #. type: textblock
10710 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1764
10711 msgid "Ubuntu."
10712 msgstr "Ubuntu."
10713
10714 #. type: =item
10715 #: ../src/guestfs-actions.pod:2604 ../src/guestfs-actions.pod:2713
10716 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:1766
10717 #: ../fish/guestfish-actions.pod:1850 ../fish/guestfish-actions.pod:2114
10718 msgid "\"unknown\""
10719 msgstr "\"unknown\""
10720
10721 #. type: textblock
10722 #: ../src/guestfs-actions.pod:2606 ../fish/guestfish-actions.pod:1768
10723 msgid "The distro could not be determined."
10724 msgstr "Дистрибутив, тип якого не вдалося визначити."
10725
10726 #. type: =item
10727 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:3080
10728 #: ../fish/guestfish-actions.pod:1770 ../fish/guestfish-actions.pod:2106
10729 msgid "\"windows\""
10730 msgstr "\"windows\""
10731
10732 #. type: textblock
10733 #: ../src/guestfs-actions.pod:2610 ../fish/guestfish-actions.pod:1772
10734 msgid ""
10735 "Windows does not have distributions.  This string is returned if the OS type "
10736 "is Windows."
10737 msgstr ""
10738
10739 #. type: textblock
10740 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:2719
10741 #: ../src/guestfs-actions.pod:3094 ../fish/guestfish-actions.pod:1777
10742 #: ../fish/guestfish-actions.pod:1856 ../fish/guestfish-actions.pod:2120
10743 msgid ""
10744 "Future versions of libguestfs may return other strings here.  The caller "
10745 "should be prepared to handle any string."
10746 msgstr ""
10747
10748 #. type: =head2
10749 #: ../src/guestfs-actions.pod:2625
10750 msgid "guestfs_inspect_get_drive_mappings"
10751 msgstr ""
10752
10753 #. type: verbatim
10754 #: ../src/guestfs-actions.pod:2627
10755 #, no-wrap
10756 msgid ""
10757 " char **\n"
10758 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10759 "                                     const char *root);\n"
10760 "\n"
10761 msgstr ""
10762
10763 #. type: textblock
10764 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1786
10765 msgid ""
10766 "This call is useful for Windows which uses a primitive system of assigning "
10767 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10768 "Windows Registry to find out how disks/partitions are mapped to drive "
10769 "letters, and returns a hash table as in the example below:"
10770 msgstr ""
10771
10772 #. type: verbatim
10773 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1792
10774 #, no-wrap
10775 msgid ""
10776 " C      =>     /dev/vda2\n"
10777 " E      =>     /dev/vdb1\n"
10778 " F      =>     /dev/vdc1\n"
10779 "\n"
10780 msgstr ""
10781
10782 #. type: textblock
10783 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1796
10784 msgid ""
10785 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10786 "and just contains the drive letter, without the customary colon separator "
10787 "character."
10788 msgstr ""
10789
10790 #. type: textblock
10791 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1800
10792 msgid ""
10793 "In future we may support other operating systems that also used drive "
10794 "letters, but the keys for those might not be case insensitive and might be "
10795 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10796 "C<h1> etc."
10797 msgstr ""
10798
10799 #. type: textblock
10800 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1805
10801 msgid ""
10802 "For Windows guests, currently only hard drive mappings are returned.  "
10803 "Removable disks (eg. DVD-ROMs) are ignored."
10804 msgstr ""
10805
10806 #. type: textblock
10807 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1808
10808 msgid ""
10809 "For guests that do not use drive mappings, or if the drive mappings could "
10810 "not be determined, this returns an empty hash table."
10811 msgstr ""
10812
10813 #. type: textblock
10814 #: ../src/guestfs-actions.pod:2656
10815 msgid ""
10816 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10817 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10818 msgstr ""
10819
10820 #. type: textblock
10821 #: ../src/guestfs-actions.pod:2660 ../src/guestfs-actions.pod:2928
10822 #: ../src/guestfs-actions.pod:3726 ../src/guestfs-actions.pod:5008
10823 #: ../src/guestfs-actions.pod:7037
10824 msgid ""
10825 "This function returns a NULL-terminated array of strings, or NULL if there "
10826 "was an error.  The array of strings will always have length C<2n+1>, where "
10827 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10828 "caller must free the strings and the array after use>."
10829 msgstr ""
10830
10831 #. type: textblock
10832 #: ../src/guestfs-actions.pod:2666 ../src/guestfs-actions.pod:3122
10833 msgid "(Added in 1.9.17)"
10834 msgstr ""
10835
10836 #. type: =head2
10837 #: ../src/guestfs-actions.pod:2668
10838 msgid "guestfs_inspect_get_filesystems"
10839 msgstr ""
10840
10841 #. type: verbatim
10842 #: ../src/guestfs-actions.pod:2670
10843 #, no-wrap
10844 msgid ""
10845 " char **\n"
10846 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10847 "                                  const char *root);\n"
10848 "\n"
10849 msgstr ""
10850
10851 #. type: textblock
10852 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1819
10853 msgid ""
10854 "This returns a list of all the filesystems that we think are associated with "
10855 "this operating system.  This includes the root filesystem, other ordinary "
10856 "filesystems, and non-mounted devices like swap partitions."
10857 msgstr ""
10858
10859 #. type: textblock
10860 #: ../src/guestfs-actions.pod:2679 ../fish/guestfish-actions.pod:1824
10861 msgid ""
10862 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10863 "to be shared between operating systems."
10864 msgstr ""
10865
10866 #. type: textblock
10867 #: ../src/guestfs-actions.pod:2682
10868 msgid ""
10869 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10870 "C<guestfs_inspect_get_mountpoints>."
10871 msgstr ""
10872
10873 #. type: =head2
10874 #: ../src/guestfs-actions.pod:2691
10875 msgid "guestfs_inspect_get_format"
10876 msgstr ""
10877
10878 #. type: verbatim
10879 #: ../src/guestfs-actions.pod:2693
10880 #, no-wrap
10881 msgid ""
10882 " char *\n"
10883 " guestfs_inspect_get_format (guestfs_h *g,\n"
10884 "                             const char *root);\n"
10885 "\n"
10886 msgstr ""
10887
10888 #. type: textblock
10889 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1834
10890 msgid ""
10891 "This returns the format of the inspected operating system.  You can use it "
10892 "to detect install images, live CDs and similar."
10893 msgstr ""
10894
10895 #. type: textblock
10896 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1837
10897 msgid "Currently defined formats are:"
10898 msgstr ""
10899
10900 #. type: =item
10901 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1841
10902 msgid "\"installed\""
10903 msgstr "\"installed\""
10904
10905 #. type: textblock
10906 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1843
10907 msgid "This is an installed operating system."
10908 msgstr "Це встановлена операційна система."
10909
10910 #. type: =item
10911 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1845
10912 msgid "\"installer\""
10913 msgstr ""
10914
10915 #. type: textblock
10916 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1847
10917 msgid ""
10918 "The disk image being inspected is not an installed operating system, but a "
10919 "I<bootable> install disk, live CD, or similar."
10920 msgstr ""
10921
10922 #. type: textblock
10923 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1852
10924 msgid "The format of this disk image is not known."
10925 msgstr ""
10926
10927 #. type: textblock
10928 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:3158
10929 #: ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3192
10930 #: ../src/guestfs-actions.pod:5952
10931 msgid "(Added in 1.9.4)"
10932 msgstr ""
10933
10934 #. type: =head2
10935 #: ../src/guestfs-actions.pod:2729
10936 msgid "guestfs_inspect_get_hostname"
10937 msgstr ""
10938
10939 #. type: verbatim
10940 #: ../src/guestfs-actions.pod:2731
10941 #, no-wrap
10942 msgid ""
10943 " char *\n"
10944 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10945 "                               const char *root);\n"
10946 "\n"
10947 msgstr ""
10948
10949 #. type: textblock
10950 #: ../src/guestfs-actions.pod:2735 ../fish/guestfish-actions.pod:1865
10951 msgid ""
10952 "This function returns the hostname of the operating system as found by "
10953 "inspection of the guest's configuration files."
10954 msgstr ""
10955
10956 #. type: textblock
10957 #: ../src/guestfs-actions.pod:2738 ../fish/guestfish-actions.pod:1868
10958 msgid ""
10959 "If the hostname could not be determined, then the string C<unknown> is "
10960 "returned."
10961 msgstr ""
10962
10963 #. type: textblock
10964 #: ../src/guestfs-actions.pod:2746
10965 msgid "(Added in 1.7.9)"
10966 msgstr ""
10967
10968 #. type: =head2
10969 #: ../src/guestfs-actions.pod:2748
10970 msgid "guestfs_inspect_get_icon"
10971 msgstr ""
10972
10973 #. type: verbatim
10974 #: ../src/guestfs-actions.pod:2750
10975 #, no-wrap
10976 msgid ""
10977 " char *\n"
10978 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10979 "                           const char *root,\n"
10980 "                           size_t *size_r,\n"
10981 "                           ...);\n"
10982 "\n"
10983 msgstr ""
10984
10985 #. type: verbatim
10986 #: ../src/guestfs-actions.pod:2761
10987 #, no-wrap
10988 msgid ""
10989 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10990 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10991 "\n"
10992 msgstr ""
10993
10994 #. type: textblock
10995 #: ../src/guestfs-actions.pod:2764 ../fish/guestfish-actions.pod:1877
10996 msgid ""
10997 "This function returns an icon corresponding to the inspected operating "
10998 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10999 "to PNG if necessary)."
11000 msgstr ""
11001
11002 #. type: textblock
11003 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1881
11004 msgid ""
11005 "If it was not possible to get an icon this function returns a zero-length "
11006 "(non-NULL) buffer.  I<Callers must check for this case>."
11007 msgstr ""
11008
11009 #. type: textblock
11010 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1884
11011 msgid ""
11012 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11013 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11014 "this file will be returned.  You can disable favicons by passing the "
11015 "optional C<favicon> boolean as false (default is true)."
11016 msgstr ""
11017
11018 #. type: textblock
11019 #: ../src/guestfs-actions.pod:2777 ../fish/guestfish-actions.pod:1890
11020 msgid ""
11021 "If finding the favicon fails, then we look in other places in the guest for "
11022 "a suitable icon."
11023 msgstr ""
11024
11025 #. type: textblock
11026 #: ../src/guestfs-actions.pod:2780 ../fish/guestfish-actions.pod:1893
11027 msgid ""
11028 "If the optional C<highquality> boolean is true then only high quality icons "
11029 "are returned, which means only icons of high resolution with an alpha "
11030 "channel.  The default (false) is to return any icon we can, even if it is of "
11031 "substandard quality."
11032 msgstr ""
11033
11034 #. type: textblock
11035 #: ../src/guestfs-actions.pod:2791 ../fish/guestfish-actions.pod:1904
11036 msgid ""
11037 "Unlike most other inspection API calls, the guest's disks must be mounted up "
11038 "before you call this, since it needs to read information from the guest "
11039 "filesystem during the call."
11040 msgstr ""
11041
11042 #. type: textblock
11043 #: ../src/guestfs-actions.pod:2797 ../fish/guestfish-actions.pod:1910
11044 msgid ""
11045 "B<Security:> The icon data comes from the untrusted guest, and should be "
11046 "treated with caution.  PNG files have been known to contain exploits.  "
11047 "Ensure that libpng (or other relevant libraries) are fully up to date before "
11048 "trying to process or display the icon."
11049 msgstr ""
11050
11051 #. type: textblock
11052 #: ../src/guestfs-actions.pod:2805 ../fish/guestfish-actions.pod:1918
11053 msgid ""
11054 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
11055 "tries to return the largest, highest quality icon available.  The "
11056 "application must scale the icon to the required size."
11057 msgstr ""
11058
11059 #. type: textblock
11060 #: ../src/guestfs-actions.pod:2812 ../fish/guestfish-actions.pod:1925
11061 msgid ""
11062 "Extracting icons from Windows guests requires the external C<wrestool> "
11063 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11064 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11065 "installed separately."
11066 msgstr ""
11067
11068 #. type: textblock
11069 #: ../src/guestfs-actions.pod:2819 ../fish/guestfish-actions.pod:1932
11070 msgid ""
11071 "Operating system icons are usually trademarks.  Seek legal advice before "
11072 "using trademarks in applications."
11073 msgstr ""
11074
11075 #. type: textblock
11076 #: ../src/guestfs-actions.pod:2828 ../src/guestfs-actions.pod:3653
11077 #: ../src/guestfs-actions.pod:4907
11078 msgid "(Added in 1.11.12)"
11079 msgstr ""
11080
11081 #. type: =head2
11082 #: ../src/guestfs-actions.pod:2830
11083 msgid "guestfs_inspect_get_icon_va"
11084 msgstr ""
11085
11086 #. type: verbatim
11087 #: ../src/guestfs-actions.pod:2832
11088 #, no-wrap
11089 msgid ""
11090 " char *\n"
11091 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11092 "                              const char *root,\n"
11093 "                              size_t *size_r,\n"
11094 "                              va_list args);\n"
11095 "\n"
11096 msgstr ""
11097
11098 #. type: textblock
11099 #: ../src/guestfs-actions.pod:2838
11100 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11101 msgstr ""
11102
11103 #. type: =head2
11104 #: ../src/guestfs-actions.pod:2842
11105 msgid "guestfs_inspect_get_icon_argv"
11106 msgstr ""
11107
11108 #. type: verbatim
11109 #: ../src/guestfs-actions.pod:2844
11110 #, no-wrap
11111 msgid ""
11112 " char *\n"
11113 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11114 "                                const char *root,\n"
11115 "                                size_t *size_r,\n"
11116 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11117 "\n"
11118 msgstr ""
11119
11120 #. type: textblock
11121 #: ../src/guestfs-actions.pod:2850
11122 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11123 msgstr ""
11124
11125 #. type: =head2
11126 #: ../src/guestfs-actions.pod:2854
11127 msgid "guestfs_inspect_get_major_version"
11128 msgstr ""
11129
11130 #. type: verbatim
11131 #: ../src/guestfs-actions.pod:2856
11132 #, no-wrap
11133 msgid ""
11134 " int\n"
11135 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11136 "                                    const char *root);\n"
11137 "\n"
11138 msgstr ""
11139
11140 #. type: textblock
11141 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1943
11142 msgid ""
11143 "This returns the major version number of the inspected operating system."
11144 msgstr ""
11145
11146 #. type: textblock
11147 #: ../src/guestfs-actions.pod:2863 ../fish/guestfish-actions.pod:1946
11148 msgid ""
11149 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11150 "popular public names used by the operating system.  Notably the operating "
11151 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11152 "1).  You can find out the real versions corresponding to releases of Windows "
11153 "by consulting Wikipedia or MSDN."
11154 msgstr ""
11155
11156 #. type: textblock
11157 #: ../src/guestfs-actions.pod:2870 ../src/guestfs-actions.pod:2887
11158 #: ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1964
11159 msgid "If the version could not be determined, then C<0> is returned."
11160 msgstr ""
11161
11162 #. type: =head2
11163 #: ../src/guestfs-actions.pod:2878
11164 msgid "guestfs_inspect_get_minor_version"
11165 msgstr ""
11166
11167 #. type: verbatim
11168 #: ../src/guestfs-actions.pod:2880
11169 #, no-wrap
11170 msgid ""
11171 " int\n"
11172 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11173 "                                    const char *root);\n"
11174 "\n"
11175 msgstr ""
11176
11177 #. type: textblock
11178 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1961
11179 msgid ""
11180 "This returns the minor version number of the inspected operating system."
11181 msgstr ""
11182
11183 #. type: textblock
11184 #: ../src/guestfs-actions.pod:2889
11185 msgid ""
11186 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11187 "C<guestfs_inspect_get_major_version>."
11188 msgstr ""
11189
11190 #. type: =head2
11191 #: ../src/guestfs-actions.pod:2896
11192 msgid "guestfs_inspect_get_mountpoints"
11193 msgstr ""
11194
11195 #. type: verbatim
11196 #: ../src/guestfs-actions.pod:2898
11197 #, no-wrap
11198 msgid ""
11199 " char **\n"
11200 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11201 "                                  const char *root);\n"
11202 "\n"
11203 msgstr ""
11204
11205 #. type: textblock
11206 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:1973
11207 msgid ""
11208 "This returns a hash of where we think the filesystems associated with this "
11209 "operating system should be mounted.  Callers should note that this is at "
11210 "best an educated guess made by reading configuration files such as C</etc/"
11211 "fstab>.  I<In particular note> that this may return filesystems which are "
11212 "non-existent or not mountable and callers should be prepared to handle or "
11213 "ignore failures if they try to mount them."
11214 msgstr ""
11215
11216 #. type: textblock
11217 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:1982
11218 msgid ""
11219 "Each element in the returned hashtable has a key which is the path of the "
11220 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11221 "mounted there (eg. C</dev/sda1>)."
11222 msgstr ""
11223
11224 #. type: textblock
11225 #: ../src/guestfs-actions.pod:2916 ../fish/guestfish-actions.pod:1987
11226 msgid ""
11227 "Non-mounted devices such as swap devices are I<not> returned in this list."
11228 msgstr ""
11229
11230 #. type: textblock
11231 #: ../src/guestfs-actions.pod:2919
11232 msgid ""
11233 "For operating systems like Windows which still use drive letters, this call "
11234 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11235 "information about the mapping of drive letters to partitions, see "
11236 "C<guestfs_inspect_get_drive_mappings>."
11237 msgstr ""
11238
11239 #. type: textblock
11240 #: ../src/guestfs-actions.pod:2925
11241 msgid ""
11242 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11243 "C<guestfs_inspect_get_filesystems>."
11244 msgstr ""
11245
11246 #. type: =head2
11247 #: ../src/guestfs-actions.pod:2936
11248 msgid "guestfs_inspect_get_package_format"
11249 msgstr ""
11250
11251 #. type: verbatim
11252 #: ../src/guestfs-actions.pod:2938
11253 #, no-wrap
11254 msgid ""
11255 " char *\n"
11256 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11257 "                                     const char *root);\n"
11258 "\n"
11259 msgstr ""
11260
11261 #. type: textblock
11262 #: ../src/guestfs-actions.pod:2942
11263 msgid ""
11264 "This function and C<guestfs_inspect_get_package_management> return the "
11265 "package format and package management tool used by the inspected operating "
11266 "system.  For example for Fedora these functions would return C<rpm> (package "
11267 "format) and C<yum> (package management)."
11268 msgstr ""
11269
11270 #. type: textblock
11271 #: ../src/guestfs-actions.pod:2948 ../fish/guestfish-actions.pod:2009
11272 msgid ""
11273 "This returns the string C<unknown> if we could not determine the package "
11274 "format I<or> if the operating system does not have a real packaging system "
11275 "(eg. Windows)."
11276 msgstr ""
11277
11278 #. type: textblock
11279 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:2013
11280 msgid ""
11281 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11282 "Future versions of libguestfs may return other strings."
11283 msgstr ""
11284
11285 #. type: textblock
11286 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:2988
11287 msgid "(Added in 1.7.5)"
11288 msgstr ""
11289
11290 #. type: =head2
11291 #: ../src/guestfs-actions.pod:2962
11292 msgid "guestfs_inspect_get_package_management"
11293 msgstr ""
11294
11295 #. type: verbatim
11296 #: ../src/guestfs-actions.pod:2964
11297 #, no-wrap
11298 msgid ""
11299 " char *\n"
11300 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11301 "                                         const char *root);\n"
11302 "\n"
11303 msgstr ""
11304
11305 #. type: textblock
11306 #: ../src/guestfs-actions.pod:2968
11307 msgid ""
11308 "C<guestfs_inspect_get_package_format> and this function return the package "
11309 "format and package management tool used by the inspected operating system.  "
11310 "For example for Fedora these functions would return C<rpm> (package format) "
11311 "and C<yum> (package management)."
11312 msgstr ""
11313
11314 #. type: textblock
11315 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2028
11316 msgid ""
11317 "This returns the string C<unknown> if we could not determine the package "
11318 "management tool I<or> if the operating system does not have a real packaging "
11319 "system (eg. Windows)."
11320 msgstr ""
11321
11322 #. type: textblock
11323 #: ../src/guestfs-actions.pod:2978 ../fish/guestfish-actions.pod:2032
11324 msgid ""
11325 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11326 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11327 "libguestfs may return other strings."
11328 msgstr ""
11329
11330 #. type: =head2
11331 #: ../src/guestfs-actions.pod:2990
11332 msgid "guestfs_inspect_get_product_name"
11333 msgstr ""
11334
11335 #. type: verbatim
11336 #: ../src/guestfs-actions.pod:2992
11337 #, no-wrap
11338 msgid ""
11339 " char *\n"
11340 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11341 "                                   const char *root);\n"
11342 "\n"
11343 msgstr ""
11344
11345 #. type: textblock
11346 #: ../src/guestfs-actions.pod:2996 ../fish/guestfish-actions.pod:2043
11347 msgid ""
11348 "This returns the product name of the inspected operating system.  The "
11349 "product name is generally some freeform string which can be displayed to the "
11350 "user, but should not be parsed by programs."
11351 msgstr ""
11352
11353 #. type: textblock
11354 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2048
11355 msgid ""
11356 "If the product name could not be determined, then the string C<unknown> is "
11357 "returned."
11358 msgstr ""
11359
11360 #. type: =head2
11361 #: ../src/guestfs-actions.pod:3011
11362 msgid "guestfs_inspect_get_product_variant"
11363 msgstr ""
11364
11365 #. type: verbatim
11366 #: ../src/guestfs-actions.pod:3013
11367 #, no-wrap
11368 msgid ""
11369 " char *\n"
11370 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11371 "                                      const char *root);\n"
11372 "\n"
11373 msgstr ""
11374
11375 #. type: textblock
11376 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2057
11377 #, fuzzy
11378 #| msgid "This is an installed operating system."
11379 msgid "This returns the product variant of the inspected operating system."
11380 msgstr "Це встановлена операційна система."
11381
11382 #. type: textblock
11383 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2060
11384 msgid ""
11385 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11386 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11387 "is usually a string such as C<Client> or C<Server> (other values are "
11388 "possible).  This can be used to distinguish consumer and enterprise versions "
11389 "of Windows that have the same version number (for example, Windows 7 and "
11390 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11391 "the latter is C<Server>)."
11392 msgstr ""
11393
11394 #. type: textblock
11395 #: ../src/guestfs-actions.pod:3029 ../fish/guestfish-actions.pod:2069
11396 msgid ""
11397 "For enterprise Linux guests, in future we intend this to return the product "
11398 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11399 "implemented at present."
11400 msgstr ""
11401
11402 #. type: textblock
11403 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2073
11404 msgid ""
11405 "If the product variant could not be determined, then the string C<unknown> "
11406 "is returned."
11407 msgstr ""
11408
11409 #. type: textblock
11410 #: ../src/guestfs-actions.pod:3036
11411 msgid ""
11412 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11413 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11414 msgstr ""
11415
11416 #. type: textblock
11417 #: ../src/guestfs-actions.pod:3043
11418 msgid "(Added in 1.9.13)"
11419 msgstr ""
11420
11421 #. type: =head2
11422 #: ../src/guestfs-actions.pod:3045
11423 msgid "guestfs_inspect_get_roots"
11424 msgstr ""
11425
11426 #. type: verbatim
11427 #: ../src/guestfs-actions.pod:3047
11428 #, no-wrap
11429 msgid ""
11430 " char **\n"
11431 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11432 "\n"
11433 msgstr ""
11434
11435 #. type: textblock
11436 #: ../src/guestfs-actions.pod:3050
11437 msgid ""
11438 "This function is a convenient way to get the list of root devices, as "
11439 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11440 "the whole inspection process."
11441 msgstr ""
11442
11443 #. type: textblock
11444 #: ../src/guestfs-actions.pod:3054
11445 msgid ""
11446 "This returns an empty list if either no root devices were found or the "
11447 "caller has not called C<guestfs_inspect_os>."
11448 msgstr ""
11449
11450 #. type: textblock
11451 #: ../src/guestfs-actions.pod:3063
11452 msgid "(Added in 1.7.3)"
11453 msgstr ""
11454
11455 #. type: =head2
11456 #: ../src/guestfs-actions.pod:3065
11457 msgid "guestfs_inspect_get_type"
11458 msgstr ""
11459
11460 #. type: verbatim
11461 #: ../src/guestfs-actions.pod:3067
11462 #, no-wrap
11463 msgid ""
11464 " char *\n"
11465 " guestfs_inspect_get_type (guestfs_h *g,\n"
11466 "                           const char *root);\n"
11467 "\n"
11468 msgstr ""
11469
11470 #. type: textblock
11471 #: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2097
11472 msgid ""
11473 "This returns the type of the inspected operating system.  Currently defined "
11474 "types are:"
11475 msgstr ""
11476
11477 #. type: =item
11478 #: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2102
11479 msgid "\"linux\""
11480 msgstr "\"linux\""
11481
11482 #. type: textblock
11483 #: ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:2104
11484 msgid "Any Linux-based operating system."
11485 msgstr ""
11486
11487 #. type: textblock
11488 #: ../src/guestfs-actions.pod:3082 ../fish/guestfish-actions.pod:2108
11489 msgid "Any Microsoft Windows operating system."
11490 msgstr ""
11491
11492 #. type: =item
11493 #: ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:2110
11494 msgid "\"freebsd\""
11495 msgstr "\"freebsd\""
11496
11497 #. type: textblock
11498 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2112
11499 msgid "FreeBSD."
11500 msgstr "FreeBSD."
11501
11502 #. type: textblock
11503 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2116
11504 msgid "The operating system type could not be determined."
11505 msgstr ""
11506
11507 #. type: =head2
11508 #: ../src/guestfs-actions.pod:3104
11509 msgid "guestfs_inspect_get_windows_current_control_set"
11510 msgstr ""
11511
11512 #. type: verbatim
11513 #: ../src/guestfs-actions.pod:3106
11514 #, no-wrap
11515 msgid ""
11516 " char *\n"
11517 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11518 "                                                  const char *root);\n"
11519 "\n"
11520 msgstr ""
11521
11522 #. type: textblock
11523 #: ../src/guestfs-actions.pod:3110 ../fish/guestfish-actions.pod:2129
11524 msgid ""
11525 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11526 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11527 msgstr ""
11528
11529 #. type: textblock
11530 #: ../src/guestfs-actions.pod:3113 ../fish/guestfish-actions.pod:2132
11531 msgid ""
11532 "This call assumes that the guest is Windows and that the Registry could be "
11533 "examined by inspection.  If this is not the case then an error is returned."
11534 msgstr ""
11535
11536 #. type: =head2
11537 #: ../src/guestfs-actions.pod:3124
11538 msgid "guestfs_inspect_get_windows_systemroot"
11539 msgstr ""
11540
11541 #. type: verbatim
11542 #: ../src/guestfs-actions.pod:3126
11543 #, no-wrap
11544 msgid ""
11545 " char *\n"
11546 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11547 "                                         const char *root);\n"
11548 "\n"
11549 msgstr ""
11550
11551 #. type: textblock
11552 #: ../src/guestfs-actions.pod:3130 ../fish/guestfish-actions.pod:2142
11553 msgid ""
11554 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11555 "is a directory path such as C</WINDOWS>."
11556 msgstr ""
11557
11558 #. type: textblock
11559 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2145
11560 msgid ""
11561 "This call assumes that the guest is Windows and that the systemroot could be "
11562 "determined by inspection.  If this is not the case then an error is returned."
11563 msgstr ""
11564
11565 #. type: textblock
11566 #: ../src/guestfs-actions.pod:3142
11567 msgid "(Added in 1.5.25)"
11568 msgstr ""
11569
11570 #. type: =head2
11571 #: ../src/guestfs-actions.pod:3144
11572 msgid "guestfs_inspect_is_live"
11573 msgstr ""
11574
11575 #. type: verbatim
11576 #: ../src/guestfs-actions.pod:3146
11577 #, no-wrap
11578 msgid ""
11579 " int\n"
11580 " guestfs_inspect_is_live (guestfs_h *g,\n"
11581 "                          const char *root);\n"
11582 "\n"
11583 msgstr ""
11584
11585 #. type: textblock
11586 #: ../src/guestfs-actions.pod:3150
11587 msgid ""
11588 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11589 "disk), then this returns true if a live image was detected on the disk."
11590 msgstr ""
11591
11592 #. type: =head2
11593 #: ../src/guestfs-actions.pod:3160
11594 msgid "guestfs_inspect_is_multipart"
11595 msgstr ""
11596
11597 #. type: verbatim
11598 #: ../src/guestfs-actions.pod:3162
11599 #, no-wrap
11600 msgid ""
11601 " int\n"
11602 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11603 "                               const char *root);\n"
11604 "\n"
11605 msgstr ""
11606
11607 #. type: textblock
11608 #: ../src/guestfs-actions.pod:3166
11609 msgid ""
11610 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11611 "disk), then this returns true if the disk is part of a set."
11612 msgstr ""
11613
11614 #. type: =head2
11615 #: ../src/guestfs-actions.pod:3176
11616 msgid "guestfs_inspect_is_netinst"
11617 msgstr ""
11618
11619 #. type: verbatim
11620 #: ../src/guestfs-actions.pod:3178
11621 #, no-wrap
11622 msgid ""
11623 " int\n"
11624 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11625 "                             const char *root);\n"
11626 "\n"
11627 msgstr ""
11628
11629 #. type: textblock
11630 #: ../src/guestfs-actions.pod:3182
11631 msgid ""
11632 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11633 "disk), then this returns true if the disk is a network installer, ie. not a "
11634 "self-contained install CD but one which is likely to require network access "
11635 "to complete the install."
11636 msgstr ""
11637
11638 #. type: =head2
11639 #: ../src/guestfs-actions.pod:3194
11640 msgid "guestfs_inspect_list_applications"
11641 msgstr ""
11642
11643 #. type: verbatim
11644 #: ../src/guestfs-actions.pod:3196
11645 #, no-wrap
11646 msgid ""
11647 " struct guestfs_application_list *\n"
11648 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11649 "                                    const char *root);\n"
11650 "\n"
11651 msgstr ""
11652
11653 #. type: textblock
11654 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2187
11655 msgid "Return the list of applications installed in the operating system."
11656 msgstr ""
11657
11658 #. type: textblock
11659 #: ../src/guestfs-actions.pod:3202
11660 msgid ""
11661 "I<Note:> This call works differently from other parts of the inspection "
11662 "API.  You have to call C<guestfs_inspect_os>, then "
11663 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11664 "this.  Listing applications is a significantly more difficult operation "
11665 "which requires access to the full filesystem.  Also note that unlike the "
11666 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11667 "the libguestfs handle, this call actually reads parts of the mounted "
11668 "filesystems during the call."
11669 msgstr ""
11670
11671 #. type: textblock
11672 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2199
11673 msgid ""
11674 "This returns an empty list if the inspection code was not able to determine "
11675 "the list of applications."
11676 msgstr ""
11677
11678 #. type: textblock
11679 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2202
11680 msgid "The application structure contains the following fields:"
11681 msgstr ""
11682
11683 #. type: =item
11684 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2206
11685 msgid "C<app_name>"
11686 msgstr "C<app_name>"
11687
11688 #. type: textblock
11689 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2208
11690 msgid ""
11691 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11692 "guests, this is the package name."
11693 msgstr ""
11694
11695 #. type: =item
11696 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2211
11697 msgid "C<app_display_name>"
11698 msgstr "C<app_display_name>"
11699
11700 #. type: textblock
11701 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2213
11702 msgid ""
11703 "The display name of the application, sometimes localized to the install "
11704 "language of the guest operating system."
11705 msgstr ""
11706
11707 #. type: textblock
11708 #: ../src/guestfs-actions.pod:3229 ../fish/guestfish-actions.pod:2216
11709 msgid ""
11710 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11711 "to display something can use C<app_name> instead."
11712 msgstr ""
11713
11714 #. type: =item
11715 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2219
11716 msgid "C<app_epoch>"
11717 msgstr "C<app_epoch>"
11718
11719 #. type: textblock
11720 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2221
11721 msgid ""
11722 "For package managers which use epochs, this contains the epoch of the "
11723 "package (an integer).  If unavailable, this is returned as C<0>."
11724 msgstr ""
11725
11726 #. type: =item
11727 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2224
11728 msgid "C<app_version>"
11729 msgstr "C<app_version>"
11730
11731 #. type: textblock
11732 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2226
11733 msgid ""
11734 "The version string of the application or package.  If unavailable this is "
11735 "returned as an empty string C<\"\">."
11736 msgstr ""
11737
11738 #. type: =item
11739 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2229
11740 msgid "C<app_release>"
11741 msgstr "C<app_release>"
11742
11743 #. type: textblock
11744 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2231
11745 msgid ""
11746 "The release string of the application or package, for package managers that "
11747 "use this.  If unavailable this is returned as an empty string C<\"\">."
11748 msgstr ""
11749
11750 #. type: =item
11751 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2235
11752 msgid "C<app_install_path>"
11753 msgstr "C<app_install_path>"
11754
11755 #. type: textblock
11756 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2237
11757 msgid ""
11758 "The installation path of the application (on operating systems such as "
11759 "Windows which use installation paths).  This path is in the format used by "
11760 "the guest operating system, it is not a libguestfs path."
11761 msgstr ""
11762
11763 #. type: textblock
11764 #: ../src/guestfs-actions.pod:3255 ../fish/guestfish-actions.pod:2242
11765 msgid "If unavailable this is returned as an empty string C<\"\">."
11766 msgstr ""
11767
11768 #. type: =item
11769 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2244
11770 msgid "C<app_trans_path>"
11771 msgstr "C<app_trans_path>"
11772
11773 #. type: textblock
11774 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2246
11775 msgid ""
11776 "The install path translated into a libguestfs path.  If unavailable this is "
11777 "returned as an empty string C<\"\">."
11778 msgstr ""
11779
11780 #. type: =item
11781 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2249
11782 msgid "C<app_publisher>"
11783 msgstr "C<app_publisher>"
11784
11785 #. type: textblock
11786 #: ../src/guestfs-actions.pod:3264 ../fish/guestfish-actions.pod:2251
11787 msgid ""
11788 "The name of the publisher of the application, for package managers that use "
11789 "this.  If unavailable this is returned as an empty string C<\"\">."
11790 msgstr ""
11791
11792 #. type: =item
11793 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2255
11794 msgid "C<app_url>"
11795 msgstr "C<app_url>"
11796
11797 #. type: textblock
11798 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2257
11799 msgid ""
11800 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11801 "returned as an empty string C<\"\">."
11802 msgstr ""
11803
11804 #. type: =item
11805 #: ../src/guestfs-actions.pod:3273 ../fish/guestfish-actions.pod:2260
11806 msgid "C<app_source_package>"
11807 msgstr ""
11808
11809 #. type: textblock
11810 #: ../src/guestfs-actions.pod:3275 ../fish/guestfish-actions.pod:2262
11811 msgid ""
11812 "For packaging systems which support this, the name of the source package.  "
11813 "If unavailable this is returned as an empty string C<\"\">."
11814 msgstr ""
11815
11816 #. type: =item
11817 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2265
11818 msgid "C<app_summary>"
11819 msgstr ""
11820
11821 #. type: textblock
11822 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2267
11823 msgid ""
11824 "A short (usually one line) description of the application or package.  If "
11825 "unavailable this is returned as an empty string C<\"\">."
11826 msgstr ""
11827
11828 #. type: =item
11829 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2270
11830 msgid "C<app_description>"
11831 msgstr ""
11832
11833 #. type: textblock
11834 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2272
11835 msgid ""
11836 "A longer description of the application or package.  If unavailable this is "
11837 "returned as an empty string C<\"\">."
11838 msgstr ""
11839
11840 #. type: textblock
11841 #: ../src/guestfs-actions.pod:3292
11842 msgid ""
11843 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11844 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11845 "after use>."
11846 msgstr ""
11847
11848 #. type: textblock
11849 #: ../src/guestfs-actions.pod:3296
11850 msgid "(Added in 1.7.8)"
11851 msgstr ""
11852
11853 #. type: =head2
11854 #: ../src/guestfs-actions.pod:3298
11855 msgid "guestfs_inspect_os"
11856 msgstr ""
11857
11858 #. type: verbatim
11859 #: ../src/guestfs-actions.pod:3300
11860 #, no-wrap
11861 msgid ""
11862 " char **\n"
11863 " guestfs_inspect_os (guestfs_h *g);\n"
11864 "\n"
11865 msgstr ""
11866
11867 #. type: textblock
11868 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2283
11869 msgid ""
11870 "This function uses other libguestfs functions and certain heuristics to "
11871 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11872 "for operating systems."
11873 msgstr ""
11874
11875 #. type: textblock
11876 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2287
11877 msgid "The list returned is empty if no operating systems were found."
11878 msgstr ""
11879
11880 #. type: textblock
11881 #: ../src/guestfs-actions.pod:3309 ../fish/guestfish-actions.pod:2289
11882 msgid ""
11883 "If one operating system was found, then this returns a list with a single "
11884 "element, which is the name of the root filesystem of this operating system.  "
11885 "It is also possible for this function to return a list containing more than "
11886 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11887 "element being the root filesystem of one of the operating systems."
11888 msgstr ""
11889
11890 #. type: textblock
11891 #: ../src/guestfs-actions.pod:3316
11892 msgid ""
11893 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11894 "functions in order to query further information about each operating system, "
11895 "such as the name and version."
11896 msgstr ""
11897
11898 #. type: textblock
11899 #: ../src/guestfs-actions.pod:3321
11900 msgid ""
11901 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11902 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11903 "the contents.  This should be called with no disks currently mounted.  The "
11904 "function may also use Augeas, so any existing Augeas handle will be closed."
11905 msgstr ""
11906
11907 #. type: textblock
11908 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2307
11909 msgid ""
11910 "This function cannot decrypt encrypted disks.  The caller must do that first "
11911 "(supplying the necessary keys) if the disk is encrypted."
11912 msgstr ""
11913
11914 #. type: textblock
11915 #: ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3664
11916 #: ../src/guestfs-actions.pod:3746
11917 msgid "See also C<guestfs_list_filesystems>."
11918 msgstr ""
11919
11920 #. type: =head2
11921 #: ../src/guestfs-actions.pod:3341
11922 msgid "guestfs_is_blockdev"
11923 msgstr ""
11924
11925 #. type: verbatim
11926 #: ../src/guestfs-actions.pod:3343
11927 #, no-wrap
11928 msgid ""
11929 " int\n"
11930 " guestfs_is_blockdev (guestfs_h *g,\n"
11931 "                      const char *path);\n"
11932 "\n"
11933 msgstr ""
11934
11935 #. type: textblock
11936 #: ../src/guestfs-actions.pod:3347 ../fish/guestfish-actions.pod:2319
11937 msgid ""
11938 "This returns C<true> if and only if there is a block device with the given "
11939 "C<path> name."
11940 msgstr ""
11941
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3379
11944 #: ../src/guestfs-actions.pod:3409 ../src/guestfs-actions.pod:3424
11945 #: ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3496
11946 #: ../src/guestfs-actions.pod:3511
11947 msgid "See also C<guestfs_stat>."
11948 msgstr ""
11949
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3383
11952 #: ../src/guestfs-actions.pod:3428 ../src/guestfs-actions.pod:3500
11953 #: ../src/guestfs-actions.pod:3515
11954 msgid "(Added in 1.5.10)"
11955 msgstr ""
11956
11957 #. type: =head2
11958 #: ../src/guestfs-actions.pod:3356
11959 msgid "guestfs_is_busy"
11960 msgstr ""
11961
11962 #. type: verbatim
11963 #: ../src/guestfs-actions.pod:3358
11964 #, no-wrap
11965 msgid ""
11966 " int\n"
11967 " guestfs_is_busy (guestfs_h *g);\n"
11968 "\n"
11969 msgstr ""
11970
11971 #. type: textblock
11972 #: ../src/guestfs-actions.pod:3361 ../fish/guestfish-actions.pod:2328
11973 msgid ""
11974 "This returns true iff this handle is busy processing a command (in the "
11975 "C<BUSY> state)."
11976 msgstr ""
11977
11978 #. type: =head2
11979 #: ../src/guestfs-actions.pod:3370
11980 msgid "guestfs_is_chardev"
11981 msgstr ""
11982
11983 #. type: verbatim
11984 #: ../src/guestfs-actions.pod:3372
11985 #, no-wrap
11986 msgid ""
11987 " int\n"
11988 " guestfs_is_chardev (guestfs_h *g,\n"
11989 "                     const char *path);\n"
11990 "\n"
11991 msgstr ""
11992
11993 #. type: textblock
11994 #: ../src/guestfs-actions.pod:3376 ../fish/guestfish-actions.pod:2337
11995 msgid ""
11996 "This returns C<true> if and only if there is a character device with the "
11997 "given C<path> name."
11998 msgstr ""
11999
12000 #. type: =head2
12001 #: ../src/guestfs-actions.pod:3385
12002 msgid "guestfs_is_config"
12003 msgstr ""
12004
12005 #. type: verbatim
12006 #: ../src/guestfs-actions.pod:3387
12007 #, no-wrap
12008 msgid ""
12009 " int\n"
12010 " guestfs_is_config (guestfs_h *g);\n"
12011 "\n"
12012 msgstr ""
12013
12014 #. type: textblock
12015 #: ../src/guestfs-actions.pod:3390 ../fish/guestfish-actions.pod:2346
12016 msgid ""
12017 "This returns true iff this handle is being configured (in the C<CONFIG> "
12018 "state)."
12019 msgstr ""
12020
12021 #. type: =head2
12022 #: ../src/guestfs-actions.pod:3399
12023 msgid "guestfs_is_dir"
12024 msgstr ""
12025
12026 #. type: verbatim
12027 #: ../src/guestfs-actions.pod:3401
12028 #, no-wrap
12029 msgid ""
12030 " int\n"
12031 " guestfs_is_dir (guestfs_h *g,\n"
12032 "                 const char *path);\n"
12033 "\n"
12034 msgstr ""
12035
12036 #. type: textblock
12037 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2355
12038 msgid ""
12039 "This returns C<true> if and only if there is a directory with the given "
12040 "C<path> name.  Note that it returns false for other objects like files."
12041 msgstr ""
12042
12043 #. type: =head2
12044 #: ../src/guestfs-actions.pod:3415
12045 msgid "guestfs_is_fifo"
12046 msgstr ""
12047
12048 #. type: verbatim
12049 #: ../src/guestfs-actions.pod:3417
12050 #, no-wrap
12051 msgid ""
12052 " int\n"
12053 " guestfs_is_fifo (guestfs_h *g,\n"
12054 "                  const char *path);\n"
12055 "\n"
12056 msgstr ""
12057
12058 #. type: textblock
12059 #: ../src/guestfs-actions.pod:3421 ../fish/guestfish-actions.pod:2365
12060 msgid ""
12061 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12062 "given C<path> name."
12063 msgstr ""
12064
12065 #. type: =head2
12066 #: ../src/guestfs-actions.pod:3430
12067 msgid "guestfs_is_file"
12068 msgstr ""
12069
12070 #. type: verbatim
12071 #: ../src/guestfs-actions.pod:3432
12072 #, no-wrap
12073 msgid ""
12074 " int\n"
12075 " guestfs_is_file (guestfs_h *g,\n"
12076 "                  const char *path);\n"
12077 "\n"
12078 msgstr ""
12079
12080 #. type: textblock
12081 #: ../src/guestfs-actions.pod:3436 ../fish/guestfish-actions.pod:2374
12082 msgid ""
12083 "This returns C<true> if and only if there is a regular file with the given "
12084 "C<path> name.  Note that it returns false for other objects like directories."
12085 msgstr ""
12086
12087 #. type: =head2
12088 #: ../src/guestfs-actions.pod:3446
12089 msgid "guestfs_is_launching"
12090 msgstr ""
12091
12092 #. type: verbatim
12093 #: ../src/guestfs-actions.pod:3448
12094 #, no-wrap
12095 msgid ""
12096 " int\n"
12097 " guestfs_is_launching (guestfs_h *g);\n"
12098 "\n"
12099 msgstr ""
12100
12101 #. type: textblock
12102 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2384
12103 msgid ""
12104 "This returns true iff this handle is launching the subprocess (in the "
12105 "C<LAUNCHING> state)."
12106 msgstr ""
12107
12108 #. type: =head2
12109 #: ../src/guestfs-actions.pod:3460
12110 msgid "guestfs_is_lv"
12111 msgstr ""
12112
12113 #. type: verbatim
12114 #: ../src/guestfs-actions.pod:3462
12115 #, no-wrap
12116 msgid ""
12117 " int\n"
12118 " guestfs_is_lv (guestfs_h *g,\n"
12119 "                const char *device);\n"
12120 "\n"
12121 msgstr ""
12122
12123 #. type: textblock
12124 #: ../src/guestfs-actions.pod:3466 ../fish/guestfish-actions.pod:2393
12125 msgid ""
12126 "This command tests whether C<device> is a logical volume, and returns true "
12127 "iff this is the case."
12128 msgstr ""
12129
12130 #. type: =head2
12131 #: ../src/guestfs-actions.pod:3473
12132 msgid "guestfs_is_ready"
12133 msgstr ""
12134
12135 #. type: verbatim
12136 #: ../src/guestfs-actions.pod:3475
12137 #, no-wrap
12138 msgid ""
12139 " int\n"
12140 " guestfs_is_ready (guestfs_h *g);\n"
12141 "\n"
12142 msgstr ""
12143
12144 #. type: textblock
12145 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2400
12146 msgid ""
12147 "This returns true iff this handle is ready to accept commands (in the "
12148 "C<READY> state)."
12149 msgstr ""
12150
12151 #. type: =head2
12152 #: ../src/guestfs-actions.pod:3487
12153 msgid "guestfs_is_socket"
12154 msgstr ""
12155
12156 #. type: verbatim
12157 #: ../src/guestfs-actions.pod:3489
12158 #, no-wrap
12159 msgid ""
12160 " int\n"
12161 " guestfs_is_socket (guestfs_h *g,\n"
12162 "                    const char *path);\n"
12163 "\n"
12164 msgstr ""
12165
12166 #. type: textblock
12167 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2409
12168 msgid ""
12169 "This returns C<true> if and only if there is a Unix domain socket with the "
12170 "given C<path> name."
12171 msgstr ""
12172
12173 #. type: =head2
12174 #: ../src/guestfs-actions.pod:3502
12175 msgid "guestfs_is_symlink"
12176 msgstr ""
12177
12178 #. type: verbatim
12179 #: ../src/guestfs-actions.pod:3504
12180 #, no-wrap
12181 msgid ""
12182 " int\n"
12183 " guestfs_is_symlink (guestfs_h *g,\n"
12184 "                     const char *path);\n"
12185 "\n"
12186 msgstr ""
12187
12188 #. type: textblock
12189 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2418
12190 msgid ""
12191 "This returns C<true> if and only if there is a symbolic link with the given "
12192 "C<path> name."
12193 msgstr ""
12194
12195 #. type: =head2
12196 #: ../src/guestfs-actions.pod:3517
12197 msgid "guestfs_is_zero"
12198 msgstr ""
12199
12200 #. type: verbatim
12201 #: ../src/guestfs-actions.pod:3519
12202 #, no-wrap
12203 msgid ""
12204 " int\n"
12205 " guestfs_is_zero (guestfs_h *g,\n"
12206 "                  const char *path);\n"
12207 "\n"
12208 msgstr ""
12209
12210 #. type: textblock
12211 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2427
12212 msgid ""
12213 "This returns true iff the file exists and the file is empty or it contains "
12214 "all zero bytes."
12215 msgstr ""
12216
12217 #. type: textblock
12218 #: ../src/guestfs-actions.pod:3528 ../src/guestfs-actions.pod:3542
12219 msgid "(Added in 1.11.8)"
12220 msgstr ""
12221
12222 #. type: =head2
12223 #: ../src/guestfs-actions.pod:3530
12224 msgid "guestfs_is_zero_device"
12225 msgstr ""
12226
12227 #. type: verbatim
12228 #: ../src/guestfs-actions.pod:3532
12229 #, no-wrap
12230 msgid ""
12231 " int\n"
12232 " guestfs_is_zero_device (guestfs_h *g,\n"
12233 "                         const char *device);\n"
12234 "\n"
12235 msgstr ""
12236
12237 #. type: textblock
12238 #: ../src/guestfs-actions.pod:3536 ../fish/guestfish-actions.pod:2434
12239 msgid "This returns true iff the device exists and contains all zero bytes."
12240 msgstr ""
12241
12242 #. type: textblock
12243 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:2436
12244 msgid "Note that for large devices this can take a long time to run."
12245 msgstr ""
12246
12247 #. type: =head2
12248 #: ../src/guestfs-actions.pod:3544
12249 msgid "guestfs_kill_subprocess"
12250 msgstr ""
12251
12252 #. type: verbatim
12253 #: ../src/guestfs-actions.pod:3546
12254 #, no-wrap
12255 msgid ""
12256 " int\n"
12257 " guestfs_kill_subprocess (guestfs_h *g);\n"
12258 "\n"
12259 msgstr ""
12260
12261 #. type: textblock
12262 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:2442
12263 msgid "This kills the qemu subprocess.  You should never need to call this."
12264 msgstr ""
12265
12266 #. type: =head2
12267 #: ../src/guestfs-actions.pod:3555
12268 msgid "guestfs_launch"
12269 msgstr ""
12270
12271 #. type: verbatim
12272 #: ../src/guestfs-actions.pod:3557
12273 #, no-wrap
12274 msgid ""
12275 " int\n"
12276 " guestfs_launch (guestfs_h *g);\n"
12277 "\n"
12278 msgstr ""
12279
12280 #. type: textblock
12281 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2450
12282 msgid ""
12283 "Internally libguestfs is implemented by running a virtual machine using "
12284 "L<qemu(1)>."
12285 msgstr ""
12286
12287 #. type: textblock
12288 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2453
12289 msgid ""
12290 "You should call this after configuring the handle (eg. adding drives) but "
12291 "before performing any actions."
12292 msgstr ""
12293
12294 #. type: =head2
12295 #: ../src/guestfs-actions.pod:3575
12296 msgid "guestfs_lchown"
12297 msgstr ""
12298
12299 #. type: verbatim
12300 #: ../src/guestfs-actions.pod:3577
12301 #, no-wrap
12302 msgid ""
12303 " int\n"
12304 " guestfs_lchown (guestfs_h *g,\n"
12305 "                 int owner,\n"
12306 "                 int group,\n"
12307 "                 const char *path);\n"
12308 "\n"
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:3583
12313 msgid ""
12314 "Change the file owner to C<owner> and group to C<group>.  This is like "
12315 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12316 "changed, not the target."
12317 msgstr ""
12318
12319 #. type: =head2
12320 #: ../src/guestfs-actions.pod:3595
12321 msgid "guestfs_lgetxattr"
12322 msgstr ""
12323
12324 #. type: verbatim
12325 #: ../src/guestfs-actions.pod:3597
12326 #, no-wrap
12327 msgid ""
12328 " char *\n"
12329 " guestfs_lgetxattr (guestfs_h *g,\n"
12330 "                    const char *path,\n"
12331 "                    const char *name,\n"
12332 "                    size_t *size_r);\n"
12333 "\n"
12334 msgstr ""
12335
12336 #. type: textblock
12337 #: ../src/guestfs-actions.pod:3603 ../fish/guestfish-actions.pod:2472
12338 msgid ""
12339 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12340 "is a symlink, then this call returns an extended attribute from the symlink."
12341 msgstr ""
12342
12343 #. type: textblock
12344 #: ../src/guestfs-actions.pod:3617
12345 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12346 msgstr ""
12347
12348 #. type: =head2
12349 #: ../src/guestfs-actions.pod:3625
12350 msgid "guestfs_lgetxattrs"
12351 msgstr ""
12352
12353 #. type: verbatim
12354 #: ../src/guestfs-actions.pod:3627
12355 #, no-wrap
12356 msgid ""
12357 " struct guestfs_xattr_list *\n"
12358 " guestfs_lgetxattrs (guestfs_h *g,\n"
12359 "                     const char *path);\n"
12360 "\n"
12361 msgstr ""
12362
12363 #. type: textblock
12364 #: ../src/guestfs-actions.pod:3631
12365 msgid ""
12366 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12367 "then it returns the extended attributes of the link itself."
12368 msgstr ""
12369
12370 #. type: =head2
12371 #: ../src/guestfs-actions.pod:3641
12372 msgid "guestfs_list_9p"
12373 msgstr ""
12374
12375 #. type: verbatim
12376 #: ../src/guestfs-actions.pod:3643
12377 #, no-wrap
12378 msgid ""
12379 " char **\n"
12380 " guestfs_list_9p (guestfs_h *g);\n"
12381 "\n"
12382 msgstr ""
12383
12384 #. type: textblock
12385 #: ../src/guestfs-actions.pod:3646 ../fish/guestfish-actions.pod:2500
12386 msgid ""
12387 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12388 "returned."
12389 msgstr ""
12390
12391 #. type: =head2
12392 #: ../src/guestfs-actions.pod:3655
12393 msgid "guestfs_list_devices"
12394 msgstr ""
12395
12396 #. type: verbatim
12397 #: ../src/guestfs-actions.pod:3657
12398 #, no-wrap
12399 msgid ""
12400 " char **\n"
12401 " guestfs_list_devices (guestfs_h *g);\n"
12402 "\n"
12403 msgstr ""
12404
12405 #. type: textblock
12406 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2507
12407 msgid "List all the block devices."
12408 msgstr ""
12409
12410 #. type: textblock
12411 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2509
12412 msgid "The full block device names are returned, eg. C</dev/sda>."
12413 msgstr ""
12414
12415 #. type: =head2
12416 #: ../src/guestfs-actions.pod:3672
12417 msgid "guestfs_list_dm_devices"
12418 msgstr ""
12419
12420 #. type: verbatim
12421 #: ../src/guestfs-actions.pod:3674
12422 #, no-wrap
12423 msgid ""
12424 " char **\n"
12425 " guestfs_list_dm_devices (guestfs_h *g);\n"
12426 "\n"
12427 msgstr ""
12428
12429 #. type: textblock
12430 #: ../src/guestfs-actions.pod:3677 ../fish/guestfish-actions.pod:2517
12431 msgid "List all device mapper devices."
12432 msgstr ""
12433
12434 #. type: textblock
12435 #: ../src/guestfs-actions.pod:3679
12436 msgid ""
12437 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12438 "previous call to C<guestfs_luks_open>."
12439 msgstr ""
12440
12441 #. type: textblock
12442 #: ../src/guestfs-actions.pod:3682
12443 msgid ""
12444 "Device mapper devices which correspond to logical volumes are I<not> "
12445 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12446 "volumes."
12447 msgstr ""
12448
12449 #. type: textblock
12450 #: ../src/guestfs-actions.pod:3690 ../src/guestfs-actions.pod:5146
12451 msgid "(Added in 1.11.15)"
12452 msgstr ""
12453
12454 #. type: =head2
12455 #: ../src/guestfs-actions.pod:3692
12456 msgid "guestfs_list_filesystems"
12457 msgstr ""
12458
12459 #. type: verbatim
12460 #: ../src/guestfs-actions.pod:3694
12461 #, no-wrap
12462 msgid ""
12463 " char **\n"
12464 " guestfs_list_filesystems (guestfs_h *g);\n"
12465 "\n"
12466 msgstr ""
12467
12468 #. type: textblock
12469 #: ../src/guestfs-actions.pod:3697 ../fish/guestfish-actions.pod:2530
12470 msgid ""
12471 "This inspection command looks for filesystems on partitions, block devices "
12472 "and logical volumes, returning a list of devices containing filesystems and "
12473 "their type."
12474 msgstr ""
12475
12476 #. type: textblock
12477 #: ../src/guestfs-actions.pod:3701 ../fish/guestfish-actions.pod:2534
12478 msgid ""
12479 "The return value is a hash, where the keys are the devices containing "
12480 "filesystems, and the values are the filesystem types.  For example:"
12481 msgstr ""
12482
12483 #. type: verbatim
12484 #: ../src/guestfs-actions.pod:3705 ../fish/guestfish-actions.pod:2538
12485 #, no-wrap
12486 msgid ""
12487 " \"/dev/sda1\" => \"ntfs\"\n"
12488 " \"/dev/sda2\" => \"ext2\"\n"
12489 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12490 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12491 "\n"
12492 msgstr ""
12493
12494 #. type: textblock
12495 #: ../src/guestfs-actions.pod:3710 ../fish/guestfish-actions.pod:2543
12496 msgid ""
12497 "The value can have the special value \"unknown\", meaning the content of the "
12498 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12499 msgstr ""
12500
12501 #. type: textblock
12502 #: ../src/guestfs-actions.pod:3714
12503 msgid ""
12504 "This command runs other libguestfs commands, which might include "
12505 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12506 "soon after launch and only when nothing is mounted."
12507 msgstr ""
12508
12509 #. type: textblock
12510 #: ../src/guestfs-actions.pod:3718
12511 msgid ""
12512 "Not all of the filesystems returned will be mountable.  In particular, swap "
12513 "partitions are returned in the list.  Also this command does not check that "
12514 "each filesystem found is valid and mountable, and some filesystems might be "
12515 "mountable but require special options.  Filesystems may not all belong to a "
12516 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12517 msgstr ""
12518
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:3732 ../src/guestfs-actions.pod:5501
12521 msgid "(Added in 1.5.15)"
12522 msgstr ""
12523
12524 #. type: =head2
12525 #: ../src/guestfs-actions.pod:3734
12526 msgid "guestfs_list_partitions"
12527 msgstr ""
12528
12529 #. type: verbatim
12530 #: ../src/guestfs-actions.pod:3736
12531 #, no-wrap
12532 msgid ""
12533 " char **\n"
12534 " guestfs_list_partitions (guestfs_h *g);\n"
12535 "\n"
12536 msgstr ""
12537
12538 #. type: textblock
12539 #: ../src/guestfs-actions.pod:3739 ../fish/guestfish-actions.pod:2563
12540 msgid "List all the partitions detected on all block devices."
12541 msgstr ""
12542
12543 #. type: textblock
12544 #: ../src/guestfs-actions.pod:3741 ../fish/guestfish-actions.pod:2565
12545 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12546 msgstr ""
12547
12548 #. type: textblock
12549 #: ../src/guestfs-actions.pod:3743
12550 msgid ""
12551 "This does not return logical volumes.  For that you will need to call "
12552 "C<guestfs_lvs>."
12553 msgstr ""
12554
12555 #. type: =head2
12556 #: ../src/guestfs-actions.pod:3754
12557 msgid "guestfs_ll"
12558 msgstr ""
12559
12560 #. type: verbatim
12561 #: ../src/guestfs-actions.pod:3756
12562 #, no-wrap
12563 msgid ""
12564 " char *\n"
12565 " guestfs_ll (guestfs_h *g,\n"
12566 "             const char *directory);\n"
12567 "\n"
12568 msgstr ""
12569
12570 #. type: textblock
12571 #: ../src/guestfs-actions.pod:3760 ../fish/guestfish-actions.pod:2576
12572 msgid ""
12573 "List the files in C<directory> (relative to the root directory, there is no "
12574 "cwd) in the format of 'ls -la'."
12575 msgstr ""
12576
12577 #. type: textblock
12578 #: ../src/guestfs-actions.pod:3763 ../fish/guestfish-actions.pod:2579
12579 msgid ""
12580 "This command is mostly useful for interactive sessions.  It is I<not> "
12581 "intended that you try to parse the output string."
12582 msgstr ""
12583
12584 #. type: =head2
12585 #: ../src/guestfs-actions.pod:3771
12586 msgid "guestfs_ln"
12587 msgstr ""
12588
12589 #. type: verbatim
12590 #: ../src/guestfs-actions.pod:3773
12591 #, no-wrap
12592 msgid ""
12593 " int\n"
12594 " guestfs_ln (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:3778 ../fish/guestfish-actions.pod:2586
12602 msgid "This command creates a hard link using the C<ln> command."
12603 msgstr ""
12604
12605 #. type: =head2
12606 #: ../src/guestfs-actions.pod:3784
12607 msgid "guestfs_ln_f"
12608 msgstr ""
12609
12610 #. type: verbatim
12611 #: ../src/guestfs-actions.pod:3786
12612 #, no-wrap
12613 msgid ""
12614 " int\n"
12615 " guestfs_ln_f (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:3791 ../fish/guestfish-actions.pod:2592
12623 msgid ""
12624 "This command creates a hard link using the C<ln -f> 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:3798
12630 msgid "guestfs_ln_s"
12631 msgstr ""
12632
12633 #. type: verbatim
12634 #: ../src/guestfs-actions.pod:3800
12635 #, no-wrap
12636 msgid ""
12637 " int\n"
12638 " guestfs_ln_s (guestfs_h *g,\n"
12639 "               const char *target,\n"
12640 "               const char *linkname);\n"
12641 "\n"
12642 msgstr ""
12643
12644 #. type: textblock
12645 #: ../src/guestfs-actions.pod:3805 ../fish/guestfish-actions.pod:2599
12646 msgid "This command creates a symbolic link using the C<ln -s> command."
12647 msgstr ""
12648
12649 #. type: =head2
12650 #: ../src/guestfs-actions.pod:3811
12651 msgid "guestfs_ln_sf"
12652 msgstr ""
12653
12654 #. type: verbatim
12655 #: ../src/guestfs-actions.pod:3813
12656 #, no-wrap
12657 msgid ""
12658 " int\n"
12659 " guestfs_ln_sf (guestfs_h *g,\n"
12660 "                const char *target,\n"
12661 "                const char *linkname);\n"
12662 "\n"
12663 msgstr ""
12664
12665 #. type: textblock
12666 #: ../src/guestfs-actions.pod:3818 ../fish/guestfish-actions.pod:2605
12667 msgid ""
12668 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12669 "option removes the link (C<linkname>) if it exists already."
12670 msgstr ""
12671
12672 #. type: =head2
12673 #: ../src/guestfs-actions.pod:3825
12674 msgid "guestfs_lremovexattr"
12675 msgstr ""
12676
12677 #. type: verbatim
12678 #: ../src/guestfs-actions.pod:3827
12679 #, no-wrap
12680 msgid ""
12681 " int\n"
12682 " guestfs_lremovexattr (guestfs_h *g,\n"
12683 "                       const char *xattr,\n"
12684 "                       const char *path);\n"
12685 "\n"
12686 msgstr ""
12687
12688 #. type: textblock
12689 #: ../src/guestfs-actions.pod:3832
12690 msgid ""
12691 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12692 "link, then it removes an extended attribute of the link itself."
12693 msgstr ""
12694
12695 #. type: =head2
12696 #: ../src/guestfs-actions.pod:3840
12697 msgid "guestfs_ls"
12698 msgstr ""
12699
12700 #. type: verbatim
12701 #: ../src/guestfs-actions.pod:3842
12702 #, no-wrap
12703 msgid ""
12704 " char **\n"
12705 " guestfs_ls (guestfs_h *g,\n"
12706 "             const char *directory);\n"
12707 "\n"
12708 msgstr ""
12709
12710 #. type: textblock
12711 #: ../src/guestfs-actions.pod:3846 ../fish/guestfish-actions.pod:2620
12712 msgid ""
12713 "List the files in C<directory> (relative to the root directory, there is no "
12714 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12715 msgstr ""
12716
12717 #. type: textblock
12718 #: ../src/guestfs-actions.pod:3850
12719 msgid ""
12720 "This command is mostly useful for interactive sessions.  Programs should "
12721 "probably use C<guestfs_readdir> instead."
12722 msgstr ""
12723
12724 #. type: =head2
12725 #: ../src/guestfs-actions.pod:3859
12726 msgid "guestfs_lsetxattr"
12727 msgstr ""
12728
12729 #. type: verbatim
12730 #: ../src/guestfs-actions.pod:3861
12731 #, no-wrap
12732 msgid ""
12733 " int\n"
12734 " guestfs_lsetxattr (guestfs_h *g,\n"
12735 "                    const char *xattr,\n"
12736 "                    const char *val,\n"
12737 "                    int vallen,\n"
12738 "                    const char *path);\n"
12739 "\n"
12740 msgstr ""
12741
12742 #. type: textblock
12743 #: ../src/guestfs-actions.pod:3868
12744 msgid ""
12745 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12746 "then it sets an extended attribute of the link itself."
12747 msgstr ""
12748
12749 #. type: =head2
12750 #: ../src/guestfs-actions.pod:3876
12751 msgid "guestfs_lstat"
12752 msgstr ""
12753
12754 #. type: verbatim
12755 #: ../src/guestfs-actions.pod:3878
12756 #, no-wrap
12757 msgid ""
12758 " struct guestfs_stat *\n"
12759 " guestfs_lstat (guestfs_h *g,\n"
12760 "                const char *path);\n"
12761 "\n"
12762 msgstr ""
12763
12764 #. type: textblock
12765 #: ../src/guestfs-actions.pod:3882 ../src/guestfs-actions.pod:6636
12766 #: ../fish/guestfish-actions.pod:2639 ../fish/guestfish-actions.pod:4426
12767 msgid "Returns file information for the given C<path>."
12768 msgstr ""
12769
12770 #. type: textblock
12771 #: ../src/guestfs-actions.pod:3884
12772 msgid ""
12773 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12774 "link, then the link is stat-ed, not the file it refers to."
12775 msgstr ""
12776
12777 #. type: textblock
12778 #: ../src/guestfs-actions.pod:3888 ../fish/guestfish-actions.pod:2645
12779 msgid "This is the same as the C<lstat(2)> system call."
12780 msgstr ""
12781
12782 #. type: textblock
12783 #: ../src/guestfs-actions.pod:3890 ../src/guestfs-actions.pod:6640
12784 msgid ""
12785 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12786 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12787 msgstr ""
12788
12789 #. type: textblock
12790 #: ../src/guestfs-actions.pod:3894 ../src/guestfs-actions.pod:6644
12791 #: ../src/guestfs-actions.pod:6662 ../src/guestfs-actions.pod:7043
12792 msgid "(Added in 0.9.2)"
12793 msgstr ""
12794
12795 #. type: =head2
12796 #: ../src/guestfs-actions.pod:3896
12797 msgid "guestfs_lstatlist"
12798 msgstr ""
12799
12800 #. type: verbatim
12801 #: ../src/guestfs-actions.pod:3898
12802 #, no-wrap
12803 msgid ""
12804 " struct guestfs_stat_list *\n"
12805 " guestfs_lstatlist (guestfs_h *g,\n"
12806 "                    const char *path,\n"
12807 "                    char *const *names);\n"
12808 "\n"
12809 msgstr ""
12810
12811 #. type: textblock
12812 #: ../src/guestfs-actions.pod:3903
12813 msgid ""
12814 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12815 "files, where all files are in the directory C<path>.  C<names> is the list "
12816 "of files from this directory."
12817 msgstr ""
12818
12819 #. type: textblock
12820 #: ../src/guestfs-actions.pod:3907 ../fish/guestfish-actions.pod:2655
12821 msgid ""
12822 "On return you get a list of stat structs, with a one-to-one correspondence "
12823 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12824 "then the C<ino> field of that structure is set to C<-1>."
12825 msgstr ""
12826
12827 #. type: textblock
12828 #: ../src/guestfs-actions.pod:3912
12829 msgid ""
12830 "This call is intended for programs that want to efficiently list a directory "
12831 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12832 "for a similarly efficient call for getting extended attributes.  Very long "
12833 "directory listings might cause the protocol message size to be exceeded, "
12834 "causing this call to fail.  The caller must split up such requests into "
12835 "smaller groups of names."
12836 msgstr ""
12837
12838 #. type: textblock
12839 #: ../src/guestfs-actions.pod:3920
12840 msgid ""
12841 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12842 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12843 msgstr ""
12844
12845 #. type: =head2
12846 #: ../src/guestfs-actions.pod:3926
12847 msgid "guestfs_luks_add_key"
12848 msgstr ""
12849
12850 #. type: verbatim
12851 #: ../src/guestfs-actions.pod:3928
12852 #, no-wrap
12853 msgid ""
12854 " int\n"
12855 " guestfs_luks_add_key (guestfs_h *g,\n"
12856 "                       const char *device,\n"
12857 "                       const char *key,\n"
12858 "                       const char *newkey,\n"
12859 "                       int keyslot);\n"
12860 "\n"
12861 msgstr ""
12862
12863 #. type: textblock
12864 #: ../src/guestfs-actions.pod:3935 ../fish/guestfish-actions.pod:2672
12865 msgid ""
12866 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12867 "existing key, and is used to access the device.  C<newkey> is the new key to "
12868 "add.  C<keyslot> is the key slot that will be replaced."
12869 msgstr ""
12870
12871 #. type: textblock
12872 #: ../src/guestfs-actions.pod:3940
12873 msgid ""
12874 "Note that if C<keyslot> already contains a key, then this command will "
12875 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12876 msgstr ""
12877
12878 #. type: textblock
12879 #: ../src/guestfs-actions.pod:3946 ../src/guestfs-actions.pod:3986
12880 #: ../src/guestfs-actions.pod:4009 ../src/guestfs-actions.pod:4029
12881 #: ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:4083
12882 msgid ""
12883 "This function takes a key or passphrase parameter which could contain "
12884 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12885 "information."
12886 msgstr ""
12887
12888 #. type: textblock
12889 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:3990
12890 #: ../src/guestfs-actions.pod:4013 ../src/guestfs-actions.pod:4033
12891 msgid "(Added in 1.5.2)"
12892 msgstr ""
12893
12894 #. type: =head2
12895 #: ../src/guestfs-actions.pod:3952
12896 msgid "guestfs_luks_close"
12897 msgstr ""
12898
12899 #. type: verbatim
12900 #: ../src/guestfs-actions.pod:3954
12901 #, no-wrap
12902 msgid ""
12903 " int\n"
12904 " guestfs_luks_close (guestfs_h *g,\n"
12905 "                     const char *device);\n"
12906 "\n"
12907 msgstr ""
12908
12909 #. type: textblock
12910 #: ../src/guestfs-actions.pod:3958
12911 msgid ""
12912 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12913 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12914 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12915 "underlying block device."
12916 msgstr ""
12917
12918 #. type: textblock
12919 #: ../src/guestfs-actions.pod:3966 ../src/guestfs-actions.pod:4068
12920 #: ../src/guestfs-actions.pod:4087 ../src/guestfs-actions.pod:4137
12921 #: ../src/guestfs-actions.pod:4185
12922 msgid "(Added in 1.5.1)"
12923 msgstr ""
12924
12925 #. type: =head2
12926 #: ../src/guestfs-actions.pod:3968
12927 msgid "guestfs_luks_format"
12928 msgstr ""
12929
12930 #. type: verbatim
12931 #: ../src/guestfs-actions.pod:3970
12932 #, no-wrap
12933 msgid ""
12934 " int\n"
12935 " guestfs_luks_format (guestfs_h *g,\n"
12936 "                      const char *device,\n"
12937 "                      const char *key,\n"
12938 "                      int keyslot);\n"
12939 "\n"
12940 msgstr ""
12941
12942 #. type: textblock
12943 #: ../src/guestfs-actions.pod:3976 ../fish/guestfish-actions.pod:2698
12944 msgid ""
12945 "This command erases existing data on C<device> and formats the device as a "
12946 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12947 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12948 msgstr ""
12949
12950 #. type: textblock
12951 #: ../src/guestfs-actions.pod:3983 ../src/guestfs-actions.pod:4006
12952 #: ../src/guestfs-actions.pod:4149 ../src/guestfs-actions.pod:5252
12953 #: ../src/guestfs-actions.pod:6034 ../src/guestfs-actions.pod:6443
12954 #: ../src/guestfs-actions.pod:6473 ../src/guestfs-actions.pod:6506
12955 #: ../src/guestfs-actions.pod:7682 ../fish/guestfish-actions.pod:2706
12956 #: ../fish/guestfish-actions.pod:2719 ../fish/guestfish-actions.pod:2806
12957 #: ../fish/guestfish-actions.pod:3467 ../fish/guestfish-actions.pod:3987
12958 #: ../fish/guestfish-actions.pod:4297 ../fish/guestfish-actions.pod:4320
12959 #: ../fish/guestfish-actions.pod:4342 ../fish/guestfish-actions.pod:5066
12960 msgid ""
12961 "B<This command is dangerous.  Without careful use you can easily destroy all "
12962 "your data>."
12963 msgstr ""
12964
12965 #. type: =head2
12966 #: ../src/guestfs-actions.pod:3992
12967 msgid "guestfs_luks_format_cipher"
12968 msgstr ""
12969
12970 #. type: verbatim
12971 #: ../src/guestfs-actions.pod:3994
12972 #, no-wrap
12973 msgid ""
12974 " int\n"
12975 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12976 "                             const char *device,\n"
12977 "                             const char *key,\n"
12978 "                             int keyslot,\n"
12979 "                             const char *cipher);\n"
12980 "\n"
12981 msgstr ""
12982
12983 #. type: textblock
12984 #: ../src/guestfs-actions.pod:4001
12985 msgid ""
12986 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12987 "set the C<cipher> used."
12988 msgstr ""
12989
12990 #. type: =head2
12991 #: ../src/guestfs-actions.pod:4015
12992 msgid "guestfs_luks_kill_slot"
12993 msgstr ""
12994
12995 #. type: verbatim
12996 #: ../src/guestfs-actions.pod:4017
12997 #, no-wrap
12998 msgid ""
12999 " int\n"
13000 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13001 "                         const char *device,\n"
13002 "                         const char *key,\n"
13003 "                         int keyslot);\n"
13004 "\n"
13005 msgstr ""
13006
13007 #. type: textblock
13008 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2726
13009 msgid ""
13010 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13011 "device C<device>.  C<key> must be one of the I<other> keys."
13012 msgstr ""
13013
13014 #. type: =head2
13015 #: ../src/guestfs-actions.pod:4035
13016 msgid "guestfs_luks_open"
13017 msgstr ""
13018
13019 #. type: verbatim
13020 #: ../src/guestfs-actions.pod:4037
13021 #, no-wrap
13022 msgid ""
13023 " int\n"
13024 " guestfs_luks_open (guestfs_h *g,\n"
13025 "                    const char *device,\n"
13026 "                    const char *key,\n"
13027 "                    const char *mapname);\n"
13028 "\n"
13029 msgstr ""
13030
13031 #. type: textblock
13032 #: ../src/guestfs-actions.pod:4043 ../fish/guestfish-actions.pod:2737
13033 msgid ""
13034 "This command opens a block device which has been encrypted according to the "
13035 "Linux Unified Key Setup (LUKS) standard."
13036 msgstr ""
13037
13038 #. type: textblock
13039 #: ../src/guestfs-actions.pod:4046 ../fish/guestfish-actions.pod:2740
13040 msgid "C<device> is the encrypted block device or partition."
13041 msgstr ""
13042
13043 #. type: textblock
13044 #: ../src/guestfs-actions.pod:4048 ../fish/guestfish-actions.pod:2742
13045 msgid ""
13046 "The caller must supply one of the keys associated with the LUKS block "
13047 "device, in the C<key> parameter."
13048 msgstr ""
13049
13050 #. type: textblock
13051 #: ../src/guestfs-actions.pod:4051 ../fish/guestfish-actions.pod:2745
13052 msgid ""
13053 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13054 "writes to this block device are decrypted from and encrypted to the "
13055 "underlying C<device> respectively."
13056 msgstr ""
13057
13058 #. type: textblock
13059 #: ../src/guestfs-actions.pod:4055
13060 msgid ""
13061 "If this block device contains LVM volume groups, then calling "
13062 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13063 "visible."
13064 msgstr ""
13065
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:4059
13068 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
13069 msgstr ""
13070
13071 #. type: =head2
13072 #: ../src/guestfs-actions.pod:4070
13073 msgid "guestfs_luks_open_ro"
13074 msgstr ""
13075
13076 #. type: verbatim
13077 #: ../src/guestfs-actions.pod:4072
13078 #, no-wrap
13079 msgid ""
13080 " int\n"
13081 " guestfs_luks_open_ro (guestfs_h *g,\n"
13082 "                       const char *device,\n"
13083 "                       const char *key,\n"
13084 "                       const char *mapname);\n"
13085 "\n"
13086 msgstr ""
13087
13088 #. type: textblock
13089 #: ../src/guestfs-actions.pod:4078
13090 msgid ""
13091 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13092 "created."
13093 msgstr ""
13094
13095 #. type: =head2
13096 #: ../src/guestfs-actions.pod:4089
13097 msgid "guestfs_lvcreate"
13098 msgstr ""
13099
13100 #. type: verbatim
13101 #: ../src/guestfs-actions.pod:4091
13102 #, no-wrap
13103 msgid ""
13104 " int\n"
13105 " guestfs_lvcreate (guestfs_h *g,\n"
13106 "                   const char *logvol,\n"
13107 "                   const char *volgroup,\n"
13108 "                   int mbytes);\n"
13109 "\n"
13110 msgstr ""
13111
13112 #. type: textblock
13113 #: ../src/guestfs-actions.pod:4097 ../fish/guestfish-actions.pod:2773
13114 msgid ""
13115 "This creates an LVM logical volume called C<logvol> on the volume group "
13116 "C<volgroup>, with C<size> megabytes."
13117 msgstr ""
13118
13119 #. type: =head2
13120 #: ../src/guestfs-actions.pod:4104
13121 msgid "guestfs_lvm_canonical_lv_name"
13122 msgstr ""
13123
13124 #. type: verbatim
13125 #: ../src/guestfs-actions.pod:4106
13126 #, no-wrap
13127 msgid ""
13128 " char *\n"
13129 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13130 "                                const char *lvname);\n"
13131 "\n"
13132 msgstr ""
13133
13134 #. type: textblock
13135 #: ../src/guestfs-actions.pod:4110 ../fish/guestfish-actions.pod:2780
13136 msgid ""
13137 "This converts alternative naming schemes for LVs that you might find to the "
13138 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13139 "LV>."
13140 msgstr ""
13141
13142 #. type: textblock
13143 #: ../src/guestfs-actions.pod:4114 ../fish/guestfish-actions.pod:2784
13144 msgid ""
13145 "This command returns an error if the C<lvname> parameter does not refer to a "
13146 "logical volume."
13147 msgstr ""
13148
13149 #. type: textblock
13150 #: ../src/guestfs-actions.pod:4117
13151 msgid "See also C<guestfs_is_lv>."
13152 msgstr ""
13153
13154 #. type: textblock
13155 #: ../src/guestfs-actions.pod:4122
13156 msgid "(Added in 1.5.24)"
13157 msgstr ""
13158
13159 #. type: =head2
13160 #: ../src/guestfs-actions.pod:4124
13161 msgid "guestfs_lvm_clear_filter"
13162 msgstr ""
13163
13164 #. type: verbatim
13165 #: ../src/guestfs-actions.pod:4126
13166 #, no-wrap
13167 msgid ""
13168 " int\n"
13169 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13170 "\n"
13171 msgstr ""
13172
13173 #. type: textblock
13174 #: ../src/guestfs-actions.pod:4129
13175 msgid ""
13176 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13177 "see every block device."
13178 msgstr ""
13179
13180 #. type: textblock
13181 #: ../src/guestfs-actions.pod:4132 ../src/guestfs-actions.pod:4174
13182 #: ../fish/guestfish-actions.pod:2796 ../fish/guestfish-actions.pod:2827
13183 msgid ""
13184 "This command also clears the LVM cache and performs a volume group scan."
13185 msgstr ""
13186
13187 #. type: =head2
13188 #: ../src/guestfs-actions.pod:4139
13189 msgid "guestfs_lvm_remove_all"
13190 msgstr ""
13191
13192 #. type: verbatim
13193 #: ../src/guestfs-actions.pod:4141
13194 #, no-wrap
13195 msgid ""
13196 " int\n"
13197 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13198 "\n"
13199 msgstr ""
13200
13201 #. type: textblock
13202 #: ../src/guestfs-actions.pod:4144 ../fish/guestfish-actions.pod:2803
13203 msgid ""
13204 "This command removes all LVM logical volumes, volume groups and physical "
13205 "volumes."
13206 msgstr ""
13207
13208 #. type: =head2
13209 #: ../src/guestfs-actions.pod:4154
13210 msgid "guestfs_lvm_set_filter"
13211 msgstr ""
13212
13213 #. type: verbatim
13214 #: ../src/guestfs-actions.pod:4156
13215 #, no-wrap
13216 msgid ""
13217 " int\n"
13218 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13219 "                         char *const *devices);\n"
13220 "\n"
13221 msgstr ""
13222
13223 #. type: textblock
13224 #: ../src/guestfs-actions.pod:4160 ../fish/guestfish-actions.pod:2813
13225 msgid ""
13226 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
13227 "block devices in the list C<devices>, and will ignore all other attached "
13228 "block devices."
13229 msgstr ""
13230
13231 #. type: textblock
13232 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2817
13233 msgid ""
13234 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13235 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
13236 "there are two types of duplication possible: either cloned PVs/VGs which "
13237 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
13238 "same name.  In normal operation you cannot create this situation, but you "
13239 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13240 "inside the LVM metadata."
13241 msgstr ""
13242
13243 #. type: textblock
13244 #: ../src/guestfs-actions.pod:4177 ../fish/guestfish-actions.pod:2830
13245 msgid "You can filter whole block devices or individual partitions."
13246 msgstr ""
13247
13248 #. type: textblock
13249 #: ../src/guestfs-actions.pod:4179 ../fish/guestfish-actions.pod:2832
13250 msgid ""
13251 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13252 "filesystem), even if you are not filtering out that VG."
13253 msgstr ""
13254
13255 #. type: =head2
13256 #: ../src/guestfs-actions.pod:4187
13257 msgid "guestfs_lvremove"
13258 msgstr ""
13259
13260 #. type: verbatim
13261 #: ../src/guestfs-actions.pod:4189
13262 #, no-wrap
13263 msgid ""
13264 " int\n"
13265 " guestfs_lvremove (guestfs_h *g,\n"
13266 "                   const char *device);\n"
13267 "\n"
13268 msgstr ""
13269
13270 #. type: textblock
13271 #: ../src/guestfs-actions.pod:4193 ../fish/guestfish-actions.pod:2840
13272 msgid ""
13273 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13274 "LV, such as C</dev/VG/LV>."
13275 msgstr ""
13276
13277 #. type: textblock
13278 #: ../src/guestfs-actions.pod:4196 ../fish/guestfish-actions.pod:2843
13279 msgid ""
13280 "You can also remove all LVs in a volume group by specifying the VG name, C</"
13281 "dev/VG>."
13282 msgstr ""
13283
13284 #. type: textblock
13285 #: ../src/guestfs-actions.pod:4201 ../src/guestfs-actions.pod:5598
13286 #: ../src/guestfs-actions.pod:7413
13287 msgid "(Added in 1.0.13)"
13288 msgstr ""
13289
13290 #. type: =head2
13291 #: ../src/guestfs-actions.pod:4203
13292 msgid "guestfs_lvrename"
13293 msgstr ""
13294
13295 #. type: verbatim
13296 #: ../src/guestfs-actions.pod:4205
13297 #, no-wrap
13298 msgid ""
13299 " int\n"
13300 " guestfs_lvrename (guestfs_h *g,\n"
13301 "                   const char *logvol,\n"
13302 "                   const char *newlogvol);\n"
13303 "\n"
13304 msgstr ""
13305
13306 #. type: textblock
13307 #: ../src/guestfs-actions.pod:4210 ../fish/guestfish-actions.pod:2850
13308 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13309 msgstr ""
13310
13311 #. type: textblock
13312 #: ../src/guestfs-actions.pod:4214 ../src/guestfs-actions.pod:7426
13313 msgid "(Added in 1.0.83)"
13314 msgstr ""
13315
13316 #. type: =head2
13317 #: ../src/guestfs-actions.pod:4216
13318 msgid "guestfs_lvresize"
13319 msgstr ""
13320
13321 #. type: verbatim
13322 #: ../src/guestfs-actions.pod:4218
13323 #, no-wrap
13324 msgid ""
13325 " int\n"
13326 " guestfs_lvresize (guestfs_h *g,\n"
13327 "                   const char *device,\n"
13328 "                   int mbytes);\n"
13329 "\n"
13330 msgstr ""
13331
13332 #. type: textblock
13333 #: ../src/guestfs-actions.pod:4223 ../fish/guestfish-actions.pod:2856
13334 msgid ""
13335 "This resizes (expands or shrinks) an existing LVM logical volume to "
13336 "C<mbytes>.  When reducing, data in the reduced part is lost."
13337 msgstr ""
13338
13339 #. type: =head2
13340 #: ../src/guestfs-actions.pod:4231
13341 msgid "guestfs_lvresize_free"
13342 msgstr ""
13343
13344 #. type: verbatim
13345 #: ../src/guestfs-actions.pod:4233
13346 #, no-wrap
13347 msgid ""
13348 " int\n"
13349 " guestfs_lvresize_free (guestfs_h *g,\n"
13350 "                        const char *lv,\n"
13351 "                        int percent);\n"
13352 "\n"
13353 msgstr ""
13354
13355 #. type: textblock
13356 #: ../src/guestfs-actions.pod:4238 ../fish/guestfish-actions.pod:2864
13357 msgid ""
13358 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13359 "remaining free space in the volume group.  Commonly you would call this with "
13360 "pc = 100 which expands the logical volume as much as possible, using all "
13361 "remaining free space in the volume group."
13362 msgstr ""
13363
13364 #. type: textblock
13365 #: ../src/guestfs-actions.pod:4246
13366 msgid "(Added in 1.3.3)"
13367 msgstr ""
13368
13369 #. type: =head2
13370 #: ../src/guestfs-actions.pod:4248
13371 msgid "guestfs_lvs"
13372 msgstr ""
13373
13374 #. type: verbatim
13375 #: ../src/guestfs-actions.pod:4250
13376 #, no-wrap
13377 msgid ""
13378 " char **\n"
13379 " guestfs_lvs (guestfs_h *g);\n"
13380 "\n"
13381 msgstr ""
13382
13383 #. type: textblock
13384 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2874
13385 msgid ""
13386 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13387 "(8)> command."
13388 msgstr ""
13389
13390 #. type: textblock
13391 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2877
13392 msgid ""
13393 "This returns a list of the logical volume device names (eg. C</dev/"
13394 "VolGroup00/LogVol00>)."
13395 msgstr ""
13396
13397 #. type: textblock
13398 #: ../src/guestfs-actions.pod:4259
13399 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13400 msgstr ""
13401
13402 #. type: =head2
13403 #: ../src/guestfs-actions.pod:4267
13404 msgid "guestfs_lvs_full"
13405 msgstr ""
13406
13407 #. type: verbatim
13408 #: ../src/guestfs-actions.pod:4269
13409 #, no-wrap
13410 msgid ""
13411 " struct guestfs_lvm_lv_list *\n"
13412 " guestfs_lvs_full (guestfs_h *g);\n"
13413 "\n"
13414 msgstr ""
13415
13416 #. type: textblock
13417 #: ../src/guestfs-actions.pod:4272 ../fish/guestfish-actions.pod:2886
13418 msgid ""
13419 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13420 "(8)> command.  The \"full\" version includes all fields."
13421 msgstr ""
13422
13423 #. type: textblock
13424 #: ../src/guestfs-actions.pod:4275
13425 msgid ""
13426 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13427 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13428 msgstr ""
13429
13430 #. type: =head2
13431 #: ../src/guestfs-actions.pod:4281
13432 msgid "guestfs_lvuuid"
13433 msgstr ""
13434
13435 #. type: verbatim
13436 #: ../src/guestfs-actions.pod:4283
13437 #, no-wrap
13438 msgid ""
13439 " char *\n"
13440 " guestfs_lvuuid (guestfs_h *g,\n"
13441 "                 const char *device);\n"
13442 "\n"
13443 msgstr ""
13444
13445 #. type: textblock
13446 #: ../src/guestfs-actions.pod:4287 ../fish/guestfish-actions.pod:2893
13447 msgid "This command returns the UUID of the LVM LV C<device>."
13448 msgstr ""
13449
13450 #. type: =head2
13451 #: ../src/guestfs-actions.pod:4294
13452 msgid "guestfs_lxattrlist"
13453 msgstr ""
13454
13455 #. type: verbatim
13456 #: ../src/guestfs-actions.pod:4296
13457 #, no-wrap
13458 msgid ""
13459 " struct guestfs_xattr_list *\n"
13460 " guestfs_lxattrlist (guestfs_h *g,\n"
13461 "                     const char *path,\n"
13462 "                     char *const *names);\n"
13463 "\n"
13464 msgstr ""
13465
13466 #. type: textblock
13467 #: ../src/guestfs-actions.pod:4301 ../fish/guestfish-actions.pod:2899
13468 msgid ""
13469 "This call allows you to get the extended attributes of multiple files, where "
13470 "all files are in the directory C<path>.  C<names> is the list of files from "
13471 "this directory."
13472 msgstr ""
13473
13474 #. type: textblock
13475 #: ../src/guestfs-actions.pod:4305 ../fish/guestfish-actions.pod:2903
13476 msgid ""
13477 "On return you get a flat list of xattr structs which must be interpreted "
13478 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13479 "C<attrval> in this struct is zero-length to indicate there was an error "
13480 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13481 "number (the number of following attributes for this file, which could be C<"
13482 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13483 "for the first named file.  This repeats for the second and subsequent files."
13484 msgstr ""
13485
13486 #. type: textblock
13487 #: ../src/guestfs-actions.pod:4315
13488 msgid ""
13489 "This call is intended for programs that want to efficiently list a directory "
13490 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13491 "a similarly efficient call for getting standard stats.  Very long directory "
13492 "listings might cause the protocol message size to be exceeded, causing this "
13493 "call to fail.  The caller must split up such requests into smaller groups of "
13494 "names."
13495 msgstr ""
13496
13497 #. type: =head2
13498 #: ../src/guestfs-actions.pod:4329
13499 msgid "guestfs_mkdir"
13500 msgstr ""
13501
13502 #. type: verbatim
13503 #: ../src/guestfs-actions.pod:4331
13504 #, no-wrap
13505 msgid ""
13506 " int\n"
13507 " guestfs_mkdir (guestfs_h *g,\n"
13508 "                const char *path);\n"
13509 "\n"
13510 msgstr ""
13511
13512 #. type: textblock
13513 #: ../src/guestfs-actions.pod:4335 ../fish/guestfish-actions.pod:2925
13514 msgid "Create a directory named C<path>."
13515 msgstr ""
13516
13517 #. type: =head2
13518 #: ../src/guestfs-actions.pod:4341
13519 msgid "guestfs_mkdir_mode"
13520 msgstr ""
13521
13522 #. type: verbatim
13523 #: ../src/guestfs-actions.pod:4343
13524 #, no-wrap
13525 msgid ""
13526 " int\n"
13527 " guestfs_mkdir_mode (guestfs_h *g,\n"
13528 "                     const char *path,\n"
13529 "                     int mode);\n"
13530 "\n"
13531 msgstr ""
13532
13533 #. type: textblock
13534 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2931
13535 msgid ""
13536 "This command creates a directory, setting the initial permissions of the "
13537 "directory to C<mode>."
13538 msgstr ""
13539
13540 #. type: textblock
13541 #: ../src/guestfs-actions.pod:4351 ../fish/guestfish-actions.pod:2934
13542 msgid ""
13543 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13544 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13545 "other ways."
13546 msgstr ""
13547
13548 #. type: textblock
13549 #: ../src/guestfs-actions.pod:4355
13550 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13551 msgstr ""
13552
13553 #. type: =head2
13554 #: ../src/guestfs-actions.pod:4361
13555 msgid "guestfs_mkdir_p"
13556 msgstr ""
13557
13558 #. type: verbatim
13559 #: ../src/guestfs-actions.pod:4363
13560 #, no-wrap
13561 msgid ""
13562 " int\n"
13563 " guestfs_mkdir_p (guestfs_h *g,\n"
13564 "                  const char *path);\n"
13565 "\n"
13566 msgstr ""
13567
13568 #. type: textblock
13569 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2944
13570 msgid ""
13571 "Create a directory named C<path>, creating any parent directories as "
13572 "necessary.  This is like the C<mkdir -p> shell command."
13573 msgstr ""
13574
13575 #. type: =head2
13576 #: ../src/guestfs-actions.pod:4374
13577 msgid "guestfs_mkdtemp"
13578 msgstr ""
13579
13580 #. type: verbatim
13581 #: ../src/guestfs-actions.pod:4376
13582 #, no-wrap
13583 msgid ""
13584 " char *\n"
13585 " guestfs_mkdtemp (guestfs_h *g,\n"
13586 "                  const char *template);\n"
13587 "\n"
13588 msgstr ""
13589
13590 #. type: textblock
13591 #: ../src/guestfs-actions.pod:4380 ../fish/guestfish-actions.pod:2951
13592 msgid ""
13593 "This command creates a temporary directory.  The C<template> parameter "
13594 "should be a full pathname for the temporary directory name with the final "
13595 "six characters being \"XXXXXX\"."
13596 msgstr ""
13597
13598 #. type: textblock
13599 #: ../src/guestfs-actions.pod:4385 ../fish/guestfish-actions.pod:2956
13600 msgid ""
13601 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13602 "being suitable for Windows filesystems."
13603 msgstr ""
13604
13605 #. type: textblock
13606 #: ../src/guestfs-actions.pod:4388 ../fish/guestfish-actions.pod:2959
13607 msgid "The name of the temporary directory that was created is returned."
13608 msgstr ""
13609
13610 #. type: textblock
13611 #: ../src/guestfs-actions.pod:4391 ../fish/guestfish-actions.pod:2962
13612 msgid "The temporary directory is created with mode 0700 and is owned by root."
13613 msgstr ""
13614
13615 #. type: textblock
13616 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2965
13617 msgid ""
13618 "The caller is responsible for deleting the temporary directory and its "
13619 "contents after use."
13620 msgstr ""
13621
13622 #. type: textblock
13623 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2968
13624 msgid "See also: L<mkdtemp(3)>"
13625 msgstr ""
13626
13627 #. type: =head2
13628 #: ../src/guestfs-actions.pod:4404
13629 msgid "guestfs_mke2fs_J"
13630 msgstr ""
13631
13632 #. type: verbatim
13633 #: ../src/guestfs-actions.pod:4406
13634 #, no-wrap
13635 msgid ""
13636 " int\n"
13637 " guestfs_mke2fs_J (guestfs_h *g,\n"
13638 "                   const char *fstype,\n"
13639 "                   int blocksize,\n"
13640 "                   const char *device,\n"
13641 "                   const char *journal);\n"
13642 "\n"
13643 msgstr ""
13644
13645 #. type: textblock
13646 #: ../src/guestfs-actions.pod:4413 ../fish/guestfish-actions.pod:2974
13647 msgid ""
13648 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13649 "C<journal>.  It is equivalent to the command:"
13650 msgstr ""
13651
13652 #. type: verbatim
13653 #: ../src/guestfs-actions.pod:4417 ../fish/guestfish-actions.pod:2978
13654 #, no-wrap
13655 msgid ""
13656 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13657 "\n"
13658 msgstr ""
13659
13660 #. type: textblock
13661 #: ../src/guestfs-actions.pod:4419
13662 msgid "See also C<guestfs_mke2journal>."
13663 msgstr ""
13664
13665 #. type: textblock
13666 #: ../src/guestfs-actions.pod:4423 ../src/guestfs-actions.pod:4441
13667 #: ../src/guestfs-actions.pod:4459 ../src/guestfs-actions.pod:4475
13668 #: ../src/guestfs-actions.pod:4489 ../src/guestfs-actions.pod:4503
13669 #: ../src/guestfs-actions.pod:4562 ../src/guestfs-actions.pod:4839
13670 msgid "(Added in 1.0.68)"
13671 msgstr ""
13672
13673 #. type: =head2
13674 #: ../src/guestfs-actions.pod:4425
13675 msgid "guestfs_mke2fs_JL"
13676 msgstr ""
13677
13678 #. type: verbatim
13679 #: ../src/guestfs-actions.pod:4427
13680 #, no-wrap
13681 msgid ""
13682 " int\n"
13683 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13684 "                    const char *fstype,\n"
13685 "                    int blocksize,\n"
13686 "                    const char *device,\n"
13687 "                    const char *label);\n"
13688 "\n"
13689 msgstr ""
13690
13691 #. type: textblock
13692 #: ../src/guestfs-actions.pod:4434 ../fish/guestfish-actions.pod:2986
13693 msgid ""
13694 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13695 "the journal labeled C<label>."
13696 msgstr ""
13697
13698 #. type: textblock
13699 #: ../src/guestfs-actions.pod:4437
13700 msgid "See also C<guestfs_mke2journal_L>."
13701 msgstr ""
13702
13703 #. type: =head2
13704 #: ../src/guestfs-actions.pod:4443
13705 msgid "guestfs_mke2fs_JU"
13706 msgstr ""
13707
13708 #. type: verbatim
13709 #: ../src/guestfs-actions.pod:4445
13710 #, no-wrap
13711 msgid ""
13712 " int\n"
13713 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13714 "                    const char *fstype,\n"
13715 "                    int blocksize,\n"
13716 "                    const char *device,\n"
13717 "                    const char *uuid);\n"
13718 "\n"
13719 msgstr ""
13720
13721 #. type: textblock
13722 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:2995
13723 msgid ""
13724 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13725 "the journal with UUID C<uuid>."
13726 msgstr ""
13727
13728 #. type: textblock
13729 #: ../src/guestfs-actions.pod:4455
13730 msgid "See also C<guestfs_mke2journal_U>."
13731 msgstr ""
13732
13733 #. type: =head2
13734 #: ../src/guestfs-actions.pod:4461
13735 msgid "guestfs_mke2journal"
13736 msgstr ""
13737
13738 #. type: verbatim
13739 #: ../src/guestfs-actions.pod:4463
13740 #, no-wrap
13741 msgid ""
13742 " int\n"
13743 " guestfs_mke2journal (guestfs_h *g,\n"
13744 "                      int blocksize,\n"
13745 "                      const char *device);\n"
13746 "\n"
13747 msgstr ""
13748
13749 #. type: textblock
13750 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3004
13751 msgid ""
13752 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13753 "command:"
13754 msgstr ""
13755
13756 #. type: verbatim
13757 #: ../src/guestfs-actions.pod:4471 ../fish/guestfish-actions.pod:3007
13758 #, no-wrap
13759 msgid ""
13760 " mke2fs -O journal_dev -b blocksize device\n"
13761 "\n"
13762 msgstr ""
13763
13764 #. type: =head2
13765 #: ../src/guestfs-actions.pod:4477
13766 msgid "guestfs_mke2journal_L"
13767 msgstr ""
13768
13769 #. type: verbatim
13770 #: ../src/guestfs-actions.pod:4479
13771 #, no-wrap
13772 msgid ""
13773 " int\n"
13774 " guestfs_mke2journal_L (guestfs_h *g,\n"
13775 "                        int blocksize,\n"
13776 "                        const char *label,\n"
13777 "                        const char *device);\n"
13778 "\n"
13779 msgstr ""
13780
13781 #. type: textblock
13782 #: ../src/guestfs-actions.pod:4485 ../fish/guestfish-actions.pod:3013
13783 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13784 msgstr ""
13785
13786 #. type: =head2
13787 #: ../src/guestfs-actions.pod:4491
13788 msgid "guestfs_mke2journal_U"
13789 msgstr ""
13790
13791 #. type: verbatim
13792 #: ../src/guestfs-actions.pod:4493
13793 #, no-wrap
13794 msgid ""
13795 " int\n"
13796 " guestfs_mke2journal_U (guestfs_h *g,\n"
13797 "                        int blocksize,\n"
13798 "                        const char *uuid,\n"
13799 "                        const char *device);\n"
13800 "\n"
13801 msgstr ""
13802
13803 #. type: textblock
13804 #: ../src/guestfs-actions.pod:4499 ../fish/guestfish-actions.pod:3019
13805 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13806 msgstr ""
13807
13808 #. type: =head2
13809 #: ../src/guestfs-actions.pod:4505
13810 msgid "guestfs_mkfifo"
13811 msgstr ""
13812
13813 #. type: verbatim
13814 #: ../src/guestfs-actions.pod:4507
13815 #, no-wrap
13816 msgid ""
13817 " int\n"
13818 " guestfs_mkfifo (guestfs_h *g,\n"
13819 "                 int mode,\n"
13820 "                 const char *path);\n"
13821 "\n"
13822 msgstr ""
13823
13824 #. type: textblock
13825 #: ../src/guestfs-actions.pod:4512
13826 msgid ""
13827 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13828 "is just a convenient wrapper around C<guestfs_mknod>."
13829 msgstr ""
13830
13831 #. type: =head2
13832 #: ../src/guestfs-actions.pod:4522
13833 msgid "guestfs_mkfs"
13834 msgstr ""
13835
13836 #. type: verbatim
13837 #: ../src/guestfs-actions.pod:4524
13838 #, no-wrap
13839 msgid ""
13840 " int\n"
13841 " guestfs_mkfs (guestfs_h *g,\n"
13842 "               const char *fstype,\n"
13843 "               const char *device);\n"
13844 "\n"
13845 msgstr ""
13846
13847 #. type: textblock
13848 #: ../src/guestfs-actions.pod:4529 ../fish/guestfish-actions.pod:3035
13849 msgid ""
13850 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13851 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13852 msgstr ""
13853
13854 #. type: =head2
13855 #: ../src/guestfs-actions.pod:4537
13856 msgid "guestfs_mkfs_b"
13857 msgstr ""
13858
13859 #. type: verbatim
13860 #: ../src/guestfs-actions.pod:4539
13861 #, no-wrap
13862 msgid ""
13863 " int\n"
13864 " guestfs_mkfs_b (guestfs_h *g,\n"
13865 "                 const char *fstype,\n"
13866 "                 int blocksize,\n"
13867 "                 const char *device);\n"
13868 "\n"
13869 msgstr ""
13870
13871 #. type: textblock
13872 #: ../src/guestfs-actions.pod:4545
13873 msgid ""
13874 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13875 "block size of the resulting filesystem.  Supported block sizes depend on the "
13876 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13877 msgstr ""
13878
13879 #. type: textblock
13880 #: ../src/guestfs-actions.pod:4550 ../src/guestfs-actions.pod:4595
13881 #: ../fish/guestfish-actions.pod:3048 ../fish/guestfish-actions.pod:3075
13882 msgid ""
13883 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13884 "cluster size."
13885 msgstr ""
13886
13887 #. type: textblock
13888 #: ../src/guestfs-actions.pod:4555 ../fish/guestfish-actions.pod:3051
13889 msgid ""
13890 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13891 msgstr ""
13892
13893 #. type: =head2
13894 #: ../src/guestfs-actions.pod:4564
13895 msgid "guestfs_mkfs_opts"
13896 msgstr ""
13897
13898 #. type: verbatim
13899 #: ../src/guestfs-actions.pod:4566
13900 #, no-wrap
13901 msgid ""
13902 " int\n"
13903 " guestfs_mkfs_opts (guestfs_h *g,\n"
13904 "                    const char *fstype,\n"
13905 "                    const char *device,\n"
13906 "                    ...);\n"
13907 "\n"
13908 msgstr ""
13909
13910 #. type: verbatim
13911 #: ../src/guestfs-actions.pod:4577
13912 #, no-wrap
13913 msgid ""
13914 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13915 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13916 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
13917 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
13918 "\n"
13919 msgstr ""
13920
13921 #. type: textblock
13922 #: ../src/guestfs-actions.pod:4582 ../fish/guestfish-actions.pod:3062
13923 msgid ""
13924 "This function creates a filesystem on C<device>.  The filesystem type is "
13925 "C<fstype>, for example C<ext3>."
13926 msgstr ""
13927
13928 #. type: =item
13929 #: ../src/guestfs-actions.pod:4589 ../fish/guestfish-actions.pod:3069
13930 msgid "C<blocksize>"
13931 msgstr ""
13932
13933 #. type: textblock
13934 #: ../src/guestfs-actions.pod:4591 ../fish/guestfish-actions.pod:3071
13935 msgid ""
13936 "The filesystem block size.  Supported block sizes depend on the filesystem "
13937 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13938 "filesystems."
13939 msgstr ""
13940
13941 #. type: textblock
13942 #: ../src/guestfs-actions.pod:4598 ../fish/guestfish-actions.pod:3078
13943 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13944 msgstr ""
13945
13946 #. type: =item
13947 #: ../src/guestfs-actions.pod:4600 ../fish/guestfish-actions.pod:3080
13948 msgid "C<features>"
13949 msgstr ""
13950
13951 #. type: textblock
13952 #: ../src/guestfs-actions.pod:4602 ../fish/guestfish-actions.pod:3082
13953 msgid "This passes the I<-O> parameter to the external mkfs program."
13954 msgstr ""
13955
13956 #. type: textblock
13957 #: ../src/guestfs-actions.pod:4604 ../fish/guestfish-actions.pod:3084
13958 msgid ""
13959 "For certain filesystem types, this allows extra filesystem features to be "
13960 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13961 msgstr ""
13962
13963 #. type: textblock
13964 #: ../src/guestfs-actions.pod:4608 ../fish/guestfish-actions.pod:3088
13965 msgid ""
13966 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13967 "type."
13968 msgstr ""
13969
13970 #. type: =item
13971 #: ../src/guestfs-actions.pod:4611 ../fish/guestfish-actions.pod:3091
13972 #, fuzzy
13973 #| msgid "C<inspector>"
13974 msgid "C<inode>"
13975 msgstr "C<inspector>"
13976
13977 #. type: textblock
13978 #: ../src/guestfs-actions.pod:4613 ../fish/guestfish-actions.pod:3093
13979 msgid ""
13980 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
13981 "sets the inode size (only for ext2/3/4 filesystems at present)."
13982 msgstr ""
13983
13984 #. type: =item
13985 #: ../src/guestfs-actions.pod:4616 ../fish/guestfish-actions.pod:3096
13986 #, fuzzy
13987 #| msgid "C<inspector>"
13988 msgid "C<sectorsize>"
13989 msgstr "C<inspector>"
13990
13991 #. type: textblock
13992 #: ../src/guestfs-actions.pod:4618 ../fish/guestfish-actions.pod:3098
13993 msgid ""
13994 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
13995 "sets sector size for ufs filesystem."
13996 msgstr ""
13997
13998 #. type: textblock
13999 #: ../src/guestfs-actions.pod:4625
14000 msgid "(Added in 1.7.19)"
14001 msgstr ""
14002
14003 #. type: =head2
14004 #: ../src/guestfs-actions.pod:4627
14005 msgid "guestfs_mkfs_opts_va"
14006 msgstr ""
14007
14008 #. type: verbatim
14009 #: ../src/guestfs-actions.pod:4629
14010 #, no-wrap
14011 msgid ""
14012 " int\n"
14013 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14014 "                       const char *fstype,\n"
14015 "                       const char *device,\n"
14016 "                       va_list args);\n"
14017 "\n"
14018 msgstr ""
14019
14020 #. type: textblock
14021 #: ../src/guestfs-actions.pod:4635
14022 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14023 msgstr ""
14024
14025 #. type: =head2
14026 #: ../src/guestfs-actions.pod:4639
14027 msgid "guestfs_mkfs_opts_argv"
14028 msgstr ""
14029
14030 #. type: verbatim
14031 #: ../src/guestfs-actions.pod:4641
14032 #, no-wrap
14033 msgid ""
14034 " int\n"
14035 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14036 "                         const char *fstype,\n"
14037 "                         const char *device,\n"
14038 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14039 "\n"
14040 msgstr ""
14041
14042 #. type: textblock
14043 #: ../src/guestfs-actions.pod:4647
14044 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14045 msgstr ""
14046
14047 #. type: =head2
14048 #: ../src/guestfs-actions.pod:4651
14049 msgid "guestfs_mkmountpoint"
14050 msgstr ""
14051
14052 #. type: verbatim
14053 #: ../src/guestfs-actions.pod:4653
14054 #, no-wrap
14055 msgid ""
14056 " int\n"
14057 " guestfs_mkmountpoint (guestfs_h *g,\n"
14058 "                       const char *exemptpath);\n"
14059 "\n"
14060 msgstr ""
14061
14062 #. type: textblock
14063 #: ../src/guestfs-actions.pod:4657
14064 msgid ""
14065 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14066 "that can be used to create extra mountpoints before mounting the first "
14067 "filesystem."
14068 msgstr ""
14069
14070 #. type: textblock
14071 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3113
14072 msgid ""
14073 "These calls are I<only> necessary in some very limited circumstances, mainly "
14074 "the case where you want to mount a mix of unrelated and/or read-only "
14075 "filesystems together."
14076 msgstr ""
14077
14078 #. type: textblock
14079 #: ../src/guestfs-actions.pod:4665 ../fish/guestfish-actions.pod:3117
14080 msgid ""
14081 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14082 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14083 "inside that.  You can unpack this as follows in guestfish:"
14084 msgstr ""
14085
14086 #. type: verbatim
14087 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3122
14088 #, no-wrap
14089 msgid ""
14090 " add-ro Fedora-11-i686-Live.iso\n"
14091 " run\n"
14092 " mkmountpoint /cd\n"
14093 " mkmountpoint /sqsh\n"
14094 " mkmountpoint /ext3fs\n"
14095 " mount /dev/sda /cd\n"
14096 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14097 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14098 "\n"
14099 msgstr ""
14100
14101 #. type: textblock
14102 #: ../src/guestfs-actions.pod:4679 ../fish/guestfish-actions.pod:3131
14103 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14104 msgstr ""
14105
14106 #. type: textblock
14107 #: ../src/guestfs-actions.pod:4681
14108 msgid ""
14109 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14110 "may get unexpected errors if you try to mix these calls.  It is safest to "
14111 "manually unmount filesystems and remove mountpoints after use."
14112 msgstr ""
14113
14114 #. type: textblock
14115 #: ../src/guestfs-actions.pod:4685
14116 msgid ""
14117 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14118 "first, so for this to work for manual mountpoints, you must ensure that the "
14119 "innermost mountpoints have the longest pathnames, as in the example code "
14120 "above."
14121 msgstr ""
14122
14123 #. type: textblock
14124 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3142
14125 msgid ""
14126 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14127 msgstr ""
14128
14129 #. type: textblock
14130 #: ../src/guestfs-actions.pod:4692
14131 msgid ""
14132 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14133 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
14134 "can also trigger these issues."
14135 msgstr ""
14136
14137 #. type: textblock
14138 #: ../src/guestfs-actions.pod:4698 ../src/guestfs-actions.pod:5014
14139 #: ../src/guestfs-actions.pod:6018
14140 msgid "(Added in 1.0.62)"
14141 msgstr ""
14142
14143 #. type: =head2
14144 #: ../src/guestfs-actions.pod:4700
14145 msgid "guestfs_mknod"
14146 msgstr ""
14147
14148 #. type: verbatim
14149 #: ../src/guestfs-actions.pod:4702
14150 #, no-wrap
14151 msgid ""
14152 " int\n"
14153 " guestfs_mknod (guestfs_h *g,\n"
14154 "                int mode,\n"
14155 "                int devmajor,\n"
14156 "                int devminor,\n"
14157 "                const char *path);\n"
14158 "\n"
14159 msgstr ""
14160
14161 #. type: textblock
14162 #: ../src/guestfs-actions.pod:4709 ../fish/guestfish-actions.pod:3152
14163 msgid ""
14164 "This call creates block or character special devices, or named pipes (FIFOs)."
14165 msgstr ""
14166
14167 #. type: textblock
14168 #: ../src/guestfs-actions.pod:4712 ../fish/guestfish-actions.pod:3155
14169 msgid ""
14170 "The C<mode> parameter should be the mode, using the standard constants.  "
14171 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14172 "used when creating block and character special devices."
14173 msgstr ""
14174
14175 #. type: textblock
14176 #: ../src/guestfs-actions.pod:4717
14177 msgid ""
14178 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14179 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14180 "regular file).  These constants are available in the standard Linux header "
14181 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14182 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
14183 "the appropriate constant for you."
14184 msgstr ""
14185
14186 #. type: =head2
14187 #: ../src/guestfs-actions.pod:4731
14188 msgid "guestfs_mknod_b"
14189 msgstr ""
14190
14191 #. type: verbatim
14192 #: ../src/guestfs-actions.pod:4733
14193 #, no-wrap
14194 msgid ""
14195 " int\n"
14196 " guestfs_mknod_b (guestfs_h *g,\n"
14197 "                  int mode,\n"
14198 "                  int devmajor,\n"
14199 "                  int devminor,\n"
14200 "                  const char *path);\n"
14201 "\n"
14202 msgstr ""
14203
14204 #. type: textblock
14205 #: ../src/guestfs-actions.pod:4740
14206 msgid ""
14207 "This call creates a block device node called C<path> with mode C<mode> and "
14208 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14209 "wrapper around C<guestfs_mknod>."
14210 msgstr ""
14211
14212 #. type: =head2
14213 #: ../src/guestfs-actions.pod:4750
14214 msgid "guestfs_mknod_c"
14215 msgstr ""
14216
14217 #. type: verbatim
14218 #: ../src/guestfs-actions.pod:4752
14219 #, no-wrap
14220 msgid ""
14221 " int\n"
14222 " guestfs_mknod_c (guestfs_h *g,\n"
14223 "                  int mode,\n"
14224 "                  int devmajor,\n"
14225 "                  int devminor,\n"
14226 "                  const char *path);\n"
14227 "\n"
14228 msgstr ""
14229
14230 #. type: textblock
14231 #: ../src/guestfs-actions.pod:4759
14232 msgid ""
14233 "This call creates a char device node called C<path> with mode C<mode> and "
14234 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14235 "wrapper around C<guestfs_mknod>."
14236 msgstr ""
14237
14238 #. type: =head2
14239 #: ../src/guestfs-actions.pod:4769
14240 msgid "guestfs_mkswap"
14241 msgstr ""
14242
14243 #. type: verbatim
14244 #: ../src/guestfs-actions.pod:4771
14245 #, no-wrap
14246 msgid ""
14247 " int\n"
14248 " guestfs_mkswap (guestfs_h *g,\n"
14249 "                 const char *device);\n"
14250 "\n"
14251 msgstr ""
14252
14253 #. type: textblock
14254 #: ../src/guestfs-actions.pod:4775 ../fish/guestfish-actions.pod:3194
14255 msgid "Create a swap partition on C<device>."
14256 msgstr ""
14257
14258 #. type: =head2
14259 #: ../src/guestfs-actions.pod:4781
14260 msgid "guestfs_mkswap_L"
14261 msgstr ""
14262
14263 #. type: verbatim
14264 #: ../src/guestfs-actions.pod:4783
14265 #, no-wrap
14266 msgid ""
14267 " int\n"
14268 " guestfs_mkswap_L (guestfs_h *g,\n"
14269 "                   const char *label,\n"
14270 "                   const char *device);\n"
14271 "\n"
14272 msgstr ""
14273
14274 #. type: textblock
14275 #: ../src/guestfs-actions.pod:4788 ../fish/guestfish-actions.pod:3200
14276 msgid "Create a swap partition on C<device> with label C<label>."
14277 msgstr ""
14278
14279 #. type: textblock
14280 #: ../src/guestfs-actions.pod:4790 ../fish/guestfish-actions.pod:3202
14281 msgid ""
14282 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
14283 "sda>), just to a partition.  This appears to be a limitation of the kernel "
14284 "or swap tools."
14285 msgstr ""
14286
14287 #. type: =head2
14288 #: ../src/guestfs-actions.pod:4798
14289 msgid "guestfs_mkswap_U"
14290 msgstr ""
14291
14292 #. type: verbatim
14293 #: ../src/guestfs-actions.pod:4800
14294 #, no-wrap
14295 msgid ""
14296 " int\n"
14297 " guestfs_mkswap_U (guestfs_h *g,\n"
14298 "                   const char *uuid,\n"
14299 "                   const char *device);\n"
14300 "\n"
14301 msgstr ""
14302
14303 #. type: textblock
14304 #: ../src/guestfs-actions.pod:4805 ../fish/guestfish-actions.pod:3210
14305 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14306 msgstr ""
14307
14308 #. type: =head2
14309 #: ../src/guestfs-actions.pod:4811
14310 msgid "guestfs_mkswap_file"
14311 msgstr ""
14312
14313 #. type: verbatim
14314 #: ../src/guestfs-actions.pod:4813
14315 #, no-wrap
14316 msgid ""
14317 " int\n"
14318 " guestfs_mkswap_file (guestfs_h *g,\n"
14319 "                      const char *path);\n"
14320 "\n"
14321 msgstr ""
14322
14323 #. type: textblock
14324 #: ../src/guestfs-actions.pod:4817 ../fish/guestfish-actions.pod:3216
14325 msgid "Create a swap file."
14326 msgstr ""
14327
14328 #. type: textblock
14329 #: ../src/guestfs-actions.pod:4819
14330 msgid ""
14331 "This command just writes a swap file signature to an existing file.  To "
14332 "create the file itself, use something like C<guestfs_fallocate>."
14333 msgstr ""
14334
14335 #. type: =head2
14336 #: ../src/guestfs-actions.pod:4826
14337 msgid "guestfs_modprobe"
14338 msgstr ""
14339
14340 #. type: verbatim
14341 #: ../src/guestfs-actions.pod:4828
14342 #, no-wrap
14343 msgid ""
14344 " int\n"
14345 " guestfs_modprobe (guestfs_h *g,\n"
14346 "                   const char *modulename);\n"
14347 "\n"
14348 msgstr ""
14349
14350 #. type: textblock
14351 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3225
14352 msgid "This loads a kernel module in the appliance."
14353 msgstr ""
14354
14355 #. type: textblock
14356 #: ../src/guestfs-actions.pod:4834 ../fish/guestfish-actions.pod:3227
14357 msgid ""
14358 "The kernel module must have been whitelisted when libguestfs was built (see "
14359 "C<appliance/kmod.whitelist.in> in the source)."
14360 msgstr ""
14361
14362 #. type: =head2
14363 #: ../src/guestfs-actions.pod:4841
14364 msgid "guestfs_mount"
14365 msgstr ""
14366
14367 #. type: verbatim
14368 #: ../src/guestfs-actions.pod:4843
14369 #, no-wrap
14370 msgid ""
14371 " int\n"
14372 " guestfs_mount (guestfs_h *g,\n"
14373 "                const char *device,\n"
14374 "                const char *mountpoint);\n"
14375 "\n"
14376 msgstr ""
14377
14378 #. type: textblock
14379 #: ../src/guestfs-actions.pod:4848 ../fish/guestfish-actions.pod:3234
14380 msgid ""
14381 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14382 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14383 "those block devices contain partitions, they will have the usual names (eg. "
14384 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14385 msgstr ""
14386
14387 #. type: textblock
14388 #: ../src/guestfs-actions.pod:4854 ../fish/guestfish-actions.pod:3240
14389 msgid ""
14390 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14391 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14392 "mounted on directories which already exist."
14393 msgstr ""
14394
14395 #. type: textblock
14396 #: ../src/guestfs-actions.pod:4859 ../fish/guestfish-actions.pod:3245
14397 msgid ""
14398 "The mounted filesystem is writable, if we have sufficient permissions on the "
14399 "underlying device."
14400 msgstr ""
14401
14402 #. type: textblock
14403 #: ../src/guestfs-actions.pod:4862
14404 msgid ""
14405 "B<Important note:> When you use this call, the filesystem options C<sync> "
14406 "and C<noatime> are set implicitly.  This was originally done because we "
14407 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14408 "very large negative performance impact and negligible effect on "
14409 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14410 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14411 "(use an empty string for the first parameter if you don't want any options)."
14412 msgstr ""
14413
14414 #. type: textblock
14415 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3258
14416 msgid ""
14417 "This function is deprecated.  In new code, use the C<mount_options> call "
14418 "instead."
14419 msgstr ""
14420
14421 #. type: =head2
14422 #: ../src/guestfs-actions.pod:4883
14423 msgid "guestfs_mount_9p"
14424 msgstr ""
14425
14426 #. type: verbatim
14427 #: ../src/guestfs-actions.pod:4885
14428 #, no-wrap
14429 msgid ""
14430 " int\n"
14431 " guestfs_mount_9p (guestfs_h *g,\n"
14432 "                   const char *mounttag,\n"
14433 "                   const char *mountpoint,\n"
14434 "                   ...);\n"
14435 "\n"
14436 msgstr ""
14437
14438 #. type: verbatim
14439 #: ../src/guestfs-actions.pod:4896
14440 #, no-wrap
14441 msgid ""
14442 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14443 "\n"
14444 msgstr ""
14445
14446 #. type: textblock
14447 #: ../src/guestfs-actions.pod:4898 ../fish/guestfish-actions.pod:3269
14448 msgid ""
14449 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14450 "C<mountpoint>."
14451 msgstr ""
14452
14453 #. type: textblock
14454 #: ../src/guestfs-actions.pod:4901 ../fish/guestfish-actions.pod:3272
14455 msgid ""
14456 "If required, C<trans=virtio> will be automatically added to the options.  "
14457 "Any other options required can be passed in the optional C<options> "
14458 "parameter."
14459 msgstr ""
14460
14461 #. type: =head2
14462 #: ../src/guestfs-actions.pod:4909
14463 msgid "guestfs_mount_9p_va"
14464 msgstr ""
14465
14466 #. type: verbatim
14467 #: ../src/guestfs-actions.pod:4911
14468 #, no-wrap
14469 msgid ""
14470 " int\n"
14471 " guestfs_mount_9p_va (guestfs_h *g,\n"
14472 "                      const char *mounttag,\n"
14473 "                      const char *mountpoint,\n"
14474 "                      va_list args);\n"
14475 "\n"
14476 msgstr ""
14477
14478 #. type: textblock
14479 #: ../src/guestfs-actions.pod:4917
14480 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14481 msgstr ""
14482
14483 #. type: =head2
14484 #: ../src/guestfs-actions.pod:4921
14485 msgid "guestfs_mount_9p_argv"
14486 msgstr ""
14487
14488 #. type: verbatim
14489 #: ../src/guestfs-actions.pod:4923
14490 #, no-wrap
14491 msgid ""
14492 " int\n"
14493 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14494 "                        const char *mounttag,\n"
14495 "                        const char *mountpoint,\n"
14496 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14497 "\n"
14498 msgstr ""
14499
14500 #. type: textblock
14501 #: ../src/guestfs-actions.pod:4929
14502 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14503 msgstr ""
14504
14505 #. type: =head2
14506 #: ../src/guestfs-actions.pod:4933
14507 msgid "guestfs_mount_loop"
14508 msgstr ""
14509
14510 #. type: verbatim
14511 #: ../src/guestfs-actions.pod:4935
14512 #, no-wrap
14513 msgid ""
14514 " int\n"
14515 " guestfs_mount_loop (guestfs_h *g,\n"
14516 "                     const char *file,\n"
14517 "                     const char *mountpoint);\n"
14518 "\n"
14519 msgstr ""
14520
14521 #. type: textblock
14522 #: ../src/guestfs-actions.pod:4940 ../fish/guestfish-actions.pod:3282
14523 msgid ""
14524 "This command lets you mount C<file> (a filesystem image in a file) on a "
14525 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14526 "mountpoint>."
14527 msgstr ""
14528
14529 #. type: =head2
14530 #: ../src/guestfs-actions.pod:4948
14531 msgid "guestfs_mount_options"
14532 msgstr ""
14533
14534 #. type: verbatim
14535 #: ../src/guestfs-actions.pod:4950
14536 #, no-wrap
14537 msgid ""
14538 " int\n"
14539 " guestfs_mount_options (guestfs_h *g,\n"
14540 "                        const char *options,\n"
14541 "                        const char *device,\n"
14542 "                        const char *mountpoint);\n"
14543 "\n"
14544 msgstr ""
14545
14546 #. type: textblock
14547 #: ../src/guestfs-actions.pod:4956
14548 msgid ""
14549 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14550 "the mount options as for the L<mount(8)> I<-o> flag."
14551 msgstr ""
14552
14553 #. type: textblock
14554 #: ../src/guestfs-actions.pod:4960 ../fish/guestfish-actions.pod:3294
14555 msgid ""
14556 "If the C<options> parameter is an empty string, then no options are passed "
14557 "(all options default to whatever the filesystem uses)."
14558 msgstr ""
14559
14560 #. type: textblock
14561 #: ../src/guestfs-actions.pod:4966 ../src/guestfs-actions.pod:4980
14562 #: ../src/guestfs-actions.pod:4997
14563 msgid "(Added in 1.0.10)"
14564 msgstr ""
14565
14566 #. type: =head2
14567 #: ../src/guestfs-actions.pod:4968
14568 msgid "guestfs_mount_ro"
14569 msgstr ""
14570
14571 #. type: verbatim
14572 #: ../src/guestfs-actions.pod:4970
14573 #, no-wrap
14574 msgid ""
14575 " int\n"
14576 " guestfs_mount_ro (guestfs_h *g,\n"
14577 "                   const char *device,\n"
14578 "                   const char *mountpoint);\n"
14579 "\n"
14580 msgstr ""
14581
14582 #. type: textblock
14583 #: ../src/guestfs-actions.pod:4975
14584 msgid ""
14585 "This is the same as the C<guestfs_mount> command, but it mounts the "
14586 "filesystem with the read-only (I<-o ro>) flag."
14587 msgstr ""
14588
14589 #. type: =head2
14590 #: ../src/guestfs-actions.pod:4982
14591 msgid "guestfs_mount_vfs"
14592 msgstr ""
14593
14594 #. type: verbatim
14595 #: ../src/guestfs-actions.pod:4984
14596 #, no-wrap
14597 msgid ""
14598 " int\n"
14599 " guestfs_mount_vfs (guestfs_h *g,\n"
14600 "                    const char *options,\n"
14601 "                    const char *vfstype,\n"
14602 "                    const char *device,\n"
14603 "                    const char *mountpoint);\n"
14604 "\n"
14605 msgstr ""
14606
14607 #. type: textblock
14608 #: ../src/guestfs-actions.pod:4991
14609 msgid ""
14610 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14611 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14612 "t> flags."
14613 msgstr ""
14614
14615 #. type: =head2
14616 #: ../src/guestfs-actions.pod:4999
14617 msgid "guestfs_mountpoints"
14618 msgstr ""
14619
14620 #. type: verbatim
14621 #: ../src/guestfs-actions.pod:5001
14622 #, no-wrap
14623 msgid ""
14624 " char **\n"
14625 " guestfs_mountpoints (guestfs_h *g);\n"
14626 "\n"
14627 msgstr ""
14628
14629 #. type: textblock
14630 #: ../src/guestfs-actions.pod:5004
14631 msgid ""
14632 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14633 "devices.  This one returns a hash table (map) of device name to directory "
14634 "where the device is mounted."
14635 msgstr ""
14636
14637 #. type: =head2
14638 #: ../src/guestfs-actions.pod:5016
14639 msgid "guestfs_mounts"
14640 msgstr ""
14641
14642 #. type: verbatim
14643 #: ../src/guestfs-actions.pod:5018
14644 #, no-wrap
14645 msgid ""
14646 " char **\n"
14647 " guestfs_mounts (guestfs_h *g);\n"
14648 "\n"
14649 msgstr ""
14650
14651 #. type: textblock
14652 #: ../src/guestfs-actions.pod:5021 ../fish/guestfish-actions.pod:3325
14653 msgid ""
14654 "This returns the list of currently mounted filesystems.  It returns the list "
14655 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14656 msgstr ""
14657
14658 #. type: textblock
14659 #: ../src/guestfs-actions.pod:5024 ../fish/guestfish-actions.pod:3328
14660 msgid "Some internal mounts are not shown."
14661 msgstr ""
14662
14663 #. type: textblock
14664 #: ../src/guestfs-actions.pod:5026
14665 msgid "See also: C<guestfs_mountpoints>"
14666 msgstr ""
14667
14668 #. type: =head2
14669 #: ../src/guestfs-actions.pod:5034
14670 msgid "guestfs_mv"
14671 msgstr ""
14672
14673 #. type: verbatim
14674 #: ../src/guestfs-actions.pod:5036
14675 #, no-wrap
14676 msgid ""
14677 " int\n"
14678 " guestfs_mv (guestfs_h *g,\n"
14679 "             const char *src,\n"
14680 "             const char *dest);\n"
14681 "\n"
14682 msgstr ""
14683
14684 #. type: textblock
14685 #: ../src/guestfs-actions.pod:5041 ../fish/guestfish-actions.pod:3336
14686 msgid ""
14687 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14688 "destination filename or destination directory."
14689 msgstr ""
14690
14691 #. type: =head2
14692 #: ../src/guestfs-actions.pod:5048
14693 msgid "guestfs_ntfs_3g_probe"
14694 msgstr ""
14695
14696 #. type: verbatim
14697 #: ../src/guestfs-actions.pod:5050
14698 #, no-wrap
14699 msgid ""
14700 " int\n"
14701 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14702 "                        int rw,\n"
14703 "                        const char *device);\n"
14704 "\n"
14705 msgstr ""
14706
14707 #. type: textblock
14708 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3343
14709 msgid ""
14710 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14711 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14712 "write, and some cannot be mounted at all)."
14713 msgstr ""
14714
14715 #. type: textblock
14716 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3347
14717 msgid ""
14718 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14719 "can be mounted read-write.  Set it to false if you want to test if the "
14720 "volume can be mounted read-only."
14721 msgstr ""
14722
14723 #. type: textblock
14724 #: ../src/guestfs-actions.pod:5063 ../fish/guestfish-actions.pod:3351
14725 msgid ""
14726 "The return value is an integer which C<0> if the operation would succeed, or "
14727 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14728 msgstr ""
14729
14730 #. type: textblock
14731 #: ../src/guestfs-actions.pod:5069
14732 msgid "(Added in 1.0.43)"
14733 msgstr ""
14734
14735 #. type: =head2
14736 #: ../src/guestfs-actions.pod:5071
14737 msgid "guestfs_ntfsresize"
14738 msgstr ""
14739
14740 #. type: verbatim
14741 #: ../src/guestfs-actions.pod:5073
14742 #, no-wrap
14743 msgid ""
14744 " int\n"
14745 " guestfs_ntfsresize (guestfs_h *g,\n"
14746 "                     const char *device);\n"
14747 "\n"
14748 msgstr ""
14749
14750 #. type: textblock
14751 #: ../src/guestfs-actions.pod:5077 ../src/guestfs-actions.pod:5116
14752 #: ../fish/guestfish-actions.pod:3359 ../fish/guestfish-actions.pod:3383
14753 msgid ""
14754 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14755 "size of the underlying device."
14756 msgstr ""
14757
14758 #. type: textblock
14759 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3362
14760 msgid ""
14761 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14762 "consistency check (for safety).  You have to boot into Windows to perform "
14763 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14764 "resize filesystems which have been marked in this way.  So in effect it is "
14765 "not possible to call ntfsresize multiple times on a single filesystem "
14766 "without booting into Windows between each resize."
14767 msgstr ""
14768
14769 #. type: textblock
14770 #: ../src/guestfs-actions.pod:5088 ../src/guestfs-actions.pod:5142
14771 #: ../fish/guestfish-actions.pod:3370 ../fish/guestfish-actions.pod:3409
14772 #, fuzzy
14773 #| msgid "See L<guestfish(1)>."
14774 msgid "See also L<ntfsresize(8)>."
14775 msgstr "Див. L<guestfish(1)>."
14776
14777 #. type: textblock
14778 #: ../src/guestfs-actions.pod:5092 ../src/guestfs-actions.pod:5182
14779 #: ../fish/guestfish-actions.pod:3372 ../fish/guestfish-actions.pod:3420
14780 msgid ""
14781 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14782 "instead."
14783 msgstr ""
14784
14785 #. type: =head2
14786 #: ../src/guestfs-actions.pod:5101
14787 msgid "guestfs_ntfsresize_opts"
14788 msgstr ""
14789
14790 #. type: verbatim
14791 #: ../src/guestfs-actions.pod:5103
14792 #, no-wrap
14793 msgid ""
14794 " int\n"
14795 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14796 "                          const char *device,\n"
14797 "                          ...);\n"
14798 "\n"
14799 msgstr ""
14800
14801 #. type: verbatim
14802 #: ../src/guestfs-actions.pod:5113
14803 #, no-wrap
14804 msgid ""
14805 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14806 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14807 "\n"
14808 msgstr ""
14809
14810 #. type: textblock
14811 #: ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3386
14812 msgid "The optional parameters are:"
14813 msgstr ""
14814
14815 #. type: =item
14816 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3390
14817 #, fuzzy
14818 #| msgid "C<inspector>"
14819 msgid "C<size>"
14820 msgstr "C<inspector>"
14821
14822 #. type: textblock
14823 #: ../src/guestfs-actions.pod:5125 ../fish/guestfish-actions.pod:3392
14824 msgid ""
14825 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14826 "resized to fit the container (eg. partition)."
14827 msgstr ""
14828
14829 #. type: =item
14830 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3395
14831 #, fuzzy
14832 #| msgid "C<format>"
14833 msgid "C<force>"
14834 msgstr "C<format>"
14835
14836 #. type: textblock
14837 #: ../src/guestfs-actions.pod:5130 ../fish/guestfish-actions.pod:3397
14838 msgid ""
14839 "If this option is true, then force the resize of the filesystem even if the "
14840 "filesystem is marked as requiring a consistency check."
14841 msgstr ""
14842
14843 #. type: textblock
14844 #: ../src/guestfs-actions.pod:5133
14845 msgid ""
14846 "After the resize operation, the filesystem is always marked as requiring a "
14847 "consistency check (for safety).  You have to boot into Windows to perform "
14848 "this check and clear this condition.  If you I<don't> set the C<force> "
14849 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
14850 "times on a single filesystem without booting into Windows between each "
14851 "resize."
14852 msgstr ""
14853
14854 #. type: =head2
14855 #: ../src/guestfs-actions.pod:5148
14856 msgid "guestfs_ntfsresize_opts_va"
14857 msgstr ""
14858
14859 #. type: verbatim
14860 #: ../src/guestfs-actions.pod:5150
14861 #, no-wrap
14862 msgid ""
14863 " int\n"
14864 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
14865 "                             const char *device,\n"
14866 "                             va_list args);\n"
14867 "\n"
14868 msgstr ""
14869
14870 #. type: textblock
14871 #: ../src/guestfs-actions.pod:5155
14872 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
14873 msgstr ""
14874
14875 #. type: =head2
14876 #: ../src/guestfs-actions.pod:5159
14877 msgid "guestfs_ntfsresize_opts_argv"
14878 msgstr ""
14879
14880 #. type: verbatim
14881 #: ../src/guestfs-actions.pod:5161
14882 #, no-wrap
14883 msgid ""
14884 " int\n"
14885 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
14886 "                               const char *device,\n"
14887 "                               const struct guestfs_ntfsresize_opts_argv *optargs);\n"
14888 "\n"
14889 msgstr ""
14890
14891 #. type: textblock
14892 #: ../src/guestfs-actions.pod:5166
14893 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
14894 msgstr ""
14895
14896 #. type: =head2
14897 #: ../src/guestfs-actions.pod:5170
14898 msgid "guestfs_ntfsresize_size"
14899 msgstr ""
14900
14901 #. type: verbatim
14902 #: ../src/guestfs-actions.pod:5172
14903 #, no-wrap
14904 msgid ""
14905 " int\n"
14906 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14907 "                          const char *device,\n"
14908 "                          int64_t size);\n"
14909 "\n"
14910 msgstr ""
14911
14912 #. type: textblock
14913 #: ../src/guestfs-actions.pod:5177
14914 msgid ""
14915 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14916 "to specify the new size (in bytes) explicitly."
14917 msgstr ""
14918
14919 #. type: textblock
14920 #: ../src/guestfs-actions.pod:5189 ../src/guestfs-actions.pod:5625
14921 #: ../src/guestfs-actions.pod:5698 ../src/guestfs-actions.pod:5966
14922 #: ../src/guestfs-actions.pod:7568
14923 msgid "(Added in 1.3.14)"
14924 msgstr ""
14925
14926 #. type: =head2
14927 #: ../src/guestfs-actions.pod:5191
14928 msgid "guestfs_part_add"
14929 msgstr ""
14930
14931 #. type: verbatim
14932 #: ../src/guestfs-actions.pod:5193
14933 #, no-wrap
14934 msgid ""
14935 " int\n"
14936 " guestfs_part_add (guestfs_h *g,\n"
14937 "                   const char *device,\n"
14938 "                   const char *prlogex,\n"
14939 "                   int64_t startsect,\n"
14940 "                   int64_t endsect);\n"
14941 "\n"
14942 msgstr ""
14943
14944 #. type: textblock
14945 #: ../src/guestfs-actions.pod:5200
14946 msgid ""
14947 "This command adds a partition to C<device>.  If there is no partition table "
14948 "on the device, call C<guestfs_part_init> first."
14949 msgstr ""
14950
14951 #. type: textblock
14952 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3434
14953 msgid ""
14954 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14955 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14956 "C<logical>) and C<e> (or C<extended>) partition types."
14957 msgstr ""
14958
14959 #. type: textblock
14960 #: ../src/guestfs-actions.pod:5208 ../fish/guestfish-actions.pod:3439
14961 msgid ""
14962 "C<startsect> and C<endsect> are the start and end of the partition in "
14963 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14964 "from the end of the disk (C<-1> is the last sector)."
14965 msgstr ""
14966
14967 #. type: textblock
14968 #: ../src/guestfs-actions.pod:5212
14969 msgid ""
14970 "Creating a partition which covers the whole disk is not so easy.  Use "
14971 "C<guestfs_part_disk> to do that."
14972 msgstr ""
14973
14974 #. type: textblock
14975 #: ../src/guestfs-actions.pod:5217 ../src/guestfs-actions.pod:5255
14976 #: ../src/guestfs-actions.pod:5308 ../src/guestfs-actions.pod:5386
14977 #: ../src/guestfs-actions.pod:5424 ../src/guestfs-actions.pod:5443
14978 #: ../src/guestfs-actions.pod:5483
14979 msgid "(Added in 1.0.78)"
14980 msgstr ""
14981
14982 #. type: =head2
14983 #: ../src/guestfs-actions.pod:5219
14984 msgid "guestfs_part_del"
14985 msgstr ""
14986
14987 #. type: verbatim
14988 #: ../src/guestfs-actions.pod:5221
14989 #, no-wrap
14990 msgid ""
14991 " int\n"
14992 " guestfs_part_del (guestfs_h *g,\n"
14993 "                   const char *device,\n"
14994 "                   int partnum);\n"
14995 "\n"
14996 msgstr ""
14997
14998 #. type: textblock
14999 #: ../src/guestfs-actions.pod:5226 ../fish/guestfish-actions.pod:3450
15000 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15001 msgstr ""
15002
15003 #. type: textblock
15004 #: ../src/guestfs-actions.pod:5228 ../fish/guestfish-actions.pod:3452
15005 msgid ""
15006 "Note that in the case of MBR partitioning, deleting an extended partition "
15007 "also deletes any logical partitions it contains."
15008 msgstr ""
15009
15010 #. type: =head2
15011 #: ../src/guestfs-actions.pod:5236
15012 msgid "guestfs_part_disk"
15013 msgstr ""
15014
15015 #. type: verbatim
15016 #: ../src/guestfs-actions.pod:5238
15017 #, no-wrap
15018 msgid ""
15019 " int\n"
15020 " guestfs_part_disk (guestfs_h *g,\n"
15021 "                    const char *device,\n"
15022 "                    const char *parttype);\n"
15023 "\n"
15024 msgstr ""
15025
15026 #. type: textblock
15027 #: ../src/guestfs-actions.pod:5243
15028 msgid ""
15029 "This command is simply a combination of C<guestfs_part_init> followed by "
15030 "C<guestfs_part_add> to create a single primary partition covering the whole "
15031 "disk."
15032 msgstr ""
15033
15034 #. type: textblock
15035 #: ../src/guestfs-actions.pod:5247
15036 msgid ""
15037 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
15038 "possible values are described in C<guestfs_part_init>."
15039 msgstr ""
15040
15041 #. type: =head2
15042 #: ../src/guestfs-actions.pod:5257
15043 msgid "guestfs_part_get_bootable"
15044 msgstr ""
15045
15046 #. type: verbatim
15047 #: ../src/guestfs-actions.pod:5259
15048 #, no-wrap
15049 msgid ""
15050 " int\n"
15051 " guestfs_part_get_bootable (guestfs_h *g,\n"
15052 "                            const char *device,\n"
15053 "                            int partnum);\n"
15054 "\n"
15055 msgstr ""
15056
15057 #. type: textblock
15058 #: ../src/guestfs-actions.pod:5264 ../fish/guestfish-actions.pod:3474
15059 msgid ""
15060 "This command returns true if the partition C<partnum> on C<device> has the "
15061 "bootable flag set."
15062 msgstr ""
15063
15064 #. type: textblock
15065 #: ../src/guestfs-actions.pod:5267
15066 msgid "See also C<guestfs_part_set_bootable>."
15067 msgstr ""
15068
15069 #. type: =head2
15070 #: ../src/guestfs-actions.pod:5273
15071 msgid "guestfs_part_get_mbr_id"
15072 msgstr ""
15073
15074 #. type: verbatim
15075 #: ../src/guestfs-actions.pod:5275
15076 #, no-wrap
15077 msgid ""
15078 " int\n"
15079 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15080 "                          const char *device,\n"
15081 "                          int partnum);\n"
15082 "\n"
15083 msgstr ""
15084
15085 #. type: textblock
15086 #: ../src/guestfs-actions.pod:5280 ../fish/guestfish-actions.pod:3483
15087 msgid ""
15088 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15089 "partition C<partnum>."
15090 msgstr ""
15091
15092 #. type: textblock
15093 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5459
15094 msgid ""
15095 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
15096 "undefined results for other partition table types (see "
15097 "C<guestfs_part_get_parttype>)."
15098 msgstr ""
15099
15100 #. type: =head2
15101 #: ../src/guestfs-actions.pod:5291
15102 msgid "guestfs_part_get_parttype"
15103 msgstr ""
15104
15105 #. type: verbatim
15106 #: ../src/guestfs-actions.pod:5293
15107 #, no-wrap
15108 msgid ""
15109 " char *\n"
15110 " guestfs_part_get_parttype (guestfs_h *g,\n"
15111 "                            const char *device);\n"
15112 "\n"
15113 msgstr ""
15114
15115 #. type: textblock
15116 #: ../src/guestfs-actions.pod:5297 ../fish/guestfish-actions.pod:3494
15117 msgid ""
15118 "This command examines the partition table on C<device> and returns the "
15119 "partition table type (format) being used."
15120 msgstr ""
15121
15122 #. type: textblock
15123 #: ../src/guestfs-actions.pod:5300
15124 msgid ""
15125 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15126 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15127 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15128 msgstr ""
15129
15130 #. type: =head2
15131 #: ../src/guestfs-actions.pod:5310
15132 msgid "guestfs_part_init"
15133 msgstr ""
15134
15135 #. type: verbatim
15136 #: ../src/guestfs-actions.pod:5312
15137 #, no-wrap
15138 msgid ""
15139 " int\n"
15140 " guestfs_part_init (guestfs_h *g,\n"
15141 "                    const char *device,\n"
15142 "                    const char *parttype);\n"
15143 "\n"
15144 msgstr ""
15145
15146 #. type: textblock
15147 #: ../src/guestfs-actions.pod:5317 ../fish/guestfish-actions.pod:3506
15148 msgid ""
15149 "This creates an empty partition table on C<device> of one of the partition "
15150 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
15151 "(for large disks)."
15152 msgstr ""
15153
15154 #. type: textblock
15155 #: ../src/guestfs-actions.pod:5321
15156 msgid ""
15157 "Initially there are no partitions.  Following this, you should call "
15158 "C<guestfs_part_add> for each partition required."
15159 msgstr ""
15160
15161 #. type: textblock
15162 #: ../src/guestfs-actions.pod:5324 ../fish/guestfish-actions.pod:3513
15163 msgid "Possible values for C<parttype> are:"
15164 msgstr ""
15165
15166 #. type: =item
15167 #: ../src/guestfs-actions.pod:5328 ../fish/guestfish-actions.pod:3517
15168 msgid "B<efi> | B<gpt>"
15169 msgstr ""
15170
15171 #. type: textblock
15172 #: ../src/guestfs-actions.pod:5330 ../fish/guestfish-actions.pod:3519
15173 msgid "Intel EFI / GPT partition table."
15174 msgstr ""
15175
15176 #. type: textblock
15177 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3521
15178 msgid ""
15179 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15180 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
15181 "the C<mbr> format."
15182 msgstr ""
15183
15184 #. type: =item
15185 #: ../src/guestfs-actions.pod:5336 ../fish/guestfish-actions.pod:3525
15186 msgid "B<mbr> | B<msdos>"
15187 msgstr ""
15188
15189 #. type: textblock
15190 #: ../src/guestfs-actions.pod:5338 ../fish/guestfish-actions.pod:3527
15191 msgid ""
15192 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
15193 "Windows.  This partition type will B<only> work for device sizes up to 2 "
15194 "TB.  For large disks we recommend using C<gpt>."
15195 msgstr ""
15196
15197 #. type: textblock
15198 #: ../src/guestfs-actions.pod:5345 ../fish/guestfish-actions.pod:3534
15199 msgid ""
15200 "Other partition table types that may work but are not supported include:"
15201 msgstr ""
15202
15203 #. type: =item
15204 #: ../src/guestfs-actions.pod:5350 ../fish/guestfish-actions.pod:3539
15205 msgid "B<aix>"
15206 msgstr ""
15207
15208 #. type: textblock
15209 #: ../src/guestfs-actions.pod:5352 ../fish/guestfish-actions.pod:3541
15210 msgid "AIX disk labels."
15211 msgstr ""
15212
15213 #. type: =item
15214 #: ../src/guestfs-actions.pod:5354 ../fish/guestfish-actions.pod:3543
15215 msgid "B<amiga> | B<rdb>"
15216 msgstr ""
15217
15218 #. type: textblock
15219 #: ../src/guestfs-actions.pod:5356 ../fish/guestfish-actions.pod:3545
15220 msgid "Amiga \"Rigid Disk Block\" format."
15221 msgstr ""
15222
15223 #. type: =item
15224 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3547
15225 msgid "B<bsd>"
15226 msgstr ""
15227
15228 #. type: textblock
15229 #: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3549
15230 msgid "BSD disk labels."
15231 msgstr ""
15232
15233 #. type: =item
15234 #: ../src/guestfs-actions.pod:5362 ../fish/guestfish-actions.pod:3551
15235 msgid "B<dasd>"
15236 msgstr ""
15237
15238 #. type: textblock
15239 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3553
15240 msgid "DASD, used on IBM mainframes."
15241 msgstr ""
15242
15243 #. type: =item
15244 #: ../src/guestfs-actions.pod:5366 ../fish/guestfish-actions.pod:3555
15245 msgid "B<dvh>"
15246 msgstr ""
15247
15248 #. type: textblock
15249 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3557
15250 msgid "MIPS/SGI volumes."
15251 msgstr ""
15252
15253 #. type: =item
15254 #: ../src/guestfs-actions.pod:5370 ../fish/guestfish-actions.pod:3559
15255 msgid "B<mac>"
15256 msgstr ""
15257
15258 #. type: textblock
15259 #: ../src/guestfs-actions.pod:5372 ../fish/guestfish-actions.pod:3561
15260 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15261 msgstr ""
15262
15263 #. type: =item
15264 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3563
15265 msgid "B<pc98>"
15266 msgstr ""
15267
15268 #. type: textblock
15269 #: ../src/guestfs-actions.pod:5376 ../fish/guestfish-actions.pod:3565
15270 msgid "NEC PC-98 format, common in Japan apparently."
15271 msgstr ""
15272
15273 #. type: =item
15274 #: ../src/guestfs-actions.pod:5378 ../fish/guestfish-actions.pod:3567
15275 msgid "B<sun>"
15276 msgstr ""
15277
15278 #. type: textblock
15279 #: ../src/guestfs-actions.pod:5380 ../fish/guestfish-actions.pod:3569
15280 msgid "Sun disk labels."
15281 msgstr ""
15282
15283 #. type: =head2
15284 #: ../src/guestfs-actions.pod:5388
15285 msgid "guestfs_part_list"
15286 msgstr ""
15287
15288 #. type: verbatim
15289 #: ../src/guestfs-actions.pod:5390
15290 #, no-wrap
15291 msgid ""
15292 " struct guestfs_partition_list *\n"
15293 " guestfs_part_list (guestfs_h *g,\n"
15294 "                    const char *device);\n"
15295 "\n"
15296 msgstr ""
15297
15298 #. type: textblock
15299 #: ../src/guestfs-actions.pod:5394 ../fish/guestfish-actions.pod:3577
15300 msgid ""
15301 "This command parses the partition table on C<device> and returns the list of "
15302 "partitions found."
15303 msgstr ""
15304
15305 #. type: textblock
15306 #: ../src/guestfs-actions.pod:5397 ../fish/guestfish-actions.pod:3580
15307 msgid "The fields in the returned structure are:"
15308 msgstr ""
15309
15310 #. type: =item
15311 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3584
15312 msgid "B<part_num>"
15313 msgstr ""
15314
15315 #. type: textblock
15316 #: ../src/guestfs-actions.pod:5403 ../fish/guestfish-actions.pod:3586
15317 msgid "Partition number, counting from 1."
15318 msgstr ""
15319
15320 #. type: =item
15321 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3588
15322 msgid "B<part_start>"
15323 msgstr ""
15324
15325 #. type: textblock
15326 #: ../src/guestfs-actions.pod:5407
15327 msgid ""
15328 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15329 "the device's sector size, see C<guestfs_blockdev_getss>."
15330 msgstr ""
15331
15332 #. type: =item
15333 #: ../src/guestfs-actions.pod:5410 ../fish/guestfish-actions.pod:3593
15334 msgid "B<part_end>"
15335 msgstr ""
15336
15337 #. type: textblock
15338 #: ../src/guestfs-actions.pod:5412 ../fish/guestfish-actions.pod:3595
15339 msgid "End of the partition in bytes."
15340 msgstr ""
15341
15342 #. type: =item
15343 #: ../src/guestfs-actions.pod:5414 ../fish/guestfish-actions.pod:3597
15344 msgid "B<part_size>"
15345 msgstr ""
15346
15347 #. type: textblock
15348 #: ../src/guestfs-actions.pod:5416 ../fish/guestfish-actions.pod:3599
15349 msgid "Size of the partition in bytes."
15350 msgstr ""
15351
15352 #. type: textblock
15353 #: ../src/guestfs-actions.pod:5420
15354 msgid ""
15355 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
15356 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15357 "use>."
15358 msgstr ""
15359
15360 #. type: =head2
15361 #: ../src/guestfs-actions.pod:5426
15362 msgid "guestfs_part_set_bootable"
15363 msgstr ""
15364
15365 #. type: verbatim
15366 #: ../src/guestfs-actions.pod:5428
15367 #, no-wrap
15368 msgid ""
15369 " int\n"
15370 " guestfs_part_set_bootable (guestfs_h *g,\n"
15371 "                            const char *device,\n"
15372 "                            int partnum,\n"
15373 "                            int bootable);\n"
15374 "\n"
15375 msgstr ""
15376
15377 #. type: textblock
15378 #: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3607
15379 msgid ""
15380 "This sets the bootable flag on partition numbered C<partnum> on device "
15381 "C<device>.  Note that partitions are numbered from 1."
15382 msgstr ""
15383
15384 #. type: textblock
15385 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3610
15386 msgid ""
15387 "The bootable flag is used by some operating systems (notably Windows) to "
15388 "determine which partition to boot from.  It is by no means universally "
15389 "recognized."
15390 msgstr ""
15391
15392 #. type: =head2
15393 #: ../src/guestfs-actions.pod:5445
15394 msgid "guestfs_part_set_mbr_id"
15395 msgstr ""
15396
15397 #. type: verbatim
15398 #: ../src/guestfs-actions.pod:5447
15399 #, no-wrap
15400 msgid ""
15401 " int\n"
15402 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15403 "                          const char *device,\n"
15404 "                          int partnum,\n"
15405 "                          int idbyte);\n"
15406 "\n"
15407 msgstr ""
15408
15409 #. type: textblock
15410 #: ../src/guestfs-actions.pod:5453 ../fish/guestfish-actions.pod:3618
15411 msgid ""
15412 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
15413 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15414 "documentation are in fact hexadecimal numbers, but usually documented "
15415 "without any leading \"0x\" which might be confusing."
15416 msgstr ""
15417
15418 #. type: =head2
15419 #: ../src/guestfs-actions.pod:5467
15420 msgid "guestfs_part_set_name"
15421 msgstr ""
15422
15423 #. type: verbatim
15424 #: ../src/guestfs-actions.pod:5469
15425 #, no-wrap
15426 msgid ""
15427 " int\n"
15428 " guestfs_part_set_name (guestfs_h *g,\n"
15429 "                        const char *device,\n"
15430 "                        int partnum,\n"
15431 "                        const char *name);\n"
15432 "\n"
15433 msgstr ""
15434
15435 #. type: textblock
15436 #: ../src/guestfs-actions.pod:5475 ../fish/guestfish-actions.pod:3632
15437 msgid ""
15438 "This sets the partition name on partition numbered C<partnum> on device "
15439 "C<device>.  Note that partitions are numbered from 1."
15440 msgstr ""
15441
15442 #. type: textblock
15443 #: ../src/guestfs-actions.pod:5478 ../fish/guestfish-actions.pod:3635
15444 msgid ""
15445 "The partition name can only be set on certain types of partition table.  "
15446 "This works on C<gpt> but not on C<mbr> partitions."
15447 msgstr ""
15448
15449 #. type: =head2
15450 #: ../src/guestfs-actions.pod:5485
15451 msgid "guestfs_part_to_dev"
15452 msgstr ""
15453
15454 #. type: verbatim
15455 #: ../src/guestfs-actions.pod:5487
15456 #, no-wrap
15457 msgid ""
15458 " char *\n"
15459 " guestfs_part_to_dev (guestfs_h *g,\n"
15460 "                      const char *partition);\n"
15461 "\n"
15462 msgstr ""
15463
15464 #. type: textblock
15465 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3642
15466 msgid ""
15467 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15468 "partition number, returning the device name (eg. \"/dev/sdb\")."
15469 msgstr ""
15470
15471 #. type: textblock
15472 #: ../src/guestfs-actions.pod:5495
15473 msgid ""
15474 "The named partition must exist, for example as a string returned from "
15475 "C<guestfs_list_partitions>."
15476 msgstr ""
15477
15478 #. type: =head2
15479 #: ../src/guestfs-actions.pod:5503
15480 msgid "guestfs_ping_daemon"
15481 msgstr ""
15482
15483 #. type: verbatim
15484 #: ../src/guestfs-actions.pod:5505
15485 #, no-wrap
15486 msgid ""
15487 " int\n"
15488 " guestfs_ping_daemon (guestfs_h *g);\n"
15489 "\n"
15490 msgstr ""
15491
15492 #. type: textblock
15493 #: ../src/guestfs-actions.pod:5508 ../fish/guestfish-actions.pod:3653
15494 msgid ""
15495 "This is a test probe into the guestfs daemon running inside the qemu "
15496 "subprocess.  Calling this function checks that the daemon responds to the "
15497 "ping message, without affecting the daemon or attached block device(s) in "
15498 "any other way."
15499 msgstr ""
15500
15501 #. type: =head2
15502 #: ../src/guestfs-actions.pod:5517
15503 msgid "guestfs_pread"
15504 msgstr ""
15505
15506 #. type: verbatim
15507 #: ../src/guestfs-actions.pod:5519
15508 #, no-wrap
15509 msgid ""
15510 " char *\n"
15511 " guestfs_pread (guestfs_h *g,\n"
15512 "                const char *path,\n"
15513 "                int count,\n"
15514 "                int64_t offset,\n"
15515 "                size_t *size_r);\n"
15516 "\n"
15517 msgstr ""
15518
15519 #. type: textblock
15520 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3662
15521 msgid ""
15522 "This command lets you read part of a file.  It reads C<count> bytes of the "
15523 "file, starting at C<offset>, from file C<path>."
15524 msgstr ""
15525
15526 #. type: textblock
15527 #: ../src/guestfs-actions.pod:5529 ../src/guestfs-actions.pod:5555
15528 #: ../fish/guestfish-actions.pod:3665 ../fish/guestfish-actions.pod:3680
15529 msgid ""
15530 "This may read fewer bytes than requested.  For further details see the "
15531 "L<pread(2)> system call."
15532 msgstr ""
15533
15534 #. type: textblock
15535 #: ../src/guestfs-actions.pod:5532
15536 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15537 msgstr ""
15538
15539 #. type: =head2
15540 #: ../src/guestfs-actions.pod:5543
15541 msgid "guestfs_pread_device"
15542 msgstr ""
15543
15544 #. type: verbatim
15545 #: ../src/guestfs-actions.pod:5545
15546 #, no-wrap
15547 msgid ""
15548 " char *\n"
15549 " guestfs_pread_device (guestfs_h *g,\n"
15550 "                       const char *device,\n"
15551 "                       int count,\n"
15552 "                       int64_t offset,\n"
15553 "                       size_t *size_r);\n"
15554 "\n"
15555 msgstr ""
15556
15557 #. type: textblock
15558 #: ../src/guestfs-actions.pod:5552 ../fish/guestfish-actions.pod:3677
15559 msgid ""
15560 "This command lets you read part of a file.  It reads C<count> bytes of "
15561 "C<device>, starting at C<offset>."
15562 msgstr ""
15563
15564 #. type: textblock
15565 #: ../src/guestfs-actions.pod:5558
15566 msgid "See also C<guestfs_pread>."
15567 msgstr ""
15568
15569 #. type: textblock
15570 #: ../src/guestfs-actions.pod:5567
15571 msgid "(Added in 1.5.21)"
15572 msgstr ""
15573
15574 #. type: =head2
15575 #: ../src/guestfs-actions.pod:5569
15576 msgid "guestfs_pvcreate"
15577 msgstr ""
15578
15579 #. type: verbatim
15580 #: ../src/guestfs-actions.pod:5571
15581 #, no-wrap
15582 msgid ""
15583 " int\n"
15584 " guestfs_pvcreate (guestfs_h *g,\n"
15585 "                   const char *device);\n"
15586 "\n"
15587 msgstr ""
15588
15589 #. type: textblock
15590 #: ../src/guestfs-actions.pod:5575 ../fish/guestfish-actions.pod:3692
15591 msgid ""
15592 "This creates an LVM physical volume on the named C<device>, where C<device> "
15593 "should usually be a partition name such as C</dev/sda1>."
15594 msgstr ""
15595
15596 #. type: =head2
15597 #: ../src/guestfs-actions.pod:5583
15598 msgid "guestfs_pvremove"
15599 msgstr ""
15600
15601 #. type: verbatim
15602 #: ../src/guestfs-actions.pod:5585
15603 #, no-wrap
15604 msgid ""
15605 " int\n"
15606 " guestfs_pvremove (guestfs_h *g,\n"
15607 "                   const char *device);\n"
15608 "\n"
15609 msgstr ""
15610
15611 #. type: textblock
15612 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3700
15613 msgid ""
15614 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15615 "it."
15616 msgstr ""
15617
15618 #. type: textblock
15619 #: ../src/guestfs-actions.pod:5592 ../fish/guestfish-actions.pod:3703
15620 msgid ""
15621 "The implementation uses the C<pvremove> command which refuses to wipe "
15622 "physical volumes that contain any volume groups, so you have to remove those "
15623 "first."
15624 msgstr ""
15625
15626 #. type: =head2
15627 #: ../src/guestfs-actions.pod:5600
15628 msgid "guestfs_pvresize"
15629 msgstr ""
15630
15631 #. type: verbatim
15632 #: ../src/guestfs-actions.pod:5602
15633 #, no-wrap
15634 msgid ""
15635 " int\n"
15636 " guestfs_pvresize (guestfs_h *g,\n"
15637 "                   const char *device);\n"
15638 "\n"
15639 msgstr ""
15640
15641 #. type: textblock
15642 #: ../src/guestfs-actions.pod:5606 ../fish/guestfish-actions.pod:3711
15643 msgid ""
15644 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15645 "the new size of the underlying device."
15646 msgstr ""
15647
15648 #. type: =head2
15649 #: ../src/guestfs-actions.pod:5613
15650 msgid "guestfs_pvresize_size"
15651 msgstr ""
15652
15653 #. type: verbatim
15654 #: ../src/guestfs-actions.pod:5615
15655 #, no-wrap
15656 msgid ""
15657 " int\n"
15658 " guestfs_pvresize_size (guestfs_h *g,\n"
15659 "                        const char *device,\n"
15660 "                        int64_t size);\n"
15661 "\n"
15662 msgstr ""
15663
15664 #. type: textblock
15665 #: ../src/guestfs-actions.pod:5620
15666 msgid ""
15667 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15668 "specify the new size (in bytes) explicitly."
15669 msgstr ""
15670
15671 #. type: =head2
15672 #: ../src/guestfs-actions.pod:5627
15673 msgid "guestfs_pvs"
15674 msgstr ""
15675
15676 #. type: verbatim
15677 #: ../src/guestfs-actions.pod:5629
15678 #, no-wrap
15679 msgid ""
15680 " char **\n"
15681 " guestfs_pvs (guestfs_h *g);\n"
15682 "\n"
15683 msgstr ""
15684
15685 #. type: textblock
15686 #: ../src/guestfs-actions.pod:5632 ../fish/guestfish-actions.pod:3725
15687 msgid ""
15688 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15689 "(8)> command."
15690 msgstr ""
15691
15692 #. type: textblock
15693 #: ../src/guestfs-actions.pod:5635 ../fish/guestfish-actions.pod:3728
15694 msgid ""
15695 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15696 "sda2>)."
15697 msgstr ""
15698
15699 #. type: textblock
15700 #: ../src/guestfs-actions.pod:5638
15701 msgid "See also C<guestfs_pvs_full>."
15702 msgstr ""
15703
15704 #. type: =head2
15705 #: ../src/guestfs-actions.pod:5646
15706 msgid "guestfs_pvs_full"
15707 msgstr ""
15708
15709 #. type: verbatim
15710 #: ../src/guestfs-actions.pod:5648
15711 #, no-wrap
15712 msgid ""
15713 " struct guestfs_lvm_pv_list *\n"
15714 " guestfs_pvs_full (guestfs_h *g);\n"
15715 "\n"
15716 msgstr ""
15717
15718 #. type: textblock
15719 #: ../src/guestfs-actions.pod:5651 ../fish/guestfish-actions.pod:3737
15720 msgid ""
15721 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15722 "(8)> command.  The \"full\" version includes all fields."
15723 msgstr ""
15724
15725 #. type: textblock
15726 #: ../src/guestfs-actions.pod:5654
15727 msgid ""
15728 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15729 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15730 msgstr ""
15731
15732 #. type: =head2
15733 #: ../src/guestfs-actions.pod:5660
15734 msgid "guestfs_pvuuid"
15735 msgstr ""
15736
15737 #. type: verbatim
15738 #: ../src/guestfs-actions.pod:5662
15739 #, no-wrap
15740 msgid ""
15741 " char *\n"
15742 " guestfs_pvuuid (guestfs_h *g,\n"
15743 "                 const char *device);\n"
15744 "\n"
15745 msgstr ""
15746
15747 #. type: textblock
15748 #: ../src/guestfs-actions.pod:5666 ../fish/guestfish-actions.pod:3744
15749 msgid "This command returns the UUID of the LVM PV C<device>."
15750 msgstr ""
15751
15752 #. type: =head2
15753 #: ../src/guestfs-actions.pod:5673
15754 msgid "guestfs_pwrite"
15755 msgstr ""
15756
15757 #. type: verbatim
15758 #: ../src/guestfs-actions.pod:5675
15759 #, no-wrap
15760 msgid ""
15761 " int\n"
15762 " guestfs_pwrite (guestfs_h *g,\n"
15763 "                 const char *path,\n"
15764 "                 const char *content,\n"
15765 "                 size_t content_size,\n"
15766 "                 int64_t offset);\n"
15767 "\n"
15768 msgstr ""
15769
15770 #. type: textblock
15771 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3750
15772 msgid ""
15773 "This command writes to part of a file.  It writes the data buffer C<content> "
15774 "to the file C<path> starting at offset C<offset>."
15775 msgstr ""
15776
15777 #. type: textblock
15778 #: ../src/guestfs-actions.pod:5685 ../fish/guestfish-actions.pod:3753
15779 msgid ""
15780 "This command implements the L<pwrite(2)> system call, and like that system "
15781 "call it may not write the full data requested.  The return value is the "
15782 "number of bytes that were actually written to the file.  This could even be "
15783 "0, although short writes are unlikely for regular files in ordinary "
15784 "circumstances."
15785 msgstr ""
15786
15787 #. type: textblock
15788 #: ../src/guestfs-actions.pod:5691
15789 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15790 msgstr ""
15791
15792 #. type: =head2
15793 #: ../src/guestfs-actions.pod:5700
15794 msgid "guestfs_pwrite_device"
15795 msgstr ""
15796
15797 #. type: verbatim
15798 #: ../src/guestfs-actions.pod:5702
15799 #, no-wrap
15800 msgid ""
15801 " int\n"
15802 " guestfs_pwrite_device (guestfs_h *g,\n"
15803 "                        const char *device,\n"
15804 "                        const char *content,\n"
15805 "                        size_t content_size,\n"
15806 "                        int64_t offset);\n"
15807 "\n"
15808 msgstr ""
15809
15810 #. type: textblock
15811 #: ../src/guestfs-actions.pod:5709 ../fish/guestfish-actions.pod:3768
15812 msgid ""
15813 "This command writes to part of a device.  It writes the data buffer "
15814 "C<content> to C<device> starting at offset C<offset>."
15815 msgstr ""
15816
15817 #. type: textblock
15818 #: ../src/guestfs-actions.pod:5712 ../fish/guestfish-actions.pod:3771
15819 msgid ""
15820 "This command implements the L<pwrite(2)> system call, and like that system "
15821 "call it may not write the full data requested (although short writes to disk "
15822 "devices and partitions are probably impossible with standard Linux kernels)."
15823 msgstr ""
15824
15825 #. type: textblock
15826 #: ../src/guestfs-actions.pod:5717
15827 msgid "See also C<guestfs_pwrite>."
15828 msgstr ""
15829
15830 #. type: textblock
15831 #: ../src/guestfs-actions.pod:5724
15832 msgid "(Added in 1.5.20)"
15833 msgstr ""
15834
15835 #. type: =head2
15836 #: ../src/guestfs-actions.pod:5726
15837 msgid "guestfs_read_file"
15838 msgstr ""
15839
15840 #. type: verbatim
15841 #: ../src/guestfs-actions.pod:5728
15842 #, no-wrap
15843 msgid ""
15844 " char *\n"
15845 " guestfs_read_file (guestfs_h *g,\n"
15846 "                    const char *path,\n"
15847 "                    size_t *size_r);\n"
15848 "\n"
15849 msgstr ""
15850
15851 #. type: textblock
15852 #: ../src/guestfs-actions.pod:5733 ../fish/guestfish-actions.pod:3785
15853 msgid "This calls returns the contents of the file C<path> as a buffer."
15854 msgstr ""
15855
15856 #. type: textblock
15857 #: ../src/guestfs-actions.pod:5736
15858 msgid ""
15859 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15860 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15861 "function is limited in the total size of file that can be handled."
15862 msgstr ""
15863
15864 #. type: textblock
15865 #: ../src/guestfs-actions.pod:5748
15866 msgid "(Added in 1.0.63)"
15867 msgstr ""
15868
15869 #. type: =head2
15870 #: ../src/guestfs-actions.pod:5750
15871 msgid "guestfs_read_lines"
15872 msgstr ""
15873
15874 #. type: verbatim
15875 #: ../src/guestfs-actions.pod:5752
15876 #, no-wrap
15877 msgid ""
15878 " char **\n"
15879 " guestfs_read_lines (guestfs_h *g,\n"
15880 "                     const char *path);\n"
15881 "\n"
15882 msgstr ""
15883
15884 #. type: textblock
15885 #: ../src/guestfs-actions.pod:5758 ../fish/guestfish-actions.pod:3802
15886 msgid ""
15887 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15888 "C<CRLF> character sequences are I<not> returned."
15889 msgstr ""
15890
15891 #. type: textblock
15892 #: ../src/guestfs-actions.pod:5761
15893 msgid ""
15894 "Note that this function cannot correctly handle binary files (specifically, "
15895 "files containing C<\\0> character which is treated as end of line).  For "
15896 "those you need to use the C<guestfs_read_file> function which has a more "
15897 "complex interface."
15898 msgstr ""
15899
15900 #. type: =head2
15901 #: ../src/guestfs-actions.pod:5772
15902 msgid "guestfs_readdir"
15903 msgstr ""
15904
15905 #. type: verbatim
15906 #: ../src/guestfs-actions.pod:5774
15907 #, no-wrap
15908 msgid ""
15909 " struct guestfs_dirent_list *\n"
15910 " guestfs_readdir (guestfs_h *g,\n"
15911 "                  const char *dir);\n"
15912 "\n"
15913 msgstr ""
15914
15915 #. type: textblock
15916 #: ../src/guestfs-actions.pod:5778 ../fish/guestfish-actions.pod:3814
15917 msgid "This returns the list of directory entries in directory C<dir>."
15918 msgstr ""
15919
15920 #. type: textblock
15921 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3816
15922 msgid ""
15923 "All entries in the directory are returned, including C<.> and C<..>.  The "
15924 "entries are I<not> sorted, but returned in the same order as the underlying "
15925 "filesystem."
15926 msgstr ""
15927
15928 #. type: textblock
15929 #: ../src/guestfs-actions.pod:5784 ../fish/guestfish-actions.pod:3820
15930 msgid ""
15931 "Also this call returns basic file type information about each file.  The "
15932 "C<ftyp> field will contain one of the following characters:"
15933 msgstr ""
15934
15935 #. type: =item
15936 #: ../src/guestfs-actions.pod:5789 ../fish/guestfish-actions.pod:3825
15937 msgid "'b'"
15938 msgstr ""
15939
15940 #. type: textblock
15941 #: ../src/guestfs-actions.pod:5791 ../fish/guestfish-actions.pod:3827
15942 msgid "Block special"
15943 msgstr ""
15944
15945 #. type: =item
15946 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3829
15947 msgid "'c'"
15948 msgstr ""
15949
15950 #. type: textblock
15951 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3831
15952 msgid "Char special"
15953 msgstr ""
15954
15955 #. type: =item
15956 #: ../src/guestfs-actions.pod:5797 ../fish/guestfish-actions.pod:3833
15957 msgid "'d'"
15958 msgstr ""
15959
15960 #. type: textblock
15961 #: ../src/guestfs-actions.pod:5799 ../fish/guestfish-actions.pod:3835
15962 msgid "Directory"
15963 msgstr ""
15964
15965 #. type: =item
15966 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3837
15967 msgid "'f'"
15968 msgstr ""
15969
15970 #. type: textblock
15971 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3839
15972 msgid "FIFO (named pipe)"
15973 msgstr ""
15974
15975 #. type: =item
15976 #: ../src/guestfs-actions.pod:5805 ../fish/guestfish-actions.pod:3841
15977 msgid "'l'"
15978 msgstr ""
15979
15980 #. type: textblock
15981 #: ../src/guestfs-actions.pod:5807 ../fish/guestfish-actions.pod:3843
15982 msgid "Symbolic link"
15983 msgstr ""
15984
15985 #. type: =item
15986 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3845
15987 msgid "'r'"
15988 msgstr ""
15989
15990 #. type: textblock
15991 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3847
15992 msgid "Regular file"
15993 msgstr ""
15994
15995 #. type: =item
15996 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3849
15997 msgid "'s'"
15998 msgstr ""
15999
16000 #. type: textblock
16001 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3851
16002 msgid "Socket"
16003 msgstr ""
16004
16005 #. type: =item
16006 #: ../src/guestfs-actions.pod:5817 ../fish/guestfish-actions.pod:3853
16007 msgid "'u'"
16008 msgstr ""
16009
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:5819 ../fish/guestfish-actions.pod:3855
16012 msgid "Unknown file type"
16013 msgstr ""
16014
16015 #. type: =item
16016 #: ../src/guestfs-actions.pod:5821 ../fish/guestfish-actions.pod:3857
16017 msgid "'?'"
16018 msgstr ""
16019
16020 #. type: textblock
16021 #: ../src/guestfs-actions.pod:5823 ../fish/guestfish-actions.pod:3859
16022 msgid ""
16023 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16024 msgstr ""
16025
16026 #. type: textblock
16027 #: ../src/guestfs-actions.pod:5828
16028 msgid ""
16029 "This function is primarily intended for use by programs.  To get a simple "
16030 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16031 "consumption, use C<guestfs_ll>."
16032 msgstr ""
16033
16034 #. type: textblock
16035 #: ../src/guestfs-actions.pod:5832
16036 msgid ""
16037 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16038 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
16039 msgstr ""
16040
16041 #. type: =head2
16042 #: ../src/guestfs-actions.pod:5838
16043 msgid "guestfs_readlink"
16044 msgstr ""
16045
16046 #. type: verbatim
16047 #: ../src/guestfs-actions.pod:5840
16048 #, no-wrap
16049 msgid ""
16050 " char *\n"
16051 " guestfs_readlink (guestfs_h *g,\n"
16052 "                   const char *path);\n"
16053 "\n"
16054 msgstr ""
16055
16056 #. type: textblock
16057 #: ../src/guestfs-actions.pod:5844 ../fish/guestfish-actions.pod:3872
16058 msgid "This command reads the target of a symbolic link."
16059 msgstr ""
16060
16061 #. type: =head2
16062 #: ../src/guestfs-actions.pod:5851
16063 msgid "guestfs_readlinklist"
16064 msgstr ""
16065
16066 #. type: verbatim
16067 #: ../src/guestfs-actions.pod:5853
16068 #, no-wrap
16069 msgid ""
16070 " char **\n"
16071 " guestfs_readlinklist (guestfs_h *g,\n"
16072 "                       const char *path,\n"
16073 "                       char *const *names);\n"
16074 "\n"
16075 msgstr ""
16076
16077 #. type: textblock
16078 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3878
16079 msgid ""
16080 "This call allows you to do a C<readlink> operation on multiple files, where "
16081 "all files are in the directory C<path>.  C<names> is the list of files from "
16082 "this directory."
16083 msgstr ""
16084
16085 #. type: textblock
16086 #: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3882
16087 msgid ""
16088 "On return you get a list of strings, with a one-to-one correspondence to the "
16089 "C<names> list.  Each string is the value of the symbolic link."
16090 msgstr ""
16091
16092 #. type: textblock
16093 #: ../src/guestfs-actions.pod:5866 ../fish/guestfish-actions.pod:3886
16094 msgid ""
16095 "If the C<readlink(2)> operation fails on any name, then the corresponding "
16096 "result string is the empty string C<\"\">.  However the whole operation is "
16097 "completed even if there were C<readlink(2)> errors, and so you can call this "
16098 "function with names where you don't know if they are symbolic links already "
16099 "(albeit slightly less efficient)."
16100 msgstr ""
16101
16102 #. type: textblock
16103 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3893
16104 msgid ""
16105 "This call is intended for programs that want to efficiently list a directory "
16106 "contents without making many round-trips.  Very long directory listings "
16107 "might cause the protocol message size to be exceeded, causing this call to "
16108 "fail.  The caller must split up such requests into smaller groups of names."
16109 msgstr ""
16110
16111 #. type: =head2
16112 #: ../src/guestfs-actions.pod:5886
16113 msgid "guestfs_realpath"
16114 msgstr ""
16115
16116 #. type: verbatim
16117 #: ../src/guestfs-actions.pod:5888
16118 #, no-wrap
16119 msgid ""
16120 " char *\n"
16121 " guestfs_realpath (guestfs_h *g,\n"
16122 "                   const char *path);\n"
16123 "\n"
16124 msgstr ""
16125
16126 #. type: textblock
16127 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3904
16128 msgid ""
16129 "Return the canonicalized absolute pathname of C<path>.  The returned path "
16130 "has no C<.>, C<..> or symbolic link path elements."
16131 msgstr ""
16132
16133 #. type: =head2
16134 #: ../src/guestfs-actions.pod:5900
16135 msgid "guestfs_removexattr"
16136 msgstr ""
16137
16138 #. type: verbatim
16139 #: ../src/guestfs-actions.pod:5902
16140 #, no-wrap
16141 msgid ""
16142 " int\n"
16143 " guestfs_removexattr (guestfs_h *g,\n"
16144 "                      const char *xattr,\n"
16145 "                      const char *path);\n"
16146 "\n"
16147 msgstr ""
16148
16149 #. type: textblock
16150 #: ../src/guestfs-actions.pod:5907 ../fish/guestfish-actions.pod:3911
16151 msgid ""
16152 "This call removes the extended attribute named C<xattr> of the file C<path>."
16153 msgstr ""
16154
16155 #. type: textblock
16156 #: ../src/guestfs-actions.pod:5910
16157 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
16158 msgstr ""
16159
16160 #. type: =head2
16161 #: ../src/guestfs-actions.pod:5916
16162 msgid "guestfs_resize2fs"
16163 msgstr ""
16164
16165 #. type: verbatim
16166 #: ../src/guestfs-actions.pod:5918
16167 #, no-wrap
16168 msgid ""
16169 " int\n"
16170 " guestfs_resize2fs (guestfs_h *g,\n"
16171 "                    const char *device);\n"
16172 "\n"
16173 msgstr ""
16174
16175 #. type: textblock
16176 #: ../src/guestfs-actions.pod:5922 ../fish/guestfish-actions.pod:3920
16177 msgid ""
16178 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
16179 "underlying device."
16180 msgstr ""
16181
16182 #. type: textblock
16183 #: ../src/guestfs-actions.pod:5925
16184 msgid ""
16185 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
16186 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
16187 "sometimes gives an error about this and sometimes not.  In any case, it is "
16188 "always safe to call C<guestfs_e2fsck_f> before calling this function."
16189 msgstr ""
16190
16191 #. type: =head2
16192 #: ../src/guestfs-actions.pod:5935
16193 msgid "guestfs_resize2fs_M"
16194 msgstr ""
16195
16196 #. type: verbatim
16197 #: ../src/guestfs-actions.pod:5937
16198 #, no-wrap
16199 msgid ""
16200 " int\n"
16201 " guestfs_resize2fs_M (guestfs_h *g,\n"
16202 "                      const char *device);\n"
16203 "\n"
16204 msgstr ""
16205
16206 #. type: textblock
16207 #: ../src/guestfs-actions.pod:5941
16208 msgid ""
16209 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
16210 "resized to its minimum size.  This works like the I<-M> option to the "
16211 "C<resize2fs> command."
16212 msgstr ""
16213
16214 #. type: textblock
16215 #: ../src/guestfs-actions.pod:5945
16216 msgid ""
16217 "To get the resulting size of the filesystem you should call "
16218 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16219 "These two numbers, multiplied together, give the resulting size of the "
16220 "minimal filesystem in bytes."
16221 msgstr ""
16222
16223 #. type: =head2
16224 #: ../src/guestfs-actions.pod:5954
16225 msgid "guestfs_resize2fs_size"
16226 msgstr ""
16227
16228 #. type: verbatim
16229 #: ../src/guestfs-actions.pod:5956
16230 #, no-wrap
16231 msgid ""
16232 " int\n"
16233 " guestfs_resize2fs_size (guestfs_h *g,\n"
16234 "                         const char *device,\n"
16235 "                         int64_t size);\n"
16236 "\n"
16237 msgstr ""
16238
16239 #. type: textblock
16240 #: ../src/guestfs-actions.pod:5961
16241 msgid ""
16242 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16243 "to specify the new size (in bytes) explicitly."
16244 msgstr ""
16245
16246 #. type: =head2
16247 #: ../src/guestfs-actions.pod:5968
16248 msgid "guestfs_rm"
16249 msgstr ""
16250
16251 #. type: verbatim
16252 #: ../src/guestfs-actions.pod:5970
16253 #, no-wrap
16254 msgid ""
16255 " int\n"
16256 " guestfs_rm (guestfs_h *g,\n"
16257 "             const char *path);\n"
16258 "\n"
16259 msgstr ""
16260
16261 #. type: textblock
16262 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:3953
16263 msgid "Remove the single file C<path>."
16264 msgstr ""
16265
16266 #. type: =head2
16267 #: ../src/guestfs-actions.pod:5980
16268 msgid "guestfs_rm_rf"
16269 msgstr ""
16270
16271 #. type: verbatim
16272 #: ../src/guestfs-actions.pod:5982
16273 #, no-wrap
16274 msgid ""
16275 " int\n"
16276 " guestfs_rm_rf (guestfs_h *g,\n"
16277 "                const char *path);\n"
16278 "\n"
16279 msgstr ""
16280
16281 #. type: textblock
16282 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:3959
16283 msgid ""
16284 "Remove the file or directory C<path>, recursively removing the contents if "
16285 "its a directory.  This is like the C<rm -rf> shell command."
16286 msgstr ""
16287
16288 #. type: =head2
16289 #: ../src/guestfs-actions.pod:5994
16290 msgid "guestfs_rmdir"
16291 msgstr ""
16292
16293 #. type: verbatim
16294 #: ../src/guestfs-actions.pod:5996
16295 #, no-wrap
16296 msgid ""
16297 " int\n"
16298 " guestfs_rmdir (guestfs_h *g,\n"
16299 "                const char *path);\n"
16300 "\n"
16301 msgstr ""
16302
16303 #. type: textblock
16304 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:3967
16305 msgid "Remove the single directory C<path>."
16306 msgstr ""
16307
16308 #. type: =head2
16309 #: ../src/guestfs-actions.pod:6006
16310 msgid "guestfs_rmmountpoint"
16311 msgstr ""
16312
16313 #. type: verbatim
16314 #: ../src/guestfs-actions.pod:6008
16315 #, no-wrap
16316 msgid ""
16317 " int\n"
16318 " guestfs_rmmountpoint (guestfs_h *g,\n"
16319 "                       const char *exemptpath);\n"
16320 "\n"
16321 msgstr ""
16322
16323 #. type: textblock
16324 #: ../src/guestfs-actions.pod:6012
16325 msgid ""
16326 "This calls removes a mountpoint that was previously created with "
16327 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16328 msgstr ""
16329
16330 #. type: =head2
16331 #: ../src/guestfs-actions.pod:6020
16332 msgid "guestfs_scrub_device"
16333 msgstr ""
16334
16335 #. type: verbatim
16336 #: ../src/guestfs-actions.pod:6022
16337 #, no-wrap
16338 msgid ""
16339 " int\n"
16340 " guestfs_scrub_device (guestfs_h *g,\n"
16341 "                       const char *device);\n"
16342 "\n"
16343 msgstr ""
16344
16345 #. type: textblock
16346 #: ../src/guestfs-actions.pod:6026 ../fish/guestfish-actions.pod:3981
16347 msgid ""
16348 "This command writes patterns over C<device> to make data retrieval more "
16349 "difficult."
16350 msgstr ""
16351
16352 #. type: textblock
16353 #: ../src/guestfs-actions.pod:6029 ../src/guestfs-actions.pod:6050
16354 #: ../src/guestfs-actions.pod:6069 ../fish/guestfish-actions.pod:3984
16355 #: ../fish/guestfish-actions.pod:3999 ../fish/guestfish-actions.pod:4012
16356 msgid ""
16357 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16358 "more details."
16359 msgstr ""
16360
16361 #. type: textblock
16362 #: ../src/guestfs-actions.pod:6037 ../src/guestfs-actions.pod:6055
16363 #: ../src/guestfs-actions.pod:6074
16364 msgid "(Added in 1.0.52)"
16365 msgstr ""
16366
16367 #. type: =head2
16368 #: ../src/guestfs-actions.pod:6039
16369 msgid "guestfs_scrub_file"
16370 msgstr ""
16371
16372 #. type: verbatim
16373 #: ../src/guestfs-actions.pod:6041
16374 #, no-wrap
16375 msgid ""
16376 " int\n"
16377 " guestfs_scrub_file (guestfs_h *g,\n"
16378 "                     const char *file);\n"
16379 "\n"
16380 msgstr ""
16381
16382 #. type: textblock
16383 #: ../src/guestfs-actions.pod:6045 ../fish/guestfish-actions.pod:3994
16384 msgid ""
16385 "This command writes patterns over a file to make data retrieval more "
16386 "difficult."
16387 msgstr ""
16388
16389 #. type: textblock
16390 #: ../src/guestfs-actions.pod:6048 ../fish/guestfish-actions.pod:3997
16391 msgid "The file is I<removed> after scrubbing."
16392 msgstr ""
16393
16394 #. type: =head2
16395 #: ../src/guestfs-actions.pod:6057
16396 msgid "guestfs_scrub_freespace"
16397 msgstr ""
16398
16399 #. type: verbatim
16400 #: ../src/guestfs-actions.pod:6059
16401 #, no-wrap
16402 msgid ""
16403 " int\n"
16404 " guestfs_scrub_freespace (guestfs_h *g,\n"
16405 "                          const char *dir);\n"
16406 "\n"
16407 msgstr ""
16408
16409 #. type: textblock
16410 #: ../src/guestfs-actions.pod:6063
16411 msgid ""
16412 "This command creates the directory C<dir> and then fills it with files until "
16413 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16414 "and deletes them.  The intention is to scrub any free space on the partition "
16415 "containing C<dir>."
16416 msgstr ""
16417
16418 #. type: =head2
16419 #: ../src/guestfs-actions.pod:6076
16420 msgid "guestfs_set_append"
16421 msgstr ""
16422
16423 #. type: verbatim
16424 #: ../src/guestfs-actions.pod:6078
16425 #, no-wrap
16426 msgid ""
16427 " int\n"
16428 " guestfs_set_append (guestfs_h *g,\n"
16429 "                     const char *append);\n"
16430 "\n"
16431 msgstr ""
16432
16433 #. type: textblock
16434 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4021
16435 msgid ""
16436 "This function is used to add additional options to the guest kernel command "
16437 "line."
16438 msgstr ""
16439
16440 #. type: textblock
16441 #: ../src/guestfs-actions.pod:6085 ../fish/guestfish-actions.pod:4024
16442 msgid ""
16443 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16444 "environment variable."
16445 msgstr ""
16446
16447 #. type: textblock
16448 #: ../src/guestfs-actions.pod:6088 ../fish/guestfish-actions.pod:4027
16449 msgid ""
16450 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16451 "(libguestfs always adds a few of its own)."
16452 msgstr ""
16453
16454 #. type: =head2
16455 #: ../src/guestfs-actions.pod:6095
16456 msgid "guestfs_set_attach_method"
16457 msgstr ""
16458
16459 #. type: verbatim
16460 #: ../src/guestfs-actions.pod:6097
16461 #, no-wrap
16462 msgid ""
16463 " int\n"
16464 " guestfs_set_attach_method (guestfs_h *g,\n"
16465 "                            const char *attachmethod);\n"
16466 "\n"
16467 msgstr ""
16468
16469 #. type: textblock
16470 #: ../src/guestfs-actions.pod:6101 ../fish/guestfish-actions.pod:4036
16471 msgid ""
16472 "Set the method that libguestfs uses to connect to the back end guestfsd "
16473 "daemon.  Possible methods are:"
16474 msgstr ""
16475
16476 #. type: textblock
16477 #: ../src/guestfs-actions.pod:6108 ../fish/guestfish-actions.pod:4043
16478 msgid ""
16479 "Launch an appliance and connect to it.  This is the ordinary method and the "
16480 "default."
16481 msgstr ""
16482
16483 #. type: =item
16484 #: ../src/guestfs-actions.pod:6111 ../fish/guestfish-actions.pod:4046
16485 msgid "C<unix:I<path>>"
16486 msgstr ""
16487
16488 #. type: textblock
16489 #: ../src/guestfs-actions.pod:6113 ../fish/guestfish-actions.pod:4048
16490 msgid "Connect to the Unix domain socket I<path>."
16491 msgstr ""
16492
16493 #. type: textblock
16494 #: ../src/guestfs-actions.pod:6115 ../fish/guestfish-actions.pod:4050
16495 msgid ""
16496 "This method lets you connect to an existing daemon or (using virtio-serial) "
16497 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16498 "RUNNING DAEMONS>."
16499 msgstr ""
16500
16501 #. type: =head2
16502 #: ../src/guestfs-actions.pod:6125
16503 msgid "guestfs_set_autosync"
16504 msgstr ""
16505
16506 #. type: verbatim
16507 #: ../src/guestfs-actions.pod:6127
16508 #, no-wrap
16509 msgid ""
16510 " int\n"
16511 " guestfs_set_autosync (guestfs_h *g,\n"
16512 "                       int autosync);\n"
16513 "\n"
16514 msgstr ""
16515
16516 #. type: textblock
16517 #: ../src/guestfs-actions.pod:6131 ../fish/guestfish-actions.pod:4062
16518 msgid ""
16519 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16520 "effort attempt to make filesystems consistent and synchronized when the "
16521 "handle is closed (also if the program exits without closing handles)."
16522 msgstr ""
16523
16524 #. type: textblock
16525 #: ../src/guestfs-actions.pod:6136 ../fish/guestfish-actions.pod:4067
16526 msgid ""
16527 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16528 "disabled by default)."
16529 msgstr ""
16530
16531 #. type: =head2
16532 #: ../src/guestfs-actions.pod:6143
16533 msgid "guestfs_set_direct"
16534 msgstr ""
16535
16536 #. type: verbatim
16537 #: ../src/guestfs-actions.pod:6145
16538 #, no-wrap
16539 msgid ""
16540 " int\n"
16541 " guestfs_set_direct (guestfs_h *g,\n"
16542 "                     int direct);\n"
16543 "\n"
16544 msgstr ""
16545
16546 #. type: textblock
16547 #: ../src/guestfs-actions.pod:6149 ../fish/guestfish-actions.pod:4076
16548 msgid ""
16549 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16550 "passed directly through to the appliance once it is launched."
16551 msgstr ""
16552
16553 #. type: textblock
16554 #: ../src/guestfs-actions.pod:6153
16555 msgid ""
16556 "One consequence of this is that log messages aren't caught by the library "
16557 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16558 "stdout."
16559 msgstr ""
16560
16561 #. type: textblock
16562 #: ../src/guestfs-actions.pod:6157 ../fish/guestfish-actions.pod:4084
16563 msgid "You probably don't want to use this unless you know what you are doing."
16564 msgstr ""
16565
16566 #. type: textblock
16567 #: ../src/guestfs-actions.pod:6160 ../fish/guestfish-actions.pod:4087
16568 msgid "The default is disabled."
16569 msgstr ""
16570
16571 #. type: =head2
16572 #: ../src/guestfs-actions.pod:6166
16573 msgid "guestfs_set_e2label"
16574 msgstr ""
16575
16576 #. type: verbatim
16577 #: ../src/guestfs-actions.pod:6168
16578 #, no-wrap
16579 msgid ""
16580 " int\n"
16581 " guestfs_set_e2label (guestfs_h *g,\n"
16582 "                      const char *device,\n"
16583 "                      const char *label);\n"
16584 "\n"
16585 msgstr ""
16586
16587 #. type: textblock
16588 #: ../src/guestfs-actions.pod:6173 ../fish/guestfish-actions.pod:4093
16589 msgid ""
16590 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16591 "C<label>.  Filesystem labels are limited to 16 characters."
16592 msgstr ""
16593
16594 #. type: textblock
16595 #: ../src/guestfs-actions.pod:6177
16596 msgid ""
16597 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16598 "the existing label on a filesystem."
16599 msgstr ""
16600
16601 #. type: =head2
16602 #: ../src/guestfs-actions.pod:6184
16603 msgid "guestfs_set_e2uuid"
16604 msgstr ""
16605
16606 #. type: verbatim
16607 #: ../src/guestfs-actions.pod:6186
16608 #, no-wrap
16609 msgid ""
16610 " int\n"
16611 " guestfs_set_e2uuid (guestfs_h *g,\n"
16612 "                     const char *device,\n"
16613 "                     const char *uuid);\n"
16614 "\n"
16615 msgstr ""
16616
16617 #. type: textblock
16618 #: ../src/guestfs-actions.pod:6191 ../fish/guestfish-actions.pod:4104
16619 msgid ""
16620 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16621 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16622 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16623 msgstr ""
16624
16625 #. type: textblock
16626 #: ../src/guestfs-actions.pod:6196
16627 msgid ""
16628 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16629 "the existing UUID of a filesystem."
16630 msgstr ""
16631
16632 #. type: =head2
16633 #: ../src/guestfs-actions.pod:6203
16634 msgid "guestfs_set_memsize"
16635 msgstr ""
16636
16637 #. type: verbatim
16638 #: ../src/guestfs-actions.pod:6205
16639 #, no-wrap
16640 msgid ""
16641 " int\n"
16642 " guestfs_set_memsize (guestfs_h *g,\n"
16643 "                      int memsize);\n"
16644 "\n"
16645 msgstr ""
16646
16647 #. type: textblock
16648 #: ../src/guestfs-actions.pod:6209
16649 msgid ""
16650 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16651 "This only has any effect if called before C<guestfs_launch>."
16652 msgstr ""
16653
16654 #. type: textblock
16655 #: ../src/guestfs-actions.pod:6213 ../fish/guestfish-actions.pod:4122
16656 msgid ""
16657 "You can also change this by setting the environment variable "
16658 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16659 msgstr ""
16660
16661 #. type: =head2
16662 #: ../src/guestfs-actions.pod:6224
16663 msgid "guestfs_set_network"
16664 msgstr ""
16665
16666 #. type: verbatim
16667 #: ../src/guestfs-actions.pod:6226
16668 #, no-wrap
16669 msgid ""
16670 " int\n"
16671 " guestfs_set_network (guestfs_h *g,\n"
16672 "                      int network);\n"
16673 "\n"
16674 msgstr ""
16675
16676 #. type: textblock
16677 #: ../src/guestfs-actions.pod:6230 ../fish/guestfish-actions.pod:4135
16678 msgid ""
16679 "If C<network> is true, then the network is enabled in the libguestfs "
16680 "appliance.  The default is false."
16681 msgstr ""
16682
16683 #. type: textblock
16684 #: ../src/guestfs-actions.pod:6233 ../fish/guestfish-actions.pod:4138
16685 msgid ""
16686 "This affects whether commands are able to access the network (see L<guestfs"
16687 "(3)/RUNNING COMMANDS>)."
16688 msgstr ""
16689
16690 #. type: textblock
16691 #: ../src/guestfs-actions.pod:6236
16692 msgid ""
16693 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16694 "effect."
16695 msgstr ""
16696
16697 #. type: =head2
16698 #: ../src/guestfs-actions.pod:6243
16699 msgid "guestfs_set_path"
16700 msgstr ""
16701
16702 #. type: verbatim
16703 #: ../src/guestfs-actions.pod:6245
16704 #, no-wrap
16705 msgid ""
16706 " int\n"
16707 " guestfs_set_path (guestfs_h *g,\n"
16708 "                   const char *searchpath);\n"
16709 "\n"
16710 msgstr ""
16711
16712 #. type: textblock
16713 #: ../src/guestfs-actions.pod:6249 ../fish/guestfish-actions.pod:4150
16714 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16715 msgstr ""
16716
16717 #. type: textblock
16718 #: ../src/guestfs-actions.pod:6251 ../fish/guestfish-actions.pod:4152
16719 msgid ""
16720 "The default is C<$libdir/guestfs> unless overridden by setting "
16721 "C<LIBGUESTFS_PATH> environment variable."
16722 msgstr ""
16723
16724 #. type: textblock
16725 #: ../src/guestfs-actions.pod:6254 ../fish/guestfish-actions.pod:4155
16726 msgid "Setting C<path> to C<NULL> restores the default path."
16727 msgstr ""
16728
16729 #. type: =head2
16730 #: ../src/guestfs-actions.pod:6260
16731 msgid "guestfs_set_qemu"
16732 msgstr ""
16733
16734 #. type: verbatim
16735 #: ../src/guestfs-actions.pod:6262
16736 #, no-wrap
16737 msgid ""
16738 " int\n"
16739 " guestfs_set_qemu (guestfs_h *g,\n"
16740 "                   const char *qemu);\n"
16741 "\n"
16742 msgstr ""
16743
16744 #. type: textblock
16745 #: ../src/guestfs-actions.pod:6266 ../fish/guestfish-actions.pod:4163
16746 msgid "Set the qemu binary that we will use."
16747 msgstr ""
16748
16749 #. type: textblock
16750 #: ../src/guestfs-actions.pod:6268 ../fish/guestfish-actions.pod:4165
16751 msgid ""
16752 "The default is chosen when the library was compiled by the configure script."
16753 msgstr ""
16754
16755 #. type: textblock
16756 #: ../src/guestfs-actions.pod:6271 ../fish/guestfish-actions.pod:4168
16757 msgid ""
16758 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16759 "variable."
16760 msgstr ""
16761
16762 #. type: textblock
16763 #: ../src/guestfs-actions.pod:6274 ../fish/guestfish-actions.pod:4171
16764 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16765 msgstr ""
16766
16767 #. type: textblock
16768 #: ../src/guestfs-actions.pod:6276 ../fish/guestfish-actions.pod:4173
16769 msgid ""
16770 "Note that you should call this function as early as possible after creating "
16771 "the handle.  This is because some pre-launch operations depend on testing "
16772 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16773 "don't retest features, and so you might see inconsistent results.  Using the "
16774 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16775 "the qemu binary at the same time as the handle is created."
16776 msgstr ""
16777
16778 #. type: =head2
16779 #: ../src/guestfs-actions.pod:6288
16780 msgid "guestfs_set_recovery_proc"
16781 msgstr ""
16782
16783 #. type: verbatim
16784 #: ../src/guestfs-actions.pod:6290
16785 #, no-wrap
16786 msgid ""
16787 " int\n"
16788 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16789 "                            int recoveryproc);\n"
16790 "\n"
16791 msgstr ""
16792
16793 #. type: textblock
16794 #: ../src/guestfs-actions.pod:6294
16795 msgid ""
16796 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16797 "not create a recovery process.  The purpose of the recovery process is to "
16798 "stop runaway qemu processes in the case where the main program aborts "
16799 "abruptly."
16800 msgstr ""
16801
16802 #. type: textblock
16803 #: ../src/guestfs-actions.pod:6299
16804 msgid ""
16805 "This only has any effect if called before C<guestfs_launch>, and the default "
16806 "is true."
16807 msgstr ""
16808
16809 #. type: textblock
16810 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4195
16811 msgid ""
16812 "About the only time when you would want to disable this is if the main "
16813 "process will fork itself into the background (\"daemonize\" itself).  In "
16814 "this case the recovery process thinks that the main program has disappeared "
16815 "and so kills qemu, which is not very helpful."
16816 msgstr ""
16817
16818 #. type: =head2
16819 #: ../src/guestfs-actions.pod:6312
16820 msgid "guestfs_set_selinux"
16821 msgstr ""
16822
16823 #. type: verbatim
16824 #: ../src/guestfs-actions.pod:6314
16825 #, no-wrap
16826 msgid ""
16827 " int\n"
16828 " guestfs_set_selinux (guestfs_h *g,\n"
16829 "                      int selinux);\n"
16830 "\n"
16831 msgstr ""
16832
16833 #. type: textblock
16834 #: ../src/guestfs-actions.pod:6318 ../fish/guestfish-actions.pod:4207
16835 msgid ""
16836 "This sets the selinux flag that is passed to the appliance at boot time.  "
16837 "The default is C<selinux=0> (disabled)."
16838 msgstr ""
16839
16840 #. type: textblock
16841 #: ../src/guestfs-actions.pod:6321 ../fish/guestfish-actions.pod:4210
16842 msgid ""
16843 "Note that if SELinux is enabled, it is always in Permissive mode "
16844 "(C<enforcing=0>)."
16845 msgstr ""
16846
16847 #. type: =head2
16848 #: ../src/guestfs-actions.pod:6331
16849 msgid "guestfs_set_trace"
16850 msgstr ""
16851
16852 #. type: verbatim
16853 #: ../src/guestfs-actions.pod:6333
16854 #, no-wrap
16855 msgid ""
16856 " int\n"
16857 " guestfs_set_trace (guestfs_h *g,\n"
16858 "                    int trace);\n"
16859 "\n"
16860 msgstr ""
16861
16862 #. type: textblock
16863 #: ../src/guestfs-actions.pod:6337 ../fish/guestfish-actions.pod:4222
16864 msgid ""
16865 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16866 "return values are traced."
16867 msgstr ""
16868
16869 #. type: textblock
16870 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4225
16871 msgid ""
16872 "If you want to trace C API calls into libguestfs (and other libraries) then "
16873 "possibly a better way is to use the external ltrace(1) command."
16874 msgstr ""
16875
16876 #. type: textblock
16877 #: ../src/guestfs-actions.pod:6344 ../fish/guestfish-actions.pod:4229
16878 msgid ""
16879 "Command traces are disabled unless the environment variable "
16880 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16881 msgstr ""
16882
16883 #. type: textblock
16884 #: ../src/guestfs-actions.pod:6347
16885 msgid ""
16886 "Trace messages are normally sent to C<stderr>, unless you register a "
16887 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16888 msgstr ""
16889
16890 #. type: =head2
16891 #: ../src/guestfs-actions.pod:6355
16892 msgid "guestfs_set_verbose"
16893 msgstr ""
16894
16895 #. type: verbatim
16896 #: ../src/guestfs-actions.pod:6357
16897 #, no-wrap
16898 msgid ""
16899 " int\n"
16900 " guestfs_set_verbose (guestfs_h *g,\n"
16901 "                      int verbose);\n"
16902 "\n"
16903 msgstr ""
16904
16905 #. type: textblock
16906 #: ../src/guestfs-actions.pod:6361 ../fish/guestfish-actions.pod:4242
16907 msgid "If C<verbose> is true, this turns on verbose messages."
16908 msgstr ""
16909
16910 #. type: textblock
16911 #: ../src/guestfs-actions.pod:6363 ../fish/guestfish-actions.pod:4244
16912 msgid ""
16913 "Verbose messages are disabled unless the environment variable "
16914 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16915 msgstr ""
16916
16917 #. type: textblock
16918 #: ../src/guestfs-actions.pod:6366
16919 msgid ""
16920 "Verbose messages are normally sent to C<stderr>, unless you register a "
16921 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16922 msgstr ""
16923
16924 #. type: =head2
16925 #: ../src/guestfs-actions.pod:6374
16926 msgid "guestfs_setcon"
16927 msgstr ""
16928
16929 #. type: verbatim
16930 #: ../src/guestfs-actions.pod:6376
16931 #, no-wrap
16932 msgid ""
16933 " int\n"
16934 " guestfs_setcon (guestfs_h *g,\n"
16935 "                 const char *context);\n"
16936 "\n"
16937 msgstr ""
16938
16939 #. type: textblock
16940 #: ../src/guestfs-actions.pod:6380 ../fish/guestfish-actions.pod:4255
16941 msgid ""
16942 "This sets the SELinux security context of the daemon to the string "
16943 "C<context>."
16944 msgstr ""
16945
16946 #. type: textblock
16947 #: ../src/guestfs-actions.pod:6383 ../fish/guestfish-actions.pod:4258
16948 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16949 msgstr ""
16950
16951 #. type: =head2
16952 #: ../src/guestfs-actions.pod:6389
16953 msgid "guestfs_setxattr"
16954 msgstr ""
16955
16956 #. type: verbatim
16957 #: ../src/guestfs-actions.pod:6391
16958 #, no-wrap
16959 msgid ""
16960 " int\n"
16961 " guestfs_setxattr (guestfs_h *g,\n"
16962 "                   const char *xattr,\n"
16963 "                   const char *val,\n"
16964 "                   int vallen,\n"
16965 "                   const char *path);\n"
16966 "\n"
16967 msgstr ""
16968
16969 #. type: textblock
16970 #: ../src/guestfs-actions.pod:6398 ../fish/guestfish-actions.pod:4264
16971 msgid ""
16972 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16973 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16974 msgstr ""
16975
16976 #. type: textblock
16977 #: ../src/guestfs-actions.pod:6402
16978 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16979 msgstr ""
16980
16981 #. type: =head2
16982 #: ../src/guestfs-actions.pod:6408
16983 msgid "guestfs_sfdisk"
16984 msgstr ""
16985
16986 #. type: verbatim
16987 #: ../src/guestfs-actions.pod:6410
16988 #, no-wrap
16989 msgid ""
16990 " int\n"
16991 " guestfs_sfdisk (guestfs_h *g,\n"
16992 "                 const char *device,\n"
16993 "                 int cyls,\n"
16994 "                 int heads,\n"
16995 "                 int sectors,\n"
16996 "                 char *const *lines);\n"
16997 "\n"
16998 msgstr ""
16999
17000 #. type: textblock
17001 #: ../src/guestfs-actions.pod:6418 ../fish/guestfish-actions.pod:4274
17002 msgid ""
17003 "This is a direct interface to the L<sfdisk(8)> program for creating "
17004 "partitions on block devices."
17005 msgstr ""
17006
17007 #. type: textblock
17008 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4277
17009 msgid "C<device> should be a block device, for example C</dev/sda>."
17010 msgstr ""
17011
17012 #. type: textblock
17013 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4279
17014 msgid ""
17015 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
17016 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
17017 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
17018 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
17019 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
17020 "the kernel) cannot work out the right geometry and you will need to tell it."
17021 msgstr ""
17022
17023 #. type: textblock
17024 #: ../src/guestfs-actions.pod:6431 ../fish/guestfish-actions.pod:4287
17025 msgid ""
17026 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
17027 "refer to the L<sfdisk(8)> manpage."
17028 msgstr ""
17029
17030 #. type: textblock
17031 #: ../src/guestfs-actions.pod:6434 ../fish/guestfish-actions.pod:4290
17032 msgid ""
17033 "To create a single partition occupying the whole disk, you would pass "
17034 "C<lines> as a single element list, when the single element being the string "
17035 "C<,> (comma)."
17036 msgstr ""
17037
17038 #. type: textblock
17039 #: ../src/guestfs-actions.pod:6438
17040 msgid ""
17041 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
17042 msgstr ""
17043
17044 #. type: textblock
17045 #: ../src/guestfs-actions.pod:6446 ../src/guestfs-actions.pod:6476
17046 #: ../src/guestfs-actions.pod:6509 ../fish/guestfish-actions.pod:4300
17047 #: ../fish/guestfish-actions.pod:4323 ../fish/guestfish-actions.pod:4345
17048 msgid ""
17049 "This function is deprecated.  In new code, use the C<part_add> call instead."
17050 msgstr ""
17051
17052 #. type: =head2
17053 #: ../src/guestfs-actions.pod:6455
17054 msgid "guestfs_sfdiskM"
17055 msgstr ""
17056
17057 #. type: verbatim
17058 #: ../src/guestfs-actions.pod:6457
17059 #, no-wrap
17060 msgid ""
17061 " int\n"
17062 " guestfs_sfdiskM (guestfs_h *g,\n"
17063 "                  const char *device,\n"
17064 "                  char *const *lines);\n"
17065 "\n"
17066 msgstr ""
17067
17068 #. type: textblock
17069 #: ../src/guestfs-actions.pod:6462
17070 msgid ""
17071 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
17072 "partition sizes are specified in megabytes only (rounded to the nearest "
17073 "cylinder) and you don't need to specify the cyls, heads and sectors "
17074 "parameters which were rarely if ever used anyway."
17075 msgstr ""
17076
17077 #. type: textblock
17078 #: ../src/guestfs-actions.pod:6468
17079 msgid ""
17080 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
17081 "C<guestfs_part_disk>"
17082 msgstr ""
17083
17084 #. type: =head2
17085 #: ../src/guestfs-actions.pod:6485
17086 msgid "guestfs_sfdisk_N"
17087 msgstr ""
17088
17089 #. type: verbatim
17090 #: ../src/guestfs-actions.pod:6487
17091 #, no-wrap
17092 msgid ""
17093 " int\n"
17094 " guestfs_sfdisk_N (guestfs_h *g,\n"
17095 "                   const char *device,\n"
17096 "                   int partnum,\n"
17097 "                   int cyls,\n"
17098 "                   int heads,\n"
17099 "                   int sectors,\n"
17100 "                   const char *line);\n"
17101 "\n"
17102 msgstr ""
17103
17104 #. type: textblock
17105 #: ../src/guestfs-actions.pod:6496 ../fish/guestfish-actions.pod:4334
17106 msgid ""
17107 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
17108 "(note: C<n> counts from 1)."
17109 msgstr ""
17110
17111 #. type: textblock
17112 #: ../src/guestfs-actions.pod:6499
17113 msgid ""
17114 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
17115 "for the cyls/heads/sectors parameters."
17116 msgstr ""
17117
17118 #. type: textblock
17119 #: ../src/guestfs-actions.pod:6502
17120 msgid "See also: C<guestfs_part_add>"
17121 msgstr ""
17122
17123 #. type: =head2
17124 #: ../src/guestfs-actions.pod:6518
17125 msgid "guestfs_sfdisk_disk_geometry"
17126 msgstr ""
17127
17128 #. type: verbatim
17129 #: ../src/guestfs-actions.pod:6520
17130 #, no-wrap
17131 msgid ""
17132 " char *\n"
17133 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
17134 "                               const char *device);\n"
17135 "\n"
17136 msgstr ""
17137
17138 #. type: textblock
17139 #: ../src/guestfs-actions.pod:6524
17140 msgid ""
17141 "This displays the disk geometry of C<device> read from the partition table.  "
17142 "Especially in the case where the underlying block device has been resized, "
17143 "this can be different from the kernel's idea of the geometry (see "
17144 "C<guestfs_sfdisk_kernel_geometry>)."
17145 msgstr ""
17146
17147 #. type: textblock
17148 #: ../src/guestfs-actions.pod:6529 ../src/guestfs-actions.pod:6545
17149 #: ../fish/guestfish-actions.pod:4361 ../fish/guestfish-actions.pod:4370
17150 msgid "The result is in human-readable format, and not designed to be parsed."
17151 msgstr ""
17152
17153 #. type: =head2
17154 #: ../src/guestfs-actions.pod:6537
17155 msgid "guestfs_sfdisk_kernel_geometry"
17156 msgstr ""
17157
17158 #. type: verbatim
17159 #: ../src/guestfs-actions.pod:6539
17160 #, no-wrap
17161 msgid ""
17162 " char *\n"
17163 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
17164 "                                 const char *device);\n"
17165 "\n"
17166 msgstr ""
17167
17168 #. type: textblock
17169 #: ../src/guestfs-actions.pod:6543 ../fish/guestfish-actions.pod:4368
17170 msgid "This displays the kernel's idea of the geometry of C<device>."
17171 msgstr ""
17172
17173 #. type: =head2
17174 #: ../src/guestfs-actions.pod:6553
17175 msgid "guestfs_sfdisk_l"
17176 msgstr ""
17177
17178 #. type: verbatim
17179 #: ../src/guestfs-actions.pod:6555
17180 #, no-wrap
17181 msgid ""
17182 " char *\n"
17183 " guestfs_sfdisk_l (guestfs_h *g,\n"
17184 "                   const char *device);\n"
17185 "\n"
17186 msgstr ""
17187
17188 #. type: textblock
17189 #: ../src/guestfs-actions.pod:6559 ../fish/guestfish-actions.pod:4377
17190 msgid ""
17191 "This displays the partition table on C<device>, in the human-readable output "
17192 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
17193 msgstr ""
17194
17195 #. type: textblock
17196 #: ../src/guestfs-actions.pod:6563
17197 msgid "See also: C<guestfs_part_list>"
17198 msgstr ""
17199
17200 #. type: textblock
17201 #: ../src/guestfs-actions.pod:6568 ../fish/guestfish-actions.pod:4383
17202 msgid ""
17203 "This function is deprecated.  In new code, use the C<part_list> call instead."
17204 msgstr ""
17205
17206 #. type: =head2
17207 #: ../src/guestfs-actions.pod:6577
17208 msgid "guestfs_sh"
17209 msgstr ""
17210
17211 #. type: verbatim
17212 #: ../src/guestfs-actions.pod:6579
17213 #, no-wrap
17214 msgid ""
17215 " char *\n"
17216 " guestfs_sh (guestfs_h *g,\n"
17217 "             const char *command);\n"
17218 "\n"
17219 msgstr ""
17220
17221 #. type: textblock
17222 #: ../src/guestfs-actions.pod:6583 ../fish/guestfish-actions.pod:4394
17223 msgid ""
17224 "This call runs a command from the guest filesystem via the guest's C</bin/"
17225 "sh>."
17226 msgstr ""
17227
17228 #. type: textblock
17229 #: ../src/guestfs-actions.pod:6586
17230 msgid "This is like C<guestfs_command>, but passes the command to:"
17231 msgstr ""
17232
17233 #. type: verbatim
17234 #: ../src/guestfs-actions.pod:6588 ../fish/guestfish-actions.pod:4399
17235 #, no-wrap
17236 msgid ""
17237 " /bin/sh -c \"command\"\n"
17238 "\n"
17239 msgstr ""
17240
17241 #. type: textblock
17242 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4401
17243 msgid ""
17244 "Depending on the guest's shell, this usually results in wildcards being "
17245 "expanded, shell expressions being interpolated and so on."
17246 msgstr ""
17247
17248 #. type: textblock
17249 #: ../src/guestfs-actions.pod:6594
17250 msgid "All the provisos about C<guestfs_command> apply to this call."
17251 msgstr ""
17252
17253 #. type: =head2
17254 #: ../src/guestfs-actions.pod:6601
17255 msgid "guestfs_sh_lines"
17256 msgstr ""
17257
17258 #. type: verbatim
17259 #: ../src/guestfs-actions.pod:6603
17260 #, no-wrap
17261 msgid ""
17262 " char **\n"
17263 " guestfs_sh_lines (guestfs_h *g,\n"
17264 "                   const char *command);\n"
17265 "\n"
17266 msgstr ""
17267
17268 #. type: textblock
17269 #: ../src/guestfs-actions.pod:6607
17270 msgid ""
17271 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17272 "lines."
17273 msgstr ""
17274
17275 #. type: textblock
17276 #: ../src/guestfs-actions.pod:6610
17277 msgid "See also: C<guestfs_command_lines>"
17278 msgstr ""
17279
17280 #. type: =head2
17281 #: ../src/guestfs-actions.pod:6618
17282 msgid "guestfs_sleep"
17283 msgstr ""
17284
17285 #. type: verbatim
17286 #: ../src/guestfs-actions.pod:6620
17287 #, no-wrap
17288 msgid ""
17289 " int\n"
17290 " guestfs_sleep (guestfs_h *g,\n"
17291 "                int secs);\n"
17292 "\n"
17293 msgstr ""
17294
17295 #. type: textblock
17296 #: ../src/guestfs-actions.pod:6624 ../fish/guestfish-actions.pod:4420
17297 msgid "Sleep for C<secs> seconds."
17298 msgstr ""
17299
17300 #. type: textblock
17301 #: ../src/guestfs-actions.pod:6628
17302 msgid "(Added in 1.0.41)"
17303 msgstr ""
17304
17305 #. type: =head2
17306 #: ../src/guestfs-actions.pod:6630 ../src/guestfs-structs.pod:109
17307 msgid "guestfs_stat"
17308 msgstr ""
17309
17310 #. type: verbatim
17311 #: ../src/guestfs-actions.pod:6632
17312 #, no-wrap
17313 msgid ""
17314 " struct guestfs_stat *\n"
17315 " guestfs_stat (guestfs_h *g,\n"
17316 "               const char *path);\n"
17317 "\n"
17318 msgstr ""
17319
17320 #. type: textblock
17321 #: ../src/guestfs-actions.pod:6638 ../fish/guestfish-actions.pod:4428
17322 msgid "This is the same as the C<stat(2)> system call."
17323 msgstr ""
17324
17325 #. type: =head2
17326 #: ../src/guestfs-actions.pod:6646 ../src/guestfs-structs.pod:135
17327 msgid "guestfs_statvfs"
17328 msgstr ""
17329
17330 #. type: verbatim
17331 #: ../src/guestfs-actions.pod:6648
17332 #, no-wrap
17333 msgid ""
17334 " struct guestfs_statvfs *\n"
17335 " guestfs_statvfs (guestfs_h *g,\n"
17336 "                  const char *path);\n"
17337 "\n"
17338 msgstr ""
17339
17340 #. type: textblock
17341 #: ../src/guestfs-actions.pod:6652 ../fish/guestfish-actions.pod:4434
17342 msgid ""
17343 "Returns file system statistics for any mounted file system.  C<path> should "
17344 "be a file or directory in the mounted file system (typically it is the mount "
17345 "point itself, but it doesn't need to be)."
17346 msgstr ""
17347
17348 #. type: textblock
17349 #: ../src/guestfs-actions.pod:6656 ../fish/guestfish-actions.pod:4438
17350 msgid "This is the same as the C<statvfs(2)> system call."
17351 msgstr ""
17352
17353 #. type: textblock
17354 #: ../src/guestfs-actions.pod:6658
17355 msgid ""
17356 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
17357 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17358 msgstr ""
17359
17360 #. type: =head2
17361 #: ../src/guestfs-actions.pod:6664
17362 msgid "guestfs_strings"
17363 msgstr ""
17364
17365 #. type: verbatim
17366 #: ../src/guestfs-actions.pod:6666
17367 #, no-wrap
17368 msgid ""
17369 " char **\n"
17370 " guestfs_strings (guestfs_h *g,\n"
17371 "                  const char *path);\n"
17372 "\n"
17373 msgstr ""
17374
17375 #. type: textblock
17376 #: ../src/guestfs-actions.pod:6670 ../fish/guestfish-actions.pod:4444
17377 msgid ""
17378 "This runs the L<strings(1)> command on a file and returns the list of "
17379 "printable strings found."
17380 msgstr ""
17381
17382 #. type: =head2
17383 #: ../src/guestfs-actions.pod:6682
17384 msgid "guestfs_strings_e"
17385 msgstr ""
17386
17387 #. type: verbatim
17388 #: ../src/guestfs-actions.pod:6684
17389 #, no-wrap
17390 msgid ""
17391 " char **\n"
17392 " guestfs_strings_e (guestfs_h *g,\n"
17393 "                    const char *encoding,\n"
17394 "                    const char *path);\n"
17395 "\n"
17396 msgstr ""
17397
17398 #. type: textblock
17399 #: ../src/guestfs-actions.pod:6689
17400 msgid ""
17401 "This is like the C<guestfs_strings> command, but allows you to specify the "
17402 "encoding of strings that are looked for in the source file C<path>."
17403 msgstr ""
17404
17405 #. type: textblock
17406 #: ../src/guestfs-actions.pod:6693 ../fish/guestfish-actions.pod:4458
17407 msgid "Allowed encodings are:"
17408 msgstr ""
17409
17410 #. type: =item
17411 #: ../src/guestfs-actions.pod:6697 ../fish/guestfish-actions.pod:4462
17412 msgid "s"
17413 msgstr ""
17414
17415 #. type: textblock
17416 #: ../src/guestfs-actions.pod:6699
17417 msgid ""
17418 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17419 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17420 msgstr ""
17421
17422 #. type: =item
17423 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4467
17424 msgid "S"
17425 msgstr ""
17426
17427 #. type: textblock
17428 #: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4469
17429 msgid "Single 8-bit-byte characters."
17430 msgstr ""
17431
17432 #. type: =item
17433 #: ../src/guestfs-actions.pod:6706 ../fish/guestfish-actions.pod:4471
17434 msgid "b"
17435 msgstr ""
17436
17437 #. type: textblock
17438 #: ../src/guestfs-actions.pod:6708 ../fish/guestfish-actions.pod:4473
17439 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17440 msgstr ""
17441
17442 #. type: =item
17443 #: ../src/guestfs-actions.pod:6711 ../fish/guestfish-actions.pod:4476
17444 msgid "l (lower case letter L)"
17445 msgstr ""
17446
17447 #. type: textblock
17448 #: ../src/guestfs-actions.pod:6713 ../fish/guestfish-actions.pod:4478
17449 msgid ""
17450 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17451 "examining binaries in Windows guests."
17452 msgstr ""
17453
17454 #. type: =item
17455 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4481
17456 msgid "B"
17457 msgstr ""
17458
17459 #. type: textblock
17460 #: ../src/guestfs-actions.pod:6718 ../fish/guestfish-actions.pod:4483
17461 msgid "32-bit big endian such as UCS-4BE."
17462 msgstr ""
17463
17464 #. type: =item
17465 #: ../src/guestfs-actions.pod:6720 ../fish/guestfish-actions.pod:4485
17466 msgid "L"
17467 msgstr ""
17468
17469 #. type: textblock
17470 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4487
17471 msgid "32-bit little endian such as UCS-4LE."
17472 msgstr ""
17473
17474 #. type: textblock
17475 #: ../src/guestfs-actions.pod:6726 ../fish/guestfish-actions.pod:4491
17476 msgid "The returned strings are transcoded to UTF-8."
17477 msgstr ""
17478
17479 #. type: =head2
17480 #: ../src/guestfs-actions.pod:6737
17481 msgid "guestfs_swapoff_device"
17482 msgstr ""
17483
17484 #. type: verbatim
17485 #: ../src/guestfs-actions.pod:6739
17486 #, no-wrap
17487 msgid ""
17488 " int\n"
17489 " guestfs_swapoff_device (guestfs_h *g,\n"
17490 "                         const char *device);\n"
17491 "\n"
17492 msgstr ""
17493
17494 #. type: textblock
17495 #: ../src/guestfs-actions.pod:6743
17496 msgid ""
17497 "This command disables the libguestfs appliance swap device or partition "
17498 "named C<device>.  See C<guestfs_swapon_device>."
17499 msgstr ""
17500
17501 #. type: =head2
17502 #: ../src/guestfs-actions.pod:6751
17503 msgid "guestfs_swapoff_file"
17504 msgstr ""
17505
17506 #. type: verbatim
17507 #: ../src/guestfs-actions.pod:6753
17508 #, no-wrap
17509 msgid ""
17510 " int\n"
17511 " guestfs_swapoff_file (guestfs_h *g,\n"
17512 "                       const char *file);\n"
17513 "\n"
17514 msgstr ""
17515
17516 #. type: textblock
17517 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4508
17518 msgid "This command disables the libguestfs appliance swap on file."
17519 msgstr ""
17520
17521 #. type: =head2
17522 #: ../src/guestfs-actions.pod:6763
17523 msgid "guestfs_swapoff_label"
17524 msgstr ""
17525
17526 #. type: verbatim
17527 #: ../src/guestfs-actions.pod:6765
17528 #, no-wrap
17529 msgid ""
17530 " int\n"
17531 " guestfs_swapoff_label (guestfs_h *g,\n"
17532 "                        const char *label);\n"
17533 "\n"
17534 msgstr ""
17535
17536 #. type: textblock
17537 #: ../src/guestfs-actions.pod:6769 ../fish/guestfish-actions.pod:4514
17538 msgid ""
17539 "This command disables the libguestfs appliance swap on labeled swap "
17540 "partition."
17541 msgstr ""
17542
17543 #. type: =head2
17544 #: ../src/guestfs-actions.pod:6776
17545 msgid "guestfs_swapoff_uuid"
17546 msgstr ""
17547
17548 #. type: verbatim
17549 #: ../src/guestfs-actions.pod:6778
17550 #, no-wrap
17551 msgid ""
17552 " int\n"
17553 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17554 "                       const char *uuid);\n"
17555 "\n"
17556 msgstr ""
17557
17558 #. type: textblock
17559 #: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4521
17560 msgid ""
17561 "This command disables the libguestfs appliance swap partition with the given "
17562 "UUID."
17563 msgstr ""
17564
17565 #. type: =head2
17566 #: ../src/guestfs-actions.pod:6789
17567 msgid "guestfs_swapon_device"
17568 msgstr ""
17569
17570 #. type: verbatim
17571 #: ../src/guestfs-actions.pod:6791
17572 #, no-wrap
17573 msgid ""
17574 " int\n"
17575 " guestfs_swapon_device (guestfs_h *g,\n"
17576 "                        const char *device);\n"
17577 "\n"
17578 msgstr ""
17579
17580 #. type: textblock
17581 #: ../src/guestfs-actions.pod:6795
17582 msgid ""
17583 "This command enables the libguestfs appliance to use the swap device or "
17584 "partition named C<device>.  The increased memory is made available for all "
17585 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17586 msgstr ""
17587
17588 #. type: textblock
17589 #: ../src/guestfs-actions.pod:6800 ../fish/guestfish-actions.pod:4533
17590 msgid ""
17591 "Note that you should not swap to existing guest swap partitions unless you "
17592 "know what you are doing.  They may contain hibernation information, or other "
17593 "information that the guest doesn't want you to trash.  You also risk leaking "
17594 "information about the host to the guest this way.  Instead, attach a new "
17595 "host device to the guest and swap on that."
17596 msgstr ""
17597
17598 #. type: =head2
17599 #: ../src/guestfs-actions.pod:6811
17600 msgid "guestfs_swapon_file"
17601 msgstr ""
17602
17603 #. type: verbatim
17604 #: ../src/guestfs-actions.pod:6813
17605 #, no-wrap
17606 msgid ""
17607 " int\n"
17608 " guestfs_swapon_file (guestfs_h *g,\n"
17609 "                      const char *file);\n"
17610 "\n"
17611 msgstr ""
17612
17613 #. type: textblock
17614 #: ../src/guestfs-actions.pod:6817
17615 msgid ""
17616 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17617 "notes."
17618 msgstr ""
17619
17620 #. type: =head2
17621 #: ../src/guestfs-actions.pod:6824
17622 msgid "guestfs_swapon_label"
17623 msgstr ""
17624
17625 #. type: verbatim
17626 #: ../src/guestfs-actions.pod:6826
17627 #, no-wrap
17628 msgid ""
17629 " int\n"
17630 " guestfs_swapon_label (guestfs_h *g,\n"
17631 "                       const char *label);\n"
17632 "\n"
17633 msgstr ""
17634
17635 #. type: textblock
17636 #: ../src/guestfs-actions.pod:6830
17637 msgid ""
17638 "This command enables swap to a labeled swap partition.  See "
17639 "C<guestfs_swapon_device> for other notes."
17640 msgstr ""
17641
17642 #. type: =head2
17643 #: ../src/guestfs-actions.pod:6837
17644 msgid "guestfs_swapon_uuid"
17645 msgstr ""
17646
17647 #. type: verbatim
17648 #: ../src/guestfs-actions.pod:6839
17649 #, no-wrap
17650 msgid ""
17651 " int\n"
17652 " guestfs_swapon_uuid (guestfs_h *g,\n"
17653 "                      const char *uuid);\n"
17654 "\n"
17655 msgstr ""
17656
17657 #. type: textblock
17658 #: ../src/guestfs-actions.pod:6843
17659 msgid ""
17660 "This command enables swap to a swap partition with the given UUID.  See "
17661 "C<guestfs_swapon_device> for other notes."
17662 msgstr ""
17663
17664 #. type: =head2
17665 #: ../src/guestfs-actions.pod:6850
17666 msgid "guestfs_sync"
17667 msgstr ""
17668
17669 #. type: verbatim
17670 #: ../src/guestfs-actions.pod:6852
17671 #, no-wrap
17672 msgid ""
17673 " int\n"
17674 " guestfs_sync (guestfs_h *g);\n"
17675 "\n"
17676 msgstr ""
17677
17678 #. type: textblock
17679 #: ../src/guestfs-actions.pod:6855 ../fish/guestfish-actions.pod:4565
17680 msgid ""
17681 "This syncs the disk, so that any writes are flushed through to the "
17682 "underlying disk image."
17683 msgstr ""
17684
17685 #. type: textblock
17686 #: ../src/guestfs-actions.pod:6858 ../fish/guestfish-actions.pod:4568
17687 msgid ""
17688 "You should always call this if you have modified a disk image, before "
17689 "closing the handle."
17690 msgstr ""
17691
17692 #. type: =head2
17693 #: ../src/guestfs-actions.pod:6865
17694 msgid "guestfs_tail"
17695 msgstr ""
17696
17697 #. type: verbatim
17698 #: ../src/guestfs-actions.pod:6867
17699 #, no-wrap
17700 msgid ""
17701 " char **\n"
17702 " guestfs_tail (guestfs_h *g,\n"
17703 "               const char *path);\n"
17704 "\n"
17705 msgstr ""
17706
17707 #. type: textblock
17708 #: ../src/guestfs-actions.pod:6871 ../fish/guestfish-actions.pod:4575
17709 msgid ""
17710 "This command returns up to the last 10 lines of a file as a list of strings."
17711 msgstr ""
17712
17713 #. type: =head2
17714 #: ../src/guestfs-actions.pod:6883
17715 msgid "guestfs_tail_n"
17716 msgstr ""
17717
17718 #. type: verbatim
17719 #: ../src/guestfs-actions.pod:6885
17720 #, no-wrap
17721 msgid ""
17722 " char **\n"
17723 " guestfs_tail_n (guestfs_h *g,\n"
17724 "                 int nrlines,\n"
17725 "                 const char *path);\n"
17726 "\n"
17727 msgstr ""
17728
17729 #. type: textblock
17730 #: ../src/guestfs-actions.pod:6890 ../fish/guestfish-actions.pod:4585
17731 msgid ""
17732 "If the parameter C<nrlines> is a positive number, this returns the last "
17733 "C<nrlines> lines of the file C<path>."
17734 msgstr ""
17735
17736 #. type: textblock
17737 #: ../src/guestfs-actions.pod:6893 ../fish/guestfish-actions.pod:4588
17738 msgid ""
17739 "If the parameter C<nrlines> is a negative number, this returns lines from "
17740 "the file C<path>, starting with the C<-nrlines>th line."
17741 msgstr ""
17742
17743 #. type: =head2
17744 #: ../src/guestfs-actions.pod:6907
17745 msgid "guestfs_tar_in"
17746 msgstr ""
17747
17748 #. type: verbatim
17749 #: ../src/guestfs-actions.pod:6909
17750 #, no-wrap
17751 msgid ""
17752 " int\n"
17753 " guestfs_tar_in (guestfs_h *g,\n"
17754 "                 const char *tarfile,\n"
17755 "                 const char *directory);\n"
17756 "\n"
17757 msgstr ""
17758
17759 #. type: textblock
17760 #: ../src/guestfs-actions.pod:6914 ../fish/guestfish-actions.pod:4600
17761 msgid ""
17762 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17763 "tar file) into C<directory>."
17764 msgstr ""
17765
17766 #. type: textblock
17767 #: ../src/guestfs-actions.pod:6917
17768 msgid ""
17769 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17770 msgstr ""
17771
17772 #. type: textblock
17773 #: ../src/guestfs-actions.pod:6922 ../src/guestfs-actions.pod:6939
17774 #: ../src/guestfs-actions.pod:6955 ../src/guestfs-actions.pod:6971
17775 msgid "(Added in 1.0.3)"
17776 msgstr ""
17777
17778 #. type: =head2
17779 #: ../src/guestfs-actions.pod:6924
17780 msgid "guestfs_tar_out"
17781 msgstr ""
17782
17783 #. type: verbatim
17784 #: ../src/guestfs-actions.pod:6926
17785 #, no-wrap
17786 msgid ""
17787 " int\n"
17788 " guestfs_tar_out (guestfs_h *g,\n"
17789 "                  const char *directory,\n"
17790 "                  const char *tarfile);\n"
17791 "\n"
17792 msgstr ""
17793
17794 #. type: textblock
17795 #: ../src/guestfs-actions.pod:6931 ../fish/guestfish-actions.pod:4612
17796 msgid ""
17797 "This command packs the contents of C<directory> and downloads it to local "
17798 "file C<tarfile>."
17799 msgstr ""
17800
17801 #. type: textblock
17802 #: ../src/guestfs-actions.pod:6934
17803 msgid ""
17804 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17805 "C<guestfs_txz_out>."
17806 msgstr ""
17807
17808 #. type: =head2
17809 #: ../src/guestfs-actions.pod:6941
17810 msgid "guestfs_tgz_in"
17811 msgstr ""
17812
17813 #. type: verbatim
17814 #: ../src/guestfs-actions.pod:6943
17815 #, no-wrap
17816 msgid ""
17817 " int\n"
17818 " guestfs_tgz_in (guestfs_h *g,\n"
17819 "                 const char *tarball,\n"
17820 "                 const char *directory);\n"
17821 "\n"
17822 msgstr ""
17823
17824 #. type: textblock
17825 #: ../src/guestfs-actions.pod:6948 ../fish/guestfish-actions.pod:4624
17826 msgid ""
17827 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17828 "tar file) into C<directory>."
17829 msgstr ""
17830
17831 #. type: textblock
17832 #: ../src/guestfs-actions.pod:6951
17833 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17834 msgstr ""
17835
17836 #. type: =head2
17837 #: ../src/guestfs-actions.pod:6957
17838 msgid "guestfs_tgz_out"
17839 msgstr ""
17840
17841 #. type: verbatim
17842 #: ../src/guestfs-actions.pod:6959
17843 #, no-wrap
17844 msgid ""
17845 " int\n"
17846 " guestfs_tgz_out (guestfs_h *g,\n"
17847 "                  const char *directory,\n"
17848 "                  const char *tarball);\n"
17849 "\n"
17850 msgstr ""
17851
17852 #. type: textblock
17853 #: ../src/guestfs-actions.pod:6964 ../fish/guestfish-actions.pod:4635
17854 msgid ""
17855 "This command packs the contents of C<directory> and downloads it to local "
17856 "file C<tarball>."
17857 msgstr ""
17858
17859 #. type: textblock
17860 #: ../src/guestfs-actions.pod:6967
17861 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17862 msgstr ""
17863
17864 #. type: =head2
17865 #: ../src/guestfs-actions.pod:6973
17866 msgid "guestfs_touch"
17867 msgstr ""
17868
17869 #. type: verbatim
17870 #: ../src/guestfs-actions.pod:6975
17871 #, no-wrap
17872 msgid ""
17873 " int\n"
17874 " guestfs_touch (guestfs_h *g,\n"
17875 "                const char *path);\n"
17876 "\n"
17877 msgstr ""
17878
17879 #. type: textblock
17880 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4646
17881 msgid ""
17882 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17883 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17884 "length file."
17885 msgstr ""
17886
17887 #. type: textblock
17888 #: ../src/guestfs-actions.pod:6983 ../fish/guestfish-actions.pod:4650
17889 msgid ""
17890 "This command only works on regular files, and will fail on other file types "
17891 "such as directories, symbolic links, block special etc."
17892 msgstr ""
17893
17894 #. type: =head2
17895 #: ../src/guestfs-actions.pod:6990
17896 msgid "guestfs_truncate"
17897 msgstr ""
17898
17899 #. type: verbatim
17900 #: ../src/guestfs-actions.pod:6992
17901 #, no-wrap
17902 msgid ""
17903 " int\n"
17904 " guestfs_truncate (guestfs_h *g,\n"
17905 "                   const char *path);\n"
17906 "\n"
17907 msgstr ""
17908
17909 #. type: textblock
17910 #: ../src/guestfs-actions.pod:6996 ../fish/guestfish-actions.pod:4657
17911 msgid ""
17912 "This command truncates C<path> to a zero-length file.  The file must exist "
17913 "already."
17914 msgstr ""
17915
17916 #. type: =head2
17917 #: ../src/guestfs-actions.pod:7003
17918 msgid "guestfs_truncate_size"
17919 msgstr ""
17920
17921 #. type: verbatim
17922 #: ../src/guestfs-actions.pod:7005
17923 #, no-wrap
17924 msgid ""
17925 " int\n"
17926 " guestfs_truncate_size (guestfs_h *g,\n"
17927 "                        const char *path,\n"
17928 "                        int64_t size);\n"
17929 "\n"
17930 msgstr ""
17931
17932 #. type: textblock
17933 #: ../src/guestfs-actions.pod:7010 ../fish/guestfish-actions.pod:4664
17934 msgid ""
17935 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17936 "already."
17937 msgstr ""
17938
17939 #. type: textblock
17940 #: ../src/guestfs-actions.pod:7013
17941 msgid ""
17942 "If the current file size is less than C<size> then the file is extended to "
17943 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17944 "blocks are not allocated for the file until you write to it).  To create a "
17945 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17946 msgstr ""
17947
17948 #. type: =head2
17949 #: ../src/guestfs-actions.pod:7023
17950 msgid "guestfs_tune2fs_l"
17951 msgstr ""
17952
17953 #. type: verbatim
17954 #: ../src/guestfs-actions.pod:7025
17955 #, no-wrap
17956 msgid ""
17957 " char **\n"
17958 " guestfs_tune2fs_l (guestfs_h *g,\n"
17959 "                    const char *device);\n"
17960 "\n"
17961 msgstr ""
17962
17963 #. type: textblock
17964 #: ../src/guestfs-actions.pod:7029 ../fish/guestfish-actions.pod:4677
17965 msgid ""
17966 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17967 "C<device>."
17968 msgstr ""
17969
17970 #. type: textblock
17971 #: ../src/guestfs-actions.pod:7032 ../fish/guestfish-actions.pod:4680
17972 msgid ""
17973 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17974 "for more details.  The list of fields returned isn't clearly defined, and "
17975 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17976 "and the filesystem itself."
17977 msgstr ""
17978
17979 #. type: =head2
17980 #: ../src/guestfs-actions.pod:7045
17981 msgid "guestfs_txz_in"
17982 msgstr ""
17983
17984 #. type: verbatim
17985 #: ../src/guestfs-actions.pod:7047
17986 #, no-wrap
17987 msgid ""
17988 " int\n"
17989 " guestfs_txz_in (guestfs_h *g,\n"
17990 "                 const char *tarball,\n"
17991 "                 const char *directory);\n"
17992 "\n"
17993 msgstr ""
17994
17995 #. type: textblock
17996 #: ../src/guestfs-actions.pod:7052 ../fish/guestfish-actions.pod:4689
17997 msgid ""
17998 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17999 "tar file) into C<directory>."
18000 msgstr ""
18001
18002 #. type: =head2
18003 #: ../src/guestfs-actions.pod:7059
18004 msgid "guestfs_txz_out"
18005 msgstr ""
18006
18007 #. type: verbatim
18008 #: ../src/guestfs-actions.pod:7061
18009 #, no-wrap
18010 msgid ""
18011 " int\n"
18012 " guestfs_txz_out (guestfs_h *g,\n"
18013 "                  const char *directory,\n"
18014 "                  const char *tarball);\n"
18015 "\n"
18016 msgstr ""
18017
18018 #. type: textblock
18019 #: ../src/guestfs-actions.pod:7066 ../fish/guestfish-actions.pod:4698
18020 msgid ""
18021 "This command packs the contents of C<directory> and downloads it to local "
18022 "file C<tarball> (as an xz compressed tar archive)."
18023 msgstr ""
18024
18025 #. type: =head2
18026 #: ../src/guestfs-actions.pod:7073
18027 msgid "guestfs_umask"
18028 msgstr ""
18029
18030 #. type: verbatim
18031 #: ../src/guestfs-actions.pod:7075
18032 #, no-wrap
18033 msgid ""
18034 " int\n"
18035 " guestfs_umask (guestfs_h *g,\n"
18036 "                int mask);\n"
18037 "\n"
18038 msgstr ""
18039
18040 #. type: textblock
18041 #: ../src/guestfs-actions.pod:7079 ../fish/guestfish-actions.pod:4707
18042 msgid ""
18043 "This function sets the mask used for creating new files and device nodes to "
18044 "C<mask & 0777>."
18045 msgstr ""
18046
18047 #. type: textblock
18048 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4710
18049 msgid ""
18050 "Typical umask values would be C<022> which creates new files with "
18051 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
18052 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
18053 msgstr ""
18054
18055 #. type: textblock
18056 #: ../src/guestfs-actions.pod:7087 ../fish/guestfish-actions.pod:4715
18057 msgid ""
18058 "The default umask is C<022>.  This is important because it means that "
18059 "directories and device nodes will be created with C<0644> or C<0755> mode "
18060 "even if you specify C<0777>."
18061 msgstr ""
18062
18063 #. type: textblock
18064 #: ../src/guestfs-actions.pod:7091
18065 msgid ""
18066 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
18067 "C<guestfs_mkdir>."
18068 msgstr ""
18069
18070 #. type: textblock
18071 #: ../src/guestfs-actions.pod:7094 ../fish/guestfish-actions.pod:4722
18072 msgid "This call returns the previous umask."
18073 msgstr ""
18074
18075 #. type: =head2
18076 #: ../src/guestfs-actions.pod:7100
18077 msgid "guestfs_umount"
18078 msgstr ""
18079
18080 #. type: verbatim
18081 #: ../src/guestfs-actions.pod:7102
18082 #, no-wrap
18083 msgid ""
18084 " int\n"
18085 " guestfs_umount (guestfs_h *g,\n"
18086 "                 const char *pathordevice);\n"
18087 "\n"
18088 msgstr ""
18089
18090 #. type: textblock
18091 #: ../src/guestfs-actions.pod:7106 ../fish/guestfish-actions.pod:4730
18092 msgid ""
18093 "This unmounts the given filesystem.  The filesystem may be specified either "
18094 "by its mountpoint (path) or the device which contains the filesystem."
18095 msgstr ""
18096
18097 #. type: =head2
18098 #: ../src/guestfs-actions.pod:7114
18099 msgid "guestfs_umount_all"
18100 msgstr ""
18101
18102 #. type: verbatim
18103 #: ../src/guestfs-actions.pod:7116
18104 #, no-wrap
18105 msgid ""
18106 " int\n"
18107 " guestfs_umount_all (guestfs_h *g);\n"
18108 "\n"
18109 msgstr ""
18110
18111 #. type: textblock
18112 #: ../src/guestfs-actions.pod:7119 ../fish/guestfish-actions.pod:4740
18113 msgid "This unmounts all mounted filesystems."
18114 msgstr ""
18115
18116 #. type: textblock
18117 #: ../src/guestfs-actions.pod:7121 ../fish/guestfish-actions.pod:4742
18118 msgid "Some internal mounts are not unmounted by this call."
18119 msgstr ""
18120
18121 #. type: =head2
18122 #: ../src/guestfs-actions.pod:7127
18123 msgid "guestfs_upload"
18124 msgstr ""
18125
18126 #. type: verbatim
18127 #: ../src/guestfs-actions.pod:7129
18128 #, no-wrap
18129 msgid ""
18130 " int\n"
18131 " guestfs_upload (guestfs_h *g,\n"
18132 "                 const char *filename,\n"
18133 "                 const char *remotefilename);\n"
18134 "\n"
18135 msgstr ""
18136
18137 #. type: textblock
18138 #: ../src/guestfs-actions.pod:7134 ../src/guestfs-actions.pod:7158
18139 #: ../fish/guestfish-actions.pod:4748 ../fish/guestfish-actions.pod:4761
18140 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../src/guestfs-actions.pod:7139
18145 msgid "See also C<guestfs_download>."
18146 msgstr ""
18147
18148 #. type: =head2
18149 #: ../src/guestfs-actions.pod:7150
18150 msgid "guestfs_upload_offset"
18151 msgstr ""
18152
18153 #. type: verbatim
18154 #: ../src/guestfs-actions.pod:7152
18155 #, no-wrap
18156 msgid ""
18157 " int\n"
18158 " guestfs_upload_offset (guestfs_h *g,\n"
18159 "                        const char *filename,\n"
18160 "                        const char *remotefilename,\n"
18161 "                        int64_t offset);\n"
18162 "\n"
18163 msgstr ""
18164
18165 #. type: textblock
18166 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4764
18167 msgid ""
18168 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
18169 "The intention is to overwrite parts of existing files or devices, although "
18170 "if a non-existant file is specified then it is created with a \"hole\" "
18171 "before C<offset>.  The size of the data written is implicit in the size of "
18172 "the source C<filename>."
18173 msgstr ""
18174
18175 #. type: textblock
18176 #: ../src/guestfs-actions.pod:7168
18177 msgid ""
18178 "Note that there is no limit on the amount of data that can be uploaded with "
18179 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
18180 "full amount unless an error occurs."
18181 msgstr ""
18182
18183 #. type: textblock
18184 #: ../src/guestfs-actions.pod:7173
18185 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
18186 msgstr ""
18187
18188 #. type: =head2
18189 #: ../src/guestfs-actions.pod:7184
18190 msgid "guestfs_utimens"
18191 msgstr ""
18192
18193 #. type: verbatim
18194 #: ../src/guestfs-actions.pod:7186
18195 #, no-wrap
18196 msgid ""
18197 " int\n"
18198 " guestfs_utimens (guestfs_h *g,\n"
18199 "                  const char *path,\n"
18200 "                  int64_t atsecs,\n"
18201 "                  int64_t atnsecs,\n"
18202 "                  int64_t mtsecs,\n"
18203 "                  int64_t mtnsecs);\n"
18204 "\n"
18205 msgstr ""
18206
18207 #. type: textblock
18208 #: ../src/guestfs-actions.pod:7194 ../fish/guestfish-actions.pod:4784
18209 msgid "This command sets the timestamps of a file with nanosecond precision."
18210 msgstr ""
18211
18212 #. type: textblock
18213 #: ../src/guestfs-actions.pod:7197 ../fish/guestfish-actions.pod:4787
18214 msgid ""
18215 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
18216 "from the epoch."
18217 msgstr ""
18218
18219 #. type: textblock
18220 #: ../src/guestfs-actions.pod:7200 ../fish/guestfish-actions.pod:4790
18221 msgid ""
18222 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18223 "nanoseconds from the epoch."
18224 msgstr ""
18225
18226 #. type: textblock
18227 #: ../src/guestfs-actions.pod:7203 ../fish/guestfish-actions.pod:4793
18228 msgid ""
18229 "If the C<*nsecs> field contains the special value C<-1> then the "
18230 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18231 "ignored in this case)."
18232 msgstr ""
18233
18234 #. type: textblock
18235 #: ../src/guestfs-actions.pod:7207 ../fish/guestfish-actions.pod:4797
18236 msgid ""
18237 "If the C<*nsecs> field contains the special value C<-2> then the "
18238 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18239 "in this case)."
18240 msgstr ""
18241
18242 #. type: =head2
18243 #: ../src/guestfs-actions.pod:7215 ../src/guestfs-structs.pod:175
18244 msgid "guestfs_version"
18245 msgstr ""
18246
18247 #. type: verbatim
18248 #: ../src/guestfs-actions.pod:7217
18249 #, no-wrap
18250 msgid ""
18251 " struct guestfs_version *\n"
18252 " guestfs_version (guestfs_h *g);\n"
18253 "\n"
18254 msgstr ""
18255
18256 #. type: textblock
18257 #: ../src/guestfs-actions.pod:7220 ../fish/guestfish-actions.pod:4805
18258 msgid ""
18259 "Return the libguestfs version number that the program is linked against."
18260 msgstr ""
18261
18262 #. type: textblock
18263 #: ../src/guestfs-actions.pod:7223 ../fish/guestfish-actions.pod:4808
18264 msgid ""
18265 "Note that because of dynamic linking this is not necessarily the version of "
18266 "libguestfs that you compiled against.  You can compile the program, and then "
18267 "at runtime dynamically link against a completely different C<libguestfs.so> "
18268 "library."
18269 msgstr ""
18270
18271 #. type: textblock
18272 #: ../src/guestfs-actions.pod:7228 ../fish/guestfish-actions.pod:4813
18273 msgid ""
18274 "This call was added in version C<1.0.58>.  In previous versions of "
18275 "libguestfs there was no way to get the version number.  From C code you can "
18276 "use dynamic linker functions to find out if this symbol exists (if it "
18277 "doesn't, then it's an earlier version)."
18278 msgstr ""
18279
18280 #. type: textblock
18281 #: ../src/guestfs-actions.pod:7234 ../fish/guestfish-actions.pod:4819
18282 msgid ""
18283 "The call returns a structure with four elements.  The first three (C<major>, "
18284 "C<minor> and C<release>) are numbers and correspond to the usual version "
18285 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18286 "but may be used for distro-specific information."
18287 msgstr ""
18288
18289 #. type: textblock
18290 #: ../src/guestfs-actions.pod:7240 ../fish/guestfish-actions.pod:4825
18291 msgid ""
18292 "To construct the original version string: C<$major.$minor.$release$extra>"
18293 msgstr ""
18294
18295 #. type: textblock
18296 #: ../src/guestfs-actions.pod:7243 ../fish/guestfish-actions.pod:4828
18297 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18298 msgstr ""
18299
18300 #. type: textblock
18301 #: ../src/guestfs-actions.pod:7245
18302 msgid ""
18303 "I<Note:> Don't use this call to test for availability of features.  In "
18304 "enterprise distributions we backport features from later versions into "
18305 "earlier versions, making this an unreliable way to test for features.  Use "
18306 "C<guestfs_available> instead."
18307 msgstr ""
18308
18309 #. type: textblock
18310 #: ../src/guestfs-actions.pod:7251
18311 msgid ""
18312 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
18313 "error.  I<The caller must call C<guestfs_free_version> after use>."
18314 msgstr ""
18315
18316 #. type: textblock
18317 #: ../src/guestfs-actions.pod:7255
18318 msgid "(Added in 1.0.58)"
18319 msgstr ""
18320
18321 #. type: =head2
18322 #: ../src/guestfs-actions.pod:7257
18323 msgid "guestfs_vfs_label"
18324 msgstr ""
18325
18326 #. type: verbatim
18327 #: ../src/guestfs-actions.pod:7259
18328 #, no-wrap
18329 msgid ""
18330 " char *\n"
18331 " guestfs_vfs_label (guestfs_h *g,\n"
18332 "                    const char *device);\n"
18333 "\n"
18334 msgstr ""
18335
18336 #. type: textblock
18337 #: ../src/guestfs-actions.pod:7263 ../fish/guestfish-actions.pod:4840
18338 msgid "This returns the filesystem label of the filesystem on C<device>."
18339 msgstr ""
18340
18341 #. type: textblock
18342 #: ../src/guestfs-actions.pod:7266 ../fish/guestfish-actions.pod:4843
18343 msgid "If the filesystem is unlabeled, this returns the empty string."
18344 msgstr ""
18345
18346 #. type: textblock
18347 #: ../src/guestfs-actions.pod:7268
18348 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18349 msgstr ""
18350
18351 #. type: textblock
18352 #: ../src/guestfs-actions.pod:7273 ../src/guestfs-actions.pod:7310
18353 msgid "(Added in 1.3.18)"
18354 msgstr ""
18355
18356 #. type: =head2
18357 #: ../src/guestfs-actions.pod:7275
18358 msgid "guestfs_vfs_type"
18359 msgstr ""
18360
18361 #. type: verbatim
18362 #: ../src/guestfs-actions.pod:7277
18363 #, no-wrap
18364 msgid ""
18365 " char *\n"
18366 " guestfs_vfs_type (guestfs_h *g,\n"
18367 "                   const char *device);\n"
18368 "\n"
18369 msgstr ""
18370
18371 #. type: textblock
18372 #: ../src/guestfs-actions.pod:7281 ../fish/guestfish-actions.pod:4851
18373 msgid ""
18374 "This command gets the filesystem type corresponding to the filesystem on "
18375 "C<device>."
18376 msgstr ""
18377
18378 #. type: textblock
18379 #: ../src/guestfs-actions.pod:7284 ../fish/guestfish-actions.pod:4854
18380 msgid ""
18381 "For most filesystems, the result is the name of the Linux VFS module which "
18382 "would be used to mount this filesystem if you mounted it without specifying "
18383 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18384 msgstr ""
18385
18386 #. type: =head2
18387 #: ../src/guestfs-actions.pod:7294
18388 msgid "guestfs_vfs_uuid"
18389 msgstr ""
18390
18391 #. type: verbatim
18392 #: ../src/guestfs-actions.pod:7296
18393 #, no-wrap
18394 msgid ""
18395 " char *\n"
18396 " guestfs_vfs_uuid (guestfs_h *g,\n"
18397 "                   const char *device);\n"
18398 "\n"
18399 msgstr ""
18400
18401 #. type: textblock
18402 #: ../src/guestfs-actions.pod:7300 ../fish/guestfish-actions.pod:4863
18403 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18404 msgstr ""
18405
18406 #. type: textblock
18407 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4866
18408 msgid "If the filesystem does not have a UUID, this returns the empty string."
18409 msgstr ""
18410
18411 #. type: textblock
18412 #: ../src/guestfs-actions.pod:7305
18413 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18414 msgstr ""
18415
18416 #. type: =head2
18417 #: ../src/guestfs-actions.pod:7312
18418 msgid "guestfs_vg_activate"
18419 msgstr ""
18420
18421 #. type: verbatim
18422 #: ../src/guestfs-actions.pod:7314
18423 #, no-wrap
18424 msgid ""
18425 " int\n"
18426 " guestfs_vg_activate (guestfs_h *g,\n"
18427 "                      int activate,\n"
18428 "                      char *const *volgroups);\n"
18429 "\n"
18430 msgstr ""
18431
18432 #. type: textblock
18433 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4874
18434 msgid ""
18435 "This command activates or (if C<activate> is false) deactivates all logical "
18436 "volumes in the listed volume groups C<volgroups>."
18437 msgstr ""
18438
18439 #. type: textblock
18440 #: ../src/guestfs-actions.pod:7322 ../fish/guestfish-actions.pod:4877
18441 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18442 msgstr ""
18443
18444 #. type: textblock
18445 #: ../src/guestfs-actions.pod:7324 ../fish/guestfish-actions.pod:4879
18446 msgid ""
18447 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18448 "activated or deactivated."
18449 msgstr ""
18450
18451 #. type: =head2
18452 #: ../src/guestfs-actions.pod:7331
18453 msgid "guestfs_vg_activate_all"
18454 msgstr ""
18455
18456 #. type: verbatim
18457 #: ../src/guestfs-actions.pod:7333
18458 #, no-wrap
18459 msgid ""
18460 " int\n"
18461 " guestfs_vg_activate_all (guestfs_h *g,\n"
18462 "                          int activate);\n"
18463 "\n"
18464 msgstr ""
18465
18466 #. type: textblock
18467 #: ../src/guestfs-actions.pod:7337 ../fish/guestfish-actions.pod:4886
18468 msgid ""
18469 "This command activates or (if C<activate> is false) deactivates all logical "
18470 "volumes in all volume groups."
18471 msgstr ""
18472
18473 #. type: textblock
18474 #: ../src/guestfs-actions.pod:7340 ../fish/guestfish-actions.pod:4889
18475 msgid "This command is the same as running C<vgchange -a y|n>"
18476 msgstr ""
18477
18478 #. type: =head2
18479 #: ../src/guestfs-actions.pod:7346
18480 msgid "guestfs_vgcreate"
18481 msgstr ""
18482
18483 #. type: verbatim
18484 #: ../src/guestfs-actions.pod:7348
18485 #, no-wrap
18486 msgid ""
18487 " int\n"
18488 " guestfs_vgcreate (guestfs_h *g,\n"
18489 "                   const char *volgroup,\n"
18490 "                   char *const *physvols);\n"
18491 "\n"
18492 msgstr ""
18493
18494 #. type: textblock
18495 #: ../src/guestfs-actions.pod:7353 ../fish/guestfish-actions.pod:4895
18496 msgid ""
18497 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18498 "of physical volumes C<physvols>."
18499 msgstr ""
18500
18501 #. type: =head2
18502 #: ../src/guestfs-actions.pod:7360
18503 msgid "guestfs_vglvuuids"
18504 msgstr ""
18505
18506 #. type: verbatim
18507 #: ../src/guestfs-actions.pod:7362
18508 #, no-wrap
18509 msgid ""
18510 " char **\n"
18511 " guestfs_vglvuuids (guestfs_h *g,\n"
18512 "                    const char *vgname);\n"
18513 "\n"
18514 msgstr ""
18515
18516 #. type: textblock
18517 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4902
18518 msgid ""
18519 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18520 "volumes created in this volume group."
18521 msgstr ""
18522
18523 #. type: textblock
18524 #: ../src/guestfs-actions.pod:7369
18525 msgid ""
18526 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18527 "associate logical volumes and volume groups."
18528 msgstr ""
18529
18530 #. type: textblock
18531 #: ../src/guestfs-actions.pod:7372
18532 msgid "See also C<guestfs_vgpvuuids>."
18533 msgstr ""
18534
18535 #. type: =head2
18536 #: ../src/guestfs-actions.pod:7380
18537 msgid "guestfs_vgpvuuids"
18538 msgstr ""
18539
18540 #. type: verbatim
18541 #: ../src/guestfs-actions.pod:7382
18542 #, no-wrap
18543 msgid ""
18544 " char **\n"
18545 " guestfs_vgpvuuids (guestfs_h *g,\n"
18546 "                    const char *vgname);\n"
18547 "\n"
18548 msgstr ""
18549
18550 #. type: textblock
18551 #: ../src/guestfs-actions.pod:7386 ../fish/guestfish-actions.pod:4914
18552 msgid ""
18553 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18554 "volumes that this volume group resides on."
18555 msgstr ""
18556
18557 #. type: textblock
18558 #: ../src/guestfs-actions.pod:7389
18559 msgid ""
18560 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18561 "associate physical volumes and volume groups."
18562 msgstr ""
18563
18564 #. type: textblock
18565 #: ../src/guestfs-actions.pod:7392
18566 msgid "See also C<guestfs_vglvuuids>."
18567 msgstr ""
18568
18569 #. type: =head2
18570 #: ../src/guestfs-actions.pod:7400
18571 msgid "guestfs_vgremove"
18572 msgstr ""
18573
18574 #. type: verbatim
18575 #: ../src/guestfs-actions.pod:7402
18576 #, no-wrap
18577 msgid ""
18578 " int\n"
18579 " guestfs_vgremove (guestfs_h *g,\n"
18580 "                   const char *vgname);\n"
18581 "\n"
18582 msgstr ""
18583
18584 #. type: textblock
18585 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:4926
18586 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18587 msgstr ""
18588
18589 #. type: textblock
18590 #: ../src/guestfs-actions.pod:7408 ../fish/guestfish-actions.pod:4928
18591 msgid ""
18592 "This also forcibly removes all logical volumes in the volume group (if any)."
18593 msgstr ""
18594
18595 #. type: =head2
18596 #: ../src/guestfs-actions.pod:7415
18597 msgid "guestfs_vgrename"
18598 msgstr ""
18599
18600 #. type: verbatim
18601 #: ../src/guestfs-actions.pod:7417
18602 #, no-wrap
18603 msgid ""
18604 " int\n"
18605 " guestfs_vgrename (guestfs_h *g,\n"
18606 "                   const char *volgroup,\n"
18607 "                   const char *newvolgroup);\n"
18608 "\n"
18609 msgstr ""
18610
18611 #. type: textblock
18612 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4935
18613 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18614 msgstr ""
18615
18616 #. type: =head2
18617 #: ../src/guestfs-actions.pod:7428
18618 msgid "guestfs_vgs"
18619 msgstr ""
18620
18621 #. type: verbatim
18622 #: ../src/guestfs-actions.pod:7430
18623 #, no-wrap
18624 msgid ""
18625 " char **\n"
18626 " guestfs_vgs (guestfs_h *g);\n"
18627 "\n"
18628 msgstr ""
18629
18630 #. type: textblock
18631 #: ../src/guestfs-actions.pod:7433 ../fish/guestfish-actions.pod:4941
18632 msgid ""
18633 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18634 "> command."
18635 msgstr ""
18636
18637 #. type: textblock
18638 #: ../src/guestfs-actions.pod:7436 ../fish/guestfish-actions.pod:4944
18639 msgid ""
18640 "This returns a list of just the volume group names that were detected (eg. "
18641 "C<VolGroup00>)."
18642 msgstr ""
18643
18644 #. type: textblock
18645 #: ../src/guestfs-actions.pod:7439
18646 msgid "See also C<guestfs_vgs_full>."
18647 msgstr ""
18648
18649 #. type: =head2
18650 #: ../src/guestfs-actions.pod:7447
18651 msgid "guestfs_vgs_full"
18652 msgstr ""
18653
18654 #. type: verbatim
18655 #: ../src/guestfs-actions.pod:7449
18656 #, no-wrap
18657 msgid ""
18658 " struct guestfs_lvm_vg_list *\n"
18659 " guestfs_vgs_full (guestfs_h *g);\n"
18660 "\n"
18661 msgstr ""
18662
18663 #. type: textblock
18664 #: ../src/guestfs-actions.pod:7452 ../fish/guestfish-actions.pod:4953
18665 msgid ""
18666 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18667 "> command.  The \"full\" version includes all fields."
18668 msgstr ""
18669
18670 #. type: textblock
18671 #: ../src/guestfs-actions.pod:7455
18672 msgid ""
18673 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18674 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18675 msgstr ""
18676
18677 #. type: =head2
18678 #: ../src/guestfs-actions.pod:7461
18679 msgid "guestfs_vgscan"
18680 msgstr ""
18681
18682 #. type: verbatim
18683 #: ../src/guestfs-actions.pod:7463
18684 #, no-wrap
18685 msgid ""
18686 " int\n"
18687 " guestfs_vgscan (guestfs_h *g);\n"
18688 "\n"
18689 msgstr ""
18690
18691 #. type: textblock
18692 #: ../src/guestfs-actions.pod:7466 ../fish/guestfish-actions.pod:4960
18693 msgid ""
18694 "This rescans all block devices and rebuilds the list of LVM physical "
18695 "volumes, volume groups and logical volumes."
18696 msgstr ""
18697
18698 #. type: =head2
18699 #: ../src/guestfs-actions.pod:7473
18700 msgid "guestfs_vguuid"
18701 msgstr ""
18702
18703 #. type: verbatim
18704 #: ../src/guestfs-actions.pod:7475
18705 #, no-wrap
18706 msgid ""
18707 " char *\n"
18708 " guestfs_vguuid (guestfs_h *g,\n"
18709 "                 const char *vgname);\n"
18710 "\n"
18711 msgstr ""
18712
18713 #. type: textblock
18714 #: ../src/guestfs-actions.pod:7479 ../fish/guestfish-actions.pod:4967
18715 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18716 msgstr ""
18717
18718 #. type: =head2
18719 #: ../src/guestfs-actions.pod:7486
18720 msgid "guestfs_wait_ready"
18721 msgstr ""
18722
18723 #. type: verbatim
18724 #: ../src/guestfs-actions.pod:7488
18725 #, no-wrap
18726 msgid ""
18727 " int\n"
18728 " guestfs_wait_ready (guestfs_h *g);\n"
18729 "\n"
18730 msgstr ""
18731
18732 #. type: textblock
18733 #: ../src/guestfs-actions.pod:7491
18734 msgid "This function is a no op."
18735 msgstr ""
18736
18737 #. type: textblock
18738 #: ../src/guestfs-actions.pod:7493
18739 msgid ""
18740 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18741 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18742 "is no longer necessary because C<guestfs_launch> now does the waiting."
18743 msgstr ""
18744
18745 #. type: textblock
18746 #: ../src/guestfs-actions.pod:7498
18747 msgid ""
18748 "If you see any calls to this function in code then you can just remove them, "
18749 "unless you want to retain compatibility with older versions of the API."
18750 msgstr ""
18751
18752 #. type: textblock
18753 #: ../src/guestfs-actions.pod:7504
18754 msgid ""
18755 "This function is deprecated.  In new code, use the C<launch> call instead."
18756 msgstr ""
18757
18758 #. type: =head2
18759 #: ../src/guestfs-actions.pod:7513
18760 msgid "guestfs_wc_c"
18761 msgstr ""
18762
18763 #. type: verbatim
18764 #: ../src/guestfs-actions.pod:7515
18765 #, no-wrap
18766 msgid ""
18767 " int\n"
18768 " guestfs_wc_c (guestfs_h *g,\n"
18769 "               const char *path);\n"
18770 "\n"
18771 msgstr ""
18772
18773 #. type: textblock
18774 #: ../src/guestfs-actions.pod:7519 ../fish/guestfish-actions.pod:4973
18775 msgid ""
18776 "This command counts the characters in a file, using the C<wc -c> external "
18777 "command."
18778 msgstr ""
18779
18780 #. type: =head2
18781 #: ../src/guestfs-actions.pod:7526
18782 msgid "guestfs_wc_l"
18783 msgstr ""
18784
18785 #. type: verbatim
18786 #: ../src/guestfs-actions.pod:7528
18787 #, no-wrap
18788 msgid ""
18789 " int\n"
18790 " guestfs_wc_l (guestfs_h *g,\n"
18791 "               const char *path);\n"
18792 "\n"
18793 msgstr ""
18794
18795 #. type: textblock
18796 #: ../src/guestfs-actions.pod:7532 ../fish/guestfish-actions.pod:4980
18797 msgid ""
18798 "This command counts the lines in a file, using the C<wc -l> external command."
18799 msgstr ""
18800
18801 #. type: =head2
18802 #: ../src/guestfs-actions.pod:7539
18803 msgid "guestfs_wc_w"
18804 msgstr ""
18805
18806 #. type: verbatim
18807 #: ../src/guestfs-actions.pod:7541
18808 #, no-wrap
18809 msgid ""
18810 " int\n"
18811 " guestfs_wc_w (guestfs_h *g,\n"
18812 "               const char *path);\n"
18813 "\n"
18814 msgstr ""
18815
18816 #. type: textblock
18817 #: ../src/guestfs-actions.pod:7545 ../fish/guestfish-actions.pod:4987
18818 msgid ""
18819 "This command counts the words in a file, using the C<wc -w> external command."
18820 msgstr ""
18821
18822 #. type: =head2
18823 #: ../src/guestfs-actions.pod:7552
18824 msgid "guestfs_write"
18825 msgstr ""
18826
18827 #. type: verbatim
18828 #: ../src/guestfs-actions.pod:7554
18829 #, no-wrap
18830 msgid ""
18831 " int\n"
18832 " guestfs_write (guestfs_h *g,\n"
18833 "                const char *path,\n"
18834 "                const char *content,\n"
18835 "                size_t content_size);\n"
18836 "\n"
18837 msgstr ""
18838
18839 #. type: textblock
18840 #: ../src/guestfs-actions.pod:7560 ../fish/guestfish-actions.pod:4994
18841 msgid ""
18842 "This call creates a file called C<path>.  The content of the file is the "
18843 "string C<content> (which can contain any 8 bit data)."
18844 msgstr ""
18845
18846 #. type: =head2
18847 #: ../src/guestfs-actions.pod:7570
18848 msgid "guestfs_write_file"
18849 msgstr ""
18850
18851 #. type: verbatim
18852 #: ../src/guestfs-actions.pod:7572
18853 #, no-wrap
18854 msgid ""
18855 " int\n"
18856 " guestfs_write_file (guestfs_h *g,\n"
18857 "                     const char *path,\n"
18858 "                     const char *content,\n"
18859 "                     int size);\n"
18860 "\n"
18861 msgstr ""
18862
18863 #. type: textblock
18864 #: ../src/guestfs-actions.pod:7578 ../fish/guestfish-actions.pod:5004
18865 msgid ""
18866 "This call creates a file called C<path>.  The contents of the file is the "
18867 "string C<content> (which can contain any 8 bit data), with length C<size>."
18868 msgstr ""
18869
18870 #. type: textblock
18871 #: ../src/guestfs-actions.pod:7582 ../fish/guestfish-actions.pod:5008
18872 msgid ""
18873 "As a special case, if C<size> is C<0> then the length is calculated using "
18874 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18875 msgstr ""
18876
18877 #. type: textblock
18878 #: ../src/guestfs-actions.pod:7586 ../fish/guestfish-actions.pod:5012
18879 msgid ""
18880 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18881 "I<not> work, even if the length is specified."
18882 msgstr ""
18883
18884 #. type: textblock
18885 #: ../src/guestfs-actions.pod:7594 ../fish/guestfish-actions.pod:5018
18886 msgid ""
18887 "This function is deprecated.  In new code, use the C<write> call instead."
18888 msgstr ""
18889
18890 #. type: =head2
18891 #: ../src/guestfs-actions.pod:7603
18892 msgid "guestfs_zegrep"
18893 msgstr ""
18894
18895 #. type: verbatim
18896 #: ../src/guestfs-actions.pod:7605
18897 #, no-wrap
18898 msgid ""
18899 " char **\n"
18900 " guestfs_zegrep (guestfs_h *g,\n"
18901 "                 const char *regex,\n"
18902 "                 const char *path);\n"
18903 "\n"
18904 msgstr ""
18905
18906 #. type: textblock
18907 #: ../src/guestfs-actions.pod:7610 ../fish/guestfish-actions.pod:5029
18908 msgid ""
18909 "This calls the external C<zegrep> program and returns the matching lines."
18910 msgstr ""
18911
18912 #. type: =head2
18913 #: ../src/guestfs-actions.pod:7622
18914 msgid "guestfs_zegrepi"
18915 msgstr ""
18916
18917 #. type: verbatim
18918 #: ../src/guestfs-actions.pod:7624
18919 #, no-wrap
18920 msgid ""
18921 " char **\n"
18922 " guestfs_zegrepi (guestfs_h *g,\n"
18923 "                  const char *regex,\n"
18924 "                  const char *path);\n"
18925 "\n"
18926 msgstr ""
18927
18928 #. type: textblock
18929 #: ../src/guestfs-actions.pod:7629 ../fish/guestfish-actions.pod:5039
18930 msgid ""
18931 "This calls the external C<zegrep -i> program and returns the matching lines."
18932 msgstr ""
18933
18934 #. type: =head2
18935 #: ../src/guestfs-actions.pod:7641
18936 msgid "guestfs_zero"
18937 msgstr ""
18938
18939 #. type: verbatim
18940 #: ../src/guestfs-actions.pod:7643
18941 #, no-wrap
18942 msgid ""
18943 " int\n"
18944 " guestfs_zero (guestfs_h *g,\n"
18945 "               const char *device);\n"
18946 "\n"
18947 msgstr ""
18948
18949 #. type: textblock
18950 #: ../src/guestfs-actions.pod:7647 ../fish/guestfish-actions.pod:5049
18951 msgid "This command writes zeroes over the first few blocks of C<device>."
18952 msgstr ""
18953
18954 #. type: textblock
18955 #: ../src/guestfs-actions.pod:7649 ../fish/guestfish-actions.pod:5051
18956 msgid ""
18957 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18958 "securely wipe the device).  It should be sufficient to remove any partition "
18959 "tables, filesystem superblocks and so on."
18960 msgstr ""
18961
18962 #. type: textblock
18963 #: ../src/guestfs-actions.pod:7653
18964 msgid ""
18965 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18966 "C<guestfs_is_zero_device>"
18967 msgstr ""
18968
18969 #. type: =head2
18970 #: ../src/guestfs-actions.pod:7665
18971 msgid "guestfs_zero_device"
18972 msgstr ""
18973
18974 #. type: verbatim
18975 #: ../src/guestfs-actions.pod:7667
18976 #, no-wrap
18977 msgid ""
18978 " int\n"
18979 " guestfs_zero_device (guestfs_h *g,\n"
18980 "                      const char *device);\n"
18981 "\n"
18982 msgstr ""
18983
18984 #. type: textblock
18985 #: ../src/guestfs-actions.pod:7671
18986 msgid ""
18987 "This command writes zeroes over the entire C<device>.  Compare with "
18988 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18989 msgstr ""
18990
18991 #. type: textblock
18992 #: ../src/guestfs-actions.pod:7685
18993 msgid "(Added in 1.3.1)"
18994 msgstr ""
18995
18996 #. type: =head2
18997 #: ../src/guestfs-actions.pod:7687
18998 msgid "guestfs_zerofree"
18999 msgstr ""
19000
19001 #. type: verbatim
19002 #: ../src/guestfs-actions.pod:7689
19003 #, no-wrap
19004 msgid ""
19005 " int\n"
19006 " guestfs_zerofree (guestfs_h *g,\n"
19007 "                   const char *device);\n"
19008 "\n"
19009 msgstr ""
19010
19011 #. type: textblock
19012 #: ../src/guestfs-actions.pod:7693 ../fish/guestfish-actions.pod:5073
19013 msgid ""
19014 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
19015 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
19016 "possible to compress the filesystem more effectively."
19017 msgstr ""
19018
19019 #. type: textblock
19020 #: ../src/guestfs-actions.pod:7698 ../fish/guestfish-actions.pod:5078
19021 msgid "You should B<not> run this program if the filesystem is mounted."
19022 msgstr ""
19023
19024 #. type: textblock
19025 #: ../src/guestfs-actions.pod:7701 ../fish/guestfish-actions.pod:5081
19026 msgid ""
19027 "It is possible that using this program can damage the filesystem or data on "
19028 "the filesystem."
19029 msgstr ""
19030
19031 #. type: =head2
19032 #: ../src/guestfs-actions.pod:7708
19033 msgid "guestfs_zfgrep"
19034 msgstr ""
19035
19036 #. type: verbatim
19037 #: ../src/guestfs-actions.pod:7710
19038 #, no-wrap
19039 msgid ""
19040 " char **\n"
19041 " guestfs_zfgrep (guestfs_h *g,\n"
19042 "                 const char *pattern,\n"
19043 "                 const char *path);\n"
19044 "\n"
19045 msgstr ""
19046
19047 #. type: textblock
19048 #: ../src/guestfs-actions.pod:7715 ../fish/guestfish-actions.pod:5088
19049 msgid ""
19050 "This calls the external C<zfgrep> program and returns the matching lines."
19051 msgstr ""
19052
19053 #. type: =head2
19054 #: ../src/guestfs-actions.pod:7727
19055 msgid "guestfs_zfgrepi"
19056 msgstr ""
19057
19058 #. type: verbatim
19059 #: ../src/guestfs-actions.pod:7729
19060 #, no-wrap
19061 msgid ""
19062 " char **\n"
19063 " guestfs_zfgrepi (guestfs_h *g,\n"
19064 "                  const char *pattern,\n"
19065 "                  const char *path);\n"
19066 "\n"
19067 msgstr ""
19068
19069 #. type: textblock
19070 #: ../src/guestfs-actions.pod:7734 ../fish/guestfish-actions.pod:5098
19071 msgid ""
19072 "This calls the external C<zfgrep -i> program and returns the matching lines."
19073 msgstr ""
19074
19075 #. type: =head2
19076 #: ../src/guestfs-actions.pod:7746
19077 msgid "guestfs_zfile"
19078 msgstr ""
19079
19080 #. type: verbatim
19081 #: ../src/guestfs-actions.pod:7748
19082 #, no-wrap
19083 msgid ""
19084 " char *\n"
19085 " guestfs_zfile (guestfs_h *g,\n"
19086 "                const char *meth,\n"
19087 "                const char *path);\n"
19088 "\n"
19089 msgstr ""
19090
19091 #. type: textblock
19092 #: ../src/guestfs-actions.pod:7753 ../fish/guestfish-actions.pod:5108
19093 msgid ""
19094 "This command runs C<file> after first decompressing C<path> using C<method>."
19095 msgstr ""
19096
19097 #. type: textblock
19098 #: ../src/guestfs-actions.pod:7756 ../fish/guestfish-actions.pod:5111
19099 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
19100 msgstr ""
19101
19102 #. type: textblock
19103 #: ../src/guestfs-actions.pod:7758
19104 msgid ""
19105 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
19106 "files."
19107 msgstr ""
19108
19109 #. type: textblock
19110 #: ../src/guestfs-actions.pod:7764 ../fish/guestfish-actions.pod:5116
19111 msgid ""
19112 "This function is deprecated.  In new code, use the C<file> call instead."
19113 msgstr ""
19114
19115 #. type: =head2
19116 #: ../src/guestfs-actions.pod:7773
19117 msgid "guestfs_zgrep"
19118 msgstr ""
19119
19120 #. type: verbatim
19121 #: ../src/guestfs-actions.pod:7775
19122 #, no-wrap
19123 msgid ""
19124 " char **\n"
19125 " guestfs_zgrep (guestfs_h *g,\n"
19126 "                const char *regex,\n"
19127 "                const char *path);\n"
19128 "\n"
19129 msgstr ""
19130
19131 #. type: textblock
19132 #: ../src/guestfs-actions.pod:7780 ../fish/guestfish-actions.pod:5127
19133 msgid ""
19134 "This calls the external C<zgrep> program and returns the matching lines."
19135 msgstr ""
19136
19137 #. type: =head2
19138 #: ../src/guestfs-actions.pod:7792
19139 msgid "guestfs_zgrepi"
19140 msgstr ""
19141
19142 #. type: verbatim
19143 #: ../src/guestfs-actions.pod:7794
19144 #, no-wrap
19145 msgid ""
19146 " char **\n"
19147 " guestfs_zgrepi (guestfs_h *g,\n"
19148 "                 const char *regex,\n"
19149 "                 const char *path);\n"
19150 "\n"
19151 msgstr ""
19152
19153 #. type: textblock
19154 #: ../src/guestfs-actions.pod:7799 ../fish/guestfish-actions.pod:5137
19155 msgid ""
19156 "This calls the external C<zgrep -i> program and returns the matching lines."
19157 msgstr ""
19158
19159 #. type: =item
19160 #: ../src/guestfs-availability.pod:3
19161 msgid "B<augeas>"
19162 msgstr ""
19163
19164 #. type: textblock
19165 #: ../src/guestfs-availability.pod:5
19166 msgid ""
19167 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
19168 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
19169 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
19170 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
19171 "L</guestfs_aug_save> L</guestfs_aug_set>"
19172 msgstr ""
19173
19174 #. type: =item
19175 #: ../src/guestfs-availability.pod:21
19176 msgid "B<inotify>"
19177 msgstr ""
19178
19179 #. type: textblock
19180 #: ../src/guestfs-availability.pod:23
19181 msgid ""
19182 "The following functions: L</guestfs_inotify_add_watch> L</"
19183 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
19184 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
19185 msgstr ""
19186
19187 #. type: =item
19188 #: ../src/guestfs-availability.pod:31
19189 msgid "B<linuxfsuuid>"
19190 msgstr ""
19191
19192 #. type: textblock
19193 #: ../src/guestfs-availability.pod:33
19194 msgid ""
19195 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
19196 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
19197 msgstr ""
19198
19199 #. type: =item
19200 #: ../src/guestfs-availability.pod:40
19201 msgid "B<linuxmodules>"
19202 msgstr ""
19203
19204 #. type: textblock
19205 #: ../src/guestfs-availability.pod:42
19206 msgid "The following functions: L</guestfs_modprobe>"
19207 msgstr ""
19208
19209 #. type: =item
19210 #: ../src/guestfs-availability.pod:45
19211 msgid "B<linuxxattrs>"
19212 msgstr ""
19213
19214 #. type: textblock
19215 #: ../src/guestfs-availability.pod:47
19216 msgid ""
19217 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
19218 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
19219 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
19220 "guestfs_setxattr>"
19221 msgstr ""
19222
19223 #. type: =item
19224 #: ../src/guestfs-availability.pod:58
19225 msgid "B<luks>"
19226 msgstr ""
19227
19228 #. type: textblock
19229 #: ../src/guestfs-availability.pod:60
19230 msgid ""
19231 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
19232 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
19233 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19234 msgstr ""
19235
19236 #. type: =item
19237 #: ../src/guestfs-availability.pod:69
19238 msgid "B<lvm2>"
19239 msgstr ""
19240
19241 #. type: textblock
19242 #: ../src/guestfs-availability.pod:71
19243 msgid ""
19244 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
19245 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
19246 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
19247 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
19248 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
19249 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
19250 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
19251 msgstr ""
19252
19253 #. type: =item
19254 #: ../src/guestfs-availability.pod:94
19255 msgid "B<mknod>"
19256 msgstr ""
19257
19258 #. type: textblock
19259 #: ../src/guestfs-availability.pod:96
19260 msgid ""
19261 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
19262 "guestfs_mknod_b> L</guestfs_mknod_c>"
19263 msgstr ""
19264
19265 #. type: =item
19266 #: ../src/guestfs-availability.pod:102
19267 msgid "B<ntfs3g>"
19268 msgstr ""
19269
19270 #. type: textblock
19271 #: ../src/guestfs-availability.pod:104
19272 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19273 msgstr ""
19274
19275 #. type: =item
19276 #: ../src/guestfs-availability.pod:107
19277 msgid "B<ntfsprogs>"
19278 msgstr ""
19279
19280 #. type: textblock
19281 #: ../src/guestfs-availability.pod:109
19282 msgid ""
19283 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
19284 "L</guestfs_ntfsresize_size>"
19285 msgstr ""
19286
19287 #. type: =item
19288 #: ../src/guestfs-availability.pod:114
19289 msgid "B<realpath>"
19290 msgstr ""
19291
19292 #. type: textblock
19293 #: ../src/guestfs-availability.pod:116
19294 msgid "The following functions: L</guestfs_realpath>"
19295 msgstr ""
19296
19297 #. type: =item
19298 #: ../src/guestfs-availability.pod:119
19299 msgid "B<scrub>"
19300 msgstr ""
19301
19302 #. type: textblock
19303 #: ../src/guestfs-availability.pod:121
19304 msgid ""
19305 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
19306 "guestfs_scrub_freespace>"
19307 msgstr ""
19308
19309 #. type: =item
19310 #: ../src/guestfs-availability.pod:126
19311 msgid "B<selinux>"
19312 msgstr ""
19313
19314 #. type: textblock
19315 #: ../src/guestfs-availability.pod:128
19316 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19317 msgstr ""
19318
19319 #. type: =item
19320 #: ../src/guestfs-availability.pod:132
19321 msgid "B<xz>"
19322 msgstr ""
19323
19324 #. type: textblock
19325 #: ../src/guestfs-availability.pod:134
19326 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19327 msgstr ""
19328
19329 #. type: =item
19330 #: ../src/guestfs-availability.pod:138
19331 msgid "B<zerofree>"
19332 msgstr ""
19333
19334 #. type: textblock
19335 #: ../src/guestfs-availability.pod:140
19336 msgid "The following functions: L</guestfs_zerofree>"
19337 msgstr ""
19338
19339 #. type: =head2
19340 #: ../src/guestfs-structs.pod:1
19341 msgid "guestfs_int_bool"
19342 msgstr ""
19343
19344 #. type: verbatim
19345 #: ../src/guestfs-structs.pod:3
19346 #, no-wrap
19347 msgid ""
19348 " struct guestfs_int_bool {\n"
19349 "   int32_t i;\n"
19350 "   int32_t b;\n"
19351 " };\n"
19352 " \n"
19353 msgstr ""
19354
19355 #. type: verbatim
19356 #: ../src/guestfs-structs.pod:8
19357 #, no-wrap
19358 msgid ""
19359 " struct guestfs_int_bool_list {\n"
19360 "   uint32_t len; /* Number of elements in list. */\n"
19361 "   struct guestfs_int_bool *val; /* Elements. */\n"
19362 " };\n"
19363 " \n"
19364 msgstr ""
19365
19366 #. type: verbatim
19367 #: ../src/guestfs-structs.pod:13
19368 #, no-wrap
19369 msgid ""
19370 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19371 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19372 "\n"
19373 msgstr ""
19374
19375 #. type: =head2
19376 #: ../src/guestfs-structs.pod:16
19377 msgid "guestfs_lvm_pv"
19378 msgstr ""
19379
19380 #. type: verbatim
19381 #: ../src/guestfs-structs.pod:18
19382 #, no-wrap
19383 msgid ""
19384 " struct guestfs_lvm_pv {\n"
19385 "   char *pv_name;\n"
19386 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19387 "   char pv_uuid[32];\n"
19388 "   char *pv_fmt;\n"
19389 "   uint64_t pv_size;\n"
19390 "   uint64_t dev_size;\n"
19391 "   uint64_t pv_free;\n"
19392 "   uint64_t pv_used;\n"
19393 "   char *pv_attr;\n"
19394 "   int64_t pv_pe_count;\n"
19395 "   int64_t pv_pe_alloc_count;\n"
19396 "   char *pv_tags;\n"
19397 "   uint64_t pe_start;\n"
19398 "   int64_t pv_mda_count;\n"
19399 "   uint64_t pv_mda_free;\n"
19400 " };\n"
19401 " \n"
19402 msgstr ""
19403
19404 #. type: verbatim
19405 #: ../src/guestfs-structs.pod:36
19406 #, no-wrap
19407 msgid ""
19408 " struct guestfs_lvm_pv_list {\n"
19409 "   uint32_t len; /* Number of elements in list. */\n"
19410 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19411 " };\n"
19412 " \n"
19413 msgstr ""
19414
19415 #. type: verbatim
19416 #: ../src/guestfs-structs.pod:41
19417 #, no-wrap
19418 msgid ""
19419 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19420 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19421 "\n"
19422 msgstr ""
19423
19424 #. type: =head2
19425 #: ../src/guestfs-structs.pod:44
19426 msgid "guestfs_lvm_vg"
19427 msgstr ""
19428
19429 #. type: verbatim
19430 #: ../src/guestfs-structs.pod:46
19431 #, no-wrap
19432 msgid ""
19433 " struct guestfs_lvm_vg {\n"
19434 "   char *vg_name;\n"
19435 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19436 "   char vg_uuid[32];\n"
19437 "   char *vg_fmt;\n"
19438 "   char *vg_attr;\n"
19439 "   uint64_t vg_size;\n"
19440 "   uint64_t vg_free;\n"
19441 "   char *vg_sysid;\n"
19442 "   uint64_t vg_extent_size;\n"
19443 "   int64_t vg_extent_count;\n"
19444 "   int64_t vg_free_count;\n"
19445 "   int64_t max_lv;\n"
19446 "   int64_t max_pv;\n"
19447 "   int64_t pv_count;\n"
19448 "   int64_t lv_count;\n"
19449 "   int64_t snap_count;\n"
19450 "   int64_t vg_seqno;\n"
19451 "   char *vg_tags;\n"
19452 "   int64_t vg_mda_count;\n"
19453 "   uint64_t vg_mda_free;\n"
19454 " };\n"
19455 " \n"
19456 msgstr ""
19457
19458 #. type: verbatim
19459 #: ../src/guestfs-structs.pod:69
19460 #, no-wrap
19461 msgid ""
19462 " struct guestfs_lvm_vg_list {\n"
19463 "   uint32_t len; /* Number of elements in list. */\n"
19464 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19465 " };\n"
19466 " \n"
19467 msgstr ""
19468
19469 #. type: verbatim
19470 #: ../src/guestfs-structs.pod:74
19471 #, no-wrap
19472 msgid ""
19473 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19474 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19475 "\n"
19476 msgstr ""
19477
19478 #. type: =head2
19479 #: ../src/guestfs-structs.pod:77
19480 msgid "guestfs_lvm_lv"
19481 msgstr ""
19482
19483 #. type: verbatim
19484 #: ../src/guestfs-structs.pod:79
19485 #, no-wrap
19486 msgid ""
19487 " struct guestfs_lvm_lv {\n"
19488 "   char *lv_name;\n"
19489 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19490 "   char lv_uuid[32];\n"
19491 "   char *lv_attr;\n"
19492 "   int64_t lv_major;\n"
19493 "   int64_t lv_minor;\n"
19494 "   int64_t lv_kernel_major;\n"
19495 "   int64_t lv_kernel_minor;\n"
19496 "   uint64_t lv_size;\n"
19497 "   int64_t seg_count;\n"
19498 "   char *origin;\n"
19499 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19500 "   float snap_percent;\n"
19501 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19502 "   float copy_percent;\n"
19503 "   char *move_pv;\n"
19504 "   char *lv_tags;\n"
19505 "   char *mirror_log;\n"
19506 "   char *modules;\n"
19507 " };\n"
19508 " \n"
19509 msgstr ""
19510
19511 #. type: verbatim
19512 #: ../src/guestfs-structs.pod:101
19513 #, no-wrap
19514 msgid ""
19515 " struct guestfs_lvm_lv_list {\n"
19516 "   uint32_t len; /* Number of elements in list. */\n"
19517 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19518 " };\n"
19519 " \n"
19520 msgstr ""
19521
19522 #. type: verbatim
19523 #: ../src/guestfs-structs.pod:106
19524 #, no-wrap
19525 msgid ""
19526 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19527 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19528 "\n"
19529 msgstr ""
19530
19531 #. type: verbatim
19532 #: ../src/guestfs-structs.pod:111
19533 #, no-wrap
19534 msgid ""
19535 " struct guestfs_stat {\n"
19536 "   int64_t dev;\n"
19537 "   int64_t ino;\n"
19538 "   int64_t mode;\n"
19539 "   int64_t nlink;\n"
19540 "   int64_t uid;\n"
19541 "   int64_t gid;\n"
19542 "   int64_t rdev;\n"
19543 "   int64_t size;\n"
19544 "   int64_t blksize;\n"
19545 "   int64_t blocks;\n"
19546 "   int64_t atime;\n"
19547 "   int64_t mtime;\n"
19548 "   int64_t ctime;\n"
19549 " };\n"
19550 " \n"
19551 msgstr ""
19552
19553 #. type: verbatim
19554 #: ../src/guestfs-structs.pod:127
19555 #, no-wrap
19556 msgid ""
19557 " struct guestfs_stat_list {\n"
19558 "   uint32_t len; /* Number of elements in list. */\n"
19559 "   struct guestfs_stat *val; /* Elements. */\n"
19560 " };\n"
19561 " \n"
19562 msgstr ""
19563
19564 #. type: verbatim
19565 #: ../src/guestfs-structs.pod:132
19566 #, no-wrap
19567 msgid ""
19568 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19569 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19570 "\n"
19571 msgstr ""
19572
19573 #. type: verbatim
19574 #: ../src/guestfs-structs.pod:137
19575 #, no-wrap
19576 msgid ""
19577 " struct guestfs_statvfs {\n"
19578 "   int64_t bsize;\n"
19579 "   int64_t frsize;\n"
19580 "   int64_t blocks;\n"
19581 "   int64_t bfree;\n"
19582 "   int64_t bavail;\n"
19583 "   int64_t files;\n"
19584 "   int64_t ffree;\n"
19585 "   int64_t favail;\n"
19586 "   int64_t fsid;\n"
19587 "   int64_t flag;\n"
19588 "   int64_t namemax;\n"
19589 " };\n"
19590 " \n"
19591 msgstr ""
19592
19593 #. type: verbatim
19594 #: ../src/guestfs-structs.pod:151
19595 #, no-wrap
19596 msgid ""
19597 " struct guestfs_statvfs_list {\n"
19598 "   uint32_t len; /* Number of elements in list. */\n"
19599 "   struct guestfs_statvfs *val; /* Elements. */\n"
19600 " };\n"
19601 " \n"
19602 msgstr ""
19603
19604 #. type: verbatim
19605 #: ../src/guestfs-structs.pod:156
19606 #, no-wrap
19607 msgid ""
19608 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19609 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19610 "\n"
19611 msgstr ""
19612
19613 #. type: =head2
19614 #: ../src/guestfs-structs.pod:159
19615 msgid "guestfs_dirent"
19616 msgstr ""
19617
19618 #. type: verbatim
19619 #: ../src/guestfs-structs.pod:161
19620 #, no-wrap
19621 msgid ""
19622 " struct guestfs_dirent {\n"
19623 "   int64_t ino;\n"
19624 "   char ftyp;\n"
19625 "   char *name;\n"
19626 " };\n"
19627 " \n"
19628 msgstr ""
19629
19630 #. type: verbatim
19631 #: ../src/guestfs-structs.pod:167
19632 #, no-wrap
19633 msgid ""
19634 " struct guestfs_dirent_list {\n"
19635 "   uint32_t len; /* Number of elements in list. */\n"
19636 "   struct guestfs_dirent *val; /* Elements. */\n"
19637 " };\n"
19638 " \n"
19639 msgstr ""
19640
19641 #. type: verbatim
19642 #: ../src/guestfs-structs.pod:172
19643 #, no-wrap
19644 msgid ""
19645 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19646 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19647 "\n"
19648 msgstr ""
19649
19650 #. type: verbatim
19651 #: ../src/guestfs-structs.pod:177
19652 #, no-wrap
19653 msgid ""
19654 " struct guestfs_version {\n"
19655 "   int64_t major;\n"
19656 "   int64_t minor;\n"
19657 "   int64_t release;\n"
19658 "   char *extra;\n"
19659 " };\n"
19660 " \n"
19661 msgstr ""
19662
19663 #. type: verbatim
19664 #: ../src/guestfs-structs.pod:184
19665 #, no-wrap
19666 msgid ""
19667 " struct guestfs_version_list {\n"
19668 "   uint32_t len; /* Number of elements in list. */\n"
19669 "   struct guestfs_version *val; /* Elements. */\n"
19670 " };\n"
19671 " \n"
19672 msgstr ""
19673
19674 #. type: verbatim
19675 #: ../src/guestfs-structs.pod:189
19676 #, no-wrap
19677 msgid ""
19678 " void guestfs_free_version (struct guestfs_free_version *);\n"
19679 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19680 "\n"
19681 msgstr ""
19682
19683 #. type: =head2
19684 #: ../src/guestfs-structs.pod:192
19685 msgid "guestfs_xattr"
19686 msgstr ""
19687
19688 #. type: verbatim
19689 #: ../src/guestfs-structs.pod:194
19690 #, no-wrap
19691 msgid ""
19692 " struct guestfs_xattr {\n"
19693 "   char *attrname;\n"
19694 "   /* The next two fields describe a byte array. */\n"
19695 "   uint32_t attrval_len;\n"
19696 "   char *attrval;\n"
19697 " };\n"
19698 " \n"
19699 msgstr ""
19700
19701 #. type: verbatim
19702 #: ../src/guestfs-structs.pod:201
19703 #, no-wrap
19704 msgid ""
19705 " struct guestfs_xattr_list {\n"
19706 "   uint32_t len; /* Number of elements in list. */\n"
19707 "   struct guestfs_xattr *val; /* Elements. */\n"
19708 " };\n"
19709 " \n"
19710 msgstr ""
19711
19712 #. type: verbatim
19713 #: ../src/guestfs-structs.pod:206
19714 #, no-wrap
19715 msgid ""
19716 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19717 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19718 "\n"
19719 msgstr ""
19720
19721 #. type: =head2
19722 #: ../src/guestfs-structs.pod:209
19723 msgid "guestfs_inotify_event"
19724 msgstr ""
19725
19726 #. type: verbatim
19727 #: ../src/guestfs-structs.pod:211
19728 #, no-wrap
19729 msgid ""
19730 " struct guestfs_inotify_event {\n"
19731 "   int64_t in_wd;\n"
19732 "   uint32_t in_mask;\n"
19733 "   uint32_t in_cookie;\n"
19734 "   char *in_name;\n"
19735 " };\n"
19736 " \n"
19737 msgstr ""
19738
19739 #. type: verbatim
19740 #: ../src/guestfs-structs.pod:218
19741 #, no-wrap
19742 msgid ""
19743 " struct guestfs_inotify_event_list {\n"
19744 "   uint32_t len; /* Number of elements in list. */\n"
19745 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19746 " };\n"
19747 " \n"
19748 msgstr ""
19749
19750 #. type: verbatim
19751 #: ../src/guestfs-structs.pod:223
19752 #, no-wrap
19753 msgid ""
19754 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19755 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19756 "\n"
19757 msgstr ""
19758
19759 #. type: =head2
19760 #: ../src/guestfs-structs.pod:226
19761 msgid "guestfs_partition"
19762 msgstr ""
19763
19764 #. type: verbatim
19765 #: ../src/guestfs-structs.pod:228
19766 #, no-wrap
19767 msgid ""
19768 " struct guestfs_partition {\n"
19769 "   int32_t part_num;\n"
19770 "   uint64_t part_start;\n"
19771 "   uint64_t part_end;\n"
19772 "   uint64_t part_size;\n"
19773 " };\n"
19774 " \n"
19775 msgstr ""
19776
19777 #. type: verbatim
19778 #: ../src/guestfs-structs.pod:235
19779 #, no-wrap
19780 msgid ""
19781 " struct guestfs_partition_list {\n"
19782 "   uint32_t len; /* Number of elements in list. */\n"
19783 "   struct guestfs_partition *val; /* Elements. */\n"
19784 " };\n"
19785 " \n"
19786 msgstr ""
19787
19788 #. type: verbatim
19789 #: ../src/guestfs-structs.pod:240
19790 #, no-wrap
19791 msgid ""
19792 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19793 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19794 "\n"
19795 msgstr ""
19796
19797 #. type: =head2
19798 #: ../src/guestfs-structs.pod:243
19799 msgid "guestfs_application"
19800 msgstr ""
19801
19802 #. type: verbatim
19803 #: ../src/guestfs-structs.pod:245
19804 #, no-wrap
19805 msgid ""
19806 " struct guestfs_application {\n"
19807 "   char *app_name;\n"
19808 "   char *app_display_name;\n"
19809 "   int32_t app_epoch;\n"
19810 "   char *app_version;\n"
19811 "   char *app_release;\n"
19812 "   char *app_install_path;\n"
19813 "   char *app_trans_path;\n"
19814 "   char *app_publisher;\n"
19815 "   char *app_url;\n"
19816 "   char *app_source_package;\n"
19817 "   char *app_summary;\n"
19818 "   char *app_description;\n"
19819 " };\n"
19820 " \n"
19821 msgstr ""
19822
19823 #. type: verbatim
19824 #: ../src/guestfs-structs.pod:260
19825 #, no-wrap
19826 msgid ""
19827 " struct guestfs_application_list {\n"
19828 "   uint32_t len; /* Number of elements in list. */\n"
19829 "   struct guestfs_application *val; /* Elements. */\n"
19830 " };\n"
19831 " \n"
19832 msgstr ""
19833
19834 #. type: verbatim
19835 #: ../src/guestfs-structs.pod:265
19836 #, no-wrap
19837 msgid ""
19838 " void guestfs_free_application (struct guestfs_free_application *);\n"
19839 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19840 "\n"
19841 msgstr ""
19842
19843 #. type: textblock
19844 #: ../fish/guestfish.pod:5
19845 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19846 msgstr ""
19847
19848 #. type: verbatim
19849 #: ../fish/guestfish.pod:9
19850 #, no-wrap
19851 msgid ""
19852 " guestfish [--options] [commands]\n"
19853 "\n"
19854 msgstr ""
19855
19856 #. type: verbatim
19857 #: ../fish/guestfish.pod:11
19858 #, no-wrap
19859 msgid ""
19860 " guestfish\n"
19861 "\n"
19862 msgstr ""
19863
19864 #. type: verbatim
19865 #: ../fish/guestfish.pod:13
19866 #, no-wrap
19867 msgid ""
19868 " guestfish [--ro|--rw] -a disk.img\n"
19869 "\n"
19870 msgstr ""
19871
19872 #. type: verbatim
19873 #: ../fish/guestfish.pod:15
19874 #, no-wrap
19875 msgid ""
19876 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19877 "\n"
19878 msgstr ""
19879
19880 #. type: verbatim
19881 #: ../fish/guestfish.pod:17
19882 #, no-wrap
19883 msgid ""
19884 " guestfish -d libvirt-domain\n"
19885 "\n"
19886 msgstr ""
19887
19888 #. type: verbatim
19889 #: ../fish/guestfish.pod:19
19890 #, no-wrap
19891 msgid ""
19892 " guestfish [--ro|--rw] -a disk.img -i\n"
19893 "\n"
19894 msgstr ""
19895
19896 #. type: verbatim
19897 #: ../fish/guestfish.pod:21
19898 #, no-wrap
19899 msgid ""
19900 " guestfish -d libvirt-domain -i\n"
19901 "\n"
19902 msgstr ""
19903
19904 #. type: =head1
19905 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
19906 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19907 msgid "WARNING"
19908 msgstr ""
19909
19910 #. type: textblock
19911 #: ../fish/guestfish.pod:25
19912 msgid ""
19913 "Using guestfish in read/write mode on live virtual machines can be "
19914 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19915 "option to use guestfish safely if the disk image or virtual machine might be "
19916 "live."
19917 msgstr ""
19918
19919 #. type: textblock
19920 #: ../fish/guestfish.pod:32
19921 msgid ""
19922 "Guestfish is a shell and command-line tool for examining and modifying "
19923 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19924 "functionality of the guestfs API, see L<guestfs(3)>."
19925 msgstr ""
19926
19927 #. type: textblock
19928 #: ../fish/guestfish.pod:36
19929 msgid ""
19930 "Guestfish gives you structured access to the libguestfs API, from shell "
19931 "scripts or the command line or interactively.  If you want to rescue a "
19932 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19933 "command."
19934 msgstr ""
19935
19936 #. type: =head1
19937 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949
19938 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19939 msgid "EXAMPLES"
19940 msgstr ""
19941
19942 #. type: =head2
19943 #: ../fish/guestfish.pod:43
19944 msgid "As an interactive shell"
19945 msgstr ""
19946
19947 #. type: verbatim
19948 #: ../fish/guestfish.pod:45
19949 #, no-wrap
19950 msgid ""
19951 " $ guestfish\n"
19952 " \n"
19953 msgstr ""
19954
19955 #. type: verbatim
19956 #: ../fish/guestfish.pod:47
19957 #, no-wrap
19958 msgid ""
19959 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19960 " editing virtual machine filesystems.\n"
19961 " \n"
19962 msgstr ""
19963
19964 #. type: verbatim
19965 #: ../fish/guestfish.pod:50
19966 #, no-wrap
19967 msgid ""
19968 " Type: 'help' for a list of commands\n"
19969 "       'man' to read the manual\n"
19970 "       'quit' to quit the shell\n"
19971 " \n"
19972 msgstr ""
19973
19974 #. type: verbatim
19975 #: ../fish/guestfish.pod:54
19976 #, no-wrap
19977 msgid ""
19978 " ><fs> add-ro disk.img\n"
19979 " ><fs> run\n"
19980 " ><fs> list-filesystems\n"
19981 " /dev/sda1: ext4\n"
19982 " /dev/vg_guest/lv_root: ext4\n"
19983 " /dev/vg_guest/lv_swap: swap\n"
19984 " ><fs> mount /dev/vg_guest/lv_root /\n"
19985 " ><fs> cat /etc/fstab\n"
19986 " # /etc/fstab\n"
19987 " # Created by anaconda\n"
19988 " [...]\n"
19989 " ><fs> exit\n"
19990 "\n"
19991 msgstr ""
19992
19993 #. type: =head2
19994 #: ../fish/guestfish.pod:67
19995 msgid "From shell scripts"
19996 msgstr ""
19997
19998 #. type: textblock
19999 #: ../fish/guestfish.pod:69
20000 msgid "Create a new C</etc/motd> file in a guest or disk image:"
20001 msgstr ""
20002
20003 #. type: verbatim
20004 #: ../fish/guestfish.pod:71
20005 #, no-wrap
20006 msgid ""
20007 " guestfish <<_EOF_\n"
20008 " add disk.img\n"
20009 " run\n"
20010 " mount /dev/vg_guest/lv_root /\n"
20011 " write /etc/motd \"Welcome, new users\"\n"
20012 " _EOF_\n"
20013 "\n"
20014 msgstr ""
20015
20016 #. type: textblock
20017 #: ../fish/guestfish.pod:78
20018 msgid "List the LVM logical volumes in a disk image:"
20019 msgstr ""
20020
20021 #. type: verbatim
20022 #: ../fish/guestfish.pod:80
20023 #, no-wrap
20024 msgid ""
20025 " guestfish -a disk.img --ro <<_EOF_\n"
20026 " run\n"
20027 " lvs\n"
20028 " _EOF_\n"
20029 "\n"
20030 msgstr ""
20031
20032 #. type: textblock
20033 #: ../fish/guestfish.pod:85
20034 msgid "List all the filesystems in a disk image:"
20035 msgstr ""
20036
20037 #. type: verbatim
20038 #: ../fish/guestfish.pod:87
20039 #, no-wrap
20040 msgid ""
20041 " guestfish -a disk.img --ro <<_EOF_\n"
20042 " run\n"
20043 " list-filesystems\n"
20044 " _EOF_\n"
20045 "\n"
20046 msgstr ""
20047
20048 #. type: =head2
20049 #: ../fish/guestfish.pod:92
20050 msgid "On one command line"
20051 msgstr ""
20052
20053 #. type: textblock
20054 #: ../fish/guestfish.pod:94
20055 msgid "Update C</etc/resolv.conf> in a guest:"
20056 msgstr ""
20057
20058 #. type: verbatim
20059 #: ../fish/guestfish.pod:96
20060 #, no-wrap
20061 msgid ""
20062 " guestfish \\\n"
20063 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
20064 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
20065 "\n"
20066 msgstr ""
20067
20068 #. type: textblock
20069 #: ../fish/guestfish.pod:100
20070 msgid "Edit C</boot/grub/grub.conf> interactively:"
20071 msgstr ""
20072
20073 #. type: verbatim
20074 #: ../fish/guestfish.pod:102
20075 #, no-wrap
20076 msgid ""
20077 " guestfish --rw --add disk.img \\\n"
20078 "   --mount /dev/vg_guest/lv_root \\\n"
20079 "   --mount /dev/sda1:/boot \\\n"
20080 "   edit /boot/grub/grub.conf\n"
20081 "\n"
20082 msgstr ""
20083
20084 #. type: =head2
20085 #: ../fish/guestfish.pod:107
20086 msgid "Mount disks automatically"
20087 msgstr ""
20088
20089 #. type: textblock
20090 #: ../fish/guestfish.pod:109
20091 msgid ""
20092 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
20093 msgstr ""
20094
20095 #. type: verbatim
20096 #: ../fish/guestfish.pod:112
20097 #, no-wrap
20098 msgid ""
20099 " guestfish --ro -a disk.img -i cat /etc/group\n"
20100 "\n"
20101 msgstr ""
20102
20103 #. type: verbatim
20104 #: ../fish/guestfish.pod:114
20105 #, no-wrap
20106 msgid ""
20107 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
20108 "\n"
20109 msgstr ""
20110
20111 #. type: textblock
20112 #: ../fish/guestfish.pod:116
20113 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
20114 msgstr ""
20115
20116 #. type: verbatim
20117 #: ../fish/guestfish.pod:118
20118 #, no-wrap
20119 msgid ""
20120 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
20121 "\n"
20122 msgstr ""
20123
20124 #. type: =head2
20125 #: ../fish/guestfish.pod:120
20126 msgid "As a script interpreter"
20127 msgstr ""
20128
20129 #. type: textblock
20130 #: ../fish/guestfish.pod:122
20131 msgid "Create a 100MB disk containing an ext2-formatted partition:"
20132 msgstr ""
20133
20134 #. type: verbatim
20135 #: ../fish/guestfish.pod:124
20136 #, no-wrap
20137 msgid ""
20138 " #!/usr/bin/guestfish -f\n"
20139 " sparse test1.img 100M\n"
20140 " run\n"
20141 " part-disk /dev/sda mbr\n"
20142 " mkfs ext2 /dev/sda1\n"
20143 "\n"
20144 msgstr ""
20145
20146 #. type: =head2
20147 #: ../fish/guestfish.pod:130
20148 msgid "Start with a prepared disk"
20149 msgstr ""
20150
20151 #. type: textblock
20152 #: ../fish/guestfish.pod:132
20153 msgid ""
20154 "An alternate way to create a 100MB disk called C<test1.img> containing a "
20155 "single ext2-formatted partition:"
20156 msgstr ""
20157
20158 #. type: verbatim
20159 #: ../fish/guestfish.pod:135
20160 #, no-wrap
20161 msgid ""
20162 " guestfish -N fs\n"
20163 "\n"
20164 msgstr ""
20165
20166 #. type: textblock
20167 #: ../fish/guestfish.pod:137
20168 msgid "To list what is available do:"
20169 msgstr ""
20170
20171 #. type: verbatim
20172 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
20173 #, no-wrap
20174 msgid ""
20175 " guestfish -N help | less\n"
20176 "\n"
20177 msgstr ""
20178
20179 #. type: =head2
20180 #: ../fish/guestfish.pod:141
20181 msgid "Remote control"
20182 msgstr ""
20183
20184 #. type: verbatim
20185 #: ../fish/guestfish.pod:143
20186 #, no-wrap
20187 msgid ""
20188 " eval \"`guestfish --listen`\"\n"
20189 " guestfish --remote add-ro disk.img\n"
20190 " guestfish --remote run\n"
20191 " guestfish --remote lvs\n"
20192 "\n"
20193 msgstr ""
20194
20195 #. type: =head1
20196 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
20197 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
20198 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
20199 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
20200 msgid "OPTIONS"
20201 msgstr ""
20202
20203 #. type: =item
20204 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
20205 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
20206 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
20207 #: ../tools/virt-list-partitions.pl:62
20208 msgid "B<--help>"
20209 msgstr ""
20210
20211 #. type: textblock
20212 #: ../fish/guestfish.pod:154
20213 msgid "Displays general help on options."
20214 msgstr ""
20215
20216 #. type: =item
20217 #: ../fish/guestfish.pod:156
20218 msgid "B<-h>"
20219 msgstr ""
20220
20221 #. type: =item
20222 #: ../fish/guestfish.pod:158
20223 msgid "B<--cmd-help>"
20224 msgstr ""
20225
20226 #. type: textblock
20227 #: ../fish/guestfish.pod:160
20228 msgid "Lists all available guestfish commands."
20229 msgstr ""
20230
20231 #. type: =item
20232 #: ../fish/guestfish.pod:162
20233 msgid "B<-h cmd>"
20234 msgstr ""
20235
20236 #. type: =item
20237 #: ../fish/guestfish.pod:164
20238 msgid "B<--cmd-help cmd>"
20239 msgstr ""
20240
20241 #. type: textblock
20242 #: ../fish/guestfish.pod:166
20243 msgid "Displays detailed help on a single command C<cmd>."
20244 msgstr ""
20245
20246 #. type: =item
20247 #: ../fish/guestfish.pod:168
20248 msgid "B<-a image>"
20249 msgstr ""
20250
20251 #. type: =item
20252 #: ../fish/guestfish.pod:170
20253 msgid "B<--add image>"
20254 msgstr ""
20255
20256 #. type: textblock
20257 #: ../fish/guestfish.pod:172
20258 msgid "Add a block device or virtual machine image to the shell."
20259 msgstr ""
20260
20261 #. type: textblock
20262 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20263 msgid ""
20264 "The format of the disk image is auto-detected.  To override this and force a "
20265 "particular format use the I<--format=..> option."
20266 msgstr ""
20267
20268 #. type: textblock
20269 #: ../fish/guestfish.pod:177
20270 msgid ""
20271 "Using this flag is mostly equivalent to using the C<add> command, with "
20272 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20273 "the I<--format=...> flag was given."
20274 msgstr ""
20275
20276 #. type: =item
20277 #: ../fish/guestfish.pod:181
20278 msgid "B<-c URI>"
20279 msgstr ""
20280
20281 #. type: =item
20282 #: ../fish/guestfish.pod:183
20283 msgid "B<--connect URI>"
20284 msgstr ""
20285
20286 #. type: textblock
20287 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20288 msgid ""
20289 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20290 "URI to use.  The default is to use the default libvirt connection."
20291 msgstr ""
20292
20293 #. type: =item
20294 #: ../fish/guestfish.pod:189
20295 msgid "B<--csh>"
20296 msgstr ""
20297
20298 #. type: textblock
20299 #: ../fish/guestfish.pod:191
20300 msgid ""
20301 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20302 "section L</REMOTE CONTROL AND CSH> below."
20303 msgstr ""
20304
20305 #. type: =item
20306 #: ../fish/guestfish.pod:194
20307 msgid "B<-d libvirt-domain>"
20308 msgstr ""
20309
20310 #. type: =item
20311 #: ../fish/guestfish.pod:196
20312 msgid "B<--domain libvirt-domain>"
20313 msgstr ""
20314
20315 #. type: textblock
20316 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20317 msgid ""
20318 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20319 "used, then any libvirt domain can be used.  However in write mode, only "
20320 "libvirt domains which are shut down can be named here."
20321 msgstr ""
20322
20323 #. type: textblock
20324 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20325 msgid "Domain UUIDs can be used instead of names."
20326 msgstr ""
20327
20328 #. type: textblock
20329 #: ../fish/guestfish.pod:204
20330 msgid ""
20331 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20332 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20333 "if the I<--format:...> flag was given."
20334 msgstr ""
20335
20336 #. type: =item
20337 #: ../fish/guestfish.pod:208
20338 msgid "B<-D>"
20339 msgstr ""
20340
20341 #. type: =item
20342 #: ../fish/guestfish.pod:210
20343 msgid "B<--no-dest-paths>"
20344 msgstr ""
20345
20346 #. type: textblock
20347 #: ../fish/guestfish.pod:212
20348 msgid ""
20349 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20350 "to hit the tab key to complete paths on the guest filesystem, but this "
20351 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20352 "allow this feature to be disabled."
20353 msgstr ""
20354
20355 #. type: =item
20356 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20357 msgid "B<--echo-keys>"
20358 msgstr ""
20359
20360 #. type: textblock
20361 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20362 msgid ""
20363 "When prompting for keys and passphrases, guestfish normally turns echoing "
20364 "off so you cannot see what you are typing.  If you are not worried about "
20365 "Tempest attacks and there is no one else in the room you can specify this "
20366 "flag to see what you are typing."
20367 msgstr ""
20368
20369 #. type: =item
20370 #: ../fish/guestfish.pod:224
20371 msgid "B<-f file>"
20372 msgstr ""
20373
20374 #. type: =item
20375 #: ../fish/guestfish.pod:226
20376 msgid "B<--file file>"
20377 msgstr ""
20378
20379 #. type: textblock
20380 #: ../fish/guestfish.pod:228
20381 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20382 msgstr ""
20383
20384 #. type: verbatim
20385 #: ../fish/guestfish.pod:231
20386 #, no-wrap
20387 msgid ""
20388 " #!/usr/bin/guestfish -f\n"
20389 "\n"
20390 msgstr ""
20391
20392 #. type: =item
20393 #: ../fish/guestfish.pod:233
20394 msgid "B<--format=raw|qcow2|..>"
20395 msgstr ""
20396
20397 #. type: =item
20398 #: ../fish/guestfish.pod:235
20399 msgid "B<--format>"
20400 msgstr ""
20401
20402 #. type: textblock
20403 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20404 msgid ""
20405 "The default for the I<-a> option is to auto-detect the format of the disk "
20406 "image.  Using this forces the disk format for I<-a> options which follow on "
20407 "the command line.  Using I<--format> with no argument switches back to auto-"
20408 "detection for subsequent I<-a> options."
20409 msgstr ""
20410
20411 #. type: verbatim
20412 #: ../fish/guestfish.pod:244
20413 #, no-wrap
20414 msgid ""
20415 " guestfish --format=raw -a disk.img\n"
20416 "\n"
20417 msgstr ""
20418
20419 #. type: textblock
20420 #: ../fish/guestfish.pod:246
20421 msgid "forces raw format (no auto-detection) for C<disk.img>."
20422 msgstr ""
20423
20424 #. type: verbatim
20425 #: ../fish/guestfish.pod:248
20426 #, no-wrap
20427 msgid ""
20428 " guestfish --format=raw -a disk.img --format -a another.img\n"
20429 "\n"
20430 msgstr ""
20431
20432 #. type: textblock
20433 #: ../fish/guestfish.pod:250
20434 msgid ""
20435 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20436 "detection for C<another.img>."
20437 msgstr ""
20438
20439 #. type: textblock
20440 #: ../fish/guestfish.pod:253
20441 msgid ""
20442 "If you have untrusted raw-format guest disk images, you should use this "
20443 "option to specify the disk format.  This avoids a possible security problem "
20444 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20445 msgstr ""
20446
20447 #. type: =item
20448 #: ../fish/guestfish.pod:258
20449 msgid "B<-i>"
20450 msgstr ""
20451
20452 #. type: =item
20453 #: ../fish/guestfish.pod:260
20454 msgid "B<--inspector>"
20455 msgstr ""
20456
20457 #. type: textblock
20458 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20459 msgid ""
20460 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20461 "system and mount filesystems as they would be mounted on the real virtual "
20462 "machine."
20463 msgstr ""
20464
20465 #. type: textblock
20466 #: ../fish/guestfish.pod:266
20467 msgid "Typical usage is either:"
20468 msgstr ""
20469
20470 #. type: verbatim
20471 #: ../fish/guestfish.pod:268
20472 #, no-wrap
20473 msgid ""
20474 " guestfish -d myguest -i\n"
20475 "\n"
20476 msgstr ""
20477
20478 #. type: textblock
20479 #: ../fish/guestfish.pod:270
20480 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20481 msgstr ""
20482
20483 #. type: verbatim
20484 #: ../fish/guestfish.pod:272
20485 #, no-wrap
20486 msgid ""
20487 " guestfish --ro -d myguest -i\n"
20488 "\n"
20489 msgstr ""
20490
20491 #. type: textblock
20492 #: ../fish/guestfish.pod:274
20493 msgid "(for active domains, readonly), or specify the block device directly:"
20494 msgstr ""
20495
20496 #. type: verbatim
20497 #: ../fish/guestfish.pod:276
20498 #, no-wrap
20499 msgid ""
20500 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20501 "\n"
20502 msgstr ""
20503
20504 #. type: textblock
20505 #: ../fish/guestfish.pod:278
20506 msgid ""
20507 "Note that the command line syntax changed slightly over older versions of "
20508 "guestfish.  You can still use the old syntax:"
20509 msgstr ""
20510
20511 #. type: verbatim
20512 #: ../fish/guestfish.pod:281
20513 #, no-wrap
20514 msgid ""
20515 " guestfish [--ro] -i disk.img\n"
20516 "\n"
20517 msgstr ""
20518
20519 #. type: verbatim
20520 #: ../fish/guestfish.pod:283
20521 #, no-wrap
20522 msgid ""
20523 " guestfish [--ro] -i libvirt-domain\n"
20524 "\n"
20525 msgstr ""
20526
20527 #. type: textblock
20528 #: ../fish/guestfish.pod:285
20529 msgid ""
20530 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20531 "then using other commands to mount the filesystems that were found."
20532 msgstr ""
20533
20534 #. type: =item
20535 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20536 msgid "B<--keys-from-stdin>"
20537 msgstr ""
20538
20539 #. type: textblock
20540 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20541 msgid ""
20542 "Read key or passphrase parameters from stdin.  The default is to try to read "
20543 "passphrases from the user by opening C</dev/tty>."
20544 msgstr ""
20545
20546 #. type: =item
20547 #: ../fish/guestfish.pod:294
20548 msgid "B<--listen>"
20549 msgstr ""
20550
20551 #. type: textblock
20552 #: ../fish/guestfish.pod:296
20553 msgid ""
20554 "Fork into the background and listen for remote commands.  See section L</"
20555 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20556 msgstr ""
20557
20558 #. type: =item
20559 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20560 msgid "B<--live>"
20561 msgstr ""
20562
20563 #. type: textblock
20564 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20565 msgid ""
20566 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20567 "ATTACHING TO RUNNING DAEMONS>)."
20568 msgstr ""
20569
20570 #. type: =item
20571 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20572 msgid "B<-m dev[:mountpoint[:options]]>"
20573 msgstr ""
20574
20575 #. type: =item
20576 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20577 msgid "B<--mount dev[:mountpoint[:options]]>"
20578 msgstr ""
20579
20580 #. type: textblock
20581 #: ../fish/guestfish.pod:308
20582 msgid "Mount the named partition or logical volume on the given mountpoint."
20583 msgstr ""
20584
20585 #. type: textblock
20586 #: ../fish/guestfish.pod:310
20587 msgid "If the mountpoint is omitted, it defaults to C</>."
20588 msgstr ""
20589
20590 #. type: textblock
20591 #: ../fish/guestfish.pod:312
20592 msgid "You have to mount something on C</> before most commands will work."
20593 msgstr ""
20594
20595 #. type: textblock
20596 #: ../fish/guestfish.pod:314
20597 msgid ""
20598 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20599 "launched."
20600 msgstr ""
20601
20602 #. type: textblock
20603 #: ../fish/guestfish.pod:317
20604 msgid ""
20605 "If you don't know what filesystems a disk image contains, you can either run "
20606 "guestfish without this option, then list the partitions, filesystems and LVs "
20607 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20608 "commands), or you can use the L<virt-filesystems(1)> program."
20609 msgstr ""
20610
20611 #. type: textblock
20612 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20613 msgid ""
20614 "The third (and rarely used) part of the mount parameter is the list of mount "
20615 "options used to mount the underlying filesystem.  If this is not given, then "
20616 "the mount options are either the empty string or C<ro> (the latter if the "
20617 "I<--ro> flag is used).  By specifying the mount options, you override this "
20618 "default choice.  Probably the only time you would use this is to enable ACLs "
20619 "and/or extended attributes if the filesystem can support them:"
20620 msgstr ""
20621
20622 #. type: verbatim
20623 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20624 #, no-wrap
20625 msgid ""
20626 " -m /dev/sda1:/:acl,user_xattr\n"
20627 "\n"
20628 msgstr ""
20629
20630 #. type: textblock
20631 #: ../fish/guestfish.pod:333
20632 msgid "Using this flag is equivalent to using the C<mount-options> command."
20633 msgstr ""
20634
20635 #. type: =item
20636 #: ../fish/guestfish.pod:335
20637 msgid "B<-n>"
20638 msgstr ""
20639
20640 #. type: =item
20641 #: ../fish/guestfish.pod:337
20642 msgid "B<--no-sync>"
20643 msgstr ""
20644
20645 #. type: textblock
20646 #: ../fish/guestfish.pod:339
20647 msgid ""
20648 "Disable autosync.  This is enabled by default.  See the discussion of "
20649 "autosync in the L<guestfs(3)> manpage."
20650 msgstr ""
20651
20652 #. type: =item
20653 #: ../fish/guestfish.pod:342
20654 msgid "B<-N type>"
20655 msgstr ""
20656
20657 #. type: =item
20658 #: ../fish/guestfish.pod:344
20659 msgid "B<--new type>"
20660 msgstr ""
20661
20662 #. type: =item
20663 #: ../fish/guestfish.pod:346
20664 msgid "B<-N help>"
20665 msgstr ""
20666
20667 #. type: textblock
20668 #: ../fish/guestfish.pod:348
20669 msgid ""
20670 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20671 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20672 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20673 "IMAGES> below."
20674 msgstr ""
20675
20676 #. type: =item
20677 #: ../fish/guestfish.pod:353
20678 msgid "B<--progress-bars>"
20679 msgstr ""
20680
20681 #. type: textblock
20682 #: ../fish/guestfish.pod:355
20683 msgid "Enable progress bars, even when guestfish is used non-interactively."
20684 msgstr ""
20685
20686 #. type: textblock
20687 #: ../fish/guestfish.pod:357
20688 msgid ""
20689 "Progress bars are enabled by default when guestfish is used as an "
20690 "interactive shell."
20691 msgstr ""
20692
20693 #. type: =item
20694 #: ../fish/guestfish.pod:360
20695 msgid "B<--no-progress-bars>"
20696 msgstr ""
20697
20698 #. type: textblock
20699 #: ../fish/guestfish.pod:362
20700 msgid "Disable progress bars."
20701 msgstr ""
20702
20703 #. type: =item
20704 #: ../fish/guestfish.pod:364
20705 msgid "B<--remote[=pid]>"
20706 msgstr ""
20707
20708 #. type: textblock
20709 #: ../fish/guestfish.pod:366
20710 msgid ""
20711 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20712 "CONTROL GUESTFISH OVER A SOCKET> below."
20713 msgstr ""
20714
20715 #. type: =item
20716 #: ../fish/guestfish.pod:369
20717 msgid "B<-r>"
20718 msgstr ""
20719
20720 #. type: =item
20721 #: ../fish/guestfish.pod:371
20722 msgid "B<--ro>"
20723 msgstr ""
20724
20725 #. type: textblock
20726 #: ../fish/guestfish.pod:373
20727 msgid ""
20728 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20729 "mounts are done read-only."
20730 msgstr ""
20731
20732 #. type: textblock
20733 #: ../fish/guestfish.pod:376
20734 msgid ""
20735 "The option must always be used if the disk image or virtual machine might be "
20736 "running, and is generally recommended in cases where you don't need write "
20737 "access to the disk."
20738 msgstr ""
20739
20740 #. type: textblock
20741 #: ../fish/guestfish.pod:380
20742 msgid ""
20743 "Note that prepared disk images created with I<-N> are not affected by this "
20744 "option.  Also commands like C<add> are not affected - you have to specify "
20745 "the C<readonly:true> option explicitly if you need it."
20746 msgstr ""
20747
20748 #. type: textblock
20749 #: ../fish/guestfish.pod:384
20750 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20751 msgstr ""
20752
20753 #. type: =item
20754 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20755 msgid "B<--selinux>"
20756 msgstr ""
20757
20758 #. type: textblock
20759 #: ../fish/guestfish.pod:388
20760 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20761 msgstr ""
20762
20763 #. type: =item
20764 #: ../fish/guestfish.pod:390
20765 msgid "B<-v>"
20766 msgstr ""
20767
20768 #. type: =item
20769 #: ../fish/guestfish.pod:392
20770 msgid "B<--verbose>"
20771 msgstr ""
20772
20773 #. type: textblock
20774 #: ../fish/guestfish.pod:394
20775 msgid ""
20776 "Enable very verbose messages.  This is particularly useful if you find a bug."
20777 msgstr ""
20778
20779 #. type: =item
20780 #: ../fish/guestfish.pod:397
20781 msgid "B<-V>"
20782 msgstr ""
20783
20784 #. type: =item
20785 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
20786 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
20787 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
20788 msgid "B<--version>"
20789 msgstr ""
20790
20791 #. type: textblock
20792 #: ../fish/guestfish.pod:401
20793 msgid "Display the guestfish / libguestfs version number and exit."
20794 msgstr ""
20795
20796 #. type: =item
20797 #: ../fish/guestfish.pod:403
20798 msgid "B<-w>"
20799 msgstr ""
20800
20801 #. type: =item
20802 #: ../fish/guestfish.pod:405
20803 msgid "B<--rw>"
20804 msgstr ""
20805
20806 #. type: textblock
20807 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20808 msgid ""
20809 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20810 "mounts are done read-write."
20811 msgstr ""
20812
20813 #. type: textblock
20814 #: ../fish/guestfish.pod:410
20815 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20816 msgstr ""
20817
20818 #. type: =item
20819 #: ../fish/guestfish.pod:412
20820 msgid "B<-x>"
20821 msgstr ""
20822
20823 #. type: textblock
20824 #: ../fish/guestfish.pod:414
20825 msgid "Echo each command before executing it."
20826 msgstr ""
20827
20828 #. type: =head1
20829 #: ../fish/guestfish.pod:418
20830 msgid "COMMANDS ON COMMAND LINE"
20831 msgstr ""
20832
20833 #. type: textblock
20834 #: ../fish/guestfish.pod:420
20835 msgid ""
20836 "Any additional (non-option) arguments are treated as commands to execute."
20837 msgstr ""
20838
20839 #. type: textblock
20840 #: ../fish/guestfish.pod:423
20841 msgid ""
20842 "Commands to execute should be separated by a colon (C<:>), where the colon "
20843 "is a separate parameter.  Thus:"
20844 msgstr ""
20845
20846 #. type: verbatim
20847 #: ../fish/guestfish.pod:426
20848 #, no-wrap
20849 msgid ""
20850 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20851 "\n"
20852 msgstr ""
20853
20854 #. type: textblock
20855 #: ../fish/guestfish.pod:428
20856 msgid ""
20857 "If there are no additional arguments, then we enter a shell, either an "
20858 "interactive shell with a prompt (if the input is a terminal) or a non-"
20859 "interactive shell."
20860 msgstr ""
20861
20862 #. type: textblock
20863 #: ../fish/guestfish.pod:432
20864 msgid ""
20865 "In either command line mode or non-interactive shell, the first command that "
20866 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20867 "prompt) if a command fails, you can continue to enter commands."
20868 msgstr ""
20869
20870 #. type: =head1
20871 #: ../fish/guestfish.pod:437
20872 msgid "USING launch (OR run)"
20873 msgstr ""
20874
20875 #. type: textblock
20876 #: ../fish/guestfish.pod:439
20877 msgid ""
20878 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20879 "then launch it, then mount any disks you need, and finally issue actions/"
20880 "commands.  So the general order of the day is:"
20881 msgstr ""
20882
20883 #. type: textblock
20884 #: ../fish/guestfish.pod:447
20885 msgid "add or -a/--add"
20886 msgstr ""
20887
20888 #. type: textblock
20889 #: ../fish/guestfish.pod:451
20890 msgid "launch (aka run)"
20891 msgstr ""
20892
20893 #. type: textblock
20894 #: ../fish/guestfish.pod:455
20895 msgid "mount or -m/--mount"
20896 msgstr ""
20897
20898 #. type: textblock
20899 #: ../fish/guestfish.pod:459
20900 msgid "any other commands"
20901 msgstr ""
20902
20903 #. type: textblock
20904 #: ../fish/guestfish.pod:463
20905 msgid ""
20906 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20907 "guest before mounting or performing any other commands."
20908 msgstr ""
20909
20910 #. type: textblock
20911 #: ../fish/guestfish.pod:466
20912 msgid ""
20913 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20914 "I<--new> options were given then C<run> is done automatically, simply "
20915 "because guestfish can't perform the action you asked for without doing this."
20916 msgstr ""
20917
20918 #. type: =head1
20919 #: ../fish/guestfish.pod:471
20920 msgid "OPENING DISKS FOR READ AND WRITE"
20921 msgstr ""
20922
20923 #. type: textblock
20924 #: ../fish/guestfish.pod:473
20925 msgid ""
20926 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20927 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20928 "I<-i> and I<-m> open disk images read-only or for writing."
20929 msgstr ""
20930
20931 #. type: textblock
20932 #: ../fish/guestfish.pod:478
20933 msgid ""
20934 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20935 "opening disk images supplied on the command line for write.  To open a disk "
20936 "image read-only you have to do I<-a image --ro>."
20937 msgstr ""
20938
20939 #. type: textblock
20940 #: ../fish/guestfish.pod:482
20941 msgid ""
20942 "This matters: If you accidentally open a live VM disk image writable then "
20943 "you will cause irreversible disk corruption."
20944 msgstr ""
20945
20946 #. type: textblock
20947 #: ../fish/guestfish.pod:485
20948 msgid ""
20949 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20950 "images will be opened read-only.  You will have to either specify "
20951 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20952 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20953 "access for disk images specified by those other command line options."
20954 msgstr ""
20955
20956 #. type: textblock
20957 #: ../fish/guestfish.pod:492
20958 msgid ""
20959 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20960 "which does nothing (it is already the default).  However it is highly "
20961 "recommended that you use this option to indicate that you need write access, "
20962 "and prepare your scripts for the day when this option will be required for "
20963 "write access."
20964 msgstr ""
20965
20966 #. type: textblock
20967 #: ../fish/guestfish.pod:498
20968 msgid ""
20969 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20970 "other libguestfs program apart from guestfish and guestmount."
20971 msgstr ""
20972
20973 #. type: =head1
20974 #: ../fish/guestfish.pod:501
20975 msgid "QUOTING"
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:503
20980 msgid ""
20981 "You can quote ordinary parameters using either single or double quotes.  For "
20982 "example:"
20983 msgstr ""
20984
20985 #. type: verbatim
20986 #: ../fish/guestfish.pod:506
20987 #, no-wrap
20988 msgid ""
20989 " add \"file with a space.img\"\n"
20990 "\n"
20991 msgstr ""
20992
20993 #. type: verbatim
20994 #: ../fish/guestfish.pod:508
20995 #, no-wrap
20996 msgid ""
20997 " rm '/file name'\n"
20998 "\n"
20999 msgstr ""
21000
21001 #. type: verbatim
21002 #: ../fish/guestfish.pod:510
21003 #, no-wrap
21004 msgid ""
21005 " rm '/\"'\n"
21006 "\n"
21007 msgstr ""
21008
21009 #. type: textblock
21010 #: ../fish/guestfish.pod:512
21011 msgid ""
21012 "A few commands require a list of strings to be passed.  For these, use a "
21013 "whitespace-separated list, enclosed in quotes.  Strings containing "
21014 "whitespace to be passed through must be enclosed in single quotes.  A "
21015 "literal single quote must be escaped with a backslash."
21016 msgstr ""
21017
21018 #. type: verbatim
21019 #: ../fish/guestfish.pod:517
21020 #, no-wrap
21021 msgid ""
21022 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
21023 " command \"/bin/echo 'foo      bar'\"\n"
21024 " command \"/bin/echo \\'foo\\'\"\n"
21025 "\n"
21026 msgstr ""
21027
21028 #. type: =head1
21029 #: ../fish/guestfish.pod:521
21030 msgid "OPTIONAL ARGUMENTS"
21031 msgstr ""
21032
21033 #. type: textblock
21034 #: ../fish/guestfish.pod:523
21035 msgid ""
21036 "Some commands take optional arguments.  These arguments appear in this "
21037 "documentation as C<[argname:..]>.  You can use them as in these examples:"
21038 msgstr ""
21039
21040 #. type: verbatim
21041 #: ../fish/guestfish.pod:527
21042 #, no-wrap
21043 msgid ""
21044 " add-drive-opts filename\n"
21045 "\n"
21046 msgstr ""
21047
21048 #. type: verbatim
21049 #: ../fish/guestfish.pod:529
21050 #, no-wrap
21051 msgid ""
21052 " add-drive-opts filename readonly:true\n"
21053 "\n"
21054 msgstr ""
21055
21056 #. type: verbatim
21057 #: ../fish/guestfish.pod:531
21058 #, no-wrap
21059 msgid ""
21060 " add-drive-opts filename format:qcow2 readonly:false\n"
21061 "\n"
21062 msgstr ""
21063
21064 #. type: textblock
21065 #: ../fish/guestfish.pod:533
21066 msgid ""
21067 "Each optional argument can appear at most once.  All optional arguments must "
21068 "appear after the required ones."
21069 msgstr ""
21070
21071 #. type: =head1
21072 #: ../fish/guestfish.pod:536
21073 msgid "NUMBERS"
21074 msgstr ""
21075
21076 #. type: textblock
21077 #: ../fish/guestfish.pod:538
21078 msgid ""
21079 "This section applies to all commands which can take integers as parameters."
21080 msgstr ""
21081
21082 #. type: =head2
21083 #: ../fish/guestfish.pod:541
21084 msgid "SIZE SUFFIX"
21085 msgstr ""
21086
21087 #. type: textblock
21088 #: ../fish/guestfish.pod:543
21089 msgid ""
21090 "When the command takes a parameter measured in bytes, you can use one of the "
21091 "following suffixes to specify kilobytes, megabytes and larger sizes:"
21092 msgstr ""
21093
21094 #. type: =item
21095 #: ../fish/guestfish.pod:549
21096 msgid "B<k> or B<K> or B<KiB>"
21097 msgstr ""
21098
21099 #. type: textblock
21100 #: ../fish/guestfish.pod:551
21101 msgid "The size in kilobytes (multiplied by 1024)."
21102 msgstr ""
21103
21104 #. type: =item
21105 #: ../fish/guestfish.pod:553
21106 msgid "B<KB>"
21107 msgstr ""
21108
21109 #. type: textblock
21110 #: ../fish/guestfish.pod:555
21111 msgid "The size in SI 1000 byte units."
21112 msgstr ""
21113
21114 #. type: =item
21115 #: ../fish/guestfish.pod:557
21116 msgid "B<M> or B<MiB>"
21117 msgstr ""
21118
21119 #. type: textblock
21120 #: ../fish/guestfish.pod:559
21121 msgid "The size in megabytes (multiplied by 1048576)."
21122 msgstr ""
21123
21124 #. type: =item
21125 #: ../fish/guestfish.pod:561
21126 msgid "B<MB>"
21127 msgstr ""
21128
21129 #. type: textblock
21130 #: ../fish/guestfish.pod:563
21131 msgid "The size in SI 1000000 byte units."
21132 msgstr ""
21133
21134 #. type: =item
21135 #: ../fish/guestfish.pod:565
21136 msgid "B<G> or B<GiB>"
21137 msgstr ""
21138
21139 #. type: textblock
21140 #: ../fish/guestfish.pod:567
21141 msgid "The size in gigabytes (multiplied by 2**30)."
21142 msgstr ""
21143
21144 #. type: =item
21145 #: ../fish/guestfish.pod:569
21146 msgid "B<GB>"
21147 msgstr ""
21148
21149 #. type: textblock
21150 #: ../fish/guestfish.pod:571
21151 msgid "The size in SI 10**9 byte units."
21152 msgstr ""
21153
21154 #. type: =item
21155 #: ../fish/guestfish.pod:573
21156 msgid "B<T> or B<TiB>"
21157 msgstr ""
21158
21159 #. type: textblock
21160 #: ../fish/guestfish.pod:575
21161 msgid "The size in terabytes (multiplied by 2**40)."
21162 msgstr ""
21163
21164 #. type: =item
21165 #: ../fish/guestfish.pod:577
21166 msgid "B<TB>"
21167 msgstr ""
21168
21169 #. type: textblock
21170 #: ../fish/guestfish.pod:579
21171 msgid "The size in SI 10**12 byte units."
21172 msgstr ""
21173
21174 #. type: =item
21175 #: ../fish/guestfish.pod:581
21176 msgid "B<P> or B<PiB>"
21177 msgstr ""
21178
21179 #. type: textblock
21180 #: ../fish/guestfish.pod:583
21181 msgid "The size in petabytes (multiplied by 2**50)."
21182 msgstr ""
21183
21184 #. type: =item
21185 #: ../fish/guestfish.pod:585
21186 msgid "B<PB>"
21187 msgstr ""
21188
21189 #. type: textblock
21190 #: ../fish/guestfish.pod:587
21191 msgid "The size in SI 10**15 byte units."
21192 msgstr ""
21193
21194 #. type: =item
21195 #: ../fish/guestfish.pod:589
21196 msgid "B<E> or B<EiB>"
21197 msgstr ""
21198
21199 #. type: textblock
21200 #: ../fish/guestfish.pod:591
21201 msgid "The size in exabytes (multiplied by 2**60)."
21202 msgstr ""
21203
21204 #. type: =item
21205 #: ../fish/guestfish.pod:593
21206 msgid "B<EB>"
21207 msgstr ""
21208
21209 #. type: textblock
21210 #: ../fish/guestfish.pod:595
21211 msgid "The size in SI 10**18 byte units."
21212 msgstr ""
21213
21214 #. type: =item
21215 #: ../fish/guestfish.pod:597
21216 msgid "B<Z> or B<ZiB>"
21217 msgstr ""
21218
21219 #. type: textblock
21220 #: ../fish/guestfish.pod:599
21221 msgid "The size in zettabytes (multiplied by 2**70)."
21222 msgstr ""
21223
21224 #. type: =item
21225 #: ../fish/guestfish.pod:601
21226 msgid "B<ZB>"
21227 msgstr ""
21228
21229 #. type: textblock
21230 #: ../fish/guestfish.pod:603
21231 msgid "The size in SI 10**21 byte units."
21232 msgstr ""
21233
21234 #. type: =item
21235 #: ../fish/guestfish.pod:605
21236 msgid "B<Y> or B<YiB>"
21237 msgstr ""
21238
21239 #. type: textblock
21240 #: ../fish/guestfish.pod:607
21241 msgid "The size in yottabytes (multiplied by 2**80)."
21242 msgstr ""
21243
21244 #. type: =item
21245 #: ../fish/guestfish.pod:609
21246 msgid "B<YB>"
21247 msgstr ""
21248
21249 #. type: textblock
21250 #: ../fish/guestfish.pod:611
21251 msgid "The size in SI 10**24 byte units."
21252 msgstr ""
21253
21254 #. type: verbatim
21255 #: ../fish/guestfish.pod:617
21256 #, no-wrap
21257 msgid ""
21258 " truncate-size /file 1G\n"
21259 "\n"
21260 msgstr ""
21261
21262 #. type: textblock
21263 #: ../fish/guestfish.pod:619
21264 msgid "would truncate the file to 1 gigabyte."
21265 msgstr ""
21266
21267 #. type: textblock
21268 #: ../fish/guestfish.pod:621
21269 msgid ""
21270 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21271 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21272 "suffix will probably not do what you expect."
21273 msgstr ""
21274
21275 #. type: =head2
21276 #: ../fish/guestfish.pod:625
21277 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21278 msgstr ""
21279
21280 #. type: textblock
21281 #: ../fish/guestfish.pod:627
21282 msgid ""
21283 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21284 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21285 msgstr ""
21286
21287 #. type: verbatim
21288 #: ../fish/guestfish.pod:630
21289 #, no-wrap
21290 msgid ""
21291 " 1234      decimal number 1234\n"
21292 " 02322     octal number, equivalent to decimal 1234\n"
21293 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21294 "\n"
21295 msgstr ""
21296
21297 #. type: textblock
21298 #: ../fish/guestfish.pod:634
21299 msgid ""
21300 "When using the C<chmod> command, you almost always want to specify an octal "
21301 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21302 "L<chmod(1)> program):"
21303 msgstr ""
21304
21305 #. type: verbatim
21306 #: ../fish/guestfish.pod:638
21307 #, no-wrap
21308 msgid ""
21309 " chmod 0777 /public  # OK\n"
21310 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21311 "\n"
21312 msgstr ""
21313
21314 #. type: textblock
21315 #: ../fish/guestfish.pod:641
21316 msgid ""
21317 "Commands that return numbers usually print them in decimal, but some "
21318 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21319 "octal, preceeded by C<0>)."
21320 msgstr ""
21321
21322 #. type: =head1
21323 #: ../fish/guestfish.pod:645
21324 msgid "WILDCARDS AND GLOBBING"
21325 msgstr ""
21326
21327 #. type: textblock
21328 #: ../fish/guestfish.pod:647
21329 msgid ""
21330 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
21331 "(globbing) by default.  So for example the following will not do what you "
21332 "expect:"
21333 msgstr ""
21334
21335 #. type: verbatim
21336 #: ../fish/guestfish.pod:651
21337 #, no-wrap
21338 msgid ""
21339 " rm-rf /home/*\n"
21340 "\n"
21341 msgstr ""
21342
21343 #. type: textblock
21344 #: ../fish/guestfish.pod:653
21345 msgid ""
21346 "Assuming you don't have a directory called literally C</home/*> then the "
21347 "above command will return an error."
21348 msgstr ""
21349
21350 #. type: textblock
21351 #: ../fish/guestfish.pod:656
21352 msgid "To perform wildcard expansion, use the C<glob> command."
21353 msgstr ""
21354
21355 #. type: verbatim
21356 #: ../fish/guestfish.pod:658
21357 #, no-wrap
21358 msgid ""
21359 " glob rm-rf /home/*\n"
21360 "\n"
21361 msgstr ""
21362
21363 #. type: textblock
21364 #: ../fish/guestfish.pod:660
21365 msgid ""
21366 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
21367 "many times), equivalent to:"
21368 msgstr ""
21369
21370 #. type: verbatim
21371 #: ../fish/guestfish.pod:663
21372 #, no-wrap
21373 msgid ""
21374 " rm-rf /home/jim\n"
21375 " rm-rf /home/joe\n"
21376 " rm-rf /home/mary\n"
21377 "\n"
21378 msgstr ""
21379
21380 #. type: textblock
21381 #: ../fish/guestfish.pod:667
21382 msgid "C<glob> only works on simple guest paths and not on device names."
21383 msgstr ""
21384
21385 #. type: textblock
21386 #: ../fish/guestfish.pod:669
21387 msgid ""
21388 "If you have several parameters, each containing a wildcard, then glob will "
21389 "perform a Cartesian product."
21390 msgstr ""
21391
21392 #. type: =head1
21393 #: ../fish/guestfish.pod:672
21394 msgid "COMMENTS"
21395 msgstr ""
21396
21397 #. type: textblock
21398 #: ../fish/guestfish.pod:674
21399 msgid ""
21400 "Any line which starts with a I<#> character is treated as a comment and "
21401 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21402 "a command.  For example:"
21403 msgstr ""
21404
21405 #. type: verbatim
21406 #: ../fish/guestfish.pod:678
21407 #, no-wrap
21408 msgid ""
21409 " # this is a comment\n"
21410 "         # this is a comment\n"
21411 " foo # NOT a comment\n"
21412 "\n"
21413 msgstr ""
21414
21415 #. type: textblock
21416 #: ../fish/guestfish.pod:682
21417 msgid "Blank lines are also ignored."
21418 msgstr ""
21419
21420 #. type: =head1
21421 #: ../fish/guestfish.pod:684
21422 msgid "RUNNING COMMANDS LOCALLY"
21423 msgstr ""
21424
21425 #. type: textblock
21426 #: ../fish/guestfish.pod:686
21427 msgid ""
21428 "Any line which starts with a I<!> character is treated as a command sent to "
21429 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21430 msgstr ""
21431
21432 #. type: verbatim
21433 #: ../fish/guestfish.pod:690
21434 #, no-wrap
21435 msgid ""
21436 " !mkdir local\n"
21437 " tgz-out /remote local/remote-data.tar.gz\n"
21438 "\n"
21439 msgstr ""
21440
21441 #. type: textblock
21442 #: ../fish/guestfish.pod:693
21443 msgid ""
21444 "will create a directory C<local> on the host, and then export the contents "
21445 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21446 "(See C<tgz-out>)."
21447 msgstr ""
21448
21449 #. type: textblock
21450 #: ../fish/guestfish.pod:697
21451 msgid ""
21452 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21453 "effect, due to the way that subprocesses work in Unix."
21454 msgstr ""
21455
21456 #. type: =head2
21457 #: ../fish/guestfish.pod:700
21458 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21459 msgstr ""
21460
21461 #. type: textblock
21462 #: ../fish/guestfish.pod:702
21463 msgid ""
21464 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21465 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21466 "and executed as guestfish commands."
21467 msgstr ""
21468
21469 #. type: textblock
21470 #: ../fish/guestfish.pod:706
21471 msgid ""
21472 "Thus you can use shell script to construct arbitrary guestfish commands "
21473 "which are then parsed by guestfish."
21474 msgstr ""
21475
21476 #. type: textblock
21477 #: ../fish/guestfish.pod:709
21478 msgid ""
21479 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21480 "through C</foo.100>) using guestfish commands alone.  However this is simple "
21481 "if we use a shell script to create the guestfish commands for us:"
21482 msgstr ""
21483
21484 #. type: verbatim
21485 #: ../fish/guestfish.pod:714
21486 #, no-wrap
21487 msgid ""
21488 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21489 "\n"
21490 msgstr ""
21491
21492 #. type: textblock
21493 #: ../fish/guestfish.pod:716
21494 msgid "or with names like C</foo.001>:"
21495 msgstr ""
21496
21497 #. type: verbatim
21498 #: ../fish/guestfish.pod:718
21499 #, no-wrap
21500 msgid ""
21501 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21502 "\n"
21503 msgstr ""
21504
21505 #. type: textblock
21506 #: ../fish/guestfish.pod:720
21507 msgid ""
21508 "When using guestfish interactively it can be helpful to just run the shell "
21509 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21510 "ordinary I<!> local command), see what guestfish commands it would run, and "
21511 "when you are happy with those prepend the C<E<lt>> character to run the "
21512 "guestfish commands for real."
21513 msgstr ""
21514
21515 #. type: =head1
21516 #: ../fish/guestfish.pod:726
21517 msgid "PIPES"
21518 msgstr ""
21519
21520 #. type: textblock
21521 #: ../fish/guestfish.pod:728
21522 msgid ""
21523 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21524 "command (a guestfish command) to the second command (any host command).  For "
21525 "example:"
21526 msgstr ""
21527
21528 #. type: verbatim
21529 #: ../fish/guestfish.pod:732
21530 #, no-wrap
21531 msgid ""
21532 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21533 "\n"
21534 msgstr ""
21535
21536 #. type: textblock
21537 #: ../fish/guestfish.pod:734
21538 msgid ""
21539 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21540 "program).  The above command would list all accounts in the guest filesystem "
21541 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21542 msgstr ""
21543
21544 #. type: verbatim
21545 #: ../fish/guestfish.pod:739
21546 #, no-wrap
21547 msgid ""
21548 " hexdump /bin/ls | head\n"
21549 " list-devices | tail -1\n"
21550 " tgz-out / - | tar ztf -\n"
21551 "\n"
21552 msgstr ""
21553
21554 #. type: textblock
21555 #: ../fish/guestfish.pod:743
21556 msgid ""
21557 "The space before the pipe symbol is required, any space after the pipe "
21558 "symbol is optional.  Everything after the pipe symbol is just passed "
21559 "straight to the host shell, so it can contain redirections, globs and "
21560 "anything else that makes sense on the host side."
21561 msgstr ""
21562
21563 #. type: textblock
21564 #: ../fish/guestfish.pod:748
21565 msgid ""
21566 "To use a literal argument which begins with a pipe symbol, you have to quote "
21567 "it, eg:"
21568 msgstr ""
21569
21570 #. type: verbatim
21571 #: ../fish/guestfish.pod:751
21572 #, no-wrap
21573 msgid ""
21574 " echo \"|\"\n"
21575 "\n"
21576 msgstr ""
21577
21578 #. type: =head1
21579 #: ../fish/guestfish.pod:753
21580 msgid "HOME DIRECTORIES"
21581 msgstr ""
21582
21583 #. type: textblock
21584 #: ../fish/guestfish.pod:755
21585 msgid ""
21586 "If a parameter starts with the character C<~> then the tilde may be expanded "
21587 "as a home directory path (either C<~> for the current user's home directory, "
21588 "or C<~user> for another user)."
21589 msgstr ""
21590
21591 #. type: textblock
21592 #: ../fish/guestfish.pod:759
21593 msgid ""
21594 "Note that home directory expansion happens for users known I<on the host>, "
21595 "not in the guest filesystem."
21596 msgstr ""
21597
21598 #. type: textblock
21599 #: ../fish/guestfish.pod:762
21600 msgid ""
21601 "To use a literal argument which begins with a tilde, you have to quote it, "
21602 "eg:"
21603 msgstr ""
21604
21605 #. type: verbatim
21606 #: ../fish/guestfish.pod:765
21607 #, no-wrap
21608 msgid ""
21609 " echo \"~\"\n"
21610 "\n"
21611 msgstr ""
21612
21613 #. type: textblock
21614 #: ../fish/guestfish.pod:769
21615 msgid ""
21616 "Libguestfs has some support for Linux guests encrypted according to the "
21617 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21618 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21619 "LUKS is supported."
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:774
21624 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21625 msgstr ""
21626
21627 #. type: verbatim
21628 #: ../fish/guestfish.pod:776
21629 #, no-wrap
21630 msgid ""
21631 " ><fs> vfs-type /dev/sda2\n"
21632 " crypto_LUKS\n"
21633 "\n"
21634 msgstr ""
21635
21636 #. type: textblock
21637 #: ../fish/guestfish.pod:779
21638 msgid ""
21639 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21640 "device called C</dev/mapper/luksdev>."
21641 msgstr ""
21642
21643 #. type: verbatim
21644 #: ../fish/guestfish.pod:782
21645 #, no-wrap
21646 msgid ""
21647 " ><fs> luks-open /dev/sda2 luksdev\n"
21648 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21649 "\n"
21650 msgstr ""
21651
21652 #. type: textblock
21653 #: ../fish/guestfish.pod:785
21654 msgid ""
21655 "Finally you have to tell LVM to scan for volume groups on the newly created "
21656 "mapper device:"
21657 msgstr ""
21658
21659 #. type: verbatim
21660 #: ../fish/guestfish.pod:788
21661 #, no-wrap
21662 msgid ""
21663 " vgscan\n"
21664 " vg-activate-all true\n"
21665 "\n"
21666 msgstr ""
21667
21668 #. type: textblock
21669 #: ../fish/guestfish.pod:791
21670 msgid "The logical volume(s) can now be mounted in the usual way."
21671 msgstr ""
21672
21673 #. type: textblock
21674 #: ../fish/guestfish.pod:793
21675 msgid ""
21676 "Before closing a LUKS device you must unmount any logical volumes on it and "
21677 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21678 "one.  Then you can close the mapper device:"
21679 msgstr ""
21680
21681 #. type: verbatim
21682 #: ../fish/guestfish.pod:797
21683 #, no-wrap
21684 msgid ""
21685 " vg-activate false /dev/VG\n"
21686 " luks-close /dev/mapper/luksdev\n"
21687 "\n"
21688 msgstr ""
21689
21690 #. type: =head1
21691 #: ../fish/guestfish.pod:800
21692 msgid "WINDOWS PATHS"
21693 msgstr ""
21694
21695 #. type: textblock
21696 #: ../fish/guestfish.pod:802
21697 msgid ""
21698 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21699 "letters and paths (with some limitations).  The following commands are "
21700 "equivalent:"
21701 msgstr ""
21702
21703 #. type: verbatim
21704 #: ../fish/guestfish.pod:806
21705 #, no-wrap
21706 msgid ""
21707 " file /WINDOWS/system32/config/system.LOG\n"
21708 "\n"
21709 msgstr ""
21710
21711 #. type: verbatim
21712 #: ../fish/guestfish.pod:808
21713 #, no-wrap
21714 msgid ""
21715 " file win:\\windows\\system32\\config\\system.log\n"
21716 "\n"
21717 msgstr ""
21718
21719 #. type: verbatim
21720 #: ../fish/guestfish.pod:810
21721 #, no-wrap
21722 msgid ""
21723 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21724 "\n"
21725 msgstr ""
21726
21727 #. type: textblock
21728 #: ../fish/guestfish.pod:812
21729 msgid ""
21730 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21731 "where the drive is mounted, prepending that to the path, changing all "
21732 "backslash characters to forward slash, then resolving the result using L</"
21733 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21734 "the parameter might be rewritten like this:"
21735 msgstr ""
21736
21737 #. type: verbatim
21738 #: ../fish/guestfish.pod:818
21739 #, no-wrap
21740 msgid ""
21741 " win:e:\\foo\\bar => /e/FOO/bar\n"
21742 "\n"
21743 msgstr ""
21744
21745 #. type: textblock
21746 #: ../fish/guestfish.pod:820
21747 msgid "This only works in argument positions that expect a path."
21748 msgstr ""
21749
21750 #. type: =head1
21751 #: ../fish/guestfish.pod:822
21752 msgid "UPLOADING AND DOWNLOADING FILES"
21753 msgstr ""
21754
21755 #. type: textblock
21756 #: ../fish/guestfish.pod:824
21757 msgid ""
21758 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21759 "others which upload from or download to a local file, you can use the "
21760 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21761 msgstr ""
21762
21763 #. type: verbatim
21764 #: ../fish/guestfish.pod:828
21765 #, no-wrap
21766 msgid ""
21767 " upload - /foo\n"
21768 "\n"
21769 msgstr ""
21770
21771 #. type: textblock
21772 #: ../fish/guestfish.pod:830
21773 msgid ""
21774 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21775 msgstr ""
21776
21777 #. type: verbatim
21778 #: ../fish/guestfish.pod:833
21779 #, no-wrap
21780 msgid ""
21781 " tar-out /etc - | tar tf -\n"
21782 "\n"
21783 msgstr ""
21784
21785 #. type: textblock
21786 #: ../fish/guestfish.pod:835
21787 msgid ""
21788 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21789 "command (see L</PIPES>)."
21790 msgstr ""
21791
21792 #. type: textblock
21793 #: ../fish/guestfish.pod:838
21794 msgid ""
21795 "When using C<-> to read from stdin, the input is read up to the end of "
21796 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21797 "some arbitrary end marker:"
21798 msgstr ""
21799
21800 #. type: verbatim
21801 #: ../fish/guestfish.pod:842
21802 #, no-wrap
21803 msgid ""
21804 " upload -<<END /foo\n"
21805 " input line 1\n"
21806 " input line 2\n"
21807 " input line 3\n"
21808 " END\n"
21809 "\n"
21810 msgstr ""
21811
21812 #. type: textblock
21813 #: ../fish/guestfish.pod:848
21814 msgid ""
21815 "Any string of characters can be used instead of C<END>.  The end marker must "
21816 "appear on a line of its own, without any preceeding or following characters "
21817 "(not even spaces)."
21818 msgstr ""
21819
21820 #. type: textblock
21821 #: ../fish/guestfish.pod:852
21822 msgid ""
21823 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21824 "upload local files (so-called \"FileIn\" parameters in the generator)."
21825 msgstr ""
21826
21827 #. type: =head1
21828 #: ../fish/guestfish.pod:855
21829 msgid "EXIT ON ERROR BEHAVIOUR"
21830 msgstr ""
21831
21832 #. type: textblock
21833 #: ../fish/guestfish.pod:857
21834 msgid ""
21835 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21836 "taking commands from a human over a tty), and will exit on the first error "
21837 "in non-interactive mode (scripts, commands given on the command line)."
21838 msgstr ""
21839
21840 #. type: textblock
21841 #: ../fish/guestfish.pod:862
21842 msgid ""
21843 "If you prefix a command with a I<-> character, then that command will not "
21844 "cause guestfish to exit, even if that (one) command returns an error."
21845 msgstr ""
21846
21847 #. type: =head1
21848 #: ../fish/guestfish.pod:866
21849 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21850 msgstr ""
21851
21852 #. type: textblock
21853 #: ../fish/guestfish.pod:868
21854 msgid ""
21855 "Guestfish can be remote-controlled over a socket.  This is useful "
21856 "particularly in shell scripts where you want to make several different "
21857 "changes to a filesystem, but you don't want the overhead of starting up a "
21858 "guestfish process each time."
21859 msgstr ""
21860
21861 #. type: textblock
21862 #: ../fish/guestfish.pod:873
21863 msgid "Start a guestfish server process using:"
21864 msgstr ""
21865
21866 #. type: verbatim
21867 #: ../fish/guestfish.pod:875
21868 #, no-wrap
21869 msgid ""
21870 " eval \"`guestfish --listen`\"\n"
21871 "\n"
21872 msgstr ""
21873
21874 #. type: textblock
21875 #: ../fish/guestfish.pod:877
21876 msgid "and then send it commands by doing:"
21877 msgstr ""
21878
21879 #. type: verbatim
21880 #: ../fish/guestfish.pod:879
21881 #, no-wrap
21882 msgid ""
21883 " guestfish --remote cmd [...]\n"
21884 "\n"
21885 msgstr ""
21886
21887 #. type: textblock
21888 #: ../fish/guestfish.pod:881
21889 msgid "To cause the server to exit, send it the exit command:"
21890 msgstr ""
21891
21892 #. type: verbatim
21893 #: ../fish/guestfish.pod:883
21894 #, no-wrap
21895 msgid ""
21896 " guestfish --remote exit\n"
21897 "\n"
21898 msgstr ""
21899
21900 #. type: textblock
21901 #: ../fish/guestfish.pod:885
21902 msgid ""
21903 "Note that the server will normally exit if there is an error in a command.  "
21904 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21905 "BEHAVIOUR>."
21906 msgstr ""
21907
21908 #. type: =head2
21909 #: ../fish/guestfish.pod:889
21910 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21911 msgstr ""
21912
21913 #. type: textblock
21914 #: ../fish/guestfish.pod:891
21915 msgid ""
21916 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21917 "is how the I<--remote> option knows where to send the commands.  You can "
21918 "have several guestfish listener processes running using:"
21919 msgstr ""
21920
21921 #. type: verbatim
21922 #: ../fish/guestfish.pod:895
21923 #, no-wrap
21924 msgid ""
21925 " eval \"`guestfish --listen`\"\n"
21926 " pid1=$GUESTFISH_PID\n"
21927 " eval \"`guestfish --listen`\"\n"
21928 " pid2=$GUESTFISH_PID\n"
21929 " ...\n"
21930 " guestfish --remote=$pid1 cmd\n"
21931 " guestfish --remote=$pid2 cmd\n"
21932 "\n"
21933 msgstr ""
21934
21935 #. type: =head2
21936 #: ../fish/guestfish.pod:903
21937 msgid "REMOTE CONTROL AND CSH"
21938 msgstr ""
21939
21940 #. type: textblock
21941 #: ../fish/guestfish.pod:905
21942 msgid ""
21943 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21944 "option:"
21945 msgstr ""
21946
21947 #. type: verbatim
21948 #: ../fish/guestfish.pod:908
21949 #, no-wrap
21950 msgid ""
21951 " eval \"`guestfish --listen --csh`\"\n"
21952 "\n"
21953 msgstr ""
21954
21955 #. type: =head2
21956 #: ../fish/guestfish.pod:910
21957 msgid "REMOTE CONTROL DETAILS"
21958 msgstr ""
21959
21960 #. type: textblock
21961 #: ../fish/guestfish.pod:912
21962 msgid ""
21963 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21964 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21965 "and C<$PID> is the process ID of the server."
21966 msgstr ""
21967
21968 #. type: textblock
21969 #: ../fish/guestfish.pod:916
21970 msgid "Guestfish client and server versions must match exactly."
21971 msgstr ""
21972
21973 #. type: =head1
21974 #: ../fish/guestfish.pod:918
21975 msgid "PREPARED DISK IMAGES"
21976 msgstr ""
21977
21978 #. type: textblock
21979 #: ../fish/guestfish.pod:920
21980 msgid ""
21981 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21982 "preformatted disk images that guestfish can make for you to save typing.  "
21983 "This is particularly useful for testing purposes.  This option is used "
21984 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21985 "can be mixed with I<-a>)."
21986 msgstr ""
21987
21988 #. type: textblock
21989 #: ../fish/guestfish.pod:926
21990 msgid ""
21991 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21992 "the second and so on.  Existing files in the current directory are "
21993 "I<overwritten>."
21994 msgstr ""
21995
21996 #. type: textblock
21997 #: ../fish/guestfish.pod:930
21998 msgid ""
21999 "The type briefly describes how the disk should be sized, partitioned, how "
22000 "filesystem(s) should be created, and how content should be added.  "
22001 "Optionally the type can be followed by extra parameters, separated by C<:> "
22002 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
22003 "allocated disk, containing a single partition, with the partition formatted "
22004 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
22005 "disk instead."
22006 msgstr ""
22007
22008 #. type: textblock
22009 #: ../fish/guestfish.pod:938
22010 msgid "To list the available types and any extra parameters they take, run:"
22011 msgstr ""
22012
22013 #. type: textblock
22014 #: ../fish/guestfish.pod:942
22015 msgid ""
22016 "Note that the prepared filesystem is not mounted.  You would usually have to "
22017 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
22018 msgstr ""
22019
22020 #. type: textblock
22021 #: ../fish/guestfish.pod:946
22022 msgid ""
22023 "If any I<-N> or I<--new> options are given, the guest is automatically "
22024 "launched."
22025 msgstr ""
22026
22027 #. type: textblock
22028 #: ../fish/guestfish.pod:951
22029 msgid "Create a 100MB disk with an ext4-formatted partition:"
22030 msgstr ""
22031
22032 #. type: verbatim
22033 #: ../fish/guestfish.pod:953
22034 #, no-wrap
22035 msgid ""
22036 " guestfish -N fs:ext4\n"
22037 "\n"
22038 msgstr ""
22039
22040 #. type: textblock
22041 #: ../fish/guestfish.pod:955
22042 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
22043 msgstr ""
22044
22045 #. type: verbatim
22046 #: ../fish/guestfish.pod:957
22047 #, no-wrap
22048 msgid ""
22049 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
22050 "\n"
22051 msgstr ""
22052
22053 #. type: textblock
22054 #: ../fish/guestfish.pod:959
22055 msgid "Create a blank 200MB disk:"
22056 msgstr ""
22057
22058 #. type: verbatim
22059 #: ../fish/guestfish.pod:961
22060 #, no-wrap
22061 msgid ""
22062 " guestfish -N disk:200M\n"
22063 "\n"
22064 msgstr ""
22065
22066 #. type: =head1
22067 #: ../fish/guestfish.pod:963
22068 msgid "PROGRESS BARS"
22069 msgstr ""
22070
22071 #. type: textblock
22072 #: ../fish/guestfish.pod:965
22073 msgid ""
22074 "Some (not all) long-running commands send progress notification messages as "
22075 "they are running.  Guestfish turns these messages into progress bars."
22076 msgstr ""
22077
22078 #. type: textblock
22079 #: ../fish/guestfish.pod:969
22080 msgid ""
22081 "When a command that supports progress bars takes longer than two seconds to "
22082 "run, and if progress bars are enabled, then you will see one appearing below "
22083 "the command:"
22084 msgstr ""
22085
22086 #. type: verbatim
22087 #: ../fish/guestfish.pod:973
22088 #, no-wrap
22089 msgid ""
22090 " ><fs> copy-size /large-file /another-file 2048M\n"
22091 " / 10% [#####-----------------------------------------] 00:30\n"
22092 "\n"
22093 msgstr ""
22094
22095 #. type: textblock
22096 #: ../fish/guestfish.pod:976
22097 msgid ""
22098 "The spinner on the left hand side moves round once for every progress "
22099 "notification received from the backend.  This is a (reasonably) golden "
22100 "assurance that the command is \"doing something\" even if the progress bar "
22101 "is not moving, because the command is able to send the progress "
22102 "notifications.  When the bar reaches 100% and the command finishes, the "
22103 "spinner disappears."
22104 msgstr ""
22105
22106 #. type: textblock
22107 #: ../fish/guestfish.pod:983
22108 msgid ""
22109 "Progress bars are enabled by default when guestfish is used interactively.  "
22110 "You can enable them even for non-interactive modes using I<--progress-bars>, "
22111 "and you can disable them completely using I<--no-progress-bars>."
22112 msgstr ""
22113
22114 #. type: =head1
22115 #: ../fish/guestfish.pod:988
22116 msgid "GUESTFISH COMMANDS"
22117 msgstr ""
22118
22119 #. type: textblock
22120 #: ../fish/guestfish.pod:990
22121 msgid ""
22122 "The commands in this section are guestfish convenience commands, in other "
22123 "words, they are not part of the L<guestfs(3)> API."
22124 msgstr ""
22125
22126 #. type: =head2
22127 #: ../fish/guestfish.pod:993
22128 msgid "help"
22129 msgstr ""
22130
22131 #. type: verbatim
22132 #: ../fish/guestfish.pod:995
22133 #, no-wrap
22134 msgid ""
22135 " help\n"
22136 " help cmd\n"
22137 "\n"
22138 msgstr ""
22139
22140 #. type: textblock
22141 #: ../fish/guestfish.pod:998
22142 msgid "Without any parameter, this provides general help."
22143 msgstr ""
22144
22145 #. type: textblock
22146 #: ../fish/guestfish.pod:1000
22147 msgid "With a C<cmd> parameter, this displays detailed help for that command."
22148 msgstr ""
22149
22150 #. type: =head2
22151 #: ../fish/guestfish.pod:1002
22152 msgid "quit | exit"
22153 msgstr ""
22154
22155 #. type: textblock
22156 #: ../fish/guestfish.pod:1004
22157 msgid "This exits guestfish.  You can also use C<^D> key."
22158 msgstr ""
22159
22160 #. type: textblock
22161 #: ../fish/guestfish.pod:1006
22162 msgid "@FISH_COMMANDS@"
22163 msgstr ""
22164
22165 #. type: =head1
22166 #: ../fish/guestfish.pod:1008
22167 msgid "COMMANDS"
22168 msgstr ""
22169
22170 #. type: =head1
22171 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
22172 msgid "EXIT CODE"
22173 msgstr ""
22174
22175 #. type: textblock
22176 #: ../fish/guestfish.pod:1014
22177 msgid ""
22178 "guestfish returns 0 if the commands completed without error, or 1 if there "
22179 "was an error."
22180 msgstr ""
22181
22182 #. type: =item
22183 #: ../fish/guestfish.pod:1021
22184 msgid "EDITOR"
22185 msgstr ""
22186
22187 #. type: textblock
22188 #: ../fish/guestfish.pod:1023
22189 msgid ""
22190 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
22191 "C<vi>."
22192 msgstr ""
22193
22194 #. type: =item
22195 #: ../fish/guestfish.pod:1026
22196 msgid "GUESTFISH_DISPLAY_IMAGE"
22197 msgstr ""
22198
22199 #. type: textblock
22200 #: ../fish/guestfish.pod:1028
22201 msgid ""
22202 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
22203 "If not set, it uses L<display(1)>."
22204 msgstr ""
22205
22206 #. type: =item
22207 #: ../fish/guestfish.pod:1031
22208 msgid "GUESTFISH_PID"
22209 msgstr ""
22210
22211 #. type: textblock
22212 #: ../fish/guestfish.pod:1033
22213 msgid ""
22214 "Used with the I<--remote> option to specify the remote guestfish process to "
22215 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22216 msgstr ""
22217
22218 #. type: =item
22219 #: ../fish/guestfish.pod:1037
22220 msgid "HEXEDITOR"
22221 msgstr ""
22222
22223 #. type: textblock
22224 #: ../fish/guestfish.pod:1039
22225 msgid ""
22226 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22227 "not specified, the external L<hexedit(1)> program is used."
22228 msgstr ""
22229
22230 #. type: =item
22231 #: ../fish/guestfish.pod:1043
22232 msgid "HOME"
22233 msgstr ""
22234
22235 #. type: textblock
22236 #: ../fish/guestfish.pod:1045
22237 msgid ""
22238 "If compiled with GNU readline support, various files in the home directory "
22239 "can be used.  See L</FILES>."
22240 msgstr ""
22241
22242 #. type: textblock
22243 #: ../fish/guestfish.pod:1054
22244 msgid ""
22245 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22246 "effect as using the B<-v> option."
22247 msgstr ""
22248
22249 #. type: textblock
22250 #: ../fish/guestfish.pod:1066
22251 msgid ""
22252 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22253 "the discussion of paths in L<guestfs(3)>."
22254 msgstr ""
22255
22256 #. type: textblock
22257 #: ../fish/guestfish.pod:1077
22258 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22259 msgstr ""
22260
22261 #. type: =item
22262 #: ../fish/guestfish.pod:1079
22263 msgid "PAGER"
22264 msgstr ""
22265
22266 #. type: textblock
22267 #: ../fish/guestfish.pod:1081
22268 msgid ""
22269 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22270 "C<more>."
22271 msgstr ""
22272
22273 #. type: =head1
22274 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
22275 msgid "FILES"
22276 msgstr ""
22277
22278 #. type: =item
22279 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
22280 msgid "$HOME/.libguestfs-tools.rc"
22281 msgstr ""
22282
22283 #. type: =item
22284 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
22285 msgid "/etc/libguestfs-tools.conf"
22286 msgstr ""
22287
22288 #. type: textblock
22289 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
22290 msgid ""
22291 "This configuration file controls the default read-only or read-write mode "
22292 "(I<--ro> or I<--rw>)."
22293 msgstr ""
22294
22295 #. type: textblock
22296 #: ../fish/guestfish.pod:1108
22297 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22298 msgstr ""
22299
22300 #. type: =item
22301 #: ../fish/guestfish.pod:1110
22302 msgid "$HOME/.guestfish"
22303 msgstr ""
22304
22305 #. type: textblock
22306 #: ../fish/guestfish.pod:1112
22307 msgid ""
22308 "If compiled with GNU readline support, then the command history is saved in "
22309 "this file."
22310 msgstr ""
22311
22312 #. type: =item
22313 #: ../fish/guestfish.pod:1115
22314 msgid "$HOME/.inputrc"
22315 msgstr ""
22316
22317 #. type: =item
22318 #: ../fish/guestfish.pod:1117
22319 msgid "/etc/inputrc"
22320 msgstr ""
22321
22322 #. type: textblock
22323 #: ../fish/guestfish.pod:1119
22324 msgid ""
22325 "If compiled with GNU readline support, then these files can be used to "
22326 "configure readline.  For further information, please see L<readline(3)/"
22327 "INITIALIZATION FILE>."
22328 msgstr ""
22329
22330 #. type: textblock
22331 #: ../fish/guestfish.pod:1123
22332 msgid "To write rules which only apply to guestfish, use:"
22333 msgstr ""
22334
22335 #. type: verbatim
22336 #: ../fish/guestfish.pod:1125
22337 #, no-wrap
22338 msgid ""
22339 " $if guestfish\n"
22340 " ...\n"
22341 " $endif\n"
22342 "\n"
22343 msgstr ""
22344
22345 #. type: textblock
22346 #: ../fish/guestfish.pod:1129
22347 msgid ""
22348 "Variables that you can set in inputrc that change the behaviour of guestfish "
22349 "in useful ways include:"
22350 msgstr ""
22351
22352 #. type: =item
22353 #: ../fish/guestfish.pod:1134
22354 msgid "completion-ignore-case (default: on)"
22355 msgstr ""
22356
22357 #. type: textblock
22358 #: ../fish/guestfish.pod:1136
22359 msgid ""
22360 "By default, guestfish will ignore case when tab-completing paths on the "
22361 "disk.  Use:"
22362 msgstr ""
22363
22364 #. type: verbatim
22365 #: ../fish/guestfish.pod:1139
22366 #, no-wrap
22367 msgid ""
22368 " set completion-ignore-case off\n"
22369 "\n"
22370 msgstr ""
22371
22372 #. type: textblock
22373 #: ../fish/guestfish.pod:1141
22374 msgid "to make guestfish case sensitive."
22375 msgstr ""
22376
22377 #. type: =item
22378 #: ../fish/guestfish.pod:1145
22379 msgid "test1.img"
22380 msgstr ""
22381
22382 #. type: =item
22383 #: ../fish/guestfish.pod:1147
22384 msgid "test2.img (etc)"
22385 msgstr ""
22386
22387 #. type: textblock
22388 #: ../fish/guestfish.pod:1149
22389 msgid ""
22390 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22391 "will be created in the file C<test1.img> in the current directory.  The "
22392 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
22393 "the same name will be overwritten."
22394 msgstr ""
22395
22396 #. type: textblock
22397 #: ../fish/guestfish.pod:1158
22398 msgid ""
22399 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
22400 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
22401 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
22402 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
22403 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
22404 ">, L<display(1)>, L<hexedit(1)>."
22405 msgstr ""
22406
22407 #. type: textblock
22408 #: ../fish/guestfish.pod:1189 ../test-tool/libguestfs-test-tool.pod:102
22409 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22410 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22411 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22412 msgid ""
22413 "This program is free software; you can redistribute it and/or modify it "
22414 "under the terms of the GNU General Public License as published by the Free "
22415 "Software Foundation; either version 2 of the License, or (at your option) "
22416 "any later version."
22417 msgstr ""
22418
22419 #. type: textblock
22420 #: ../fish/guestfish.pod:1194 ../test-tool/libguestfs-test-tool.pod:107
22421 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22422 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22423 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22424 msgid ""
22425 "This program is distributed in the hope that it will be useful, but WITHOUT "
22426 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22427 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22428 "more details."
22429 msgstr ""
22430
22431 #. type: textblock
22432 #: ../fish/guestfish.pod:1199 ../test-tool/libguestfs-test-tool.pod:112
22433 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22434 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22435 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22436 msgid ""
22437 "You should have received a copy of the GNU General Public License along with "
22438 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
22439 "Ave, Cambridge, MA 02139, USA."
22440 msgstr ""
22441
22442 #. type: =head2
22443 #: ../fish/guestfish-actions.pod:1
22444 msgid "add-cdrom"
22445 msgstr ""
22446
22447 #. type: verbatim
22448 #: ../fish/guestfish-actions.pod:3
22449 #, no-wrap
22450 msgid ""
22451 " add-cdrom filename\n"
22452 "\n"
22453 msgstr ""
22454
22455 #. type: textblock
22456 #: ../fish/guestfish-actions.pod:15
22457 msgid ""
22458 "This call checks for the existence of C<filename>.  This stops you from "
22459 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22460 "and C<http:> URLs.  To specify those, use the general L</config> call "
22461 "instead."
22462 msgstr ""
22463
22464 #. type: textblock
22465 #: ../fish/guestfish-actions.pod:22
22466 msgid ""
22467 "If you just want to add an ISO file (often you use this as an efficient way "
22468 "to transfer large files into the guest), then you should probably use L</add-"
22469 "drive-ro> instead."
22470 msgstr ""
22471
22472 #. type: =head2
22473 #: ../fish/guestfish-actions.pod:35
22474 msgid "add-domain"
22475 msgstr ""
22476
22477 #. type: =head2
22478 #: ../fish/guestfish-actions.pod:37
22479 msgid "domain"
22480 msgstr ""
22481
22482 #. type: verbatim
22483 #: ../fish/guestfish-actions.pod:39
22484 #, no-wrap
22485 msgid ""
22486 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22487 "\n"
22488 msgstr ""
22489
22490 #. type: textblock
22491 #: ../fish/guestfish-actions.pod:41
22492 msgid ""
22493 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
22494 "It works by connecting to libvirt, requesting the domain and domain XML from "
22495 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
22496 msgstr ""
22497
22498 #. type: textblock
22499 #: ../fish/guestfish-actions.pod:76
22500 msgid ""
22501 "The other optional parameters are passed directly through to L</add-drive-"
22502 "opts>."
22503 msgstr ""
22504
22505 #. type: textblock
22506 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22507 #: ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3103
22508 #: ../fish/guestfish-actions.pod:3276 ../fish/guestfish-actions.pod:3411
22509 msgid ""
22510 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
22511 msgstr ""
22512
22513 #. type: =head2
22514 #: ../fish/guestfish-actions.pod:81
22515 msgid "add-drive"
22516 msgstr ""
22517
22518 #. type: verbatim
22519 #: ../fish/guestfish-actions.pod:83
22520 #, no-wrap
22521 msgid ""
22522 " add-drive filename\n"
22523 "\n"
22524 msgstr ""
22525
22526 #. type: textblock
22527 #: ../fish/guestfish-actions.pod:85
22528 msgid ""
22529 "This function is the equivalent of calling L</add-drive-opts> with no "
22530 "optional parameters, so the disk is added writable, with the format being "
22531 "detected automatically."
22532 msgstr ""
22533
22534 #. type: textblock
22535 #: ../fish/guestfish-actions.pod:89
22536 msgid ""
22537 "Automatic detection of the format opens you up to a potential security hole "
22538 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22539 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22540 "you should think about replacing calls to this function with calls to L</add-"
22541 "drive-opts>, and specifying the format."
22542 msgstr ""
22543
22544 #. type: =head2
22545 #: ../fish/guestfish-actions.pod:96
22546 msgid "add-drive-opts"
22547 msgstr ""
22548
22549 #. type: =head2
22550 #: ../fish/guestfish-actions.pod:98
22551 msgid "add"
22552 msgstr ""
22553
22554 #. type: verbatim
22555 #: ../fish/guestfish-actions.pod:100
22556 #, no-wrap
22557 msgid ""
22558 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22559 "\n"
22560 msgstr ""
22561
22562 #. type: textblock
22563 #: ../fish/guestfish-actions.pod:127
22564 msgid ""
22565 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22566 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22567 "include C<raw> and C<qcow2>."
22568 msgstr ""
22569
22570 #. type: textblock
22571 #: ../fish/guestfish-actions.pod:138
22572 msgid ""
22573 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22574 "add-drive-with-if> call (q.v.)"
22575 msgstr ""
22576
22577 #. type: =head2
22578 #: ../fish/guestfish-actions.pod:145
22579 msgid "add-drive-ro"
22580 msgstr ""
22581
22582 #. type: =head2
22583 #: ../fish/guestfish-actions.pod:147
22584 msgid "add-ro"
22585 msgstr ""
22586
22587 #. type: verbatim
22588 #: ../fish/guestfish-actions.pod:149
22589 #, no-wrap
22590 msgid ""
22591 " add-drive-ro filename\n"
22592 "\n"
22593 msgstr ""
22594
22595 #. type: textblock
22596 #: ../fish/guestfish-actions.pod:151
22597 msgid ""
22598 "This function is the equivalent of calling L</add-drive-opts> with the "
22599 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22600 "is added read-only, with the format being detected automatically."
22601 msgstr ""
22602
22603 #. type: =head2
22604 #: ../fish/guestfish-actions.pod:156
22605 msgid "add-drive-ro-with-if"
22606 msgstr ""
22607
22608 #. type: verbatim
22609 #: ../fish/guestfish-actions.pod:158
22610 #, no-wrap
22611 msgid ""
22612 " add-drive-ro-with-if filename iface\n"
22613 "\n"
22614 msgstr ""
22615
22616 #. type: textblock
22617 #: ../fish/guestfish-actions.pod:160
22618 msgid ""
22619 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22620 "interface emulation to use at run time."
22621 msgstr ""
22622
22623 #. type: =head2
22624 #: ../fish/guestfish-actions.pod:170
22625 msgid "add-drive-with-if"
22626 msgstr ""
22627
22628 #. type: verbatim
22629 #: ../fish/guestfish-actions.pod:172
22630 #, no-wrap
22631 msgid ""
22632 " add-drive-with-if filename iface\n"
22633 "\n"
22634 msgstr ""
22635
22636 #. type: textblock
22637 #: ../fish/guestfish-actions.pod:174
22638 msgid ""
22639 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22640 "interface emulation to use at run time."
22641 msgstr ""
22642
22643 #. type: =head2
22644 #: ../fish/guestfish-actions.pod:184
22645 msgid "aug-clear"
22646 msgstr ""
22647
22648 #. type: verbatim
22649 #: ../fish/guestfish-actions.pod:186
22650 #, no-wrap
22651 msgid ""
22652 " aug-clear augpath\n"
22653 "\n"
22654 msgstr ""
22655
22656 #. type: =head2
22657 #: ../fish/guestfish-actions.pod:191
22658 msgid "aug-close"
22659 msgstr ""
22660
22661 #. type: verbatim
22662 #: ../fish/guestfish-actions.pod:193
22663 #, no-wrap
22664 msgid ""
22665 " aug-close\n"
22666 "\n"
22667 msgstr ""
22668
22669 #. type: textblock
22670 #: ../fish/guestfish-actions.pod:195
22671 msgid ""
22672 "Close the current Augeas handle and free up any resources used by it.  After "
22673 "calling this, you have to call L</aug-init> again before you can use any "
22674 "other Augeas functions."
22675 msgstr ""
22676
22677 #. type: =head2
22678 #: ../fish/guestfish-actions.pod:200
22679 msgid "aug-defnode"
22680 msgstr ""
22681
22682 #. type: verbatim
22683 #: ../fish/guestfish-actions.pod:202
22684 #, no-wrap
22685 msgid ""
22686 " aug-defnode name expr val\n"
22687 "\n"
22688 msgstr ""
22689
22690 #. type: textblock
22691 #: ../fish/guestfish-actions.pod:207
22692 msgid ""
22693 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22694 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22695 "containing that single node."
22696 msgstr ""
22697
22698 #. type: =head2
22699 #: ../fish/guestfish-actions.pod:215
22700 msgid "aug-defvar"
22701 msgstr ""
22702
22703 #. type: verbatim
22704 #: ../fish/guestfish-actions.pod:217
22705 #, no-wrap
22706 msgid ""
22707 " aug-defvar name expr\n"
22708 "\n"
22709 msgstr ""
22710
22711 #. type: =head2
22712 #: ../fish/guestfish-actions.pod:226
22713 msgid "aug-get"
22714 msgstr ""
22715
22716 #. type: verbatim
22717 #: ../fish/guestfish-actions.pod:228
22718 #, no-wrap
22719 msgid ""
22720 " aug-get augpath\n"
22721 "\n"
22722 msgstr ""
22723
22724 #. type: =head2
22725 #: ../fish/guestfish-actions.pod:233
22726 msgid "aug-init"
22727 msgstr ""
22728
22729 #. type: verbatim
22730 #: ../fish/guestfish-actions.pod:235
22731 #, no-wrap
22732 msgid ""
22733 " aug-init root flags\n"
22734 "\n"
22735 msgstr ""
22736
22737 #. type: textblock
22738 #: ../fish/guestfish-actions.pod:241
22739 msgid "You must call this before using any other L</aug-*> commands."
22740 msgstr ""
22741
22742 #. type: textblock
22743 #: ../fish/guestfish-actions.pod:276
22744 msgid "Do not load the tree in L</aug-init>."
22745 msgstr ""
22746
22747 #. type: textblock
22748 #: ../fish/guestfish-actions.pod:280
22749 msgid "To close the handle, you can call L</aug-close>."
22750 msgstr ""
22751
22752 #. type: =head2
22753 #: ../fish/guestfish-actions.pod:284
22754 msgid "aug-insert"
22755 msgstr ""
22756
22757 #. type: verbatim
22758 #: ../fish/guestfish-actions.pod:286
22759 #, no-wrap
22760 msgid ""
22761 " aug-insert augpath label true|false\n"
22762 "\n"
22763 msgstr ""
22764
22765 #. type: =head2
22766 #: ../fish/guestfish-actions.pod:296
22767 msgid "aug-load"
22768 msgstr ""
22769
22770 #. type: verbatim
22771 #: ../fish/guestfish-actions.pod:298
22772 #, no-wrap
22773 msgid ""
22774 " aug-load\n"
22775 "\n"
22776 msgstr ""
22777
22778 #. type: =head2
22779 #: ../fish/guestfish-actions.pod:305
22780 msgid "aug-ls"
22781 msgstr ""
22782
22783 #. type: verbatim
22784 #: ../fish/guestfish-actions.pod:307
22785 #, no-wrap
22786 msgid ""
22787 " aug-ls augpath\n"
22788 "\n"
22789 msgstr ""
22790
22791 #. type: textblock
22792 #: ../fish/guestfish-actions.pod:309
22793 msgid ""
22794 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22795 "resulting nodes into alphabetical order."
22796 msgstr ""
22797
22798 #. type: =head2
22799 #: ../fish/guestfish-actions.pod:312
22800 msgid "aug-match"
22801 msgstr ""
22802
22803 #. type: verbatim
22804 #: ../fish/guestfish-actions.pod:314
22805 #, no-wrap
22806 msgid ""
22807 " aug-match augpath\n"
22808 "\n"
22809 msgstr ""
22810
22811 #. type: =head2
22812 #: ../fish/guestfish-actions.pod:320
22813 msgid "aug-mv"
22814 msgstr ""
22815
22816 #. type: verbatim
22817 #: ../fish/guestfish-actions.pod:322
22818 #, no-wrap
22819 msgid ""
22820 " aug-mv src dest\n"
22821 "\n"
22822 msgstr ""
22823
22824 #. type: =head2
22825 #: ../fish/guestfish-actions.pod:327
22826 msgid "aug-rm"
22827 msgstr ""
22828
22829 #. type: verbatim
22830 #: ../fish/guestfish-actions.pod:329
22831 #, no-wrap
22832 msgid ""
22833 " aug-rm augpath\n"
22834 "\n"
22835 msgstr ""
22836
22837 #. type: =head2
22838 #: ../fish/guestfish-actions.pod:335
22839 msgid "aug-save"
22840 msgstr ""
22841
22842 #. type: verbatim
22843 #: ../fish/guestfish-actions.pod:337
22844 #, no-wrap
22845 msgid ""
22846 " aug-save\n"
22847 "\n"
22848 msgstr ""
22849
22850 #. type: textblock
22851 #: ../fish/guestfish-actions.pod:341
22852 msgid ""
22853 "The flags which were passed to L</aug-init> affect exactly how files are "
22854 "saved."
22855 msgstr ""
22856
22857 #. type: =head2
22858 #: ../fish/guestfish-actions.pod:344
22859 msgid "aug-set"
22860 msgstr ""
22861
22862 #. type: verbatim
22863 #: ../fish/guestfish-actions.pod:346
22864 #, no-wrap
22865 msgid ""
22866 " aug-set augpath val\n"
22867 "\n"
22868 msgstr ""
22869
22870 #. type: textblock
22871 #: ../fish/guestfish-actions.pod:350
22872 msgid ""
22873 "In the Augeas API, it is possible to clear a node by setting the value to "
22874 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22875 "this call.  Instead you must use the L</aug-clear> call."
22876 msgstr ""
22877
22878 #. type: =head2
22879 #: ../fish/guestfish-actions.pod:355
22880 msgid "available"
22881 msgstr ""
22882
22883 #. type: verbatim
22884 #: ../fish/guestfish-actions.pod:357
22885 #, no-wrap
22886 msgid ""
22887 " available 'groups ...'\n"
22888 "\n"
22889 msgstr ""
22890
22891 #. type: textblock
22892 #: ../fish/guestfish-actions.pod:363
22893 msgid ""
22894 "The libguestfs groups, and the functions that those groups correspond to, "
22895 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22896 "runtime by calling L</available-all-groups>."
22897 msgstr ""
22898
22899 #. type: textblock
22900 #: ../fish/guestfish-actions.pod:387
22901 msgid "You must call L</launch> before calling this function."
22902 msgstr ""
22903
22904 #. type: textblock
22905 #: ../fish/guestfish-actions.pod:409
22906 msgid ""
22907 "This call was added in version C<1.0.80>.  In previous versions of "
22908 "libguestfs all you could do would be to speculatively execute a command to "
22909 "find out if the daemon implemented it.  See also L</version>."
22910 msgstr ""
22911
22912 #. type: =head2
22913 #: ../fish/guestfish-actions.pod:416
22914 msgid "available-all-groups"
22915 msgstr ""
22916
22917 #. type: verbatim
22918 #: ../fish/guestfish-actions.pod:418
22919 #, no-wrap
22920 msgid ""
22921 " available-all-groups\n"
22922 "\n"
22923 msgstr ""
22924
22925 #. type: textblock
22926 #: ../fish/guestfish-actions.pod:420
22927 msgid ""
22928 "This command returns a list of all optional groups that this daemon knows "
22929 "about.  Note this returns both supported and unsupported groups.  To find "
22930 "out which ones the daemon can actually support you have to call L</"
22931 "available> on each member of the returned list."
22932 msgstr ""
22933
22934 #. type: textblock
22935 #: ../fish/guestfish-actions.pod:426
22936 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22937 msgstr ""
22938
22939 #. type: =head2
22940 #: ../fish/guestfish-actions.pod:428
22941 msgid "base64-in"
22942 msgstr ""
22943
22944 #. type: verbatim
22945 #: ../fish/guestfish-actions.pod:430
22946 #, no-wrap
22947 msgid ""
22948 " base64-in (base64file|-) filename\n"
22949 "\n"
22950 msgstr ""
22951
22952 #. type: textblock
22953 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
22954 #: ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837
22955 #: ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230
22956 #: ../fish/guestfish-actions.pod:4606 ../fish/guestfish-actions.pod:4618
22957 #: ../fish/guestfish-actions.pod:4629 ../fish/guestfish-actions.pod:4640
22958 #: ../fish/guestfish-actions.pod:4692 ../fish/guestfish-actions.pod:4701
22959 #: ../fish/guestfish-actions.pod:4755 ../fish/guestfish-actions.pod:4778
22960 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22961 msgstr ""
22962
22963 #. type: =head2
22964 #: ../fish/guestfish-actions.pod:437
22965 msgid "base64-out"
22966 msgstr ""
22967
22968 #. type: verbatim
22969 #: ../fish/guestfish-actions.pod:439
22970 #, no-wrap
22971 msgid ""
22972 " base64-out filename (base64file|-)\n"
22973 "\n"
22974 msgstr ""
22975
22976 #. type: =head2
22977 #: ../fish/guestfish-actions.pod:446
22978 msgid "blockdev-flushbufs"
22979 msgstr ""
22980
22981 #. type: verbatim
22982 #: ../fish/guestfish-actions.pod:448
22983 #, no-wrap
22984 msgid ""
22985 " blockdev-flushbufs device\n"
22986 "\n"
22987 msgstr ""
22988
22989 #. type: =head2
22990 #: ../fish/guestfish-actions.pod:455
22991 msgid "blockdev-getbsz"
22992 msgstr ""
22993
22994 #. type: verbatim
22995 #: ../fish/guestfish-actions.pod:457
22996 #, no-wrap
22997 msgid ""
22998 " blockdev-getbsz device\n"
22999 "\n"
23000 msgstr ""
23001
23002 #. type: =head2
23003 #: ../fish/guestfish-actions.pod:466
23004 msgid "blockdev-getro"
23005 msgstr ""
23006
23007 #. type: verbatim
23008 #: ../fish/guestfish-actions.pod:468
23009 #, no-wrap
23010 msgid ""
23011 " blockdev-getro device\n"
23012 "\n"
23013 msgstr ""
23014
23015 #. type: =head2
23016 #: ../fish/guestfish-actions.pod:475
23017 msgid "blockdev-getsize64"
23018 msgstr ""
23019
23020 #. type: verbatim
23021 #: ../fish/guestfish-actions.pod:477
23022 #, no-wrap
23023 msgid ""
23024 " blockdev-getsize64 device\n"
23025 "\n"
23026 msgstr ""
23027
23028 #. type: textblock
23029 #: ../fish/guestfish-actions.pod:481
23030 msgid "See also L</blockdev-getsz>."
23031 msgstr ""
23032
23033 #. type: =head2
23034 #: ../fish/guestfish-actions.pod:485
23035 msgid "blockdev-getss"
23036 msgstr ""
23037
23038 #. type: verbatim
23039 #: ../fish/guestfish-actions.pod:487
23040 #, no-wrap
23041 msgid ""
23042 " blockdev-getss device\n"
23043 "\n"
23044 msgstr ""
23045
23046 #. type: textblock
23047 #: ../fish/guestfish-actions.pod:492
23048 msgid ""
23049 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
23050 msgstr ""
23051
23052 #. type: =head2
23053 #: ../fish/guestfish-actions.pod:497
23054 msgid "blockdev-getsz"
23055 msgstr ""
23056
23057 #. type: verbatim
23058 #: ../fish/guestfish-actions.pod:499
23059 #, no-wrap
23060 msgid ""
23061 " blockdev-getsz device\n"
23062 "\n"
23063 msgstr ""
23064
23065 #. type: textblock
23066 #: ../fish/guestfish-actions.pod:504
23067 msgid ""
23068 "See also L</blockdev-getss> for the real sector size of the device, and L</"
23069 "blockdev-getsize64> for the more useful I<size in bytes>."
23070 msgstr ""
23071
23072 #. type: =head2
23073 #: ../fish/guestfish-actions.pod:510
23074 msgid "blockdev-rereadpt"
23075 msgstr ""
23076
23077 #. type: verbatim
23078 #: ../fish/guestfish-actions.pod:512
23079 #, no-wrap
23080 msgid ""
23081 " blockdev-rereadpt device\n"
23082 "\n"
23083 msgstr ""
23084
23085 #. type: =head2
23086 #: ../fish/guestfish-actions.pod:518
23087 msgid "blockdev-setbsz"
23088 msgstr ""
23089
23090 #. type: verbatim
23091 #: ../fish/guestfish-actions.pod:520
23092 #, no-wrap
23093 msgid ""
23094 " blockdev-setbsz device blocksize\n"
23095 "\n"
23096 msgstr ""
23097
23098 #. type: =head2
23099 #: ../fish/guestfish-actions.pod:529
23100 msgid "blockdev-setro"
23101 msgstr ""
23102
23103 #. type: verbatim
23104 #: ../fish/guestfish-actions.pod:531
23105 #, no-wrap
23106 msgid ""
23107 " blockdev-setro device\n"
23108 "\n"
23109 msgstr ""
23110
23111 #. type: =head2
23112 #: ../fish/guestfish-actions.pod:537
23113 msgid "blockdev-setrw"
23114 msgstr ""
23115
23116 #. type: verbatim
23117 #: ../fish/guestfish-actions.pod:539
23118 #, no-wrap
23119 msgid ""
23120 " blockdev-setrw device\n"
23121 "\n"
23122 msgstr ""
23123
23124 #. type: =head2
23125 #: ../fish/guestfish-actions.pod:545
23126 msgid "case-sensitive-path"
23127 msgstr ""
23128
23129 #. type: verbatim
23130 #: ../fish/guestfish-actions.pod:547
23131 #, no-wrap
23132 msgid ""
23133 " case-sensitive-path path\n"
23134 "\n"
23135 msgstr ""
23136
23137 #. type: textblock
23138 #: ../fish/guestfish-actions.pod:571
23139 msgid ""
23140 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
23141 "WINDOWS/system32\"> (the exact return value would depend on details of how "
23142 "the directories were originally created under Windows)."
23143 msgstr ""
23144
23145 #. type: textblock
23146 #: ../fish/guestfish-actions.pod:579
23147 msgid "See also L</realpath>."
23148 msgstr ""
23149
23150 #. type: =head2
23151 #: ../fish/guestfish-actions.pod:581
23152 msgid "cat"
23153 msgstr ""
23154
23155 #. type: verbatim
23156 #: ../fish/guestfish-actions.pod:583
23157 #, no-wrap
23158 msgid ""
23159 " cat path\n"
23160 "\n"
23161 msgstr ""
23162
23163 #. type: textblock
23164 #: ../fish/guestfish-actions.pod:587
23165 msgid ""
23166 "Note that this function cannot correctly handle binary files (specifically, "
23167 "files containing C<\\0> character which is treated as end of string).  For "
23168 "those you need to use the L</read-file> or L</download> functions which have "
23169 "a more complex interface."
23170 msgstr ""
23171
23172 #. type: =head2
23173 #: ../fish/guestfish-actions.pod:595
23174 msgid "checksum"
23175 msgstr ""
23176
23177 #. type: verbatim
23178 #: ../fish/guestfish-actions.pod:597
23179 #, no-wrap
23180 msgid ""
23181 " checksum csumtype path\n"
23182 "\n"
23183 msgstr ""
23184
23185 #. type: textblock
23186 #: ../fish/guestfish-actions.pod:640
23187 msgid "To get the checksum for a device, use L</checksum-device>."
23188 msgstr ""
23189
23190 #. type: textblock
23191 #: ../fish/guestfish-actions.pod:642
23192 msgid "To get the checksums for many files, use L</checksums-out>."
23193 msgstr ""
23194
23195 #. type: =head2
23196 #: ../fish/guestfish-actions.pod:644
23197 msgid "checksum-device"
23198 msgstr ""
23199
23200 #. type: verbatim
23201 #: ../fish/guestfish-actions.pod:646
23202 #, no-wrap
23203 msgid ""
23204 " checksum-device csumtype device\n"
23205 "\n"
23206 msgstr ""
23207
23208 #. type: textblock
23209 #: ../fish/guestfish-actions.pod:648
23210 msgid ""
23211 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
23212 "device named C<device>.  For the types of checksums supported see the L</"
23213 "checksum> command."
23214 msgstr ""
23215
23216 #. type: =head2
23217 #: ../fish/guestfish-actions.pod:652
23218 msgid "checksums-out"
23219 msgstr ""
23220
23221 #. type: verbatim
23222 #: ../fish/guestfish-actions.pod:654
23223 #, no-wrap
23224 msgid ""
23225 " checksums-out csumtype directory (sumsfile|-)\n"
23226 "\n"
23227 msgstr ""
23228
23229 #. type: =head2
23230 #: ../fish/guestfish-actions.pod:670
23231 msgid "chmod"
23232 msgstr ""
23233
23234 #. type: verbatim
23235 #: ../fish/guestfish-actions.pod:672
23236 #, no-wrap
23237 msgid ""
23238 " chmod mode path\n"
23239 "\n"
23240 msgstr ""
23241
23242 #. type: =head2
23243 #: ../fish/guestfish-actions.pod:683
23244 msgid "chown"
23245 msgstr ""
23246
23247 #. type: verbatim
23248 #: ../fish/guestfish-actions.pod:685
23249 #, no-wrap
23250 msgid ""
23251 " chown owner group path\n"
23252 "\n"
23253 msgstr ""
23254
23255 #. type: =head2
23256 #: ../fish/guestfish-actions.pod:693
23257 msgid "command"
23258 msgstr ""
23259
23260 #. type: verbatim
23261 #: ../fish/guestfish-actions.pod:695
23262 #, no-wrap
23263 msgid ""
23264 " command 'arguments ...'\n"
23265 "\n"
23266 msgstr ""
23267
23268 #. type: textblock
23269 #: ../fish/guestfish-actions.pod:702
23270 msgid ""
23271 "The single parameter is an argv-style list of arguments.  The first element "
23272 "is the name of the program to run.  Subsequent elements are parameters.  The "
23273 "list must be non-empty (ie. must contain a program name).  Note that the "
23274 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23275 msgstr ""
23276
23277 #. type: =head2
23278 #: ../fish/guestfish-actions.pod:730
23279 msgid "command-lines"
23280 msgstr ""
23281
23282 #. type: verbatim
23283 #: ../fish/guestfish-actions.pod:732
23284 #, no-wrap
23285 msgid ""
23286 " command-lines 'arguments ...'\n"
23287 "\n"
23288 msgstr ""
23289
23290 #. type: textblock
23291 #: ../fish/guestfish-actions.pod:734
23292 msgid ""
23293 "This is the same as L</command>, but splits the result into a list of lines."
23294 msgstr ""
23295
23296 #. type: textblock
23297 #: ../fish/guestfish-actions.pod:737
23298 msgid "See also: L</sh-lines>"
23299 msgstr ""
23300
23301 #. type: =head2
23302 #: ../fish/guestfish-actions.pod:742
23303 msgid "config"
23304 msgstr ""
23305
23306 #. type: verbatim
23307 #: ../fish/guestfish-actions.pod:744
23308 #, no-wrap
23309 msgid ""
23310 " config qemuparam qemuvalue\n"
23311 "\n"
23312 msgstr ""
23313
23314 #. type: =head2
23315 #: ../fish/guestfish-actions.pod:755
23316 msgid "copy-size"
23317 msgstr ""
23318
23319 #. type: verbatim
23320 #: ../fish/guestfish-actions.pod:757
23321 #, no-wrap
23322 msgid ""
23323 " copy-size src dest size\n"
23324 "\n"
23325 msgstr ""
23326
23327 #. type: =head2
23328 #: ../fish/guestfish-actions.pod:765
23329 msgid "cp"
23330 msgstr ""
23331
23332 #. type: verbatim
23333 #: ../fish/guestfish-actions.pod:767
23334 #, no-wrap
23335 msgid ""
23336 " cp src dest\n"
23337 "\n"
23338 msgstr ""
23339
23340 #. type: =head2
23341 #: ../fish/guestfish-actions.pod:772
23342 msgid "cp-a"
23343 msgstr ""
23344
23345 #. type: verbatim
23346 #: ../fish/guestfish-actions.pod:774
23347 #, no-wrap
23348 msgid ""
23349 " cp-a src dest\n"
23350 "\n"
23351 msgstr ""
23352
23353 #. type: =head2
23354 #: ../fish/guestfish-actions.pod:779
23355 msgid "dd"
23356 msgstr ""
23357
23358 #. type: verbatim
23359 #: ../fish/guestfish-actions.pod:781
23360 #, no-wrap
23361 msgid ""
23362 " dd src dest\n"
23363 "\n"
23364 msgstr ""
23365
23366 #. type: textblock
23367 #: ../fish/guestfish-actions.pod:788
23368 msgid ""
23369 "If the destination is a device, it must be as large or larger than the "
23370 "source file or device, otherwise the copy will fail.  This command cannot do "
23371 "partial copies (see L</copy-size>)."
23372 msgstr ""
23373
23374 #. type: =head2
23375 #: ../fish/guestfish-actions.pod:792
23376 msgid "df"
23377 msgstr ""
23378
23379 #. type: verbatim
23380 #: ../fish/guestfish-actions.pod:794
23381 #, no-wrap
23382 msgid ""
23383 " df\n"
23384 "\n"
23385 msgstr ""
23386
23387 #. type: textblock
23388 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
23389 msgid ""
23390 "This command is mostly useful for interactive sessions.  It is I<not> "
23391 "intended that you try to parse the output string.  Use L</statvfs> from "
23392 "programs."
23393 msgstr ""
23394
23395 #. type: =head2
23396 #: ../fish/guestfish-actions.pod:802
23397 msgid "df-h"
23398 msgstr ""
23399
23400 #. type: verbatim
23401 #: ../fish/guestfish-actions.pod:804
23402 #, no-wrap
23403 msgid ""
23404 " df-h\n"
23405 "\n"
23406 msgstr ""
23407
23408 #. type: =head2
23409 #: ../fish/guestfish-actions.pod:813
23410 msgid "dmesg"
23411 msgstr ""
23412
23413 #. type: verbatim
23414 #: ../fish/guestfish-actions.pod:815
23415 #, no-wrap
23416 msgid ""
23417 " dmesg\n"
23418 "\n"
23419 msgstr ""
23420
23421 #. type: textblock
23422 #: ../fish/guestfish-actions.pod:821
23423 msgid ""
23424 "Another way to get the same information is to enable verbose messages with "
23425 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23426 "before running the program."
23427 msgstr ""
23428
23429 #. type: =head2
23430 #: ../fish/guestfish-actions.pod:826
23431 msgid "download"
23432 msgstr ""
23433
23434 #. type: verbatim
23435 #: ../fish/guestfish-actions.pod:828
23436 #, no-wrap
23437 msgid ""
23438 " download remotefilename (filename|-)\n"
23439 "\n"
23440 msgstr ""
23441
23442 #. type: textblock
23443 #: ../fish/guestfish-actions.pod:835
23444 msgid "See also L</upload>, L</cat>."
23445 msgstr ""
23446
23447 #. type: =head2
23448 #: ../fish/guestfish-actions.pod:839
23449 msgid "download-offset"
23450 msgstr ""
23451
23452 #. type: verbatim
23453 #: ../fish/guestfish-actions.pod:841
23454 #, no-wrap
23455 msgid ""
23456 " download-offset remotefilename (filename|-) offset size\n"
23457 "\n"
23458 msgstr ""
23459
23460 #. type: textblock
23461 #: ../fish/guestfish-actions.pod:849
23462 msgid ""
23463 "Note that there is no limit on the amount of data that can be downloaded "
23464 "with this call, unlike with L</pread>, and this call always reads the full "
23465 "amount unless an error occurs."
23466 msgstr ""
23467
23468 #. type: textblock
23469 #: ../fish/guestfish-actions.pod:854
23470 msgid "See also L</download>, L</pread>."
23471 msgstr ""
23472
23473 #. type: =head2
23474 #: ../fish/guestfish-actions.pod:858
23475 msgid "drop-caches"
23476 msgstr ""
23477
23478 #. type: verbatim
23479 #: ../fish/guestfish-actions.pod:860
23480 #, no-wrap
23481 msgid ""
23482 " drop-caches whattodrop\n"
23483 "\n"
23484 msgstr ""
23485
23486 #. type: =head2
23487 #: ../fish/guestfish-actions.pod:872
23488 msgid "du"
23489 msgstr ""
23490
23491 #. type: verbatim
23492 #: ../fish/guestfish-actions.pod:874
23493 #, no-wrap
23494 msgid ""
23495 " du path\n"
23496 "\n"
23497 msgstr ""
23498
23499 #. type: =head2
23500 #: ../fish/guestfish-actions.pod:886
23501 msgid "e2fsck-f"
23502 msgstr ""
23503
23504 #. type: verbatim
23505 #: ../fish/guestfish-actions.pod:888
23506 #, no-wrap
23507 msgid ""
23508 " e2fsck-f device\n"
23509 "\n"
23510 msgstr ""
23511
23512 #. type: textblock
23513 #: ../fish/guestfish-actions.pod:894
23514 msgid ""
23515 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23516 "should use L</fsck>."
23517 msgstr ""
23518
23519 #. type: =head2
23520 #: ../fish/guestfish-actions.pod:897
23521 msgid "echo-daemon"
23522 msgstr ""
23523
23524 #. type: verbatim
23525 #: ../fish/guestfish-actions.pod:899
23526 #, no-wrap
23527 msgid ""
23528 " echo-daemon 'words ...'\n"
23529 "\n"
23530 msgstr ""
23531
23532 #. type: textblock
23533 #: ../fish/guestfish-actions.pod:906
23534 msgid "See also L</ping-daemon>."
23535 msgstr ""
23536
23537 #. type: =head2
23538 #: ../fish/guestfish-actions.pod:908
23539 msgid "egrep"
23540 msgstr ""
23541
23542 #. type: verbatim
23543 #: ../fish/guestfish-actions.pod:910
23544 #, no-wrap
23545 msgid ""
23546 " egrep regex path\n"
23547 "\n"
23548 msgstr ""
23549
23550 #. type: =head2
23551 #: ../fish/guestfish-actions.pod:918
23552 msgid "egrepi"
23553 msgstr ""
23554
23555 #. type: verbatim
23556 #: ../fish/guestfish-actions.pod:920
23557 #, no-wrap
23558 msgid ""
23559 " egrepi regex path\n"
23560 "\n"
23561 msgstr ""
23562
23563 #. type: =head2
23564 #: ../fish/guestfish-actions.pod:928
23565 msgid "equal"
23566 msgstr ""
23567
23568 #. type: verbatim
23569 #: ../fish/guestfish-actions.pod:930
23570 #, no-wrap
23571 msgid ""
23572 " equal file1 file2\n"
23573 "\n"
23574 msgstr ""
23575
23576 #. type: =head2
23577 #: ../fish/guestfish-actions.pod:937
23578 msgid "exists"
23579 msgstr ""
23580
23581 #. type: verbatim
23582 #: ../fish/guestfish-actions.pod:939
23583 #, no-wrap
23584 msgid ""
23585 " exists path\n"
23586 "\n"
23587 msgstr ""
23588
23589 #. type: textblock
23590 #: ../fish/guestfish-actions.pod:944
23591 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23592 msgstr ""
23593
23594 #. type: =head2
23595 #: ../fish/guestfish-actions.pod:946
23596 msgid "fallocate"
23597 msgstr ""
23598
23599 #. type: verbatim
23600 #: ../fish/guestfish-actions.pod:948
23601 #, no-wrap
23602 msgid ""
23603 " fallocate path len\n"
23604 "\n"
23605 msgstr ""
23606
23607 #. type: =head2
23608 #: ../fish/guestfish-actions.pod:965
23609 msgid "fallocate64"
23610 msgstr ""
23611
23612 #. type: verbatim
23613 #: ../fish/guestfish-actions.pod:967
23614 #, no-wrap
23615 msgid ""
23616 " fallocate64 path len\n"
23617 "\n"
23618 msgstr ""
23619
23620 #. type: textblock
23621 #: ../fish/guestfish-actions.pod:973
23622 msgid ""
23623 "Note that this call allocates disk blocks for the file.  To create a sparse "
23624 "file use L</truncate-size> instead."
23625 msgstr ""
23626
23627 #. type: textblock
23628 #: ../fish/guestfish-actions.pod:976
23629 msgid ""
23630 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23631 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23632 "maximum size of files created through that call to 1GB."
23633 msgstr ""
23634
23635 #. type: =head2
23636 #: ../fish/guestfish-actions.pod:985
23637 msgid "fgrep"
23638 msgstr ""
23639
23640 #. type: verbatim
23641 #: ../fish/guestfish-actions.pod:987
23642 #, no-wrap
23643 msgid ""
23644 " fgrep pattern path\n"
23645 "\n"
23646 msgstr ""
23647
23648 #. type: =head2
23649 #: ../fish/guestfish-actions.pod:995
23650 msgid "fgrepi"
23651 msgstr ""
23652
23653 #. type: verbatim
23654 #: ../fish/guestfish-actions.pod:997
23655 #, no-wrap
23656 msgid ""
23657 " fgrepi pattern path\n"
23658 "\n"
23659 msgstr ""
23660
23661 #. type: =head2
23662 #: ../fish/guestfish-actions.pod:1005
23663 msgid "file"
23664 msgstr ""
23665
23666 #. type: verbatim
23667 #: ../fish/guestfish-actions.pod:1007
23668 #, no-wrap
23669 msgid ""
23670 " file path\n"
23671 "\n"
23672 msgstr ""
23673
23674 #. type: textblock
23675 #: ../fish/guestfish-actions.pod:1023
23676 msgid ""
23677 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23678 "(etc), L</is-zero>."
23679 msgstr ""
23680
23681 #. type: =head2
23682 #: ../fish/guestfish-actions.pod:1026
23683 msgid "file-architecture"
23684 msgstr ""
23685
23686 #. type: verbatim
23687 #: ../fish/guestfish-actions.pod:1028
23688 #, no-wrap
23689 msgid ""
23690 " file-architecture filename\n"
23691 "\n"
23692 msgstr ""
23693
23694 #. type: =head2
23695 #: ../fish/guestfish-actions.pod:1131
23696 msgid "filesize"
23697 msgstr ""
23698
23699 #. type: verbatim
23700 #: ../fish/guestfish-actions.pod:1133
23701 #, no-wrap
23702 msgid ""
23703 " filesize file\n"
23704 "\n"
23705 msgstr ""
23706
23707 #. type: textblock
23708 #: ../fish/guestfish-actions.pod:1137
23709 msgid ""
23710 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23711 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23712 msgstr ""
23713
23714 #. type: =head2
23715 #: ../fish/guestfish-actions.pod:1141
23716 msgid "fill"
23717 msgstr ""
23718
23719 #. type: verbatim
23720 #: ../fish/guestfish-actions.pod:1143
23721 #, no-wrap
23722 msgid ""
23723 " fill c len path\n"
23724 "\n"
23725 msgstr ""
23726
23727 #. type: textblock
23728 #: ../fish/guestfish-actions.pod:1149
23729 msgid ""
23730 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23731 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23732 "L</fill-pattern>."
23733 msgstr ""
23734
23735 #. type: =head2
23736 #: ../fish/guestfish-actions.pod:1154
23737 msgid "fill-pattern"
23738 msgstr ""
23739
23740 #. type: verbatim
23741 #: ../fish/guestfish-actions.pod:1156
23742 #, no-wrap
23743 msgid ""
23744 " fill-pattern pattern len path\n"
23745 "\n"
23746 msgstr ""
23747
23748 #. type: textblock
23749 #: ../fish/guestfish-actions.pod:1158
23750 msgid ""
23751 "This function is like L</fill> except that it creates a new file of length "
23752 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23753 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23754 "bytes."
23755 msgstr ""
23756
23757 #. type: =head2
23758 #: ../fish/guestfish-actions.pod:1163
23759 msgid "find"
23760 msgstr ""
23761
23762 #. type: verbatim
23763 #: ../fish/guestfish-actions.pod:1165
23764 #, no-wrap
23765 msgid ""
23766 " find directory\n"
23767 "\n"
23768 msgstr ""
23769
23770 #. type: textblock
23771 #: ../fish/guestfish-actions.pod:1179
23772 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23773 msgstr ""
23774
23775 #. type: textblock
23776 #: ../fish/guestfish-actions.pod:1192
23777 msgid "See also L</find0>."
23778 msgstr ""
23779
23780 #. type: =head2
23781 #: ../fish/guestfish-actions.pod:1197
23782 msgid "find0"
23783 msgstr ""
23784
23785 #. type: verbatim
23786 #: ../fish/guestfish-actions.pod:1199
23787 #, no-wrap
23788 msgid ""
23789 " find0 directory (files|-)\n"
23790 "\n"
23791 msgstr ""
23792
23793 #. type: textblock
23794 #: ../fish/guestfish-actions.pod:1205
23795 msgid ""
23796 "This command works the same way as L</find> with the following exceptions:"
23797 msgstr ""
23798
23799 #. type: =head2
23800 #: ../fish/guestfish-actions.pod:1232
23801 msgid "findfs-label"
23802 msgstr ""
23803
23804 #. type: verbatim
23805 #: ../fish/guestfish-actions.pod:1234
23806 #, no-wrap
23807 msgid ""
23808 " findfs-label label\n"
23809 "\n"
23810 msgstr ""
23811
23812 #. type: textblock
23813 #: ../fish/guestfish-actions.pod:1240
23814 msgid "To find the label of a filesystem, use L</vfs-label>."
23815 msgstr ""
23816
23817 #. type: =head2
23818 #: ../fish/guestfish-actions.pod:1242
23819 msgid "findfs-uuid"
23820 msgstr ""
23821
23822 #. type: verbatim
23823 #: ../fish/guestfish-actions.pod:1244
23824 #, no-wrap
23825 msgid ""
23826 " findfs-uuid uuid\n"
23827 "\n"
23828 msgstr ""
23829
23830 #. type: textblock
23831 #: ../fish/guestfish-actions.pod:1250
23832 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23833 msgstr ""
23834
23835 #. type: =head2
23836 #: ../fish/guestfish-actions.pod:1252
23837 msgid "fsck"
23838 msgstr ""
23839
23840 #. type: verbatim
23841 #: ../fish/guestfish-actions.pod:1254
23842 #, no-wrap
23843 msgid ""
23844 " fsck fstype device\n"
23845 "\n"
23846 msgstr ""
23847
23848 #. type: =head2
23849 #: ../fish/guestfish-actions.pod:1284
23850 msgid "get-append"
23851 msgstr ""
23852
23853 #. type: verbatim
23854 #: ../fish/guestfish-actions.pod:1286
23855 #, no-wrap
23856 msgid ""
23857 " get-append\n"
23858 "\n"
23859 msgstr ""
23860
23861 #. type: =head2
23862 #: ../fish/guestfish-actions.pod:1293
23863 msgid "get-attach-method"
23864 msgstr ""
23865
23866 #. type: verbatim
23867 #: ../fish/guestfish-actions.pod:1295
23868 #, no-wrap
23869 msgid ""
23870 " get-attach-method\n"
23871 "\n"
23872 msgstr ""
23873
23874 #. type: textblock
23875 #: ../fish/guestfish-actions.pod:1297
23876 msgid "Return the current attach method.  See L</set-attach-method>."
23877 msgstr ""
23878
23879 #. type: =head2
23880 #: ../fish/guestfish-actions.pod:1299
23881 msgid "get-autosync"
23882 msgstr ""
23883
23884 #. type: verbatim
23885 #: ../fish/guestfish-actions.pod:1301
23886 #, no-wrap
23887 msgid ""
23888 " get-autosync\n"
23889 "\n"
23890 msgstr ""
23891
23892 #. type: =head2
23893 #: ../fish/guestfish-actions.pod:1305
23894 msgid "get-direct"
23895 msgstr ""
23896
23897 #. type: verbatim
23898 #: ../fish/guestfish-actions.pod:1307
23899 #, no-wrap
23900 msgid ""
23901 " get-direct\n"
23902 "\n"
23903 msgstr ""
23904
23905 #. type: =head2
23906 #: ../fish/guestfish-actions.pod:1311
23907 msgid "get-e2label"
23908 msgstr ""
23909
23910 #. type: verbatim
23911 #: ../fish/guestfish-actions.pod:1313
23912 #, no-wrap
23913 msgid ""
23914 " get-e2label device\n"
23915 "\n"
23916 msgstr ""
23917
23918 #. type: =head2
23919 #: ../fish/guestfish-actions.pod:1325
23920 msgid "get-e2uuid"
23921 msgstr ""
23922
23923 #. type: verbatim
23924 #: ../fish/guestfish-actions.pod:1327
23925 #, no-wrap
23926 msgid ""
23927 " get-e2uuid device\n"
23928 "\n"
23929 msgstr ""
23930
23931 #. type: =head2
23932 #: ../fish/guestfish-actions.pod:1339
23933 msgid "get-memsize"
23934 msgstr ""
23935
23936 #. type: verbatim
23937 #: ../fish/guestfish-actions.pod:1341
23938 #, no-wrap
23939 msgid ""
23940 " get-memsize\n"
23941 "\n"
23942 msgstr ""
23943
23944 #. type: textblock
23945 #: ../fish/guestfish-actions.pod:1346
23946 msgid ""
23947 "If L</set-memsize> was not called on this handle, and if "
23948 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23949 "value for memsize."
23950 msgstr ""
23951
23952 #. type: =head2
23953 #: ../fish/guestfish-actions.pod:1353
23954 msgid "get-network"
23955 msgstr ""
23956
23957 #. type: verbatim
23958 #: ../fish/guestfish-actions.pod:1355
23959 #, no-wrap
23960 msgid ""
23961 " get-network\n"
23962 "\n"
23963 msgstr ""
23964
23965 #. type: =head2
23966 #: ../fish/guestfish-actions.pod:1359
23967 msgid "get-path"
23968 msgstr ""
23969
23970 #. type: verbatim
23971 #: ../fish/guestfish-actions.pod:1361
23972 #, no-wrap
23973 msgid ""
23974 " get-path\n"
23975 "\n"
23976 msgstr ""
23977
23978 #. type: =head2
23979 #: ../fish/guestfish-actions.pod:1368
23980 msgid "get-pid"
23981 msgstr ""
23982
23983 #. type: =head2
23984 #: ../fish/guestfish-actions.pod:1370
23985 msgid "pid"
23986 msgstr ""
23987
23988 #. type: verbatim
23989 #: ../fish/guestfish-actions.pod:1372
23990 #, no-wrap
23991 msgid ""
23992 " get-pid\n"
23993 "\n"
23994 msgstr ""
23995
23996 #. type: =head2
23997 #: ../fish/guestfish-actions.pod:1379
23998 msgid "get-qemu"
23999 msgstr ""
24000
24001 #. type: verbatim
24002 #: ../fish/guestfish-actions.pod:1381
24003 #, no-wrap
24004 msgid ""
24005 " get-qemu\n"
24006 "\n"
24007 msgstr ""
24008
24009 #. type: =head2
24010 #: ../fish/guestfish-actions.pod:1388
24011 msgid "get-recovery-proc"
24012 msgstr ""
24013
24014 #. type: verbatim
24015 #: ../fish/guestfish-actions.pod:1390
24016 #, no-wrap
24017 msgid ""
24018 " get-recovery-proc\n"
24019 "\n"
24020 msgstr ""
24021
24022 #. type: =head2
24023 #: ../fish/guestfish-actions.pod:1394
24024 msgid "get-selinux"
24025 msgstr ""
24026
24027 #. type: verbatim
24028 #: ../fish/guestfish-actions.pod:1396
24029 #, no-wrap
24030 msgid ""
24031 " get-selinux\n"
24032 "\n"
24033 msgstr ""
24034
24035 #. type: textblock
24036 #: ../fish/guestfish-actions.pod:1398
24037 msgid ""
24038 "This returns the current setting of the selinux flag which is passed to the "
24039 "appliance at boot time.  See L</set-selinux>."
24040 msgstr ""
24041
24042 #. type: =head2
24043 #: ../fish/guestfish-actions.pod:1404
24044 msgid "get-state"
24045 msgstr ""
24046
24047 #. type: verbatim
24048 #: ../fish/guestfish-actions.pod:1406
24049 #, no-wrap
24050 msgid ""
24051 " get-state\n"
24052 "\n"
24053 msgstr ""
24054
24055 #. type: =head2
24056 #: ../fish/guestfish-actions.pod:1413
24057 msgid "get-trace"
24058 msgstr ""
24059
24060 #. type: verbatim
24061 #: ../fish/guestfish-actions.pod:1415
24062 #, no-wrap
24063 msgid ""
24064 " get-trace\n"
24065 "\n"
24066 msgstr ""
24067
24068 #. type: =head2
24069 #: ../fish/guestfish-actions.pod:1419
24070 msgid "get-umask"
24071 msgstr ""
24072
24073 #. type: verbatim
24074 #: ../fish/guestfish-actions.pod:1421
24075 #, no-wrap
24076 msgid ""
24077 " get-umask\n"
24078 "\n"
24079 msgstr ""
24080
24081 #. type: textblock
24082 #: ../fish/guestfish-actions.pod:1423
24083 msgid ""
24084 "Return the current umask.  By default the umask is C<022> unless it has been "
24085 "set by calling L</umask>."
24086 msgstr ""
24087
24088 #. type: =head2
24089 #: ../fish/guestfish-actions.pod:1426
24090 msgid "get-verbose"
24091 msgstr ""
24092
24093 #. type: verbatim
24094 #: ../fish/guestfish-actions.pod:1428
24095 #, no-wrap
24096 msgid ""
24097 " get-verbose\n"
24098 "\n"
24099 msgstr ""
24100
24101 #. type: =head2
24102 #: ../fish/guestfish-actions.pod:1432
24103 msgid "getcon"
24104 msgstr ""
24105
24106 #. type: verbatim
24107 #: ../fish/guestfish-actions.pod:1434
24108 #, no-wrap
24109 msgid ""
24110 " getcon\n"
24111 "\n"
24112 msgstr ""
24113
24114 #. type: textblock
24115 #: ../fish/guestfish-actions.pod:1438
24116 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
24117 msgstr ""
24118
24119 #. type: =head2
24120 #: ../fish/guestfish-actions.pod:1441
24121 msgid "getxattr"
24122 msgstr ""
24123
24124 #. type: verbatim
24125 #: ../fish/guestfish-actions.pod:1443
24126 #, no-wrap
24127 msgid ""
24128 " getxattr path name\n"
24129 "\n"
24130 msgstr ""
24131
24132 #. type: textblock
24133 #: ../fish/guestfish-actions.pod:1445
24134 msgid ""
24135 "Get a single extended attribute from file C<path> named C<name>.  This call "
24136 "follows symlinks.  If you want to lookup an extended attribute for the "
24137 "symlink itself, use L</lgetxattr>."
24138 msgstr ""
24139
24140 #. type: textblock
24141 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
24142 msgid ""
24143 "Normally it is better to get all extended attributes from a file in one go "
24144 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
24145 "buggy and do not provide a way to list out attributes.  For these "
24146 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
24147 "attributes you want in advance and call this function."
24148 msgstr ""
24149
24150 #. type: textblock
24151 #: ../fish/guestfish-actions.pod:1459
24152 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
24153 msgstr ""
24154
24155 #. type: =head2
24156 #: ../fish/guestfish-actions.pod:1461
24157 msgid "getxattrs"
24158 msgstr ""
24159
24160 #. type: verbatim
24161 #: ../fish/guestfish-actions.pod:1463
24162 #, no-wrap
24163 msgid ""
24164 " getxattrs path\n"
24165 "\n"
24166 msgstr ""
24167
24168 #. type: textblock
24169 #: ../fish/guestfish-actions.pod:1471
24170 msgid "See also: L</lgetxattrs>, L<attr(5)>."
24171 msgstr ""
24172
24173 #. type: =head2
24174 #: ../fish/guestfish-actions.pod:1473
24175 msgid "glob-expand"
24176 msgstr ""
24177
24178 #. type: verbatim
24179 #: ../fish/guestfish-actions.pod:1475
24180 #, no-wrap
24181 msgid ""
24182 " glob-expand pattern\n"
24183 "\n"
24184 msgstr ""
24185
24186 #. type: =head2
24187 #: ../fish/guestfish-actions.pod:1488
24188 msgid "grep"
24189 msgstr ""
24190
24191 #. type: verbatim
24192 #: ../fish/guestfish-actions.pod:1490
24193 #, no-wrap
24194 msgid ""
24195 " grep regex path\n"
24196 "\n"
24197 msgstr ""
24198
24199 #. type: =head2
24200 #: ../fish/guestfish-actions.pod:1498
24201 msgid "grepi"
24202 msgstr ""
24203
24204 #. type: verbatim
24205 #: ../fish/guestfish-actions.pod:1500
24206 #, no-wrap
24207 msgid ""
24208 " grepi regex path\n"
24209 "\n"
24210 msgstr ""
24211
24212 #. type: =head2
24213 #: ../fish/guestfish-actions.pod:1508
24214 msgid "grub-install"
24215 msgstr ""
24216
24217 #. type: verbatim
24218 #: ../fish/guestfish-actions.pod:1510
24219 #, no-wrap
24220 msgid ""
24221 " grub-install root device\n"
24222 "\n"
24223 msgstr ""
24224
24225 #. type: =head2
24226 #: ../fish/guestfish-actions.pod:1526
24227 msgid "head"
24228 msgstr ""
24229
24230 #. type: verbatim
24231 #: ../fish/guestfish-actions.pod:1528
24232 #, no-wrap
24233 msgid ""
24234 " head path\n"
24235 "\n"
24236 msgstr ""
24237
24238 #. type: =head2
24239 #: ../fish/guestfish-actions.pod:1536
24240 msgid "head-n"
24241 msgstr ""
24242
24243 #. type: verbatim
24244 #: ../fish/guestfish-actions.pod:1538
24245 #, no-wrap
24246 msgid ""
24247 " head-n nrlines path\n"
24248 "\n"
24249 msgstr ""
24250
24251 #. type: =head2
24252 #: ../fish/guestfish-actions.pod:1551
24253 msgid "hexdump"
24254 msgstr ""
24255
24256 #. type: verbatim
24257 #: ../fish/guestfish-actions.pod:1553
24258 #, no-wrap
24259 msgid ""
24260 " hexdump path\n"
24261 "\n"
24262 msgstr ""
24263
24264 #. type: =head2
24265 #: ../fish/guestfish-actions.pod:1561
24266 msgid "initrd-cat"
24267 msgstr ""
24268
24269 #. type: verbatim
24270 #: ../fish/guestfish-actions.pod:1563
24271 #, no-wrap
24272 msgid ""
24273 " initrd-cat initrdpath filename\n"
24274 "\n"
24275 msgstr ""
24276
24277 #. type: textblock
24278 #: ../fish/guestfish-actions.pod:1575
24279 msgid "See also L</initrd-list>."
24280 msgstr ""
24281
24282 #. type: =head2
24283 #: ../fish/guestfish-actions.pod:1580
24284 msgid "initrd-list"
24285 msgstr ""
24286
24287 #. type: verbatim
24288 #: ../fish/guestfish-actions.pod:1582
24289 #, no-wrap
24290 msgid ""
24291 " initrd-list path\n"
24292 "\n"
24293 msgstr ""
24294
24295 #. type: =head2
24296 #: ../fish/guestfish-actions.pod:1594
24297 msgid "inotify-add-watch"
24298 msgstr ""
24299
24300 #. type: verbatim
24301 #: ../fish/guestfish-actions.pod:1596
24302 #, no-wrap
24303 msgid ""
24304 " inotify-add-watch path mask\n"
24305 "\n"
24306 msgstr ""
24307
24308 #. type: =head2
24309 #: ../fish/guestfish-actions.pod:1608
24310 msgid "inotify-close"
24311 msgstr ""
24312
24313 #. type: verbatim
24314 #: ../fish/guestfish-actions.pod:1610
24315 #, no-wrap
24316 msgid ""
24317 " inotify-close\n"
24318 "\n"
24319 msgstr ""
24320
24321 #. type: =head2
24322 #: ../fish/guestfish-actions.pod:1616
24323 msgid "inotify-files"
24324 msgstr ""
24325
24326 #. type: verbatim
24327 #: ../fish/guestfish-actions.pod:1618
24328 #, no-wrap
24329 msgid ""
24330 " inotify-files\n"
24331 "\n"
24332 msgstr ""
24333
24334 #. type: textblock
24335 #: ../fish/guestfish-actions.pod:1620
24336 msgid ""
24337 "This function is a helpful wrapper around L</inotify-read> which just "
24338 "returns a list of pathnames of objects that were touched.  The returned "
24339 "pathnames are sorted and deduplicated."
24340 msgstr ""
24341
24342 #. type: =head2
24343 #: ../fish/guestfish-actions.pod:1624
24344 msgid "inotify-init"
24345 msgstr ""
24346
24347 #. type: verbatim
24348 #: ../fish/guestfish-actions.pod:1626
24349 #, no-wrap
24350 msgid ""
24351 " inotify-init maxevents\n"
24352 "\n"
24353 msgstr ""
24354
24355 #. type: textblock
24356 #: ../fish/guestfish-actions.pod:1632
24357 msgid ""
24358 "C<maxevents> is the maximum number of events which will be queued up between "
24359 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
24360 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
24361 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
24362 "but records the fact that it threw them away by setting a flag "
24363 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24364 msgstr ""
24365
24366 #. type: textblock
24367 #: ../fish/guestfish-actions.pod:1642
24368 msgid ""
24369 "Before any events are generated, you have to add some watches to the "
24370 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
24371 "L</inotify-watch-all>."
24372 msgstr ""
24373
24374 #. type: textblock
24375 #: ../fish/guestfish-actions.pod:1648
24376 msgid ""
24377 "Queued up events should be read periodically by calling L</inotify-read> (or "
24378 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
24379 "If you don't read the events out often enough then you risk the internal "
24380 "queue overflowing."
24381 msgstr ""
24382
24383 #. type: textblock
24384 #: ../fish/guestfish-actions.pod:1655
24385 msgid ""
24386 "The handle should be closed after use by calling L</inotify-close>.  This "
24387 "also removes any watches automatically."
24388 msgstr ""
24389
24390 #. type: =head2
24391 #: ../fish/guestfish-actions.pod:1664
24392 msgid "inotify-read"
24393 msgstr ""
24394
24395 #. type: verbatim
24396 #: ../fish/guestfish-actions.pod:1666
24397 #, no-wrap
24398 msgid ""
24399 " inotify-read\n"
24400 "\n"
24401 msgstr ""
24402
24403 #. type: =head2
24404 #: ../fish/guestfish-actions.pod:1679
24405 msgid "inotify-rm-watch"
24406 msgstr ""
24407
24408 #. type: verbatim
24409 #: ../fish/guestfish-actions.pod:1681
24410 #, no-wrap
24411 msgid ""
24412 " inotify-rm-watch wd\n"
24413 "\n"
24414 msgstr ""
24415
24416 #. type: textblock
24417 #: ../fish/guestfish-actions.pod:1683
24418 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24419 msgstr ""
24420
24421 #. type: =head2
24422 #: ../fish/guestfish-actions.pod:1686
24423 msgid "inspect-get-arch"
24424 msgstr ""
24425
24426 #. type: verbatim
24427 #: ../fish/guestfish-actions.pod:1688
24428 #, no-wrap
24429 msgid ""
24430 " inspect-get-arch root\n"
24431 "\n"
24432 msgstr ""
24433
24434 #. type: textblock
24435 #: ../fish/guestfish-actions.pod:1690
24436 msgid ""
24437 "This returns the architecture of the inspected operating system.  The "
24438 "possible return values are listed under L</file-architecture>."
24439 msgstr ""
24440
24441 #. type: =head2
24442 #: ../fish/guestfish-actions.pod:1699
24443 msgid "inspect-get-distro"
24444 msgstr ""
24445
24446 #. type: verbatim
24447 #: ../fish/guestfish-actions.pod:1701
24448 #, no-wrap
24449 msgid ""
24450 " inspect-get-distro root\n"
24451 "\n"
24452 msgstr ""
24453
24454 #. type: =head2
24455 #: ../fish/guestfish-actions.pod:1782
24456 msgid "inspect-get-drive-mappings"
24457 msgstr ""
24458
24459 #. type: verbatim
24460 #: ../fish/guestfish-actions.pod:1784
24461 #, no-wrap
24462 msgid ""
24463 " inspect-get-drive-mappings root\n"
24464 "\n"
24465 msgstr ""
24466
24467 #. type: textblock
24468 #: ../fish/guestfish-actions.pod:1811
24469 msgid ""
24470 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24471 "get-mountpoints>, L</inspect-get-filesystems>."
24472 msgstr ""
24473
24474 #. type: =head2
24475 #: ../fish/guestfish-actions.pod:1815
24476 msgid "inspect-get-filesystems"
24477 msgstr ""
24478
24479 #. type: verbatim
24480 #: ../fish/guestfish-actions.pod:1817
24481 #, no-wrap
24482 msgid ""
24483 " inspect-get-filesystems root\n"
24484 "\n"
24485 msgstr ""
24486
24487 #. type: textblock
24488 #: ../fish/guestfish-actions.pod:1827
24489 msgid ""
24490 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24491 "get-mountpoints>."
24492 msgstr ""
24493
24494 #. type: =head2
24495 #: ../fish/guestfish-actions.pod:1830
24496 msgid "inspect-get-format"
24497 msgstr ""
24498
24499 #. type: verbatim
24500 #: ../fish/guestfish-actions.pod:1832
24501 #, no-wrap
24502 msgid ""
24503 " inspect-get-format root\n"
24504 "\n"
24505 msgstr ""
24506
24507 #. type: =head2
24508 #: ../fish/guestfish-actions.pod:1861
24509 msgid "inspect-get-hostname"
24510 msgstr ""
24511
24512 #. type: verbatim
24513 #: ../fish/guestfish-actions.pod:1863
24514 #, no-wrap
24515 msgid ""
24516 " inspect-get-hostname root\n"
24517 "\n"
24518 msgstr ""
24519
24520 #. type: =head2
24521 #: ../fish/guestfish-actions.pod:1873
24522 msgid "inspect-get-icon"
24523 msgstr ""
24524
24525 #. type: verbatim
24526 #: ../fish/guestfish-actions.pod:1875
24527 #, no-wrap
24528 msgid ""
24529 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24530 "\n"
24531 msgstr ""
24532
24533 #. type: =head2
24534 #: ../fish/guestfish-actions.pod:1939
24535 msgid "inspect-get-major-version"
24536 msgstr ""
24537
24538 #. type: verbatim
24539 #: ../fish/guestfish-actions.pod:1941
24540 #, no-wrap
24541 msgid ""
24542 " inspect-get-major-version root\n"
24543 "\n"
24544 msgstr ""
24545
24546 #. type: =head2
24547 #: ../fish/guestfish-actions.pod:1957
24548 msgid "inspect-get-minor-version"
24549 msgstr ""
24550
24551 #. type: verbatim
24552 #: ../fish/guestfish-actions.pod:1959
24553 #, no-wrap
24554 msgid ""
24555 " inspect-get-minor-version root\n"
24556 "\n"
24557 msgstr ""
24558
24559 #. type: textblock
24560 #: ../fish/guestfish-actions.pod:1966
24561 msgid ""
24562 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24563 "get-major-version>."
24564 msgstr ""
24565
24566 #. type: =head2
24567 #: ../fish/guestfish-actions.pod:1969
24568 msgid "inspect-get-mountpoints"
24569 msgstr ""
24570
24571 #. type: verbatim
24572 #: ../fish/guestfish-actions.pod:1971
24573 #, no-wrap
24574 msgid ""
24575 " inspect-get-mountpoints root\n"
24576 "\n"
24577 msgstr ""
24578
24579 #. type: textblock
24580 #: ../fish/guestfish-actions.pod:1990
24581 msgid ""
24582 "For operating systems like Windows which still use drive letters, this call "
24583 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24584 "information about the mapping of drive letters to partitions, see L</inspect-"
24585 "get-drive-mappings>."
24586 msgstr ""
24587
24588 #. type: textblock
24589 #: ../fish/guestfish-actions.pod:1996
24590 msgid ""
24591 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24592 "get-filesystems>."
24593 msgstr ""
24594
24595 #. type: =head2
24596 #: ../fish/guestfish-actions.pod:1999
24597 msgid "inspect-get-package-format"
24598 msgstr ""
24599
24600 #. type: verbatim
24601 #: ../fish/guestfish-actions.pod:2001
24602 #, no-wrap
24603 msgid ""
24604 " inspect-get-package-format root\n"
24605 "\n"
24606 msgstr ""
24607
24608 #. type: textblock
24609 #: ../fish/guestfish-actions.pod:2003
24610 msgid ""
24611 "This function and L</inspect-get-package-management> return the package "
24612 "format and package management tool used by the inspected operating system.  "
24613 "For example for Fedora these functions would return C<rpm> (package format) "
24614 "and C<yum> (package management)."
24615 msgstr ""
24616
24617 #. type: =head2
24618 #: ../fish/guestfish-actions.pod:2018
24619 msgid "inspect-get-package-management"
24620 msgstr ""
24621
24622 #. type: verbatim
24623 #: ../fish/guestfish-actions.pod:2020
24624 #, no-wrap
24625 msgid ""
24626 " inspect-get-package-management root\n"
24627 "\n"
24628 msgstr ""
24629
24630 #. type: textblock
24631 #: ../fish/guestfish-actions.pod:2022
24632 msgid ""
24633 "L</inspect-get-package-format> and this function return the package format "
24634 "and package management tool used by the inspected operating system.  For "
24635 "example for Fedora these functions would return C<rpm> (package format) and "
24636 "C<yum> (package management)."
24637 msgstr ""
24638
24639 #. type: =head2
24640 #: ../fish/guestfish-actions.pod:2039
24641 msgid "inspect-get-product-name"
24642 msgstr ""
24643
24644 #. type: verbatim
24645 #: ../fish/guestfish-actions.pod:2041
24646 #, no-wrap
24647 msgid ""
24648 " inspect-get-product-name root\n"
24649 "\n"
24650 msgstr ""
24651
24652 #. type: =head2
24653 #: ../fish/guestfish-actions.pod:2053
24654 msgid "inspect-get-product-variant"
24655 msgstr ""
24656
24657 #. type: verbatim
24658 #: ../fish/guestfish-actions.pod:2055
24659 #, no-wrap
24660 msgid ""
24661 " inspect-get-product-variant root\n"
24662 "\n"
24663 msgstr ""
24664
24665 #. type: textblock
24666 #: ../fish/guestfish-actions.pod:2076
24667 msgid ""
24668 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24669 "get-product-name>, L</inspect-get-major-version>."
24670 msgstr ""
24671
24672 #. type: =head2
24673 #: ../fish/guestfish-actions.pod:2080
24674 msgid "inspect-get-roots"
24675 msgstr ""
24676
24677 #. type: verbatim
24678 #: ../fish/guestfish-actions.pod:2082
24679 #, no-wrap
24680 msgid ""
24681 " inspect-get-roots\n"
24682 "\n"
24683 msgstr ""
24684
24685 #. type: textblock
24686 #: ../fish/guestfish-actions.pod:2084
24687 msgid ""
24688 "This function is a convenient way to get the list of root devices, as "
24689 "returned from a previous call to L</inspect-os>, but without redoing the "
24690 "whole inspection process."
24691 msgstr ""
24692
24693 #. type: textblock
24694 #: ../fish/guestfish-actions.pod:2088
24695 msgid ""
24696 "This returns an empty list if either no root devices were found or the "
24697 "caller has not called L</inspect-os>."
24698 msgstr ""
24699
24700 #. type: =head2
24701 #: ../fish/guestfish-actions.pod:2093
24702 msgid "inspect-get-type"
24703 msgstr ""
24704
24705 #. type: verbatim
24706 #: ../fish/guestfish-actions.pod:2095
24707 #, no-wrap
24708 msgid ""
24709 " inspect-get-type root\n"
24710 "\n"
24711 msgstr ""
24712
24713 #. type: =head2
24714 #: ../fish/guestfish-actions.pod:2125
24715 msgid "inspect-get-windows-current-control-set"
24716 msgstr ""
24717
24718 #. type: verbatim
24719 #: ../fish/guestfish-actions.pod:2127
24720 #, no-wrap
24721 msgid ""
24722 " inspect-get-windows-current-control-set root\n"
24723 "\n"
24724 msgstr ""
24725
24726 #. type: =head2
24727 #: ../fish/guestfish-actions.pod:2138
24728 msgid "inspect-get-windows-systemroot"
24729 msgstr ""
24730
24731 #. type: verbatim
24732 #: ../fish/guestfish-actions.pod:2140
24733 #, no-wrap
24734 msgid ""
24735 " inspect-get-windows-systemroot root\n"
24736 "\n"
24737 msgstr ""
24738
24739 #. type: =head2
24740 #: ../fish/guestfish-actions.pod:2151
24741 msgid "inspect-is-live"
24742 msgstr ""
24743
24744 #. type: verbatim
24745 #: ../fish/guestfish-actions.pod:2153
24746 #, no-wrap
24747 msgid ""
24748 " inspect-is-live root\n"
24749 "\n"
24750 msgstr ""
24751
24752 #. type: textblock
24753 #: ../fish/guestfish-actions.pod:2155
24754 msgid ""
24755 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24756 "then this returns true if a live image was detected on the disk."
24757 msgstr ""
24758
24759 #. type: =head2
24760 #: ../fish/guestfish-actions.pod:2161
24761 msgid "inspect-is-multipart"
24762 msgstr ""
24763
24764 #. type: verbatim
24765 #: ../fish/guestfish-actions.pod:2163
24766 #, no-wrap
24767 msgid ""
24768 " inspect-is-multipart root\n"
24769 "\n"
24770 msgstr ""
24771
24772 #. type: textblock
24773 #: ../fish/guestfish-actions.pod:2165
24774 msgid ""
24775 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24776 "then this returns true if the disk is part of a set."
24777 msgstr ""
24778
24779 #. type: =head2
24780 #: ../fish/guestfish-actions.pod:2171
24781 msgid "inspect-is-netinst"
24782 msgstr ""
24783
24784 #. type: verbatim
24785 #: ../fish/guestfish-actions.pod:2173
24786 #, no-wrap
24787 msgid ""
24788 " inspect-is-netinst root\n"
24789 "\n"
24790 msgstr ""
24791
24792 #. type: textblock
24793 #: ../fish/guestfish-actions.pod:2175
24794 msgid ""
24795 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24796 "then this returns true if the disk is a network installer, ie. not a self-"
24797 "contained install CD but one which is likely to require network access to "
24798 "complete the install."
24799 msgstr ""
24800
24801 #. type: =head2
24802 #: ../fish/guestfish-actions.pod:2183
24803 msgid "inspect-list-applications"
24804 msgstr ""
24805
24806 #. type: verbatim
24807 #: ../fish/guestfish-actions.pod:2185
24808 #, no-wrap
24809 msgid ""
24810 " inspect-list-applications root\n"
24811 "\n"
24812 msgstr ""
24813
24814 #. type: textblock
24815 #: ../fish/guestfish-actions.pod:2189
24816 msgid ""
24817 "I<Note:> This call works differently from other parts of the inspection "
24818 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24819 "then mount up the disks, before calling this.  Listing applications is a "
24820 "significantly more difficult operation which requires access to the full "
24821 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24822 "are just returning data cached in the libguestfs handle, this call actually "
24823 "reads parts of the mounted filesystems during the call."
24824 msgstr ""
24825
24826 #. type: =head2
24827 #: ../fish/guestfish-actions.pod:2279
24828 msgid "inspect-os"
24829 msgstr ""
24830
24831 #. type: verbatim
24832 #: ../fish/guestfish-actions.pod:2281
24833 #, no-wrap
24834 msgid ""
24835 " inspect-os\n"
24836 "\n"
24837 msgstr ""
24838
24839 #. type: textblock
24840 #: ../fish/guestfish-actions.pod:2296
24841 msgid ""
24842 "You can pass the root string(s) returned to other L</inspect-get-*> "
24843 "functions in order to query further information about each operating system, "
24844 "such as the name and version."
24845 msgstr ""
24846
24847 #. type: textblock
24848 #: ../fish/guestfish-actions.pod:2301
24849 msgid ""
24850 "This function uses other libguestfs features such as L</mount-ro> and L</"
24851 "umount-all> in order to mount and unmount filesystems and look at the "
24852 "contents.  This should be called with no disks currently mounted.  The "
24853 "function may also use Augeas, so any existing Augeas handle will be closed."
24854 msgstr ""
24855
24856 #. type: textblock
24857 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511
24858 #: ../fish/guestfish-actions.pod:2570
24859 msgid "See also L</list-filesystems>."
24860 msgstr ""
24861
24862 #. type: =head2
24863 #: ../fish/guestfish-actions.pod:2315
24864 msgid "is-blockdev"
24865 msgstr ""
24866
24867 #. type: verbatim
24868 #: ../fish/guestfish-actions.pod:2317
24869 #, no-wrap
24870 msgid ""
24871 " is-blockdev path\n"
24872 "\n"
24873 msgstr ""
24874
24875 #. type: textblock
24876 #: ../fish/guestfish-actions.pod:2322 ../fish/guestfish-actions.pod:2340
24877 #: ../fish/guestfish-actions.pod:2359 ../fish/guestfish-actions.pod:2368
24878 #: ../fish/guestfish-actions.pod:2378 ../fish/guestfish-actions.pod:2412
24879 #: ../fish/guestfish-actions.pod:2421
24880 msgid "See also L</stat>."
24881 msgstr ""
24882
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:2324
24885 msgid "is-busy"
24886 msgstr ""
24887
24888 #. type: verbatim
24889 #: ../fish/guestfish-actions.pod:2326
24890 #, no-wrap
24891 msgid ""
24892 " is-busy\n"
24893 "\n"
24894 msgstr ""
24895
24896 #. type: =head2
24897 #: ../fish/guestfish-actions.pod:2333
24898 msgid "is-chardev"
24899 msgstr ""
24900
24901 #. type: verbatim
24902 #: ../fish/guestfish-actions.pod:2335
24903 #, no-wrap
24904 msgid ""
24905 " is-chardev path\n"
24906 "\n"
24907 msgstr ""
24908
24909 #. type: =head2
24910 #: ../fish/guestfish-actions.pod:2342
24911 msgid "is-config"
24912 msgstr ""
24913
24914 #. type: verbatim
24915 #: ../fish/guestfish-actions.pod:2344
24916 #, no-wrap
24917 msgid ""
24918 " is-config\n"
24919 "\n"
24920 msgstr ""
24921
24922 #. type: =head2
24923 #: ../fish/guestfish-actions.pod:2351
24924 msgid "is-dir"
24925 msgstr ""
24926
24927 #. type: verbatim
24928 #: ../fish/guestfish-actions.pod:2353
24929 #, no-wrap
24930 msgid ""
24931 " is-dir path\n"
24932 "\n"
24933 msgstr ""
24934
24935 #. type: =head2
24936 #: ../fish/guestfish-actions.pod:2361
24937 msgid "is-fifo"
24938 msgstr ""
24939
24940 #. type: verbatim
24941 #: ../fish/guestfish-actions.pod:2363
24942 #, no-wrap
24943 msgid ""
24944 " is-fifo path\n"
24945 "\n"
24946 msgstr ""
24947
24948 #. type: =head2
24949 #: ../fish/guestfish-actions.pod:2370
24950 msgid "is-file"
24951 msgstr ""
24952
24953 #. type: verbatim
24954 #: ../fish/guestfish-actions.pod:2372
24955 #, no-wrap
24956 msgid ""
24957 " is-file path\n"
24958 "\n"
24959 msgstr ""
24960
24961 #. type: =head2
24962 #: ../fish/guestfish-actions.pod:2380
24963 msgid "is-launching"
24964 msgstr ""
24965
24966 #. type: verbatim
24967 #: ../fish/guestfish-actions.pod:2382
24968 #, no-wrap
24969 msgid ""
24970 " is-launching\n"
24971 "\n"
24972 msgstr ""
24973
24974 #. type: =head2
24975 #: ../fish/guestfish-actions.pod:2389
24976 msgid "is-lv"
24977 msgstr ""
24978
24979 #. type: verbatim
24980 #: ../fish/guestfish-actions.pod:2391
24981 #, no-wrap
24982 msgid ""
24983 " is-lv device\n"
24984 "\n"
24985 msgstr ""
24986
24987 #. type: =head2
24988 #: ../fish/guestfish-actions.pod:2396
24989 msgid "is-ready"
24990 msgstr ""
24991
24992 #. type: verbatim
24993 #: ../fish/guestfish-actions.pod:2398
24994 #, no-wrap
24995 msgid ""
24996 " is-ready\n"
24997 "\n"
24998 msgstr ""
24999
25000 #. type: =head2
25001 #: ../fish/guestfish-actions.pod:2405
25002 msgid "is-socket"
25003 msgstr ""
25004
25005 #. type: verbatim
25006 #: ../fish/guestfish-actions.pod:2407
25007 #, no-wrap
25008 msgid ""
25009 " is-socket path\n"
25010 "\n"
25011 msgstr ""
25012
25013 #. type: =head2
25014 #: ../fish/guestfish-actions.pod:2414
25015 msgid "is-symlink"
25016 msgstr ""
25017
25018 #. type: verbatim
25019 #: ../fish/guestfish-actions.pod:2416
25020 #, no-wrap
25021 msgid ""
25022 " is-symlink path\n"
25023 "\n"
25024 msgstr ""
25025
25026 #. type: =head2
25027 #: ../fish/guestfish-actions.pod:2423
25028 msgid "is-zero"
25029 msgstr ""
25030
25031 #. type: verbatim
25032 #: ../fish/guestfish-actions.pod:2425
25033 #, no-wrap
25034 msgid ""
25035 " is-zero path\n"
25036 "\n"
25037 msgstr ""
25038
25039 #. type: =head2
25040 #: ../fish/guestfish-actions.pod:2430
25041 msgid "is-zero-device"
25042 msgstr ""
25043
25044 #. type: verbatim
25045 #: ../fish/guestfish-actions.pod:2432
25046 #, no-wrap
25047 msgid ""
25048 " is-zero-device device\n"
25049 "\n"
25050 msgstr ""
25051
25052 #. type: =head2
25053 #: ../fish/guestfish-actions.pod:2438
25054 msgid "kill-subprocess"
25055 msgstr ""
25056
25057 #. type: verbatim
25058 #: ../fish/guestfish-actions.pod:2440
25059 #, no-wrap
25060 msgid ""
25061 " kill-subprocess\n"
25062 "\n"
25063 msgstr ""
25064
25065 #. type: =head2
25066 #: ../fish/guestfish-actions.pod:2444
25067 msgid "launch"
25068 msgstr ""
25069
25070 #. type: =head2
25071 #: ../fish/guestfish-actions.pod:2446
25072 msgid "run"
25073 msgstr ""
25074
25075 #. type: verbatim
25076 #: ../fish/guestfish-actions.pod:2448
25077 #, no-wrap
25078 msgid ""
25079 " launch\n"
25080 "\n"
25081 msgstr ""
25082
25083 #. type: =head2
25084 #: ../fish/guestfish-actions.pod:2456
25085 msgid "lchown"
25086 msgstr ""
25087
25088 #. type: verbatim
25089 #: ../fish/guestfish-actions.pod:2458
25090 #, no-wrap
25091 msgid ""
25092 " lchown owner group path\n"
25093 "\n"
25094 msgstr ""
25095
25096 #. type: textblock
25097 #: ../fish/guestfish-actions.pod:2460
25098 msgid ""
25099 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
25100 "chown> but if C<path> is a symlink then the link itself is changed, not the "
25101 "target."
25102 msgstr ""
25103
25104 #. type: =head2
25105 #: ../fish/guestfish-actions.pod:2468
25106 msgid "lgetxattr"
25107 msgstr ""
25108
25109 #. type: verbatim
25110 #: ../fish/guestfish-actions.pod:2470
25111 #, no-wrap
25112 msgid ""
25113 " lgetxattr path name\n"
25114 "\n"
25115 msgstr ""
25116
25117 #. type: textblock
25118 #: ../fish/guestfish-actions.pod:2486
25119 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
25120 msgstr ""
25121
25122 #. type: =head2
25123 #: ../fish/guestfish-actions.pod:2488
25124 msgid "lgetxattrs"
25125 msgstr ""
25126
25127 #. type: verbatim
25128 #: ../fish/guestfish-actions.pod:2490
25129 #, no-wrap
25130 msgid ""
25131 " lgetxattrs path\n"
25132 "\n"
25133 msgstr ""
25134
25135 #. type: textblock
25136 #: ../fish/guestfish-actions.pod:2492
25137 msgid ""
25138 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
25139 "it returns the extended attributes of the link itself."
25140 msgstr ""
25141
25142 #. type: =head2
25143 #: ../fish/guestfish-actions.pod:2496
25144 msgid "list-9p"
25145 msgstr ""
25146
25147 #. type: verbatim
25148 #: ../fish/guestfish-actions.pod:2498
25149 #, no-wrap
25150 msgid ""
25151 " list-9p\n"
25152 "\n"
25153 msgstr ""
25154
25155 #. type: =head2
25156 #: ../fish/guestfish-actions.pod:2503
25157 msgid "list-devices"
25158 msgstr ""
25159
25160 #. type: verbatim
25161 #: ../fish/guestfish-actions.pod:2505
25162 #, no-wrap
25163 msgid ""
25164 " list-devices\n"
25165 "\n"
25166 msgstr ""
25167
25168 #. type: =head2
25169 #: ../fish/guestfish-actions.pod:2513
25170 msgid "list-dm-devices"
25171 msgstr ""
25172
25173 #. type: verbatim
25174 #: ../fish/guestfish-actions.pod:2515
25175 #, no-wrap
25176 msgid ""
25177 " list-dm-devices\n"
25178 "\n"
25179 msgstr ""
25180
25181 #. type: textblock
25182 #: ../fish/guestfish-actions.pod:2519
25183 msgid ""
25184 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
25185 "previous call to L</luks-open>."
25186 msgstr ""
25187
25188 #. type: textblock
25189 #: ../fish/guestfish-actions.pod:2522
25190 msgid ""
25191 "Device mapper devices which correspond to logical volumes are I<not> "
25192 "returned in this list.  Call L</lvs> if you want to list logical volumes."
25193 msgstr ""
25194
25195 #. type: =head2
25196 #: ../fish/guestfish-actions.pod:2526
25197 msgid "list-filesystems"
25198 msgstr ""
25199
25200 #. type: verbatim
25201 #: ../fish/guestfish-actions.pod:2528
25202 #, no-wrap
25203 msgid ""
25204 " list-filesystems\n"
25205 "\n"
25206 msgstr ""
25207
25208 #. type: textblock
25209 #: ../fish/guestfish-actions.pod:2547
25210 msgid ""
25211 "This command runs other libguestfs commands, which might include L</mount> "
25212 "and L</umount>, and therefore you should use this soon after launch and only "
25213 "when nothing is mounted."
25214 msgstr ""
25215
25216 #. type: textblock
25217 #: ../fish/guestfish-actions.pod:2551
25218 msgid ""
25219 "Not all of the filesystems returned will be mountable.  In particular, swap "
25220 "partitions are returned in the list.  Also this command does not check that "
25221 "each filesystem found is valid and mountable, and some filesystems might be "
25222 "mountable but require special options.  Filesystems may not all belong to a "
25223 "single logical operating system (use L</inspect-os> to look for OSes)."
25224 msgstr ""
25225
25226 #. type: =head2
25227 #: ../fish/guestfish-actions.pod:2559
25228 msgid "list-partitions"
25229 msgstr ""
25230
25231 #. type: verbatim
25232 #: ../fish/guestfish-actions.pod:2561
25233 #, no-wrap
25234 msgid ""
25235 " list-partitions\n"
25236 "\n"
25237 msgstr ""
25238
25239 #. type: textblock
25240 #: ../fish/guestfish-actions.pod:2567
25241 msgid ""
25242 "This does not return logical volumes.  For that you will need to call L</"
25243 "lvs>."
25244 msgstr ""
25245
25246 #. type: =head2
25247 #: ../fish/guestfish-actions.pod:2572
25248 msgid "ll"
25249 msgstr ""
25250
25251 #. type: verbatim
25252 #: ../fish/guestfish-actions.pod:2574
25253 #, no-wrap
25254 msgid ""
25255 " ll directory\n"
25256 "\n"
25257 msgstr ""
25258
25259 #. type: =head2
25260 #: ../fish/guestfish-actions.pod:2582
25261 msgid "ln"
25262 msgstr ""
25263
25264 #. type: verbatim
25265 #: ../fish/guestfish-actions.pod:2584
25266 #, no-wrap
25267 msgid ""
25268 " ln target linkname\n"
25269 "\n"
25270 msgstr ""
25271
25272 #. type: =head2
25273 #: ../fish/guestfish-actions.pod:2588
25274 msgid "ln-f"
25275 msgstr ""
25276
25277 #. type: verbatim
25278 #: ../fish/guestfish-actions.pod:2590
25279 #, no-wrap
25280 msgid ""
25281 " ln-f target linkname\n"
25282 "\n"
25283 msgstr ""
25284
25285 #. type: =head2
25286 #: ../fish/guestfish-actions.pod:2595
25287 msgid "ln-s"
25288 msgstr ""
25289
25290 #. type: verbatim
25291 #: ../fish/guestfish-actions.pod:2597
25292 #, no-wrap
25293 msgid ""
25294 " ln-s target linkname\n"
25295 "\n"
25296 msgstr ""
25297
25298 #. type: =head2
25299 #: ../fish/guestfish-actions.pod:2601
25300 msgid "ln-sf"
25301 msgstr ""
25302
25303 #. type: verbatim
25304 #: ../fish/guestfish-actions.pod:2603
25305 #, no-wrap
25306 msgid ""
25307 " ln-sf target linkname\n"
25308 "\n"
25309 msgstr ""
25310
25311 #. type: =head2
25312 #: ../fish/guestfish-actions.pod:2608
25313 msgid "lremovexattr"
25314 msgstr ""
25315
25316 #. type: verbatim
25317 #: ../fish/guestfish-actions.pod:2610
25318 #, no-wrap
25319 msgid ""
25320 " lremovexattr xattr path\n"
25321 "\n"
25322 msgstr ""
25323
25324 #. type: textblock
25325 #: ../fish/guestfish-actions.pod:2612
25326 msgid ""
25327 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
25328 "it removes an extended attribute of the link itself."
25329 msgstr ""
25330
25331 #. type: =head2
25332 #: ../fish/guestfish-actions.pod:2616
25333 msgid "ls"
25334 msgstr ""
25335
25336 #. type: verbatim
25337 #: ../fish/guestfish-actions.pod:2618
25338 #, no-wrap
25339 msgid ""
25340 " ls directory\n"
25341 "\n"
25342 msgstr ""
25343
25344 #. type: textblock
25345 #: ../fish/guestfish-actions.pod:2624
25346 msgid ""
25347 "This command is mostly useful for interactive sessions.  Programs should "
25348 "probably use L</readdir> instead."
25349 msgstr ""
25350
25351 #. type: =head2
25352 #: ../fish/guestfish-actions.pod:2627
25353 msgid "lsetxattr"
25354 msgstr ""
25355
25356 #. type: verbatim
25357 #: ../fish/guestfish-actions.pod:2629
25358 #, no-wrap
25359 msgid ""
25360 " lsetxattr xattr val vallen path\n"
25361 "\n"
25362 msgstr ""
25363
25364 #. type: textblock
25365 #: ../fish/guestfish-actions.pod:2631
25366 msgid ""
25367 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
25368 "sets an extended attribute of the link itself."
25369 msgstr ""
25370
25371 #. type: =head2
25372 #: ../fish/guestfish-actions.pod:2635
25373 msgid "lstat"
25374 msgstr ""
25375
25376 #. type: verbatim
25377 #: ../fish/guestfish-actions.pod:2637
25378 #, no-wrap
25379 msgid ""
25380 " lstat path\n"
25381 "\n"
25382 msgstr ""
25383
25384 #. type: textblock
25385 #: ../fish/guestfish-actions.pod:2641
25386 msgid ""
25387 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
25388 "the link is stat-ed, not the file it refers to."
25389 msgstr ""
25390
25391 #. type: =head2
25392 #: ../fish/guestfish-actions.pod:2647
25393 msgid "lstatlist"
25394 msgstr ""
25395
25396 #. type: verbatim
25397 #: ../fish/guestfish-actions.pod:2649
25398 #, no-wrap
25399 msgid ""
25400 " lstatlist path 'names ...'\n"
25401 "\n"
25402 msgstr ""
25403
25404 #. type: textblock
25405 #: ../fish/guestfish-actions.pod:2651
25406 msgid ""
25407 "This call allows you to perform the L</lstat> operation on multiple files, "
25408 "where all files are in the directory C<path>.  C<names> is the list of files "
25409 "from this directory."
25410 msgstr ""
25411
25412 #. type: textblock
25413 #: ../fish/guestfish-actions.pod:2660
25414 msgid ""
25415 "This call is intended for programs that want to efficiently list a directory "
25416 "contents without making many round-trips.  See also L</lxattrlist> for a "
25417 "similarly efficient call for getting extended attributes.  Very long "
25418 "directory listings might cause the protocol message size to be exceeded, "
25419 "causing this call to fail.  The caller must split up such requests into "
25420 "smaller groups of names."
25421 msgstr ""
25422
25423 #. type: =head2
25424 #: ../fish/guestfish-actions.pod:2668
25425 msgid "luks-add-key"
25426 msgstr ""
25427
25428 #. type: verbatim
25429 #: ../fish/guestfish-actions.pod:2670
25430 #, no-wrap
25431 msgid ""
25432 " luks-add-key device keyslot\n"
25433 "\n"
25434 msgstr ""
25435
25436 #. type: textblock
25437 #: ../fish/guestfish-actions.pod:2677
25438 msgid ""
25439 "Note that if C<keyslot> already contains a key, then this command will "
25440 "fail.  You have to use L</luks-kill-slot> first to remove that key."
25441 msgstr ""
25442
25443 #. type: textblock
25444 #: ../fish/guestfish-actions.pod:2681 ../fish/guestfish-actions.pod:2703
25445 #: ../fish/guestfish-actions.pod:2716 ../fish/guestfish-actions.pod:2730
25446 #: ../fish/guestfish-actions.pod:2756 ../fish/guestfish-actions.pod:2766
25447 msgid ""
25448 "This command has one or more key or passphrase parameters.  Guestfish will "
25449 "prompt for these separately."
25450 msgstr ""
25451
25452 #. type: =head2
25453 #: ../fish/guestfish-actions.pod:2684
25454 msgid "luks-close"
25455 msgstr ""
25456
25457 #. type: verbatim
25458 #: ../fish/guestfish-actions.pod:2686
25459 #, no-wrap
25460 msgid ""
25461 " luks-close device\n"
25462 "\n"
25463 msgstr ""
25464
25465 #. type: textblock
25466 #: ../fish/guestfish-actions.pod:2688
25467 msgid ""
25468 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
25469 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
25470 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
25471 "block device."
25472 msgstr ""
25473
25474 #. type: =head2
25475 #: ../fish/guestfish-actions.pod:2694
25476 msgid "luks-format"
25477 msgstr ""
25478
25479 #. type: verbatim
25480 #: ../fish/guestfish-actions.pod:2696
25481 #, no-wrap
25482 msgid ""
25483 " luks-format device keyslot\n"
25484 "\n"
25485 msgstr ""
25486
25487 #. type: =head2
25488 #: ../fish/guestfish-actions.pod:2709
25489 msgid "luks-format-cipher"
25490 msgstr ""
25491
25492 #. type: verbatim
25493 #: ../fish/guestfish-actions.pod:2711
25494 #, no-wrap
25495 msgid ""
25496 " luks-format-cipher device keyslot cipher\n"
25497 "\n"
25498 msgstr ""
25499
25500 #. type: textblock
25501 #: ../fish/guestfish-actions.pod:2713
25502 msgid ""
25503 "This command is the same as L</luks-format> but it also allows you to set "
25504 "the C<cipher> used."
25505 msgstr ""
25506
25507 #. type: =head2
25508 #: ../fish/guestfish-actions.pod:2722
25509 msgid "luks-kill-slot"
25510 msgstr ""
25511
25512 #. type: verbatim
25513 #: ../fish/guestfish-actions.pod:2724
25514 #, no-wrap
25515 msgid ""
25516 " luks-kill-slot device keyslot\n"
25517 "\n"
25518 msgstr ""
25519
25520 #. type: =head2
25521 #: ../fish/guestfish-actions.pod:2733
25522 msgid "luks-open"
25523 msgstr ""
25524
25525 #. type: verbatim
25526 #: ../fish/guestfish-actions.pod:2735
25527 #, no-wrap
25528 msgid ""
25529 " luks-open device mapname\n"
25530 "\n"
25531 msgstr ""
25532
25533 #. type: textblock
25534 #: ../fish/guestfish-actions.pod:2749
25535 msgid ""
25536 "If this block device contains LVM volume groups, then calling L</vgscan> "
25537 "followed by L</vg-activate-all> will make them visible."
25538 msgstr ""
25539
25540 #. type: textblock
25541 #: ../fish/guestfish-actions.pod:2753
25542 msgid "Use L</list-dm-devices> to list all device mapper devices."
25543 msgstr ""
25544
25545 #. type: =head2
25546 #: ../fish/guestfish-actions.pod:2759
25547 msgid "luks-open-ro"
25548 msgstr ""
25549
25550 #. type: verbatim
25551 #: ../fish/guestfish-actions.pod:2761
25552 #, no-wrap
25553 msgid ""
25554 " luks-open-ro device mapname\n"
25555 "\n"
25556 msgstr ""
25557
25558 #. type: textblock
25559 #: ../fish/guestfish-actions.pod:2763
25560 msgid ""
25561 "This is the same as L</luks-open> except that a read-only mapping is created."
25562 msgstr ""
25563
25564 #. type: =head2
25565 #: ../fish/guestfish-actions.pod:2769
25566 msgid "lvcreate"
25567 msgstr ""
25568
25569 #. type: verbatim
25570 #: ../fish/guestfish-actions.pod:2771
25571 #, no-wrap
25572 msgid ""
25573 " lvcreate logvol volgroup mbytes\n"
25574 "\n"
25575 msgstr ""
25576
25577 #. type: =head2
25578 #: ../fish/guestfish-actions.pod:2776
25579 msgid "lvm-canonical-lv-name"
25580 msgstr ""
25581
25582 #. type: verbatim
25583 #: ../fish/guestfish-actions.pod:2778
25584 #, no-wrap
25585 msgid ""
25586 " lvm-canonical-lv-name lvname\n"
25587 "\n"
25588 msgstr ""
25589
25590 #. type: textblock
25591 #: ../fish/guestfish-actions.pod:2787
25592 msgid "See also L</is-lv>."
25593 msgstr ""
25594
25595 #. type: =head2
25596 #: ../fish/guestfish-actions.pod:2789
25597 msgid "lvm-clear-filter"
25598 msgstr ""
25599
25600 #. type: verbatim
25601 #: ../fish/guestfish-actions.pod:2791
25602 #, no-wrap
25603 msgid ""
25604 " lvm-clear-filter\n"
25605 "\n"
25606 msgstr ""
25607
25608 #. type: textblock
25609 #: ../fish/guestfish-actions.pod:2793
25610 msgid ""
25611 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
25612 "block device."
25613 msgstr ""
25614
25615 #. type: =head2
25616 #: ../fish/guestfish-actions.pod:2799
25617 msgid "lvm-remove-all"
25618 msgstr ""
25619
25620 #. type: verbatim
25621 #: ../fish/guestfish-actions.pod:2801
25622 #, no-wrap
25623 msgid ""
25624 " lvm-remove-all\n"
25625 "\n"
25626 msgstr ""
25627
25628 #. type: =head2
25629 #: ../fish/guestfish-actions.pod:2809
25630 msgid "lvm-set-filter"
25631 msgstr ""
25632
25633 #. type: verbatim
25634 #: ../fish/guestfish-actions.pod:2811
25635 #, no-wrap
25636 msgid ""
25637 " lvm-set-filter 'devices ...'\n"
25638 "\n"
25639 msgstr ""
25640
25641 #. type: =head2
25642 #: ../fish/guestfish-actions.pod:2836
25643 msgid "lvremove"
25644 msgstr ""
25645
25646 #. type: verbatim
25647 #: ../fish/guestfish-actions.pod:2838
25648 #, no-wrap
25649 msgid ""
25650 " lvremove device\n"
25651 "\n"
25652 msgstr ""
25653
25654 #. type: =head2
25655 #: ../fish/guestfish-actions.pod:2846
25656 msgid "lvrename"
25657 msgstr ""
25658
25659 #. type: verbatim
25660 #: ../fish/guestfish-actions.pod:2848
25661 #, no-wrap
25662 msgid ""
25663 " lvrename logvol newlogvol\n"
25664 "\n"
25665 msgstr ""
25666
25667 #. type: =head2
25668 #: ../fish/guestfish-actions.pod:2852
25669 msgid "lvresize"
25670 msgstr ""
25671
25672 #. type: verbatim
25673 #: ../fish/guestfish-actions.pod:2854
25674 #, no-wrap
25675 msgid ""
25676 " lvresize device mbytes\n"
25677 "\n"
25678 msgstr ""
25679
25680 #. type: =head2
25681 #: ../fish/guestfish-actions.pod:2860
25682 msgid "lvresize-free"
25683 msgstr ""
25684
25685 #. type: verbatim
25686 #: ../fish/guestfish-actions.pod:2862
25687 #, no-wrap
25688 msgid ""
25689 " lvresize-free lv percent\n"
25690 "\n"
25691 msgstr ""
25692
25693 #. type: =head2
25694 #: ../fish/guestfish-actions.pod:2870
25695 msgid "lvs"
25696 msgstr ""
25697
25698 #. type: verbatim
25699 #: ../fish/guestfish-actions.pod:2872
25700 #, no-wrap
25701 msgid ""
25702 " lvs\n"
25703 "\n"
25704 msgstr ""
25705
25706 #. type: textblock
25707 #: ../fish/guestfish-actions.pod:2880
25708 msgid "See also L</lvs-full>, L</list-filesystems>."
25709 msgstr ""
25710
25711 #. type: =head2
25712 #: ../fish/guestfish-actions.pod:2882
25713 msgid "lvs-full"
25714 msgstr ""
25715
25716 #. type: verbatim
25717 #: ../fish/guestfish-actions.pod:2884
25718 #, no-wrap
25719 msgid ""
25720 " lvs-full\n"
25721 "\n"
25722 msgstr ""
25723
25724 #. type: =head2
25725 #: ../fish/guestfish-actions.pod:2889
25726 msgid "lvuuid"
25727 msgstr ""
25728
25729 #. type: verbatim
25730 #: ../fish/guestfish-actions.pod:2891
25731 #, no-wrap
25732 msgid ""
25733 " lvuuid device\n"
25734 "\n"
25735 msgstr ""
25736
25737 #. type: =head2
25738 #: ../fish/guestfish-actions.pod:2895
25739 msgid "lxattrlist"
25740 msgstr ""
25741
25742 #. type: verbatim
25743 #: ../fish/guestfish-actions.pod:2897
25744 #, no-wrap
25745 msgid ""
25746 " lxattrlist path 'names ...'\n"
25747 "\n"
25748 msgstr ""
25749
25750 #. type: textblock
25751 #: ../fish/guestfish-actions.pod:2913
25752 msgid ""
25753 "This call is intended for programs that want to efficiently list a directory "
25754 "contents without making many round-trips.  See also L</lstatlist> for a "
25755 "similarly efficient call for getting standard stats.  Very long directory "
25756 "listings might cause the protocol message size to be exceeded, causing this "
25757 "call to fail.  The caller must split up such requests into smaller groups of "
25758 "names."
25759 msgstr ""
25760
25761 #. type: =head2
25762 #: ../fish/guestfish-actions.pod:2921
25763 msgid "mkdir"
25764 msgstr ""
25765
25766 #. type: verbatim
25767 #: ../fish/guestfish-actions.pod:2923
25768 #, no-wrap
25769 msgid ""
25770 " mkdir path\n"
25771 "\n"
25772 msgstr ""
25773
25774 #. type: =head2
25775 #: ../fish/guestfish-actions.pod:2927
25776 msgid "mkdir-mode"
25777 msgstr ""
25778
25779 #. type: verbatim
25780 #: ../fish/guestfish-actions.pod:2929
25781 #, no-wrap
25782 msgid ""
25783 " mkdir-mode path mode\n"
25784 "\n"
25785 msgstr ""
25786
25787 #. type: textblock
25788 #: ../fish/guestfish-actions.pod:2938
25789 msgid "See also L</mkdir>, L</umask>"
25790 msgstr ""
25791
25792 #. type: =head2
25793 #: ../fish/guestfish-actions.pod:2940
25794 msgid "mkdir-p"
25795 msgstr ""
25796
25797 #. type: verbatim
25798 #: ../fish/guestfish-actions.pod:2942
25799 #, no-wrap
25800 msgid ""
25801 " mkdir-p path\n"
25802 "\n"
25803 msgstr ""
25804
25805 #. type: =head2
25806 #: ../fish/guestfish-actions.pod:2947
25807 msgid "mkdtemp"
25808 msgstr ""
25809
25810 #. type: verbatim
25811 #: ../fish/guestfish-actions.pod:2949
25812 #, no-wrap
25813 msgid ""
25814 " mkdtemp template\n"
25815 "\n"
25816 msgstr ""
25817
25818 #. type: =head2
25819 #: ../fish/guestfish-actions.pod:2970
25820 msgid "mke2fs-J"
25821 msgstr ""
25822
25823 #. type: verbatim
25824 #: ../fish/guestfish-actions.pod:2972
25825 #, no-wrap
25826 msgid ""
25827 " mke2fs-J fstype blocksize device journal\n"
25828 "\n"
25829 msgstr ""
25830
25831 #. type: textblock
25832 #: ../fish/guestfish-actions.pod:2980
25833 msgid "See also L</mke2journal>."
25834 msgstr ""
25835
25836 #. type: =head2
25837 #: ../fish/guestfish-actions.pod:2982
25838 msgid "mke2fs-JL"
25839 msgstr ""
25840
25841 #. type: verbatim
25842 #: ../fish/guestfish-actions.pod:2984
25843 #, no-wrap
25844 msgid ""
25845 " mke2fs-JL fstype blocksize device label\n"
25846 "\n"
25847 msgstr ""
25848
25849 #. type: textblock
25850 #: ../fish/guestfish-actions.pod:2989
25851 msgid "See also L</mke2journal-L>."
25852 msgstr ""
25853
25854 #. type: =head2
25855 #: ../fish/guestfish-actions.pod:2991
25856 msgid "mke2fs-JU"
25857 msgstr ""
25858
25859 #. type: verbatim
25860 #: ../fish/guestfish-actions.pod:2993
25861 #, no-wrap
25862 msgid ""
25863 " mke2fs-JU fstype blocksize device uuid\n"
25864 "\n"
25865 msgstr ""
25866
25867 #. type: textblock
25868 #: ../fish/guestfish-actions.pod:2998
25869 msgid "See also L</mke2journal-U>."
25870 msgstr ""
25871
25872 #. type: =head2
25873 #: ../fish/guestfish-actions.pod:3000
25874 msgid "mke2journal"
25875 msgstr ""
25876
25877 #. type: verbatim
25878 #: ../fish/guestfish-actions.pod:3002
25879 #, no-wrap
25880 msgid ""
25881 " mke2journal blocksize device\n"
25882 "\n"
25883 msgstr ""
25884
25885 #. type: =head2
25886 #: ../fish/guestfish-actions.pod:3009
25887 msgid "mke2journal-L"
25888 msgstr ""
25889
25890 #. type: verbatim
25891 #: ../fish/guestfish-actions.pod:3011
25892 #, no-wrap
25893 msgid ""
25894 " mke2journal-L blocksize label device\n"
25895 "\n"
25896 msgstr ""
25897
25898 #. type: =head2
25899 #: ../fish/guestfish-actions.pod:3015
25900 msgid "mke2journal-U"
25901 msgstr ""
25902
25903 #. type: verbatim
25904 #: ../fish/guestfish-actions.pod:3017
25905 #, no-wrap
25906 msgid ""
25907 " mke2journal-U blocksize uuid device\n"
25908 "\n"
25909 msgstr ""
25910
25911 #. type: =head2
25912 #: ../fish/guestfish-actions.pod:3021
25913 msgid "mkfifo"
25914 msgstr ""
25915
25916 #. type: verbatim
25917 #: ../fish/guestfish-actions.pod:3023
25918 #, no-wrap
25919 msgid ""
25920 " mkfifo mode path\n"
25921 "\n"
25922 msgstr ""
25923
25924 #. type: textblock
25925 #: ../fish/guestfish-actions.pod:3025
25926 msgid ""
25927 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25928 "is just a convenient wrapper around L</mknod>."
25929 msgstr ""
25930
25931 #. type: =head2
25932 #: ../fish/guestfish-actions.pod:3031
25933 msgid "mkfs"
25934 msgstr ""
25935
25936 #. type: verbatim
25937 #: ../fish/guestfish-actions.pod:3033
25938 #, no-wrap
25939 msgid ""
25940 " mkfs fstype device\n"
25941 "\n"
25942 msgstr ""
25943
25944 #. type: =head2
25945 #: ../fish/guestfish-actions.pod:3039
25946 msgid "mkfs-b"
25947 msgstr ""
25948
25949 #. type: verbatim
25950 #: ../fish/guestfish-actions.pod:3041
25951 #, no-wrap
25952 msgid ""
25953 " mkfs-b fstype blocksize device\n"
25954 "\n"
25955 msgstr ""
25956
25957 #. type: textblock
25958 #: ../fish/guestfish-actions.pod:3043
25959 msgid ""
25960 "This call is similar to L</mkfs>, but it allows you to control the block "
25961 "size of the resulting filesystem.  Supported block sizes depend on the "
25962 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25963 msgstr ""
25964
25965 #. type: =head2
25966 #: ../fish/guestfish-actions.pod:3058
25967 msgid "mkfs-opts"
25968 msgstr ""
25969
25970 #. type: verbatim
25971 #: ../fish/guestfish-actions.pod:3060
25972 #, no-wrap
25973 msgid ""
25974 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] [sectorsize:..]\n"
25975 "\n"
25976 msgstr ""
25977
25978 #. type: =head2
25979 #: ../fish/guestfish-actions.pod:3105
25980 msgid "mkmountpoint"
25981 msgstr ""
25982
25983 #. type: verbatim
25984 #: ../fish/guestfish-actions.pod:3107
25985 #, no-wrap
25986 msgid ""
25987 " mkmountpoint exemptpath\n"
25988 "\n"
25989 msgstr ""
25990
25991 #. type: textblock
25992 #: ../fish/guestfish-actions.pod:3109
25993 msgid ""
25994 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25995 "to create extra mountpoints before mounting the first filesystem."
25996 msgstr ""
25997
25998 #. type: textblock
25999 #: ../fish/guestfish-actions.pod:3133
26000 msgid ""
26001 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
26002 "unexpected errors if you try to mix these calls.  It is safest to manually "
26003 "unmount filesystems and remove mountpoints after use."
26004 msgstr ""
26005
26006 #. type: textblock
26007 #: ../fish/guestfish-actions.pod:3137
26008 msgid ""
26009 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
26010 "for this to work for manual mountpoints, you must ensure that the innermost "
26011 "mountpoints have the longest pathnames, as in the example code above."
26012 msgstr ""
26013
26014 #. type: textblock
26015 #: ../fish/guestfish-actions.pod:3144
26016 msgid ""
26017 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
26018 "L</umount-all> to be called when the handle is closed which can also trigger "
26019 "these issues."
26020 msgstr ""
26021
26022 #. type: =head2
26023 #: ../fish/guestfish-actions.pod:3148
26024 msgid "mknod"
26025 msgstr ""
26026
26027 #. type: verbatim
26028 #: ../fish/guestfish-actions.pod:3150
26029 #, no-wrap
26030 msgid ""
26031 " mknod mode devmajor devminor path\n"
26032 "\n"
26033 msgstr ""
26034
26035 #. type: textblock
26036 #: ../fish/guestfish-actions.pod:3160
26037 msgid ""
26038 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
26039 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
26040 "regular file).  These constants are available in the standard Linux header "
26041 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
26042 "wrappers around this command which bitwise OR in the appropriate constant "
26043 "for you."
26044 msgstr ""
26045
26046 #. type: =head2
26047 #: ../fish/guestfish-actions.pod:3170
26048 msgid "mknod-b"
26049 msgstr ""
26050
26051 #. type: verbatim
26052 #: ../fish/guestfish-actions.pod:3172
26053 #, no-wrap
26054 msgid ""
26055 " mknod-b mode devmajor devminor path\n"
26056 "\n"
26057 msgstr ""
26058
26059 #. type: textblock
26060 #: ../fish/guestfish-actions.pod:3174
26061 msgid ""
26062 "This call creates a block device node called C<path> with mode C<mode> and "
26063 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26064 "wrapper around L</mknod>."
26065 msgstr ""
26066
26067 #. type: =head2
26068 #: ../fish/guestfish-actions.pod:3180
26069 msgid "mknod-c"
26070 msgstr ""
26071
26072 #. type: verbatim
26073 #: ../fish/guestfish-actions.pod:3182
26074 #, no-wrap
26075 msgid ""
26076 " mknod-c mode devmajor devminor path\n"
26077 "\n"
26078 msgstr ""
26079
26080 #. type: textblock
26081 #: ../fish/guestfish-actions.pod:3184
26082 msgid ""
26083 "This call creates a char device node called C<path> with mode C<mode> and "
26084 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26085 "wrapper around L</mknod>."
26086 msgstr ""
26087
26088 #. type: =head2
26089 #: ../fish/guestfish-actions.pod:3190
26090 msgid "mkswap"
26091 msgstr ""
26092
26093 #. type: verbatim
26094 #: ../fish/guestfish-actions.pod:3192
26095 #, no-wrap
26096 msgid ""
26097 " mkswap device\n"
26098 "\n"
26099 msgstr ""
26100
26101 #. type: =head2
26102 #: ../fish/guestfish-actions.pod:3196
26103 msgid "mkswap-L"
26104 msgstr ""
26105
26106 #. type: verbatim
26107 #: ../fish/guestfish-actions.pod:3198
26108 #, no-wrap
26109 msgid ""
26110 " mkswap-L label device\n"
26111 "\n"
26112 msgstr ""
26113
26114 #. type: =head2
26115 #: ../fish/guestfish-actions.pod:3206
26116 msgid "mkswap-U"
26117 msgstr ""
26118
26119 #. type: verbatim
26120 #: ../fish/guestfish-actions.pod:3208
26121 #, no-wrap
26122 msgid ""
26123 " mkswap-U uuid device\n"
26124 "\n"
26125 msgstr ""
26126
26127 #. type: =head2
26128 #: ../fish/guestfish-actions.pod:3212
26129 msgid "mkswap-file"
26130 msgstr ""
26131
26132 #. type: verbatim
26133 #: ../fish/guestfish-actions.pod:3214
26134 #, no-wrap
26135 msgid ""
26136 " mkswap-file path\n"
26137 "\n"
26138 msgstr ""
26139
26140 #. type: textblock
26141 #: ../fish/guestfish-actions.pod:3218
26142 msgid ""
26143 "This command just writes a swap file signature to an existing file.  To "
26144 "create the file itself, use something like L</fallocate>."
26145 msgstr ""
26146
26147 #. type: =head2
26148 #: ../fish/guestfish-actions.pod:3221
26149 msgid "modprobe"
26150 msgstr ""
26151
26152 #. type: verbatim
26153 #: ../fish/guestfish-actions.pod:3223
26154 #, no-wrap
26155 msgid ""
26156 " modprobe modulename\n"
26157 "\n"
26158 msgstr ""
26159
26160 #. type: =head2
26161 #: ../fish/guestfish-actions.pod:3230
26162 msgid "mount"
26163 msgstr ""
26164
26165 #. type: verbatim
26166 #: ../fish/guestfish-actions.pod:3232
26167 #, no-wrap
26168 msgid ""
26169 " mount device mountpoint\n"
26170 "\n"
26171 msgstr ""
26172
26173 #. type: textblock
26174 #: ../fish/guestfish-actions.pod:3248
26175 msgid ""
26176 "B<Important note:> When you use this call, the filesystem options C<sync> "
26177 "and C<noatime> are set implicitly.  This was originally done because we "
26178 "thought it would improve reliability, but it turns out that I<-o sync> has a "
26179 "very large negative performance impact and negligible effect on "
26180 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
26181 "code that needs performance, and instead use L</mount-options> (use an empty "
26182 "string for the first parameter if you don't want any options)."
26183 msgstr ""
26184
26185 #. type: =head2
26186 #: ../fish/guestfish-actions.pod:3265
26187 msgid "mount-9p"
26188 msgstr ""
26189
26190 #. type: verbatim
26191 #: ../fish/guestfish-actions.pod:3267
26192 #, no-wrap
26193 msgid ""
26194 " mount-9p mounttag mountpoint [options:..]\n"
26195 "\n"
26196 msgstr ""
26197
26198 #. type: =head2
26199 #: ../fish/guestfish-actions.pod:3278
26200 msgid "mount-loop"
26201 msgstr ""
26202
26203 #. type: verbatim
26204 #: ../fish/guestfish-actions.pod:3280
26205 #, no-wrap
26206 msgid ""
26207 " mount-loop file mountpoint\n"
26208 "\n"
26209 msgstr ""
26210
26211 #. type: =head2
26212 #: ../fish/guestfish-actions.pod:3286
26213 msgid "mount-options"
26214 msgstr ""
26215
26216 #. type: verbatim
26217 #: ../fish/guestfish-actions.pod:3288
26218 #, no-wrap
26219 msgid ""
26220 " mount-options options device mountpoint\n"
26221 "\n"
26222 msgstr ""
26223
26224 #. type: textblock
26225 #: ../fish/guestfish-actions.pod:3290
26226 msgid ""
26227 "This is the same as the L</mount> command, but it allows you to set the "
26228 "mount options as for the L<mount(8)> I<-o> flag."
26229 msgstr ""
26230
26231 #. type: =head2
26232 #: ../fish/guestfish-actions.pod:3298
26233 msgid "mount-ro"
26234 msgstr ""
26235
26236 #. type: verbatim
26237 #: ../fish/guestfish-actions.pod:3300
26238 #, no-wrap
26239 msgid ""
26240 " mount-ro device mountpoint\n"
26241 "\n"
26242 msgstr ""
26243
26244 #. type: textblock
26245 #: ../fish/guestfish-actions.pod:3302
26246 msgid ""
26247 "This is the same as the L</mount> command, but it mounts the filesystem with "
26248 "the read-only (I<-o ro>) flag."
26249 msgstr ""
26250
26251 #. type: =head2
26252 #: ../fish/guestfish-actions.pod:3305
26253 msgid "mount-vfs"
26254 msgstr ""
26255
26256 #. type: verbatim
26257 #: ../fish/guestfish-actions.pod:3307
26258 #, no-wrap
26259 msgid ""
26260 " mount-vfs options vfstype device mountpoint\n"
26261 "\n"
26262 msgstr ""
26263
26264 #. type: textblock
26265 #: ../fish/guestfish-actions.pod:3309
26266 msgid ""
26267 "This is the same as the L</mount> command, but it allows you to set both the "
26268 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26269 msgstr ""
26270
26271 #. type: =head2
26272 #: ../fish/guestfish-actions.pod:3313
26273 msgid "mountpoints"
26274 msgstr ""
26275
26276 #. type: verbatim
26277 #: ../fish/guestfish-actions.pod:3315
26278 #, no-wrap
26279 msgid ""
26280 " mountpoints\n"
26281 "\n"
26282 msgstr ""
26283
26284 #. type: textblock
26285 #: ../fish/guestfish-actions.pod:3317
26286 msgid ""
26287 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26288 "This one returns a hash table (map) of device name to directory where the "
26289 "device is mounted."
26290 msgstr ""
26291
26292 #. type: =head2
26293 #: ../fish/guestfish-actions.pod:3321
26294 msgid "mounts"
26295 msgstr ""
26296
26297 #. type: verbatim
26298 #: ../fish/guestfish-actions.pod:3323
26299 #, no-wrap
26300 msgid ""
26301 " mounts\n"
26302 "\n"
26303 msgstr ""
26304
26305 #. type: textblock
26306 #: ../fish/guestfish-actions.pod:3330
26307 msgid "See also: L</mountpoints>"
26308 msgstr ""
26309
26310 #. type: =head2
26311 #: ../fish/guestfish-actions.pod:3332
26312 msgid "mv"
26313 msgstr ""
26314
26315 #. type: verbatim
26316 #: ../fish/guestfish-actions.pod:3334
26317 #, no-wrap
26318 msgid ""
26319 " mv src dest\n"
26320 "\n"
26321 msgstr ""
26322
26323 #. type: =head2
26324 #: ../fish/guestfish-actions.pod:3339
26325 msgid "ntfs-3g-probe"
26326 msgstr ""
26327
26328 #. type: verbatim
26329 #: ../fish/guestfish-actions.pod:3341
26330 #, no-wrap
26331 msgid ""
26332 " ntfs-3g-probe true|false device\n"
26333 "\n"
26334 msgstr ""
26335
26336 #. type: =head2
26337 #: ../fish/guestfish-actions.pod:3355
26338 msgid "ntfsresize"
26339 msgstr ""
26340
26341 #. type: verbatim
26342 #: ../fish/guestfish-actions.pod:3357
26343 #, no-wrap
26344 msgid ""
26345 " ntfsresize device\n"
26346 "\n"
26347 msgstr ""
26348
26349 #. type: =head2
26350 #: ../fish/guestfish-actions.pod:3379
26351 msgid "ntfsresize-opts"
26352 msgstr ""
26353
26354 #. type: verbatim
26355 #: ../fish/guestfish-actions.pod:3381
26356 #, no-wrap
26357 msgid ""
26358 " ntfsresize-opts device [size:..] [force:..]\n"
26359 "\n"
26360 msgstr ""
26361
26362 #. type: textblock
26363 #: ../fish/guestfish-actions.pod:3400
26364 msgid ""
26365 "After the resize operation, the filesystem is always marked as requiring a "
26366 "consistency check (for safety).  You have to boot into Windows to perform "
26367 "this check and clear this condition.  If you I<don't> set the C<force> "
26368 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
26369 "a single filesystem without booting into Windows between each resize."
26370 msgstr ""
26371
26372 #. type: =head2
26373 #: ../fish/guestfish-actions.pod:3413
26374 msgid "ntfsresize-size"
26375 msgstr ""
26376
26377 #. type: verbatim
26378 #: ../fish/guestfish-actions.pod:3415
26379 #, no-wrap
26380 msgid ""
26381 " ntfsresize-size device size\n"
26382 "\n"
26383 msgstr ""
26384
26385 #. type: textblock
26386 #: ../fish/guestfish-actions.pod:3417
26387 msgid ""
26388 "This command is the same as L</ntfsresize> except that it allows you to "
26389 "specify the new size (in bytes) explicitly."
26390 msgstr ""
26391
26392 #. type: =head2
26393 #: ../fish/guestfish-actions.pod:3427
26394 msgid "part-add"
26395 msgstr ""
26396
26397 #. type: verbatim
26398 #: ../fish/guestfish-actions.pod:3429
26399 #, no-wrap
26400 msgid ""
26401 " part-add device prlogex startsect endsect\n"
26402 "\n"
26403 msgstr ""
26404
26405 #. type: textblock
26406 #: ../fish/guestfish-actions.pod:3431
26407 msgid ""
26408 "This command adds a partition to C<device>.  If there is no partition table "
26409 "on the device, call L</part-init> first."
26410 msgstr ""
26411
26412 #. type: textblock
26413 #: ../fish/guestfish-actions.pod:3443
26414 msgid ""
26415 "Creating a partition which covers the whole disk is not so easy.  Use L</"
26416 "part-disk> to do that."
26417 msgstr ""
26418
26419 #. type: =head2
26420 #: ../fish/guestfish-actions.pod:3446
26421 msgid "part-del"
26422 msgstr ""
26423
26424 #. type: verbatim
26425 #: ../fish/guestfish-actions.pod:3448
26426 #, no-wrap
26427 msgid ""
26428 " part-del device partnum\n"
26429 "\n"
26430 msgstr ""
26431
26432 #. type: =head2
26433 #: ../fish/guestfish-actions.pod:3456
26434 msgid "part-disk"
26435 msgstr ""
26436
26437 #. type: verbatim
26438 #: ../fish/guestfish-actions.pod:3458
26439 #, no-wrap
26440 msgid ""
26441 " part-disk device parttype\n"
26442 "\n"
26443 msgstr ""
26444
26445 #. type: textblock
26446 #: ../fish/guestfish-actions.pod:3460
26447 msgid ""
26448 "This command is simply a combination of L</part-init> followed by L</part-"
26449 "add> to create a single primary partition covering the whole disk."
26450 msgstr ""
26451
26452 #. type: textblock
26453 #: ../fish/guestfish-actions.pod:3464
26454 msgid ""
26455 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
26456 "possible values are described in L</part-init>."
26457 msgstr ""
26458
26459 #. type: =head2
26460 #: ../fish/guestfish-actions.pod:3470
26461 msgid "part-get-bootable"
26462 msgstr ""
26463
26464 #. type: verbatim
26465 #: ../fish/guestfish-actions.pod:3472
26466 #, no-wrap
26467 msgid ""
26468 " part-get-bootable device partnum\n"
26469 "\n"
26470 msgstr ""
26471
26472 #. type: textblock
26473 #: ../fish/guestfish-actions.pod:3477
26474 msgid "See also L</part-set-bootable>."
26475 msgstr ""
26476
26477 #. type: =head2
26478 #: ../fish/guestfish-actions.pod:3479
26479 msgid "part-get-mbr-id"
26480 msgstr ""
26481
26482 #. type: verbatim
26483 #: ../fish/guestfish-actions.pod:3481
26484 #, no-wrap
26485 msgid ""
26486 " part-get-mbr-id device partnum\n"
26487 "\n"
26488 msgstr ""
26489
26490 #. type: textblock
26491 #: ../fish/guestfish-actions.pod:3486 ../fish/guestfish-actions.pod:3624
26492 msgid ""
26493 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
26494 "undefined results for other partition table types (see L</part-get-"
26495 "parttype>)."
26496 msgstr ""
26497
26498 #. type: =head2
26499 #: ../fish/guestfish-actions.pod:3490
26500 msgid "part-get-parttype"
26501 msgstr ""
26502
26503 #. type: verbatim
26504 #: ../fish/guestfish-actions.pod:3492
26505 #, no-wrap
26506 msgid ""
26507 " part-get-parttype device\n"
26508 "\n"
26509 msgstr ""
26510
26511 #. type: textblock
26512 #: ../fish/guestfish-actions.pod:3497
26513 msgid ""
26514 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26515 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26516 "possible, although unusual.  See L</part-init> for a full list."
26517 msgstr ""
26518
26519 #. type: =head2
26520 #: ../fish/guestfish-actions.pod:3502
26521 msgid "part-init"
26522 msgstr ""
26523
26524 #. type: verbatim
26525 #: ../fish/guestfish-actions.pod:3504
26526 #, no-wrap
26527 msgid ""
26528 " part-init device parttype\n"
26529 "\n"
26530 msgstr ""
26531
26532 #. type: textblock
26533 #: ../fish/guestfish-actions.pod:3510
26534 msgid ""
26535 "Initially there are no partitions.  Following this, you should call L</part-"
26536 "add> for each partition required."
26537 msgstr ""
26538
26539 #. type: =head2
26540 #: ../fish/guestfish-actions.pod:3573
26541 msgid "part-list"
26542 msgstr ""
26543
26544 #. type: verbatim
26545 #: ../fish/guestfish-actions.pod:3575
26546 #, no-wrap
26547 msgid ""
26548 " part-list device\n"
26549 "\n"
26550 msgstr ""
26551
26552 #. type: textblock
26553 #: ../fish/guestfish-actions.pod:3590
26554 msgid ""
26555 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26556 "the device's sector size, see L</blockdev-getss>."
26557 msgstr ""
26558
26559 #. type: =head2
26560 #: ../fish/guestfish-actions.pod:3603
26561 msgid "part-set-bootable"
26562 msgstr ""
26563
26564 #. type: verbatim
26565 #: ../fish/guestfish-actions.pod:3605
26566 #, no-wrap
26567 msgid ""
26568 " part-set-bootable device partnum true|false\n"
26569 "\n"
26570 msgstr ""
26571
26572 #. type: =head2
26573 #: ../fish/guestfish-actions.pod:3614
26574 msgid "part-set-mbr-id"
26575 msgstr ""
26576
26577 #. type: verbatim
26578 #: ../fish/guestfish-actions.pod:3616
26579 #, no-wrap
26580 msgid ""
26581 " part-set-mbr-id device partnum idbyte\n"
26582 "\n"
26583 msgstr ""
26584
26585 #. type: =head2
26586 #: ../fish/guestfish-actions.pod:3628
26587 msgid "part-set-name"
26588 msgstr ""
26589
26590 #. type: verbatim
26591 #: ../fish/guestfish-actions.pod:3630
26592 #, no-wrap
26593 msgid ""
26594 " part-set-name device partnum name\n"
26595 "\n"
26596 msgstr ""
26597
26598 #. type: =head2
26599 #: ../fish/guestfish-actions.pod:3638
26600 msgid "part-to-dev"
26601 msgstr ""
26602
26603 #. type: verbatim
26604 #: ../fish/guestfish-actions.pod:3640
26605 #, no-wrap
26606 msgid ""
26607 " part-to-dev partition\n"
26608 "\n"
26609 msgstr ""
26610
26611 #. type: textblock
26612 #: ../fish/guestfish-actions.pod:3646
26613 msgid ""
26614 "The named partition must exist, for example as a string returned from L</"
26615 "list-partitions>."
26616 msgstr ""
26617
26618 #. type: =head2
26619 #: ../fish/guestfish-actions.pod:3649
26620 msgid "ping-daemon"
26621 msgstr ""
26622
26623 #. type: verbatim
26624 #: ../fish/guestfish-actions.pod:3651
26625 #, no-wrap
26626 msgid ""
26627 " ping-daemon\n"
26628 "\n"
26629 msgstr ""
26630
26631 #. type: =head2
26632 #: ../fish/guestfish-actions.pod:3658
26633 msgid "pread"
26634 msgstr ""
26635
26636 #. type: verbatim
26637 #: ../fish/guestfish-actions.pod:3660
26638 #, no-wrap
26639 msgid ""
26640 " pread path count offset\n"
26641 "\n"
26642 msgstr ""
26643
26644 #. type: textblock
26645 #: ../fish/guestfish-actions.pod:3668
26646 msgid "See also L</pwrite>, L</pread-device>."
26647 msgstr ""
26648
26649 #. type: =head2
26650 #: ../fish/guestfish-actions.pod:3673
26651 msgid "pread-device"
26652 msgstr ""
26653
26654 #. type: verbatim
26655 #: ../fish/guestfish-actions.pod:3675
26656 #, no-wrap
26657 msgid ""
26658 " pread-device device count offset\n"
26659 "\n"
26660 msgstr ""
26661
26662 #. type: textblock
26663 #: ../fish/guestfish-actions.pod:3683
26664 msgid "See also L</pread>."
26665 msgstr ""
26666
26667 #. type: =head2
26668 #: ../fish/guestfish-actions.pod:3688
26669 msgid "pvcreate"
26670 msgstr ""
26671
26672 #. type: verbatim
26673 #: ../fish/guestfish-actions.pod:3690
26674 #, no-wrap
26675 msgid ""
26676 " pvcreate device\n"
26677 "\n"
26678 msgstr ""
26679
26680 #. type: =head2
26681 #: ../fish/guestfish-actions.pod:3696
26682 msgid "pvremove"
26683 msgstr ""
26684
26685 #. type: verbatim
26686 #: ../fish/guestfish-actions.pod:3698
26687 #, no-wrap
26688 msgid ""
26689 " pvremove device\n"
26690 "\n"
26691 msgstr ""
26692
26693 #. type: =head2
26694 #: ../fish/guestfish-actions.pod:3707
26695 msgid "pvresize"
26696 msgstr ""
26697
26698 #. type: verbatim
26699 #: ../fish/guestfish-actions.pod:3709
26700 #, no-wrap
26701 msgid ""
26702 " pvresize device\n"
26703 "\n"
26704 msgstr ""
26705
26706 #. type: =head2
26707 #: ../fish/guestfish-actions.pod:3714
26708 msgid "pvresize-size"
26709 msgstr ""
26710
26711 #. type: verbatim
26712 #: ../fish/guestfish-actions.pod:3716
26713 #, no-wrap
26714 msgid ""
26715 " pvresize-size device size\n"
26716 "\n"
26717 msgstr ""
26718
26719 #. type: textblock
26720 #: ../fish/guestfish-actions.pod:3718
26721 msgid ""
26722 "This command is the same as L</pvresize> except that it allows you to "
26723 "specify the new size (in bytes) explicitly."
26724 msgstr ""
26725
26726 #. type: =head2
26727 #: ../fish/guestfish-actions.pod:3721
26728 msgid "pvs"
26729 msgstr ""
26730
26731 #. type: verbatim
26732 #: ../fish/guestfish-actions.pod:3723
26733 #, no-wrap
26734 msgid ""
26735 " pvs\n"
26736 "\n"
26737 msgstr ""
26738
26739 #. type: textblock
26740 #: ../fish/guestfish-actions.pod:3731
26741 msgid "See also L</pvs-full>."
26742 msgstr ""
26743
26744 #. type: =head2
26745 #: ../fish/guestfish-actions.pod:3733
26746 msgid "pvs-full"
26747 msgstr ""
26748
26749 #. type: verbatim
26750 #: ../fish/guestfish-actions.pod:3735
26751 #, no-wrap
26752 msgid ""
26753 " pvs-full\n"
26754 "\n"
26755 msgstr ""
26756
26757 #. type: =head2
26758 #: ../fish/guestfish-actions.pod:3740
26759 msgid "pvuuid"
26760 msgstr ""
26761
26762 #. type: verbatim
26763 #: ../fish/guestfish-actions.pod:3742
26764 #, no-wrap
26765 msgid ""
26766 " pvuuid device\n"
26767 "\n"
26768 msgstr ""
26769
26770 #. type: =head2
26771 #: ../fish/guestfish-actions.pod:3746
26772 msgid "pwrite"
26773 msgstr ""
26774
26775 #. type: verbatim
26776 #: ../fish/guestfish-actions.pod:3748
26777 #, no-wrap
26778 msgid ""
26779 " pwrite path content offset\n"
26780 "\n"
26781 msgstr ""
26782
26783 #. type: textblock
26784 #: ../fish/guestfish-actions.pod:3759
26785 msgid "See also L</pread>, L</pwrite-device>."
26786 msgstr ""
26787
26788 #. type: =head2
26789 #: ../fish/guestfish-actions.pod:3764
26790 msgid "pwrite-device"
26791 msgstr ""
26792
26793 #. type: verbatim
26794 #: ../fish/guestfish-actions.pod:3766
26795 #, no-wrap
26796 msgid ""
26797 " pwrite-device device content offset\n"
26798 "\n"
26799 msgstr ""
26800
26801 #. type: textblock
26802 #: ../fish/guestfish-actions.pod:3776
26803 msgid "See also L</pwrite>."
26804 msgstr ""
26805
26806 #. type: =head2
26807 #: ../fish/guestfish-actions.pod:3781
26808 msgid "read-file"
26809 msgstr ""
26810
26811 #. type: verbatim
26812 #: ../fish/guestfish-actions.pod:3783
26813 #, no-wrap
26814 msgid ""
26815 " read-file path\n"
26816 "\n"
26817 msgstr ""
26818
26819 #. type: textblock
26820 #: ../fish/guestfish-actions.pod:3788
26821 msgid ""
26822 "Unlike L</cat>, this function can correctly handle files that contain "
26823 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26824 "is limited in the total size of file that can be handled."
26825 msgstr ""
26826
26827 #. type: =head2
26828 #: ../fish/guestfish-actions.pod:3796
26829 msgid "read-lines"
26830 msgstr ""
26831
26832 #. type: verbatim
26833 #: ../fish/guestfish-actions.pod:3798
26834 #, no-wrap
26835 msgid ""
26836 " read-lines path\n"
26837 "\n"
26838 msgstr ""
26839
26840 #. type: textblock
26841 #: ../fish/guestfish-actions.pod:3805
26842 msgid ""
26843 "Note that this function cannot correctly handle binary files (specifically, "
26844 "files containing C<\\0> character which is treated as end of line).  For "
26845 "those you need to use the L</read-file> function which has a more complex "
26846 "interface."
26847 msgstr ""
26848
26849 #. type: =head2
26850 #: ../fish/guestfish-actions.pod:3810
26851 msgid "readdir"
26852 msgstr ""
26853
26854 #. type: verbatim
26855 #: ../fish/guestfish-actions.pod:3812
26856 #, no-wrap
26857 msgid ""
26858 " readdir dir\n"
26859 "\n"
26860 msgstr ""
26861
26862 #. type: textblock
26863 #: ../fish/guestfish-actions.pod:3864
26864 msgid ""
26865 "This function is primarily intended for use by programs.  To get a simple "
26866 "list of names, use L</ls>.  To get a printable directory for human "
26867 "consumption, use L</ll>."
26868 msgstr ""
26869
26870 #. type: =head2
26871 #: ../fish/guestfish-actions.pod:3868
26872 msgid "readlink"
26873 msgstr ""
26874
26875 #. type: verbatim
26876 #: ../fish/guestfish-actions.pod:3870
26877 #, no-wrap
26878 msgid ""
26879 " readlink path\n"
26880 "\n"
26881 msgstr ""
26882
26883 #. type: =head2
26884 #: ../fish/guestfish-actions.pod:3874
26885 msgid "readlinklist"
26886 msgstr ""
26887
26888 #. type: verbatim
26889 #: ../fish/guestfish-actions.pod:3876
26890 #, no-wrap
26891 msgid ""
26892 " readlinklist path 'names ...'\n"
26893 "\n"
26894 msgstr ""
26895
26896 #. type: =head2
26897 #: ../fish/guestfish-actions.pod:3900
26898 msgid "realpath"
26899 msgstr ""
26900
26901 #. type: verbatim
26902 #: ../fish/guestfish-actions.pod:3902
26903 #, no-wrap
26904 msgid ""
26905 " realpath path\n"
26906 "\n"
26907 msgstr ""
26908
26909 #. type: =head2
26910 #: ../fish/guestfish-actions.pod:3907
26911 msgid "removexattr"
26912 msgstr ""
26913
26914 #. type: verbatim
26915 #: ../fish/guestfish-actions.pod:3909
26916 #, no-wrap
26917 msgid ""
26918 " removexattr xattr path\n"
26919 "\n"
26920 msgstr ""
26921
26922 #. type: textblock
26923 #: ../fish/guestfish-actions.pod:3914
26924 msgid "See also: L</lremovexattr>, L<attr(5)>."
26925 msgstr ""
26926
26927 #. type: =head2
26928 #: ../fish/guestfish-actions.pod:3916
26929 msgid "resize2fs"
26930 msgstr ""
26931
26932 #. type: verbatim
26933 #: ../fish/guestfish-actions.pod:3918
26934 #, no-wrap
26935 msgid ""
26936 " resize2fs device\n"
26937 "\n"
26938 msgstr ""
26939
26940 #. type: textblock
26941 #: ../fish/guestfish-actions.pod:3923
26942 msgid ""
26943 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26944 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26945 "gives an error about this and sometimes not.  In any case, it is always safe "
26946 "to call L</e2fsck-f> before calling this function."
26947 msgstr ""
26948
26949 #. type: =head2
26950 #: ../fish/guestfish-actions.pod:3929
26951 msgid "resize2fs-M"
26952 msgstr ""
26953
26954 #. type: verbatim
26955 #: ../fish/guestfish-actions.pod:3931
26956 #, no-wrap
26957 msgid ""
26958 " resize2fs-M device\n"
26959 "\n"
26960 msgstr ""
26961
26962 #. type: textblock
26963 #: ../fish/guestfish-actions.pod:3933
26964 msgid ""
26965 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26966 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26967 "command."
26968 msgstr ""
26969
26970 #. type: textblock
26971 #: ../fish/guestfish-actions.pod:3937
26972 msgid ""
26973 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26974 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26975 "multiplied together, give the resulting size of the minimal filesystem in "
26976 "bytes."
26977 msgstr ""
26978
26979 #. type: =head2
26980 #: ../fish/guestfish-actions.pod:3942
26981 msgid "resize2fs-size"
26982 msgstr ""
26983
26984 #. type: verbatim
26985 #: ../fish/guestfish-actions.pod:3944
26986 #, no-wrap
26987 msgid ""
26988 " resize2fs-size device size\n"
26989 "\n"
26990 msgstr ""
26991
26992 #. type: textblock
26993 #: ../fish/guestfish-actions.pod:3946
26994 msgid ""
26995 "This command is the same as L</resize2fs> except that it allows you to "
26996 "specify the new size (in bytes) explicitly."
26997 msgstr ""
26998
26999 #. type: =head2
27000 #: ../fish/guestfish-actions.pod:3949
27001 msgid "rm"
27002 msgstr ""
27003
27004 #. type: verbatim
27005 #: ../fish/guestfish-actions.pod:3951
27006 #, no-wrap
27007 msgid ""
27008 " rm path\n"
27009 "\n"
27010 msgstr ""
27011
27012 #. type: =head2
27013 #: ../fish/guestfish-actions.pod:3955
27014 msgid "rm-rf"
27015 msgstr ""
27016
27017 #. type: verbatim
27018 #: ../fish/guestfish-actions.pod:3957
27019 #, no-wrap
27020 msgid ""
27021 " rm-rf path\n"
27022 "\n"
27023 msgstr ""
27024
27025 #. type: =head2
27026 #: ../fish/guestfish-actions.pod:3963
27027 msgid "rmdir"
27028 msgstr ""
27029
27030 #. type: verbatim
27031 #: ../fish/guestfish-actions.pod:3965
27032 #, no-wrap
27033 msgid ""
27034 " rmdir path\n"
27035 "\n"
27036 msgstr ""
27037
27038 #. type: =head2
27039 #: ../fish/guestfish-actions.pod:3969
27040 msgid "rmmountpoint"
27041 msgstr ""
27042
27043 #. type: verbatim
27044 #: ../fish/guestfish-actions.pod:3971
27045 #, no-wrap
27046 msgid ""
27047 " rmmountpoint exemptpath\n"
27048 "\n"
27049 msgstr ""
27050
27051 #. type: textblock
27052 #: ../fish/guestfish-actions.pod:3973
27053 msgid ""
27054 "This calls removes a mountpoint that was previously created with L</"
27055 "mkmountpoint>.  See L</mkmountpoint> for full details."
27056 msgstr ""
27057
27058 #. type: =head2
27059 #: ../fish/guestfish-actions.pod:3977
27060 msgid "scrub-device"
27061 msgstr ""
27062
27063 #. type: verbatim
27064 #: ../fish/guestfish-actions.pod:3979
27065 #, no-wrap
27066 msgid ""
27067 " scrub-device device\n"
27068 "\n"
27069 msgstr ""
27070
27071 #. type: =head2
27072 #: ../fish/guestfish-actions.pod:3990
27073 msgid "scrub-file"
27074 msgstr ""
27075
27076 #. type: verbatim
27077 #: ../fish/guestfish-actions.pod:3992
27078 #, no-wrap
27079 msgid ""
27080 " scrub-file file\n"
27081 "\n"
27082 msgstr ""
27083
27084 #. type: =head2
27085 #: ../fish/guestfish-actions.pod:4002
27086 msgid "scrub-freespace"
27087 msgstr ""
27088
27089 #. type: verbatim
27090 #: ../fish/guestfish-actions.pod:4004
27091 #, no-wrap
27092 msgid ""
27093 " scrub-freespace dir\n"
27094 "\n"
27095 msgstr ""
27096
27097 #. type: textblock
27098 #: ../fish/guestfish-actions.pod:4006
27099 msgid ""
27100 "This command creates the directory C<dir> and then fills it with files until "
27101 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
27102 "deletes them.  The intention is to scrub any free space on the partition "
27103 "containing C<dir>."
27104 msgstr ""
27105
27106 #. type: =head2
27107 #: ../fish/guestfish-actions.pod:4015
27108 msgid "set-append"
27109 msgstr ""
27110
27111 #. type: =head2
27112 #: ../fish/guestfish-actions.pod:4017
27113 msgid "append"
27114 msgstr ""
27115
27116 #. type: verbatim
27117 #: ../fish/guestfish-actions.pod:4019
27118 #, no-wrap
27119 msgid ""
27120 " set-append append\n"
27121 "\n"
27122 msgstr ""
27123
27124 #. type: =head2
27125 #: ../fish/guestfish-actions.pod:4030
27126 msgid "set-attach-method"
27127 msgstr ""
27128
27129 #. type: =head2
27130 #: ../fish/guestfish-actions.pod:4032
27131 msgid "attach-method"
27132 msgstr ""
27133
27134 #. type: verbatim
27135 #: ../fish/guestfish-actions.pod:4034
27136 #, no-wrap
27137 msgid ""
27138 " set-attach-method attachmethod\n"
27139 "\n"
27140 msgstr ""
27141
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:4056
27144 msgid "set-autosync"
27145 msgstr ""
27146
27147 #. type: =head2
27148 #: ../fish/guestfish-actions.pod:4058
27149 msgid "autosync"
27150 msgstr ""
27151
27152 #. type: verbatim
27153 #: ../fish/guestfish-actions.pod:4060
27154 #, no-wrap
27155 msgid ""
27156 " set-autosync true|false\n"
27157 "\n"
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:4070
27162 msgid "set-direct"
27163 msgstr ""
27164
27165 #. type: =head2
27166 #: ../fish/guestfish-actions.pod:4072
27167 msgid "direct"
27168 msgstr ""
27169
27170 #. type: verbatim
27171 #: ../fish/guestfish-actions.pod:4074
27172 #, no-wrap
27173 msgid ""
27174 " set-direct true|false\n"
27175 "\n"
27176 msgstr ""
27177
27178 #. type: textblock
27179 #: ../fish/guestfish-actions.pod:4080
27180 msgid ""
27181 "One consequence of this is that log messages aren't caught by the library "
27182 "and handled by L</set-log-message-callback>, but go straight to stdout."
27183 msgstr ""
27184
27185 #. type: =head2
27186 #: ../fish/guestfish-actions.pod:4089
27187 msgid "set-e2label"
27188 msgstr ""
27189
27190 #. type: verbatim
27191 #: ../fish/guestfish-actions.pod:4091
27192 #, no-wrap
27193 msgid ""
27194 " set-e2label device label\n"
27195 "\n"
27196 msgstr ""
27197
27198 #. type: textblock
27199 #: ../fish/guestfish-actions.pod:4097
27200 msgid ""
27201 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
27202 "label on a filesystem."
27203 msgstr ""
27204
27205 #. type: =head2
27206 #: ../fish/guestfish-actions.pod:4100
27207 msgid "set-e2uuid"
27208 msgstr ""
27209
27210 #. type: verbatim
27211 #: ../fish/guestfish-actions.pod:4102
27212 #, no-wrap
27213 msgid ""
27214 " set-e2uuid device uuid\n"
27215 "\n"
27216 msgstr ""
27217
27218 #. type: textblock
27219 #: ../fish/guestfish-actions.pod:4109
27220 msgid ""
27221 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
27222 "UUID of a filesystem."
27223 msgstr ""
27224
27225 #. type: =head2
27226 #: ../fish/guestfish-actions.pod:4112
27227 msgid "set-memsize"
27228 msgstr ""
27229
27230 #. type: =head2
27231 #: ../fish/guestfish-actions.pod:4114
27232 msgid "memsize"
27233 msgstr ""
27234
27235 #. type: verbatim
27236 #: ../fish/guestfish-actions.pod:4116
27237 #, no-wrap
27238 msgid ""
27239 " set-memsize memsize\n"
27240 "\n"
27241 msgstr ""
27242
27243 #. type: textblock
27244 #: ../fish/guestfish-actions.pod:4118
27245 msgid ""
27246 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
27247 "This only has any effect if called before L</launch>."
27248 msgstr ""
27249
27250 #. type: =head2
27251 #: ../fish/guestfish-actions.pod:4129
27252 msgid "set-network"
27253 msgstr ""
27254
27255 #. type: =head2
27256 #: ../fish/guestfish-actions.pod:4131
27257 msgid "network"
27258 msgstr ""
27259
27260 #. type: verbatim
27261 #: ../fish/guestfish-actions.pod:4133
27262 #, no-wrap
27263 msgid ""
27264 " set-network true|false\n"
27265 "\n"
27266 msgstr ""
27267
27268 #. type: textblock
27269 #: ../fish/guestfish-actions.pod:4141
27270 msgid ""
27271 "You must call this before calling L</launch>, otherwise it has no effect."
27272 msgstr ""
27273
27274 #. type: =head2
27275 #: ../fish/guestfish-actions.pod:4144
27276 msgid "set-path"
27277 msgstr ""
27278
27279 #. type: =head2
27280 #: ../fish/guestfish-actions.pod:4146
27281 msgid "path"
27282 msgstr ""
27283
27284 #. type: verbatim
27285 #: ../fish/guestfish-actions.pod:4148
27286 #, no-wrap
27287 msgid ""
27288 " set-path searchpath\n"
27289 "\n"
27290 msgstr ""
27291
27292 #. type: =head2
27293 #: ../fish/guestfish-actions.pod:4157
27294 msgid "set-qemu"
27295 msgstr ""
27296
27297 #. type: =head2
27298 #: ../fish/guestfish-actions.pod:4159
27299 msgid "qemu"
27300 msgstr ""
27301
27302 #. type: verbatim
27303 #: ../fish/guestfish-actions.pod:4161
27304 #, no-wrap
27305 msgid ""
27306 " set-qemu qemu\n"
27307 "\n"
27308 msgstr ""
27309
27310 #. type: =head2
27311 #: ../fish/guestfish-actions.pod:4181
27312 msgid "set-recovery-proc"
27313 msgstr ""
27314
27315 #. type: =head2
27316 #: ../fish/guestfish-actions.pod:4183
27317 msgid "recovery-proc"
27318 msgstr ""
27319
27320 #. type: verbatim
27321 #: ../fish/guestfish-actions.pod:4185
27322 #, no-wrap
27323 msgid ""
27324 " set-recovery-proc true|false\n"
27325 "\n"
27326 msgstr ""
27327
27328 #. type: textblock
27329 #: ../fish/guestfish-actions.pod:4187
27330 msgid ""
27331 "If this is called with the parameter C<false> then L</launch> does not "
27332 "create a recovery process.  The purpose of the recovery process is to stop "
27333 "runaway qemu processes in the case where the main program aborts abruptly."
27334 msgstr ""
27335
27336 #. type: textblock
27337 #: ../fish/guestfish-actions.pod:4192
27338 msgid ""
27339 "This only has any effect if called before L</launch>, and the default is "
27340 "true."
27341 msgstr ""
27342
27343 #. type: =head2
27344 #: ../fish/guestfish-actions.pod:4201
27345 msgid "set-selinux"
27346 msgstr ""
27347
27348 #. type: =head2
27349 #: ../fish/guestfish-actions.pod:4203
27350 msgid "selinux"
27351 msgstr ""
27352
27353 #. type: verbatim
27354 #: ../fish/guestfish-actions.pod:4205
27355 #, no-wrap
27356 msgid ""
27357 " set-selinux true|false\n"
27358 "\n"
27359 msgstr ""
27360
27361 #. type: =head2
27362 #: ../fish/guestfish-actions.pod:4216
27363 msgid "set-trace"
27364 msgstr ""
27365
27366 #. type: =head2
27367 #: ../fish/guestfish-actions.pod:4218
27368 msgid "trace"
27369 msgstr ""
27370
27371 #. type: verbatim
27372 #: ../fish/guestfish-actions.pod:4220
27373 #, no-wrap
27374 msgid ""
27375 " set-trace true|false\n"
27376 "\n"
27377 msgstr ""
27378
27379 #. type: textblock
27380 #: ../fish/guestfish-actions.pod:4232
27381 msgid ""
27382 "Trace messages are normally sent to C<stderr>, unless you register a "
27383 "callback to send them somewhere else (see L</set-event-callback>)."
27384 msgstr ""
27385
27386 #. type: =head2
27387 #: ../fish/guestfish-actions.pod:4236
27388 msgid "set-verbose"
27389 msgstr ""
27390
27391 #. type: =head2
27392 #: ../fish/guestfish-actions.pod:4238
27393 msgid "verbose"
27394 msgstr ""
27395
27396 #. type: verbatim
27397 #: ../fish/guestfish-actions.pod:4240
27398 #, no-wrap
27399 msgid ""
27400 " set-verbose true|false\n"
27401 "\n"
27402 msgstr ""
27403
27404 #. type: textblock
27405 #: ../fish/guestfish-actions.pod:4247
27406 msgid ""
27407 "Verbose messages are normally sent to C<stderr>, unless you register a "
27408 "callback to send them somewhere else (see L</set-event-callback>)."
27409 msgstr ""
27410
27411 #. type: =head2
27412 #: ../fish/guestfish-actions.pod:4251
27413 msgid "setcon"
27414 msgstr ""
27415
27416 #. type: verbatim
27417 #: ../fish/guestfish-actions.pod:4253
27418 #, no-wrap
27419 msgid ""
27420 " setcon context\n"
27421 "\n"
27422 msgstr ""
27423
27424 #. type: =head2
27425 #: ../fish/guestfish-actions.pod:4260
27426 msgid "setxattr"
27427 msgstr ""
27428
27429 #. type: verbatim
27430 #: ../fish/guestfish-actions.pod:4262
27431 #, no-wrap
27432 msgid ""
27433 " setxattr xattr val vallen path\n"
27434 "\n"
27435 msgstr ""
27436
27437 #. type: textblock
27438 #: ../fish/guestfish-actions.pod:4268
27439 msgid "See also: L</lsetxattr>, L<attr(5)>."
27440 msgstr ""
27441
27442 #. type: =head2
27443 #: ../fish/guestfish-actions.pod:4270
27444 msgid "sfdisk"
27445 msgstr ""
27446
27447 #. type: verbatim
27448 #: ../fish/guestfish-actions.pod:4272
27449 #, no-wrap
27450 msgid ""
27451 " sfdisk device cyls heads sectors 'lines ...'\n"
27452 "\n"
27453 msgstr ""
27454
27455 #. type: textblock
27456 #: ../fish/guestfish-actions.pod:4294
27457 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27458 msgstr ""
27459
27460 #. type: =head2
27461 #: ../fish/guestfish-actions.pod:4307
27462 msgid "sfdiskM"
27463 msgstr ""
27464
27465 #. type: verbatim
27466 #: ../fish/guestfish-actions.pod:4309
27467 #, no-wrap
27468 msgid ""
27469 " sfdiskM device 'lines ...'\n"
27470 "\n"
27471 msgstr ""
27472
27473 #. type: textblock
27474 #: ../fish/guestfish-actions.pod:4311
27475 msgid ""
27476 "This is a simplified interface to the L</sfdisk> command, where partition "
27477 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27478 "you don't need to specify the cyls, heads and sectors parameters which were "
27479 "rarely if ever used anyway."
27480 msgstr ""
27481
27482 #. type: textblock
27483 #: ../fish/guestfish-actions.pod:4317
27484 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27485 msgstr ""
27486
27487 #. type: =head2
27488 #: ../fish/guestfish-actions.pod:4330
27489 msgid "sfdisk-N"
27490 msgstr ""
27491
27492 #. type: verbatim
27493 #: ../fish/guestfish-actions.pod:4332
27494 #, no-wrap
27495 msgid ""
27496 " sfdisk-N device partnum cyls heads sectors line\n"
27497 "\n"
27498 msgstr ""
27499
27500 #. type: textblock
27501 #: ../fish/guestfish-actions.pod:4337
27502 msgid ""
27503 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27504 "cyls/heads/sectors parameters."
27505 msgstr ""
27506
27507 #. type: textblock
27508 #: ../fish/guestfish-actions.pod:4340
27509 msgid "See also: L</part-add>"
27510 msgstr ""
27511
27512 #. type: =head2
27513 #: ../fish/guestfish-actions.pod:4352
27514 msgid "sfdisk-disk-geometry"
27515 msgstr ""
27516
27517 #. type: verbatim
27518 #: ../fish/guestfish-actions.pod:4354
27519 #, no-wrap
27520 msgid ""
27521 " sfdisk-disk-geometry device\n"
27522 "\n"
27523 msgstr ""
27524
27525 #. type: textblock
27526 #: ../fish/guestfish-actions.pod:4356
27527 msgid ""
27528 "This displays the disk geometry of C<device> read from the partition table.  "
27529 "Especially in the case where the underlying block device has been resized, "
27530 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
27531 "kernel-geometry>)."
27532 msgstr ""
27533
27534 #. type: =head2
27535 #: ../fish/guestfish-actions.pod:4364
27536 msgid "sfdisk-kernel-geometry"
27537 msgstr ""
27538
27539 #. type: verbatim
27540 #: ../fish/guestfish-actions.pod:4366
27541 #, no-wrap
27542 msgid ""
27543 " sfdisk-kernel-geometry device\n"
27544 "\n"
27545 msgstr ""
27546
27547 #. type: =head2
27548 #: ../fish/guestfish-actions.pod:4373
27549 msgid "sfdisk-l"
27550 msgstr ""
27551
27552 #. type: verbatim
27553 #: ../fish/guestfish-actions.pod:4375
27554 #, no-wrap
27555 msgid ""
27556 " sfdisk-l device\n"
27557 "\n"
27558 msgstr ""
27559
27560 #. type: textblock
27561 #: ../fish/guestfish-actions.pod:4381
27562 msgid "See also: L</part-list>"
27563 msgstr ""
27564
27565 #. type: =head2
27566 #: ../fish/guestfish-actions.pod:4390
27567 msgid "sh"
27568 msgstr ""
27569
27570 #. type: verbatim
27571 #: ../fish/guestfish-actions.pod:4392
27572 #, no-wrap
27573 msgid ""
27574 " sh command\n"
27575 "\n"
27576 msgstr ""
27577
27578 #. type: textblock
27579 #: ../fish/guestfish-actions.pod:4397
27580 msgid "This is like L</command>, but passes the command to:"
27581 msgstr ""
27582
27583 #. type: textblock
27584 #: ../fish/guestfish-actions.pod:4405
27585 msgid "All the provisos about L</command> apply to this call."
27586 msgstr ""
27587
27588 #. type: =head2
27589 #: ../fish/guestfish-actions.pod:4407
27590 msgid "sh-lines"
27591 msgstr ""
27592
27593 #. type: verbatim
27594 #: ../fish/guestfish-actions.pod:4409
27595 #, no-wrap
27596 msgid ""
27597 " sh-lines command\n"
27598 "\n"
27599 msgstr ""
27600
27601 #. type: textblock
27602 #: ../fish/guestfish-actions.pod:4411
27603 msgid "This is the same as L</sh>, but splits the result into a list of lines."
27604 msgstr ""
27605
27606 #. type: textblock
27607 #: ../fish/guestfish-actions.pod:4414
27608 msgid "See also: L</command-lines>"
27609 msgstr ""
27610
27611 #. type: =head2
27612 #: ../fish/guestfish-actions.pod:4416
27613 msgid "sleep"
27614 msgstr ""
27615
27616 #. type: verbatim
27617 #: ../fish/guestfish-actions.pod:4418
27618 #, no-wrap
27619 msgid ""
27620 " sleep secs\n"
27621 "\n"
27622 msgstr ""
27623
27624 #. type: =head2
27625 #: ../fish/guestfish-actions.pod:4422
27626 msgid "stat"
27627 msgstr ""
27628
27629 #. type: verbatim
27630 #: ../fish/guestfish-actions.pod:4424
27631 #, no-wrap
27632 msgid ""
27633 " stat path\n"
27634 "\n"
27635 msgstr ""
27636
27637 #. type: =head2
27638 #: ../fish/guestfish-actions.pod:4430
27639 msgid "statvfs"
27640 msgstr ""
27641
27642 #. type: verbatim
27643 #: ../fish/guestfish-actions.pod:4432
27644 #, no-wrap
27645 msgid ""
27646 " statvfs path\n"
27647 "\n"
27648 msgstr ""
27649
27650 #. type: =head2
27651 #: ../fish/guestfish-actions.pod:4440
27652 msgid "strings"
27653 msgstr ""
27654
27655 #. type: verbatim
27656 #: ../fish/guestfish-actions.pod:4442
27657 #, no-wrap
27658 msgid ""
27659 " strings path\n"
27660 "\n"
27661 msgstr ""
27662
27663 #. type: =head2
27664 #: ../fish/guestfish-actions.pod:4450
27665 msgid "strings-e"
27666 msgstr ""
27667
27668 #. type: verbatim
27669 #: ../fish/guestfish-actions.pod:4452
27670 #, no-wrap
27671 msgid ""
27672 " strings-e encoding path\n"
27673 "\n"
27674 msgstr ""
27675
27676 #. type: textblock
27677 #: ../fish/guestfish-actions.pod:4454
27678 msgid ""
27679 "This is like the L</strings> command, but allows you to specify the encoding "
27680 "of strings that are looked for in the source file C<path>."
27681 msgstr ""
27682
27683 #. type: textblock
27684 #: ../fish/guestfish-actions.pod:4464
27685 msgid ""
27686 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27687 "ISO-8859-X (this is what L</strings> uses)."
27688 msgstr ""
27689
27690 #. type: =head2
27691 #: ../fish/guestfish-actions.pod:4496
27692 msgid "swapoff-device"
27693 msgstr ""
27694
27695 #. type: verbatim
27696 #: ../fish/guestfish-actions.pod:4498
27697 #, no-wrap
27698 msgid ""
27699 " swapoff-device device\n"
27700 "\n"
27701 msgstr ""
27702
27703 #. type: textblock
27704 #: ../fish/guestfish-actions.pod:4500
27705 msgid ""
27706 "This command disables the libguestfs appliance swap device or partition "
27707 "named C<device>.  See L</swapon-device>."
27708 msgstr ""
27709
27710 #. type: =head2
27711 #: ../fish/guestfish-actions.pod:4504
27712 msgid "swapoff-file"
27713 msgstr ""
27714
27715 #. type: verbatim
27716 #: ../fish/guestfish-actions.pod:4506
27717 #, no-wrap
27718 msgid ""
27719 " swapoff-file file\n"
27720 "\n"
27721 msgstr ""
27722
27723 #. type: =head2
27724 #: ../fish/guestfish-actions.pod:4510
27725 msgid "swapoff-label"
27726 msgstr ""
27727
27728 #. type: verbatim
27729 #: ../fish/guestfish-actions.pod:4512
27730 #, no-wrap
27731 msgid ""
27732 " swapoff-label label\n"
27733 "\n"
27734 msgstr ""
27735
27736 #. type: =head2
27737 #: ../fish/guestfish-actions.pod:4517
27738 msgid "swapoff-uuid"
27739 msgstr ""
27740
27741 #. type: verbatim
27742 #: ../fish/guestfish-actions.pod:4519
27743 #, no-wrap
27744 msgid ""
27745 " swapoff-uuid uuid\n"
27746 "\n"
27747 msgstr ""
27748
27749 #. type: =head2
27750 #: ../fish/guestfish-actions.pod:4524
27751 msgid "swapon-device"
27752 msgstr ""
27753
27754 #. type: verbatim
27755 #: ../fish/guestfish-actions.pod:4526
27756 #, no-wrap
27757 msgid ""
27758 " swapon-device device\n"
27759 "\n"
27760 msgstr ""
27761
27762 #. type: textblock
27763 #: ../fish/guestfish-actions.pod:4528
27764 msgid ""
27765 "This command enables the libguestfs appliance to use the swap device or "
27766 "partition named C<device>.  The increased memory is made available for all "
27767 "commands, for example those run using L</command> or L</sh>."
27768 msgstr ""
27769
27770 #. type: =head2
27771 #: ../fish/guestfish-actions.pod:4540
27772 msgid "swapon-file"
27773 msgstr ""
27774
27775 #. type: verbatim
27776 #: ../fish/guestfish-actions.pod:4542
27777 #, no-wrap
27778 msgid ""
27779 " swapon-file file\n"
27780 "\n"
27781 msgstr ""
27782
27783 #. type: textblock
27784 #: ../fish/guestfish-actions.pod:4544
27785 msgid ""
27786 "This command enables swap to a file.  See L</swapon-device> for other notes."
27787 msgstr ""
27788
27789 #. type: =head2
27790 #: ../fish/guestfish-actions.pod:4547
27791 msgid "swapon-label"
27792 msgstr ""
27793
27794 #. type: verbatim
27795 #: ../fish/guestfish-actions.pod:4549
27796 #, no-wrap
27797 msgid ""
27798 " swapon-label label\n"
27799 "\n"
27800 msgstr ""
27801
27802 #. type: textblock
27803 #: ../fish/guestfish-actions.pod:4551
27804 msgid ""
27805 "This command enables swap to a labeled swap partition.  See L</swapon-"
27806 "device> for other notes."
27807 msgstr ""
27808
27809 #. type: =head2
27810 #: ../fish/guestfish-actions.pod:4554
27811 msgid "swapon-uuid"
27812 msgstr ""
27813
27814 #. type: verbatim
27815 #: ../fish/guestfish-actions.pod:4556
27816 #, no-wrap
27817 msgid ""
27818 " swapon-uuid uuid\n"
27819 "\n"
27820 msgstr ""
27821
27822 #. type: textblock
27823 #: ../fish/guestfish-actions.pod:4558
27824 msgid ""
27825 "This command enables swap to a swap partition with the given UUID.  See L</"
27826 "swapon-device> for other notes."
27827 msgstr ""
27828
27829 #. type: =head2
27830 #: ../fish/guestfish-actions.pod:4561
27831 msgid "sync"
27832 msgstr ""
27833
27834 #. type: verbatim
27835 #: ../fish/guestfish-actions.pod:4563
27836 #, no-wrap
27837 msgid ""
27838 " sync\n"
27839 "\n"
27840 msgstr ""
27841
27842 #. type: =head2
27843 #: ../fish/guestfish-actions.pod:4571
27844 msgid "tail"
27845 msgstr ""
27846
27847 #. type: verbatim
27848 #: ../fish/guestfish-actions.pod:4573
27849 #, no-wrap
27850 msgid ""
27851 " tail path\n"
27852 "\n"
27853 msgstr ""
27854
27855 #. type: =head2
27856 #: ../fish/guestfish-actions.pod:4581
27857 msgid "tail-n"
27858 msgstr ""
27859
27860 #. type: verbatim
27861 #: ../fish/guestfish-actions.pod:4583
27862 #, no-wrap
27863 msgid ""
27864 " tail-n nrlines path\n"
27865 "\n"
27866 msgstr ""
27867
27868 #. type: =head2
27869 #: ../fish/guestfish-actions.pod:4596
27870 msgid "tar-in"
27871 msgstr ""
27872
27873 #. type: verbatim
27874 #: ../fish/guestfish-actions.pod:4598
27875 #, no-wrap
27876 msgid ""
27877 " tar-in (tarfile|-) directory\n"
27878 "\n"
27879 msgstr ""
27880
27881 #. type: textblock
27882 #: ../fish/guestfish-actions.pod:4603
27883 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27884 msgstr ""
27885
27886 #. type: =head2
27887 #: ../fish/guestfish-actions.pod:4608
27888 msgid "tar-out"
27889 msgstr ""
27890
27891 #. type: verbatim
27892 #: ../fish/guestfish-actions.pod:4610
27893 #, no-wrap
27894 msgid ""
27895 " tar-out directory (tarfile|-)\n"
27896 "\n"
27897 msgstr ""
27898
27899 #. type: textblock
27900 #: ../fish/guestfish-actions.pod:4615
27901 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27902 msgstr ""
27903
27904 #. type: =head2
27905 #: ../fish/guestfish-actions.pod:4620
27906 msgid "tgz-in"
27907 msgstr ""
27908
27909 #. type: verbatim
27910 #: ../fish/guestfish-actions.pod:4622
27911 #, no-wrap
27912 msgid ""
27913 " tgz-in (tarball|-) directory\n"
27914 "\n"
27915 msgstr ""
27916
27917 #. type: textblock
27918 #: ../fish/guestfish-actions.pod:4627
27919 msgid "To upload an uncompressed tarball, use L</tar-in>."
27920 msgstr ""
27921
27922 #. type: =head2
27923 #: ../fish/guestfish-actions.pod:4631
27924 msgid "tgz-out"
27925 msgstr ""
27926
27927 #. type: verbatim
27928 #: ../fish/guestfish-actions.pod:4633
27929 #, no-wrap
27930 msgid ""
27931 " tgz-out directory (tarball|-)\n"
27932 "\n"
27933 msgstr ""
27934
27935 #. type: textblock
27936 #: ../fish/guestfish-actions.pod:4638
27937 msgid "To download an uncompressed tarball, use L</tar-out>."
27938 msgstr ""
27939
27940 #. type: =head2
27941 #: ../fish/guestfish-actions.pod:4642
27942 msgid "touch"
27943 msgstr ""
27944
27945 #. type: verbatim
27946 #: ../fish/guestfish-actions.pod:4644
27947 #, no-wrap
27948 msgid ""
27949 " touch path\n"
27950 "\n"
27951 msgstr ""
27952
27953 #. type: =head2
27954 #: ../fish/guestfish-actions.pod:4653
27955 msgid "truncate"
27956 msgstr ""
27957
27958 #. type: verbatim
27959 #: ../fish/guestfish-actions.pod:4655
27960 #, no-wrap
27961 msgid ""
27962 " truncate path\n"
27963 "\n"
27964 msgstr ""
27965
27966 #. type: =head2
27967 #: ../fish/guestfish-actions.pod:4660
27968 msgid "truncate-size"
27969 msgstr ""
27970
27971 #. type: verbatim
27972 #: ../fish/guestfish-actions.pod:4662
27973 #, no-wrap
27974 msgid ""
27975 " truncate-size path size\n"
27976 "\n"
27977 msgstr ""
27978
27979 #. type: textblock
27980 #: ../fish/guestfish-actions.pod:4667
27981 msgid ""
27982 "If the current file size is less than C<size> then the file is extended to "
27983 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27984 "blocks are not allocated for the file until you write to it).  To create a "
27985 "non-sparse file of zeroes, use L</fallocate64> instead."
27986 msgstr ""
27987
27988 #. type: =head2
27989 #: ../fish/guestfish-actions.pod:4673
27990 msgid "tune2fs-l"
27991 msgstr ""
27992
27993 #. type: verbatim
27994 #: ../fish/guestfish-actions.pod:4675
27995 #, no-wrap
27996 msgid ""
27997 " tune2fs-l device\n"
27998 "\n"
27999 msgstr ""
28000
28001 #. type: =head2
28002 #: ../fish/guestfish-actions.pod:4685
28003 msgid "txz-in"
28004 msgstr ""
28005
28006 #. type: verbatim
28007 #: ../fish/guestfish-actions.pod:4687
28008 #, no-wrap
28009 msgid ""
28010 " txz-in (tarball|-) directory\n"
28011 "\n"
28012 msgstr ""
28013
28014 #. type: =head2
28015 #: ../fish/guestfish-actions.pod:4694
28016 msgid "txz-out"
28017 msgstr ""
28018
28019 #. type: verbatim
28020 #: ../fish/guestfish-actions.pod:4696
28021 #, no-wrap
28022 msgid ""
28023 " txz-out directory (tarball|-)\n"
28024 "\n"
28025 msgstr ""
28026
28027 #. type: =head2
28028 #: ../fish/guestfish-actions.pod:4703
28029 msgid "umask"
28030 msgstr ""
28031
28032 #. type: verbatim
28033 #: ../fish/guestfish-actions.pod:4705
28034 #, no-wrap
28035 msgid ""
28036 " umask mask\n"
28037 "\n"
28038 msgstr ""
28039
28040 #. type: textblock
28041 #: ../fish/guestfish-actions.pod:4719
28042 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
28043 msgstr ""
28044
28045 #. type: =head2
28046 #: ../fish/guestfish-actions.pod:4724
28047 msgid "umount"
28048 msgstr ""
28049
28050 #. type: =head2
28051 #: ../fish/guestfish-actions.pod:4726
28052 msgid "unmount"
28053 msgstr ""
28054
28055 #. type: verbatim
28056 #: ../fish/guestfish-actions.pod:4728
28057 #, no-wrap
28058 msgid ""
28059 " umount pathordevice\n"
28060 "\n"
28061 msgstr ""
28062
28063 #. type: =head2
28064 #: ../fish/guestfish-actions.pod:4734
28065 msgid "umount-all"
28066 msgstr ""
28067
28068 #. type: =head2
28069 #: ../fish/guestfish-actions.pod:4736
28070 msgid "unmount-all"
28071 msgstr ""
28072
28073 #. type: verbatim
28074 #: ../fish/guestfish-actions.pod:4738
28075 #, no-wrap
28076 msgid ""
28077 " umount-all\n"
28078 "\n"
28079 msgstr ""
28080
28081 #. type: =head2
28082 #: ../fish/guestfish-actions.pod:4744
28083 msgid "upload"
28084 msgstr ""
28085
28086 #. type: verbatim
28087 #: ../fish/guestfish-actions.pod:4746
28088 #, no-wrap
28089 msgid ""
28090 " upload (filename|-) remotefilename\n"
28091 "\n"
28092 msgstr ""
28093
28094 #. type: textblock
28095 #: ../fish/guestfish-actions.pod:4753
28096 msgid "See also L</download>."
28097 msgstr ""
28098
28099 #. type: =head2
28100 #: ../fish/guestfish-actions.pod:4757
28101 msgid "upload-offset"
28102 msgstr ""
28103
28104 #. type: verbatim
28105 #: ../fish/guestfish-actions.pod:4759
28106 #, no-wrap
28107 msgid ""
28108 " upload-offset (filename|-) remotefilename offset\n"
28109 "\n"
28110 msgstr ""
28111
28112 #. type: textblock
28113 #: ../fish/guestfish-actions.pod:4771
28114 msgid ""
28115 "Note that there is no limit on the amount of data that can be uploaded with "
28116 "this call, unlike with L</pwrite>, and this call always writes the full "
28117 "amount unless an error occurs."
28118 msgstr ""
28119
28120 #. type: textblock
28121 #: ../fish/guestfish-actions.pod:4776
28122 msgid "See also L</upload>, L</pwrite>."
28123 msgstr ""
28124
28125 #. type: =head2
28126 #: ../fish/guestfish-actions.pod:4780
28127 msgid "utimens"
28128 msgstr ""
28129
28130 #. type: verbatim
28131 #: ../fish/guestfish-actions.pod:4782
28132 #, no-wrap
28133 msgid ""
28134 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
28135 "\n"
28136 msgstr ""
28137
28138 #. type: =head2
28139 #: ../fish/guestfish-actions.pod:4801
28140 msgid "version"
28141 msgstr ""
28142
28143 #. type: verbatim
28144 #: ../fish/guestfish-actions.pod:4803
28145 #, no-wrap
28146 msgid ""
28147 " version\n"
28148 "\n"
28149 msgstr ""
28150
28151 #. type: textblock
28152 #: ../fish/guestfish-actions.pod:4830
28153 msgid ""
28154 "I<Note:> Don't use this call to test for availability of features.  In "
28155 "enterprise distributions we backport features from later versions into "
28156 "earlier versions, making this an unreliable way to test for features.  Use "
28157 "L</available> instead."
28158 msgstr ""
28159
28160 #. type: =head2
28161 #: ../fish/guestfish-actions.pod:4836
28162 msgid "vfs-label"
28163 msgstr ""
28164
28165 #. type: verbatim
28166 #: ../fish/guestfish-actions.pod:4838
28167 #, no-wrap
28168 msgid ""
28169 " vfs-label device\n"
28170 "\n"
28171 msgstr ""
28172
28173 #. type: textblock
28174 #: ../fish/guestfish-actions.pod:4845
28175 msgid "To find a filesystem from the label, use L</findfs-label>."
28176 msgstr ""
28177
28178 #. type: =head2
28179 #: ../fish/guestfish-actions.pod:4847
28180 msgid "vfs-type"
28181 msgstr ""
28182
28183 #. type: verbatim
28184 #: ../fish/guestfish-actions.pod:4849
28185 #, no-wrap
28186 msgid ""
28187 " vfs-type device\n"
28188 "\n"
28189 msgstr ""
28190
28191 #. type: =head2
28192 #: ../fish/guestfish-actions.pod:4859
28193 msgid "vfs-uuid"
28194 msgstr ""
28195
28196 #. type: verbatim
28197 #: ../fish/guestfish-actions.pod:4861
28198 #, no-wrap
28199 msgid ""
28200 " vfs-uuid device\n"
28201 "\n"
28202 msgstr ""
28203
28204 #. type: textblock
28205 #: ../fish/guestfish-actions.pod:4868
28206 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
28207 msgstr ""
28208
28209 #. type: =head2
28210 #: ../fish/guestfish-actions.pod:4870
28211 msgid "vg-activate"
28212 msgstr ""
28213
28214 #. type: verbatim
28215 #: ../fish/guestfish-actions.pod:4872
28216 #, no-wrap
28217 msgid ""
28218 " vg-activate true|false 'volgroups ...'\n"
28219 "\n"
28220 msgstr ""
28221
28222 #. type: =head2
28223 #: ../fish/guestfish-actions.pod:4882
28224 msgid "vg-activate-all"
28225 msgstr ""
28226
28227 #. type: verbatim
28228 #: ../fish/guestfish-actions.pod:4884
28229 #, no-wrap
28230 msgid ""
28231 " vg-activate-all true|false\n"
28232 "\n"
28233 msgstr ""
28234
28235 #. type: =head2
28236 #: ../fish/guestfish-actions.pod:4891
28237 msgid "vgcreate"
28238 msgstr ""
28239
28240 #. type: verbatim
28241 #: ../fish/guestfish-actions.pod:4893
28242 #, no-wrap
28243 msgid ""
28244 " vgcreate volgroup 'physvols ...'\n"
28245 "\n"
28246 msgstr ""
28247
28248 #. type: =head2
28249 #: ../fish/guestfish-actions.pod:4898
28250 msgid "vglvuuids"
28251 msgstr ""
28252
28253 #. type: verbatim
28254 #: ../fish/guestfish-actions.pod:4900
28255 #, no-wrap
28256 msgid ""
28257 " vglvuuids vgname\n"
28258 "\n"
28259 msgstr ""
28260
28261 #. type: textblock
28262 #: ../fish/guestfish-actions.pod:4905
28263 msgid ""
28264 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
28265 "logical volumes and volume groups."
28266 msgstr ""
28267
28268 #. type: textblock
28269 #: ../fish/guestfish-actions.pod:4908
28270 msgid "See also L</vgpvuuids>."
28271 msgstr ""
28272
28273 #. type: =head2
28274 #: ../fish/guestfish-actions.pod:4910
28275 msgid "vgpvuuids"
28276 msgstr ""
28277
28278 #. type: verbatim
28279 #: ../fish/guestfish-actions.pod:4912
28280 #, no-wrap
28281 msgid ""
28282 " vgpvuuids vgname\n"
28283 "\n"
28284 msgstr ""
28285
28286 #. type: textblock
28287 #: ../fish/guestfish-actions.pod:4917
28288 msgid ""
28289 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28290 "physical volumes and volume groups."
28291 msgstr ""
28292
28293 #. type: textblock
28294 #: ../fish/guestfish-actions.pod:4920
28295 msgid "See also L</vglvuuids>."
28296 msgstr ""
28297
28298 #. type: =head2
28299 #: ../fish/guestfish-actions.pod:4922
28300 msgid "vgremove"
28301 msgstr ""
28302
28303 #. type: verbatim
28304 #: ../fish/guestfish-actions.pod:4924
28305 #, no-wrap
28306 msgid ""
28307 " vgremove vgname\n"
28308 "\n"
28309 msgstr ""
28310
28311 #. type: =head2
28312 #: ../fish/guestfish-actions.pod:4931
28313 msgid "vgrename"
28314 msgstr ""
28315
28316 #. type: verbatim
28317 #: ../fish/guestfish-actions.pod:4933
28318 #, no-wrap
28319 msgid ""
28320 " vgrename volgroup newvolgroup\n"
28321 "\n"
28322 msgstr ""
28323
28324 #. type: =head2
28325 #: ../fish/guestfish-actions.pod:4937
28326 msgid "vgs"
28327 msgstr ""
28328
28329 #. type: verbatim
28330 #: ../fish/guestfish-actions.pod:4939
28331 #, no-wrap
28332 msgid ""
28333 " vgs\n"
28334 "\n"
28335 msgstr ""
28336
28337 #. type: textblock
28338 #: ../fish/guestfish-actions.pod:4947
28339 msgid "See also L</vgs-full>."
28340 msgstr ""
28341
28342 #. type: =head2
28343 #: ../fish/guestfish-actions.pod:4949
28344 msgid "vgs-full"
28345 msgstr ""
28346
28347 #. type: verbatim
28348 #: ../fish/guestfish-actions.pod:4951
28349 #, no-wrap
28350 msgid ""
28351 " vgs-full\n"
28352 "\n"
28353 msgstr ""
28354
28355 #. type: =head2
28356 #: ../fish/guestfish-actions.pod:4956
28357 msgid "vgscan"
28358 msgstr ""
28359
28360 #. type: verbatim
28361 #: ../fish/guestfish-actions.pod:4958
28362 #, no-wrap
28363 msgid ""
28364 " vgscan\n"
28365 "\n"
28366 msgstr ""
28367
28368 #. type: =head2
28369 #: ../fish/guestfish-actions.pod:4963
28370 msgid "vguuid"
28371 msgstr ""
28372
28373 #. type: verbatim
28374 #: ../fish/guestfish-actions.pod:4965
28375 #, no-wrap
28376 msgid ""
28377 " vguuid vgname\n"
28378 "\n"
28379 msgstr ""
28380
28381 #. type: =head2
28382 #: ../fish/guestfish-actions.pod:4969
28383 msgid "wc-c"
28384 msgstr ""
28385
28386 #. type: verbatim
28387 #: ../fish/guestfish-actions.pod:4971
28388 #, no-wrap
28389 msgid ""
28390 " wc-c path\n"
28391 "\n"
28392 msgstr ""
28393
28394 #. type: =head2
28395 #: ../fish/guestfish-actions.pod:4976
28396 msgid "wc-l"
28397 msgstr ""
28398
28399 #. type: verbatim
28400 #: ../fish/guestfish-actions.pod:4978
28401 #, no-wrap
28402 msgid ""
28403 " wc-l path\n"
28404 "\n"
28405 msgstr ""
28406
28407 #. type: =head2
28408 #: ../fish/guestfish-actions.pod:4983
28409 msgid "wc-w"
28410 msgstr ""
28411
28412 #. type: verbatim
28413 #: ../fish/guestfish-actions.pod:4985
28414 #, no-wrap
28415 msgid ""
28416 " wc-w path\n"
28417 "\n"
28418 msgstr ""
28419
28420 #. type: =head2
28421 #: ../fish/guestfish-actions.pod:4990
28422 msgid "write"
28423 msgstr ""
28424
28425 #. type: verbatim
28426 #: ../fish/guestfish-actions.pod:4992
28427 #, no-wrap
28428 msgid ""
28429 " write path content\n"
28430 "\n"
28431 msgstr ""
28432
28433 #. type: =head2
28434 #: ../fish/guestfish-actions.pod:5000
28435 msgid "write-file"
28436 msgstr ""
28437
28438 #. type: verbatim
28439 #: ../fish/guestfish-actions.pod:5002
28440 #, no-wrap
28441 msgid ""
28442 " write-file path content size\n"
28443 "\n"
28444 msgstr ""
28445
28446 #. type: =head2
28447 #: ../fish/guestfish-actions.pod:5025
28448 msgid "zegrep"
28449 msgstr ""
28450
28451 #. type: verbatim
28452 #: ../fish/guestfish-actions.pod:5027
28453 #, no-wrap
28454 msgid ""
28455 " zegrep regex path\n"
28456 "\n"
28457 msgstr ""
28458
28459 #. type: =head2
28460 #: ../fish/guestfish-actions.pod:5035
28461 msgid "zegrepi"
28462 msgstr ""
28463
28464 #. type: verbatim
28465 #: ../fish/guestfish-actions.pod:5037
28466 #, no-wrap
28467 msgid ""
28468 " zegrepi regex path\n"
28469 "\n"
28470 msgstr ""
28471
28472 #. type: =head2
28473 #: ../fish/guestfish-actions.pod:5045
28474 msgid "zero"
28475 msgstr ""
28476
28477 #. type: verbatim
28478 #: ../fish/guestfish-actions.pod:5047
28479 #, no-wrap
28480 msgid ""
28481 " zero device\n"
28482 "\n"
28483 msgstr ""
28484
28485 #. type: textblock
28486 #: ../fish/guestfish-actions.pod:5055
28487 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28488 msgstr ""
28489
28490 #. type: =head2
28491 #: ../fish/guestfish-actions.pod:5058
28492 msgid "zero-device"
28493 msgstr ""
28494
28495 #. type: verbatim
28496 #: ../fish/guestfish-actions.pod:5060
28497 #, no-wrap
28498 msgid ""
28499 " zero-device device\n"
28500 "\n"
28501 msgstr ""
28502
28503 #. type: textblock
28504 #: ../fish/guestfish-actions.pod:5062
28505 msgid ""
28506 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
28507 "which just zeroes the first few blocks of a device."
28508 msgstr ""
28509
28510 #. type: =head2
28511 #: ../fish/guestfish-actions.pod:5069
28512 msgid "zerofree"
28513 msgstr ""
28514
28515 #. type: verbatim
28516 #: ../fish/guestfish-actions.pod:5071
28517 #, no-wrap
28518 msgid ""
28519 " zerofree device\n"
28520 "\n"
28521 msgstr ""
28522
28523 #. type: =head2
28524 #: ../fish/guestfish-actions.pod:5084
28525 msgid "zfgrep"
28526 msgstr ""
28527
28528 #. type: verbatim
28529 #: ../fish/guestfish-actions.pod:5086
28530 #, no-wrap
28531 msgid ""
28532 " zfgrep pattern path\n"
28533 "\n"
28534 msgstr ""
28535
28536 #. type: =head2
28537 #: ../fish/guestfish-actions.pod:5094
28538 msgid "zfgrepi"
28539 msgstr ""
28540
28541 #. type: verbatim
28542 #: ../fish/guestfish-actions.pod:5096
28543 #, no-wrap
28544 msgid ""
28545 " zfgrepi pattern path\n"
28546 "\n"
28547 msgstr ""
28548
28549 #. type: =head2
28550 #: ../fish/guestfish-actions.pod:5104
28551 msgid "zfile"
28552 msgstr ""
28553
28554 #. type: verbatim
28555 #: ../fish/guestfish-actions.pod:5106
28556 #, no-wrap
28557 msgid ""
28558 " zfile meth path\n"
28559 "\n"
28560 msgstr ""
28561
28562 #. type: textblock
28563 #: ../fish/guestfish-actions.pod:5113
28564 msgid ""
28565 "Since 1.0.63, use L</file> instead which can now process compressed files."
28566 msgstr ""
28567
28568 #. type: =head2
28569 #: ../fish/guestfish-actions.pod:5123
28570 msgid "zgrep"
28571 msgstr ""
28572
28573 #. type: verbatim
28574 #: ../fish/guestfish-actions.pod:5125
28575 #, no-wrap
28576 msgid ""
28577 " zgrep regex path\n"
28578 "\n"
28579 msgstr ""
28580
28581 #. type: =head2
28582 #: ../fish/guestfish-actions.pod:5133
28583 msgid "zgrepi"
28584 msgstr ""
28585
28586 #. type: verbatim
28587 #: ../fish/guestfish-actions.pod:5135
28588 #, no-wrap
28589 msgid ""
28590 " zgrepi regex path\n"
28591 "\n"
28592 msgstr ""
28593
28594 #. type: =head2
28595 #: ../fish/guestfish-commands.pod:1
28596 msgid "alloc"
28597 msgstr ""
28598
28599 #. type: =head2
28600 #: ../fish/guestfish-commands.pod:3
28601 msgid "allocate"
28602 msgstr ""
28603
28604 #. type: verbatim
28605 #: ../fish/guestfish-commands.pod:5
28606 #, no-wrap
28607 msgid ""
28608 " alloc filename size\n"
28609 "\n"
28610 msgstr ""
28611
28612 #. type: textblock
28613 #: ../fish/guestfish-commands.pod:7
28614 msgid ""
28615 "This creates an empty (zeroed) file of the given size, and then adds so it "
28616 "can be further examined."
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
28621 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
28622 msgstr ""
28623
28624 #. type: textblock
28625 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
28626 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28627 msgstr ""
28628
28629 #. type: textblock
28630 #: ../fish/guestfish-commands.pod:14
28631 msgid ""
28632 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28633 "image, see L</PREPARED DISK IMAGES>."
28634 msgstr ""
28635
28636 #. type: =head2
28637 #: ../fish/guestfish-commands.pod:17
28638 msgid "copy-in"
28639 msgstr ""
28640
28641 #. type: verbatim
28642 #: ../fish/guestfish-commands.pod:19
28643 #, no-wrap
28644 msgid ""
28645 " copy-in local [local ...] /remotedir\n"
28646 "\n"
28647 msgstr ""
28648
28649 #. type: textblock
28650 #: ../fish/guestfish-commands.pod:21
28651 msgid ""
28652 "C<copy-in> copies local files or directories recursively into the disk "
28653 "image, placing them in the directory called C</remotedir> (which must "
28654 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28655 "other commands as necessary."
28656 msgstr ""
28657
28658 #. type: textblock
28659 #: ../fish/guestfish-commands.pod:26
28660 msgid ""
28661 "Multiple local files and directories can be specified, but the last "
28662 "parameter must always be a remote directory.  Wildcards cannot be used."
28663 msgstr ""
28664
28665 #. type: =head2
28666 #: ../fish/guestfish-commands.pod:30
28667 msgid "copy-out"
28668 msgstr ""
28669
28670 #. type: verbatim
28671 #: ../fish/guestfish-commands.pod:32
28672 #, no-wrap
28673 msgid ""
28674 " copy-out remote [remote ...] localdir\n"
28675 "\n"
28676 msgstr ""
28677
28678 #. type: textblock
28679 #: ../fish/guestfish-commands.pod:34
28680 msgid ""
28681 "C<copy-out> copies remote files or directories recursively out of the disk "
28682 "image, placing them on the host disk in a local directory called C<localdir> "
28683 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28684 "download>, L</tar-out> and other commands as necessary."
28685 msgstr ""
28686
28687 #. type: textblock
28688 #: ../fish/guestfish-commands.pod:40
28689 msgid ""
28690 "Multiple remote files and directories can be specified, but the last "
28691 "parameter must always be a local directory.  To download to the current "
28692 "directory, use C<.> as in:"
28693 msgstr ""
28694
28695 #. type: verbatim
28696 #: ../fish/guestfish-commands.pod:44
28697 #, no-wrap
28698 msgid ""
28699 " copy-out /home .\n"
28700 "\n"
28701 msgstr ""
28702
28703 #. type: textblock
28704 #: ../fish/guestfish-commands.pod:46
28705 msgid ""
28706 "Wildcards cannot be used in the ordinary command, but you can use them with "
28707 "the help of L</glob> like this:"
28708 msgstr ""
28709
28710 #. type: verbatim
28711 #: ../fish/guestfish-commands.pod:49
28712 #, no-wrap
28713 msgid ""
28714 " glob copy-out /home/* .\n"
28715 "\n"
28716 msgstr ""
28717
28718 #. type: =head2
28719 #: ../fish/guestfish-commands.pod:51
28720 msgid "display"
28721 msgstr ""
28722
28723 #. type: verbatim
28724 #: ../fish/guestfish-commands.pod:53
28725 #, no-wrap
28726 msgid ""
28727 " display filename\n"
28728 "\n"
28729 msgstr ""
28730
28731 #. type: textblock
28732 #: ../fish/guestfish-commands.pod:55
28733 msgid ""
28734 "Use C<display> (a graphical display program) to display an image file.  It "
28735 "downloads the file, and runs C<display> on it."
28736 msgstr ""
28737
28738 #. type: textblock
28739 #: ../fish/guestfish-commands.pod:58
28740 msgid ""
28741 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28742 "environment variable.  For example to use the GNOME display program:"
28743 msgstr ""
28744
28745 #. type: verbatim
28746 #: ../fish/guestfish-commands.pod:61
28747 #, no-wrap
28748 msgid ""
28749 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28750 "\n"
28751 msgstr ""
28752
28753 #. type: textblock
28754 #: ../fish/guestfish-commands.pod:63
28755 #, fuzzy
28756 #| msgid "See L<guestfish(1)>."
28757 msgid "See also L<display(1)>."
28758 msgstr "Див. L<guestfish(1)>."
28759
28760 #. type: =head2
28761 #: ../fish/guestfish-commands.pod:65
28762 msgid "echo"
28763 msgstr ""
28764
28765 #. type: verbatim
28766 #: ../fish/guestfish-commands.pod:67
28767 #, no-wrap
28768 msgid ""
28769 " echo [params ...]\n"
28770 "\n"
28771 msgstr ""
28772
28773 #. type: textblock
28774 #: ../fish/guestfish-commands.pod:69
28775 msgid "This echos the parameters to the terminal."
28776 msgstr ""
28777
28778 #. type: =head2
28779 #: ../fish/guestfish-commands.pod:71
28780 msgid "edit"
28781 msgstr ""
28782
28783 #. type: =head2
28784 #: ../fish/guestfish-commands.pod:73
28785 msgid "vi"
28786 msgstr ""
28787
28788 #. type: =head2
28789 #: ../fish/guestfish-commands.pod:75
28790 msgid "emacs"
28791 msgstr ""
28792
28793 #. type: verbatim
28794 #: ../fish/guestfish-commands.pod:77
28795 #, no-wrap
28796 msgid ""
28797 " edit filename\n"
28798 "\n"
28799 msgstr ""
28800
28801 #. type: textblock
28802 #: ../fish/guestfish-commands.pod:79
28803 msgid ""
28804 "This is used to edit a file.  It downloads the file, edits it locally using "
28805 "your editor, then uploads the result."
28806 msgstr ""
28807
28808 #. type: textblock
28809 #: ../fish/guestfish-commands.pod:82
28810 msgid ""
28811 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28812 "or C<emacs> you will get those corresponding editors."
28813 msgstr ""
28814
28815 #. type: =head2
28816 #: ../fish/guestfish-commands.pod:86
28817 msgid "glob"
28818 msgstr ""
28819
28820 #. type: verbatim
28821 #: ../fish/guestfish-commands.pod:88
28822 #, no-wrap
28823 msgid ""
28824 " glob command args...\n"
28825 "\n"
28826 msgstr ""
28827
28828 #. type: textblock
28829 #: ../fish/guestfish-commands.pod:90
28830 msgid ""
28831 "Expand wildcards in any paths in the args list, and run C<command> "
28832 "repeatedly on each matching path."
28833 msgstr ""
28834
28835 #. type: textblock
28836 #: ../fish/guestfish-commands.pod:93
28837 msgid "See L</WILDCARDS AND GLOBBING>."
28838 msgstr ""
28839
28840 #. type: =head2
28841 #: ../fish/guestfish-commands.pod:95
28842 msgid "hexedit"
28843 msgstr ""
28844
28845 #. type: verbatim
28846 #: ../fish/guestfish-commands.pod:97
28847 #, no-wrap
28848 msgid ""
28849 " hexedit <filename|device>\n"
28850 " hexedit <filename|device> <max>\n"
28851 " hexedit <filename|device> <start> <max>\n"
28852 "\n"
28853 msgstr ""
28854
28855 #. type: textblock
28856 #: ../fish/guestfish-commands.pod:101
28857 msgid ""
28858 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28859 "device."
28860 msgstr ""
28861
28862 #. type: textblock
28863 #: ../fish/guestfish-commands.pod:104
28864 msgid ""
28865 "This command works by downloading potentially the whole file or device, "
28866 "editing it locally, then uploading it.  If the file or device is large, you "
28867 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28868 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28869 "usual modifiers allowed such as C<1M> (1 megabyte)."
28870 msgstr ""
28871
28872 #. type: textblock
28873 #: ../fish/guestfish-commands.pod:111
28874 msgid "For example to edit the first few sectors of a disk you might do:"
28875 msgstr ""
28876
28877 #. type: verbatim
28878 #: ../fish/guestfish-commands.pod:114
28879 #, no-wrap
28880 msgid ""
28881 " hexedit /dev/sda 1M\n"
28882 "\n"
28883 msgstr ""
28884
28885 #. type: textblock
28886 #: ../fish/guestfish-commands.pod:116
28887 msgid ""
28888 "which would allow you to edit anywhere within the first megabyte of the disk."
28889 msgstr ""
28890
28891 #. type: textblock
28892 #: ../fish/guestfish-commands.pod:119
28893 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28894 msgstr ""
28895
28896 #. type: verbatim
28897 #: ../fish/guestfish-commands.pod:121
28898 #, no-wrap
28899 msgid ""
28900 " hexedit /dev/sda1 0x400 0x400\n"
28901 "\n"
28902 msgstr ""
28903
28904 #. type: textblock
28905 #: ../fish/guestfish-commands.pod:123
28906 msgid "(assuming the superblock is in the standard location)."
28907 msgstr ""
28908
28909 #. type: textblock
28910 #: ../fish/guestfish-commands.pod:125
28911 msgid ""
28912 "This command requires the external L<hexedit(1)> program.  You can specify "
28913 "another program to use by setting the C<HEXEDITOR> environment variable."
28914 msgstr ""
28915
28916 #. type: textblock
28917 #: ../fish/guestfish-commands.pod:129
28918 msgid "See also L</hexdump>."
28919 msgstr ""
28920
28921 #. type: =head2
28922 #: ../fish/guestfish-commands.pod:131
28923 msgid "lcd"
28924 msgstr ""
28925
28926 #. type: verbatim
28927 #: ../fish/guestfish-commands.pod:133
28928 #, no-wrap
28929 msgid ""
28930 " lcd directory\n"
28931 "\n"
28932 msgstr ""
28933
28934 #. type: textblock
28935 #: ../fish/guestfish-commands.pod:135
28936 msgid ""
28937 "Change the local directory, ie. the current directory of guestfish itself."
28938 msgstr ""
28939
28940 #. type: textblock
28941 #: ../fish/guestfish-commands.pod:138
28942 msgid "Note that C<!cd> won't do what you might expect."
28943 msgstr ""
28944
28945 #. type: =head2
28946 #: ../fish/guestfish-commands.pod:140
28947 msgid "man"
28948 msgstr ""
28949
28950 #. type: =head2
28951 #: ../fish/guestfish-commands.pod:142
28952 msgid "manual"
28953 msgstr ""
28954
28955 #. type: verbatim
28956 #: ../fish/guestfish-commands.pod:144
28957 #, no-wrap
28958 msgid ""
28959 "  man\n"
28960 "\n"
28961 msgstr ""
28962
28963 #. type: textblock
28964 #: ../fish/guestfish-commands.pod:146
28965 msgid "Opens the manual page for guestfish."
28966 msgstr ""
28967
28968 #. type: =head2
28969 #: ../fish/guestfish-commands.pod:148
28970 msgid "more"
28971 msgstr ""
28972
28973 #. type: =head2
28974 #: ../fish/guestfish-commands.pod:150
28975 msgid "less"
28976 msgstr ""
28977
28978 #. type: verbatim
28979 #: ../fish/guestfish-commands.pod:152
28980 #, no-wrap
28981 msgid ""
28982 " more filename\n"
28983 "\n"
28984 msgstr ""
28985
28986 #. type: verbatim
28987 #: ../fish/guestfish-commands.pod:154
28988 #, no-wrap
28989 msgid ""
28990 " less filename\n"
28991 "\n"
28992 msgstr ""
28993
28994 #. type: textblock
28995 #: ../fish/guestfish-commands.pod:156
28996 msgid "This is used to view a file."
28997 msgstr ""
28998
28999 #. type: textblock
29000 #: ../fish/guestfish-commands.pod:158
29001 msgid ""
29002 "The default viewer is C<$PAGER>.  However if you use the alternate command "
29003 "C<less> you will get the C<less> command specifically."
29004 msgstr ""
29005
29006 #. type: =head2
29007 #: ../fish/guestfish-commands.pod:161
29008 msgid "reopen"
29009 msgstr ""
29010
29011 #. type: verbatim
29012 #: ../fish/guestfish-commands.pod:163
29013 #, no-wrap
29014 msgid ""
29015 "  reopen\n"
29016 "\n"
29017 msgstr ""
29018
29019 #. type: textblock
29020 #: ../fish/guestfish-commands.pod:165
29021 msgid ""
29022 "Close and reopen the libguestfs handle.  It is not necessary to use this "
29023 "normally, because the handle is closed properly when guestfish exits.  "
29024 "However this is occasionally useful for testing."
29025 msgstr ""
29026
29027 #. type: =head2
29028 #: ../fish/guestfish-commands.pod:169
29029 msgid "sparse"
29030 msgstr ""
29031
29032 #. type: verbatim
29033 #: ../fish/guestfish-commands.pod:171
29034 #, no-wrap
29035 msgid ""
29036 " sparse filename size\n"
29037 "\n"
29038 msgstr ""
29039
29040 #. type: textblock
29041 #: ../fish/guestfish-commands.pod:173
29042 msgid ""
29043 "This creates an empty sparse file of the given size, and then adds so it can "
29044 "be further examined."
29045 msgstr ""
29046
29047 #. type: textblock
29048 #: ../fish/guestfish-commands.pod:176
29049 msgid ""
29050 "In all respects it works the same as the L</alloc> command, except that the "
29051 "image file is allocated sparsely, which means that disk blocks are not "
29052 "assigned to the file until they are needed.  Sparse disk files only use "
29053 "space when written to, but they are slower and there is a danger you could "
29054 "run out of real disk space during a write operation."
29055 msgstr ""
29056
29057 #. type: =head2
29058 #: ../fish/guestfish-commands.pod:186
29059 msgid "supported"
29060 msgstr ""
29061
29062 #. type: verbatim
29063 #: ../fish/guestfish-commands.pod:188
29064 #, no-wrap
29065 msgid ""
29066 " supported\n"
29067 "\n"
29068 msgstr ""
29069
29070 #. type: textblock
29071 #: ../fish/guestfish-commands.pod:190
29072 msgid ""
29073 "This command returns a list of the optional groups known to the daemon, and "
29074 "indicates which ones are supported by this build of the libguestfs appliance."
29075 msgstr ""
29076
29077 #. type: textblock
29078 #: ../fish/guestfish-commands.pod:194
29079 msgid "See also L<guestfs(3)/AVAILABILITY>."
29080 msgstr ""
29081
29082 #. type: =head2
29083 #: ../fish/guestfish-commands.pod:196
29084 msgid "time"
29085 msgstr ""
29086
29087 #. type: verbatim
29088 #: ../fish/guestfish-commands.pod:198
29089 #, no-wrap
29090 msgid ""
29091 " time command args...\n"
29092 "\n"
29093 msgstr ""
29094
29095 #. type: textblock
29096 #: ../fish/guestfish-commands.pod:200
29097 msgid ""
29098 "Run the command as usual, but print the elapsed time afterwards.  This can "
29099 "be useful for benchmarking operations."
29100 msgstr ""
29101
29102 #. type: textblock
29103 #: ../test-tool/libguestfs-test-tool.pod:5
29104 msgid "libguestfs-test-tool - End user tests for libguestfs"
29105 msgstr ""
29106
29107 #. type: verbatim
29108 #: ../test-tool/libguestfs-test-tool.pod:9
29109 #, no-wrap
29110 msgid ""
29111 " libguestfs-test-tool [--options]\n"
29112 "\n"
29113 msgstr ""
29114
29115 #. type: textblock
29116 #: ../test-tool/libguestfs-test-tool.pod:13
29117 msgid ""
29118 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
29119 "and developers, to allow them to check basic libguestfs functionality is "
29120 "working.  This is needed because libguestfs occasionally breaks for reasons "
29121 "beyond our control: usually because of changes in the underlying qemu or "
29122 "kernel packages, or the host environment."
29123 msgstr ""
29124
29125 #. type: textblock
29126 #: ../test-tool/libguestfs-test-tool.pod:20
29127 msgid "If you suspect a problem in libguestfs, then just run:"
29128 msgstr ""
29129
29130 #. type: verbatim
29131 #: ../test-tool/libguestfs-test-tool.pod:22
29132 #, no-wrap
29133 msgid ""
29134 " libguestfs-test-tool\n"
29135 "\n"
29136 msgstr ""
29137
29138 #. type: textblock
29139 #: ../test-tool/libguestfs-test-tool.pod:24
29140 msgid "It will print lots of diagnostic messages."
29141 msgstr ""
29142
29143 #. type: textblock
29144 #: ../test-tool/libguestfs-test-tool.pod:26
29145 msgid "If it runs to completion successfully, you will see this near the end:"
29146 msgstr ""
29147
29148 #. type: verbatim
29149 #: ../test-tool/libguestfs-test-tool.pod:28
29150 #, no-wrap
29151 msgid ""
29152 " ===== TEST FINISHED OK =====\n"
29153 "\n"
29154 msgstr ""
29155
29156 #. type: textblock
29157 #: ../test-tool/libguestfs-test-tool.pod:30
29158 msgid "and the test tool will exit with code 0."
29159 msgstr ""
29160
29161 #. type: textblock
29162 #: ../test-tool/libguestfs-test-tool.pod:32
29163 msgid ""
29164 "If it fails (and/or exits with non-zero error code), please paste the "
29165 "B<complete, unedited> output of the test tool into a bug report.  More "
29166 "information about reporting bugs can be found on the L<http://libguestfs.org/"
29167 "> website."
29168 msgstr ""
29169
29170 #. type: =item
29171 #: ../test-tool/libguestfs-test-tool.pod:41
29172 msgid "I<--help>"
29173 msgstr ""
29174
29175 #. type: textblock
29176 #: ../test-tool/libguestfs-test-tool.pod:43
29177 msgid "Display short usage information and exit."
29178 msgstr ""
29179
29180 #. type: =item
29181 #: ../test-tool/libguestfs-test-tool.pod:45
29182 msgid "I<--qemu qemu_binary>"
29183 msgstr ""
29184
29185 #. type: textblock
29186 #: ../test-tool/libguestfs-test-tool.pod:47
29187 msgid ""
29188 "If you have downloaded another qemu binary, point this option at the full "
29189 "path of the binary to try it."
29190 msgstr ""
29191
29192 #. type: =item
29193 #: ../test-tool/libguestfs-test-tool.pod:50
29194 msgid "I<--qemudir qemu_source_dir>"
29195 msgstr ""
29196
29197 #. type: textblock
29198 #: ../test-tool/libguestfs-test-tool.pod:52
29199 msgid ""
29200 "If you have compiled qemu from source, point this option at the source "
29201 "directory to try it."
29202 msgstr ""
29203
29204 #. type: =item
29205 #: ../test-tool/libguestfs-test-tool.pod:55
29206 msgid "I<--timeout N>"
29207 msgstr ""
29208
29209 #. type: textblock
29210 #: ../test-tool/libguestfs-test-tool.pod:57
29211 msgid ""
29212 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
29213 "does not usually need to be adjusted unless your machine is very slow."
29214 msgstr ""
29215
29216 #. type: =head1
29217 #: ../test-tool/libguestfs-test-tool.pod:63
29218 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
29219 msgstr ""
29220
29221 #. type: textblock
29222 #: ../test-tool/libguestfs-test-tool.pod:65
29223 msgid ""
29224 "If you have compiled another version of qemu from source and would like to "
29225 "try that, then you can use the I<--qemudir> option to point to the qemu "
29226 "source directory."
29227 msgstr ""
29228
29229 #. type: textblock
29230 #: ../test-tool/libguestfs-test-tool.pod:69
29231 msgid ""
29232 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
29233 "option to point to the binary."
29234 msgstr ""
29235
29236 #. type: textblock
29237 #: ../test-tool/libguestfs-test-tool.pod:72
29238 msgid ""
29239 "When using an alternate qemu with libguestfs, usually you would need to "
29240 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
29241 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
29242 "use either of the I<--qemudir> or I<--qemu> options."
29243 msgstr ""
29244
29245 #. type: textblock
29246 #: ../test-tool/libguestfs-test-tool.pod:79
29247 msgid ""
29248 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
29249 "I<1> if there was an error."
29250 msgstr ""
29251
29252 #. type: textblock
29253 #: ../test-tool/libguestfs-test-tool.pod:84
29254 msgid ""
29255 "For the full list of environment variables which may affect libguestfs, "
29256 "please see the L<guestfs(3)> manual page."
29257 msgstr ""
29258
29259 #. type: textblock
29260 #: ../test-tool/libguestfs-test-tool.pod:89
29261 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
29262 msgstr ""
29263
29264 #. type: textblock
29265 #: ../fuse/guestmount.pod:5
29266 msgid ""
29267 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
29268 msgstr ""
29269
29270 #. type: verbatim
29271 #: ../fuse/guestmount.pod:9
29272 #, no-wrap
29273 msgid ""
29274 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29275 "\n"
29276 msgstr ""
29277
29278 #. type: verbatim
29279 #: ../fuse/guestmount.pod:11
29280 #, no-wrap
29281 msgid ""
29282 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29283 "\n"
29284 msgstr ""
29285
29286 #. type: verbatim
29287 #: ../fuse/guestmount.pod:13
29288 #, no-wrap
29289 msgid ""
29290 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29291 "\n"
29292 msgstr ""
29293
29294 #. type: textblock
29295 #: ../fuse/guestmount.pod:17
29296 msgid ""
29297 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29298 "machines.  If you do this, you risk disk corruption in the VM."
29299 msgstr ""
29300
29301 #. type: textblock
29302 #: ../fuse/guestmount.pod:22
29303 msgid ""
29304 "The guestmount program can be used to mount virtual machine filesystems and "
29305 "other disk images on the host.  It uses libguestfs for access to the guest "
29306 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29307 "a mountable device."
29308 msgstr ""
29309
29310 #. type: textblock
29311 #: ../fuse/guestmount.pod:27
29312 msgid ""
29313 "Along with other options, you have to give at least one device (I<-a> "
29314 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
29315 "option) or use the I<-i> inspection option.  How this works is better "
29316 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29317 "below."
29318 msgstr ""
29319
29320 #. type: textblock
29321 #: ../fuse/guestmount.pod:33
29322 msgid ""
29323 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29324 "by you, and the filesystem will not be visible to any other users unless you "
29325 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
29326 "the filesystem, use the C<fusermount -u> command."
29327 msgstr ""
29328
29329 #. type: textblock
29330 #: ../fuse/guestmount.pod:41
29331 msgid ""
29332 "For a typical Windows guest which has its main filesystem on the first "
29333 "partition:"
29334 msgstr ""
29335
29336 #. type: verbatim
29337 #: ../fuse/guestmount.pod:44
29338 #, no-wrap
29339 msgid ""
29340 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29341 "\n"
29342 msgstr ""
29343
29344 #. type: textblock
29345 #: ../fuse/guestmount.pod:46
29346 msgid ""
29347 "For a typical Linux guest which has a /boot filesystem on the first "
29348 "partition, and the root filesystem on a logical volume:"
29349 msgstr ""
29350
29351 #. type: verbatim
29352 #: ../fuse/guestmount.pod:49
29353 #, no-wrap
29354 msgid ""
29355 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29356 "\n"
29357 msgstr ""
29358
29359 #. type: textblock
29360 #: ../fuse/guestmount.pod:51
29361 msgid "To get libguestfs to detect guest mountpoints for you:"
29362 msgstr ""
29363
29364 #. type: verbatim
29365 #: ../fuse/guestmount.pod:53
29366 #, no-wrap
29367 msgid ""
29368 " guestmount -a guest.img -i --ro /mnt\n"
29369 "\n"
29370 msgstr ""
29371
29372 #. type: textblock
29373 #: ../fuse/guestmount.pod:55
29374 msgid "For a libvirt guest called \"Guest\" you could do:"
29375 msgstr ""
29376
29377 #. type: verbatim
29378 #: ../fuse/guestmount.pod:57
29379 #, no-wrap
29380 msgid ""
29381 " guestmount -d Guest -i --ro /mnt\n"
29382 "\n"
29383 msgstr ""
29384
29385 #. type: textblock
29386 #: ../fuse/guestmount.pod:59
29387 msgid ""
29388 "If you don't know what filesystems are contained in a guest or disk image, "
29389 "use L<virt-filesystems(1)> first:"
29390 msgstr ""
29391
29392 #. type: verbatim
29393 #: ../fuse/guestmount.pod:62
29394 #, no-wrap
29395 msgid ""
29396 " virt-filesystems MyGuest\n"
29397 "\n"
29398 msgstr ""
29399
29400 #. type: textblock
29401 #: ../fuse/guestmount.pod:64
29402 msgid ""
29403 "If you want to trace the libguestfs calls but without excessive debugging "
29404 "information, we recommend:"
29405 msgstr ""
29406
29407 #. type: verbatim
29408 #: ../fuse/guestmount.pod:67
29409 #, no-wrap
29410 msgid ""
29411 " guestmount [...] --trace /mnt\n"
29412 "\n"
29413 msgstr ""
29414
29415 #. type: textblock
29416 #: ../fuse/guestmount.pod:69
29417 msgid "If you want to debug the program, we recommend:"
29418 msgstr ""
29419
29420 #. type: verbatim
29421 #: ../fuse/guestmount.pod:71
29422 #, no-wrap
29423 msgid ""
29424 " guestmount [...] --trace --verbose /mnt\n"
29425 "\n"
29426 msgstr ""
29427
29428 #. type: =head1
29429 #: ../fuse/guestmount.pod:73
29430 msgid "NOTES"
29431 msgstr ""
29432
29433 #. type: =head2
29434 #: ../fuse/guestmount.pod:75
29435 msgid "Other users cannot see the filesystem by default"
29436 msgstr ""
29437
29438 #. type: textblock
29439 #: ../fuse/guestmount.pod:77
29440 msgid ""
29441 "If you mount a filesystem as one user (eg. root), then other users will not "
29442 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29443 "option when mounting:"
29444 msgstr ""
29445
29446 #. type: verbatim
29447 #: ../fuse/guestmount.pod:81
29448 #, no-wrap
29449 msgid ""
29450 " sudo guestmount [...] -o allow_other /mnt\n"
29451 "\n"
29452 msgstr ""
29453
29454 #. type: =item
29455 #: ../fuse/guestmount.pod:87
29456 msgid "B<-a image> | B<--add image>"
29457 msgstr ""
29458
29459 #. type: textblock
29460 #: ../fuse/guestmount.pod:89
29461 msgid "Add a block device or virtual machine image."
29462 msgstr ""
29463
29464 #. type: =item
29465 #: ../fuse/guestmount.pod:94
29466 msgid "B<-c URI> | B<--connect URI>"
29467 msgstr ""
29468
29469 #. type: =item
29470 #: ../fuse/guestmount.pod:100
29471 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29472 msgstr ""
29473
29474 #. type: =item
29475 #: ../fuse/guestmount.pod:108
29476 msgid "B<--dir-cache-timeout N>"
29477 msgstr ""
29478
29479 #. type: textblock
29480 #: ../fuse/guestmount.pod:110
29481 msgid ""
29482 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
29483 "seconds.  The readdir cache [actually, there are several semi-independent "
29484 "caches] is populated after a readdir(2) call with the stat and extended "
29485 "attributes of the files in the directory, in anticipation that they will be "
29486 "requested soon after."
29487 msgstr ""
29488
29489 #. type: textblock
29490 #: ../fuse/guestmount.pod:116
29491 msgid ""
29492 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29493 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29494 "requests, only cache existing ones."
29495 msgstr ""
29496
29497 #. type: =item
29498 #: ../fuse/guestmount.pod:127
29499 msgid "B<--format=raw|qcow2|..> | B<--format>"
29500 msgstr ""
29501
29502 #. type: textblock
29503 #: ../fuse/guestmount.pod:134
29504 msgid ""
29505 "If you have untrusted raw-format guest disk images, you should use this "
29506 "option to specify the disk format.  This avoids a possible security problem "
29507 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
29508 "guestfs_add_drive_opts>."
29509 msgstr ""
29510
29511 #. type: =item
29512 #: ../fuse/guestmount.pod:139
29513 msgid "B<--fuse-help>"
29514 msgstr ""
29515
29516 #. type: textblock
29517 #: ../fuse/guestmount.pod:141
29518 msgid "Display help on special FUSE options (see I<-o> below)."
29519 msgstr ""
29520
29521 #. type: textblock
29522 #: ../fuse/guestmount.pod:145
29523 msgid "Display brief help and exit."
29524 msgstr ""
29525
29526 #. type: =item
29527 #: ../fuse/guestmount.pod:147
29528 msgid "B<-i> | B<--inspector>"
29529 msgstr ""
29530
29531 #. type: textblock
29532 #: ../fuse/guestmount.pod:167
29533 msgid ""
29534 "Mount the named partition or logical volume on the given mountpoint B<in the "
29535 "guest> (this has nothing to do with mountpoints in the host)."
29536 msgstr ""
29537
29538 #. type: textblock
29539 #: ../fuse/guestmount.pod:170
29540 msgid ""
29541 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
29542 "something on C</>."
29543 msgstr ""
29544
29545 #. type: =item
29546 #: ../fuse/guestmount.pod:183
29547 msgid "B<-n> | B<--no-sync>"
29548 msgstr ""
29549
29550 #. type: textblock
29551 #: ../fuse/guestmount.pod:185
29552 msgid ""
29553 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
29554 "unmounted.  If you specify this option, then we don't attempt to sync the "
29555 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
29556 msgstr ""
29557
29558 #. type: =item
29559 #: ../fuse/guestmount.pod:190
29560 msgid "B<-o option> | B<--option option>"
29561 msgstr ""
29562
29563 #. type: textblock
29564 #: ../fuse/guestmount.pod:192
29565 msgid "Pass extra options to FUSE."
29566 msgstr ""
29567
29568 #. type: textblock
29569 #: ../fuse/guestmount.pod:194
29570 msgid ""
29571 "To get a list of all the extra options supported by FUSE, use the command "
29572 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
29573 "of them are a good idea."
29574 msgstr ""
29575
29576 #. type: verbatim
29577 #: ../fuse/guestmount.pod:198
29578 #, no-wrap
29579 msgid ""
29580 " guestmount --fuse-help\n"
29581 "\n"
29582 msgstr ""
29583
29584 #. type: textblock
29585 #: ../fuse/guestmount.pod:200
29586 msgid "Some potentially useful FUSE options:"
29587 msgstr ""
29588
29589 #. type: =item
29590 #: ../fuse/guestmount.pod:204
29591 msgid "B<-o allow_other>"
29592 msgstr ""
29593
29594 #. type: textblock
29595 #: ../fuse/guestmount.pod:206
29596 msgid "Allow other users to see the filesystem."
29597 msgstr ""
29598
29599 #. type: =item
29600 #: ../fuse/guestmount.pod:208
29601 msgid "B<-o attr_timeout=N>"
29602 msgstr ""
29603
29604 #. type: textblock
29605 #: ../fuse/guestmount.pod:210
29606 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
29607 msgstr ""
29608
29609 #. type: =item
29610 #: ../fuse/guestmount.pod:212
29611 msgid "B<-o kernel_cache>"
29612 msgstr ""
29613
29614 #. type: textblock
29615 #: ../fuse/guestmount.pod:214
29616 msgid ""
29617 "Allow the kernel to cache files (reduces the number of reads that have to go "
29618 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
29619 "afford the extra memory usage."
29620 msgstr ""
29621
29622 #. type: =item
29623 #: ../fuse/guestmount.pod:218
29624 msgid "B<-o uid=N> B<-o gid=N>"
29625 msgstr ""
29626
29627 #. type: textblock
29628 #: ../fuse/guestmount.pod:220
29629 msgid ""
29630 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29631 "the chosen values."
29632 msgstr ""
29633
29634 #. type: =item
29635 #: ../fuse/guestmount.pod:225
29636 msgid "B<-r> | B<--ro>"
29637 msgstr ""
29638
29639 #. type: textblock
29640 #: ../fuse/guestmount.pod:227
29641 msgid ""
29642 "Add devices and mount everything read-only.  Also disallow writes and make "
29643 "the disk appear read-only to FUSE."
29644 msgstr ""
29645
29646 #. type: textblock
29647 #: ../fuse/guestmount.pod:230
29648 msgid ""
29649 "This is highly recommended if you are not going to edit the guest disk.  If "
29650 "the guest is running and this option is I<not> supplied, then there is a "
29651 "strong risk of disk corruption in the guest.  We try to prevent this from "
29652 "happening, but it is not always possible."
29653 msgstr ""
29654
29655 #. type: textblock
29656 #: ../fuse/guestmount.pod:235
29657 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../fuse/guestmount.pod:239
29662 msgid "Enable SELinux support for the guest."
29663 msgstr ""
29664
29665 #. type: =item
29666 #: ../fuse/guestmount.pod:241
29667 msgid "B<-v> | B<--verbose>"
29668 msgstr ""
29669
29670 #. type: textblock
29671 #: ../fuse/guestmount.pod:243
29672 msgid "Enable verbose messages from underlying libguestfs."
29673 msgstr ""
29674
29675 #. type: =item
29676 #: ../fuse/guestmount.pod:245
29677 msgid "B<-V> | B<--version>"
29678 msgstr ""
29679
29680 #. type: textblock
29681 #: ../fuse/guestmount.pod:247
29682 msgid "Display the program version and exit."
29683 msgstr ""
29684
29685 #. type: =item
29686 #: ../fuse/guestmount.pod:249
29687 msgid "B<-w> | B<--rw>"
29688 msgstr ""
29689
29690 #. type: textblock
29691 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29692 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29693 msgstr ""
29694
29695 #. type: =item
29696 #: ../fuse/guestmount.pod:256
29697 msgid "B<-x> | B<--trace>"
29698 msgstr ""
29699
29700 #. type: textblock
29701 #: ../fuse/guestmount.pod:258
29702 msgid "Trace libguestfs calls and entry into each FUSE function."
29703 msgstr ""
29704
29705 #. type: textblock
29706 #: ../fuse/guestmount.pod:260
29707 msgid "This also stops the daemon from forking into the background."
29708 msgstr ""
29709
29710 #. type: textblock
29711 #: ../fuse/guestmount.pod:281
29712 msgid ""
29713 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29714 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29715 "net/>."
29716 msgstr ""
29717
29718 #. type: textblock
29719 #: ../fuse/guestmount.pod:296
29720 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29721 msgstr ""
29722
29723 #. type: textblock
29724 #: ../tools/virt-win-reg.pl:37
29725 msgid ""
29726 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29727 msgstr ""
29728
29729 #. type: verbatim
29730 #: ../tools/virt-win-reg.pl:41
29731 #, no-wrap
29732 msgid ""
29733 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29734 "\n"
29735 msgstr ""
29736
29737 #. type: verbatim
29738 #: ../tools/virt-win-reg.pl:43
29739 #, no-wrap
29740 msgid ""
29741 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29742 "\n"
29743 msgstr ""
29744
29745 #. type: verbatim
29746 #: ../tools/virt-win-reg.pl:45
29747 #, no-wrap
29748 msgid ""
29749 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29750 "\n"
29751 msgstr ""
29752
29753 #. type: verbatim
29754 #: ../tools/virt-win-reg.pl:47
29755 #, no-wrap
29756 msgid ""
29757 " virt-win-reg --merge domname [input.reg ...]\n"
29758 "\n"
29759 msgstr ""
29760
29761 #. type: verbatim
29762 #: ../tools/virt-win-reg.pl:49
29763 #, no-wrap
29764 msgid ""
29765 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29766 "\n"
29767 msgstr ""
29768
29769 #. type: textblock
29770 #: ../tools/virt-win-reg.pl:53
29771 msgid ""
29772 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29773 "virtual machines.  If you do this, you I<will> get irreversible disk "
29774 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29775 "but doesn't catch all cases."
29776 msgstr ""
29777
29778 #. type: textblock
29779 #: ../tools/virt-win-reg.pl:58
29780 msgid ""
29781 "Modifying the Windows Registry is an inherently risky operation.  The format "
29782 "is deliberately obscure and undocumented, and Registry changes can leave the "
29783 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29784 "you have a reliable backup first."
29785 msgstr ""
29786
29787 #. type: textblock
29788 #: ../tools/virt-win-reg.pl:65
29789 msgid ""
29790 "This program can export and merge Windows Registry entries from a Windows "
29791 "guest."
29792 msgstr ""
29793
29794 #. type: textblock
29795 #: ../tools/virt-win-reg.pl:68
29796 msgid ""
29797 "The first parameter is the libvirt guest name or the raw disk image of a "
29798 "Windows guest."
29799 msgstr ""
29800
29801 #. type: textblock
29802 #: ../tools/virt-win-reg.pl:71
29803 msgid ""
29804 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29805 "exported (recursively).  For example:"
29806 msgstr ""
29807
29808 #. type: verbatim
29809 #: ../tools/virt-win-reg.pl:74
29810 #, no-wrap
29811 msgid ""
29812 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29813 "\n"
29814 msgstr ""
29815
29816 #. type: textblock
29817 #: ../tools/virt-win-reg.pl:76
29818 msgid ""
29819 "You can also display single values from within registry keys, for example:"
29820 msgstr ""
29821
29822 #. type: verbatim
29823 #: ../tools/virt-win-reg.pl:79
29824 #, no-wrap
29825 msgid ""
29826 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29827 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29828 " Windows 7 Enterprise\n"
29829 "\n"
29830 msgstr ""
29831
29832 #. type: textblock
29833 #: ../tools/virt-win-reg.pl:83
29834 msgid ""
29835 "With I<--merge>, you can merge a textual regedit file into the Windows "
29836 "Registry:"
29837 msgstr ""
29838
29839 #. type: verbatim
29840 #: ../tools/virt-win-reg.pl:86
29841 #, no-wrap
29842 msgid ""
29843 " $ virt-win-reg --merge Windows7 changes.reg\n"
29844 "\n"
29845 msgstr ""
29846
29847 #. type: =head1
29848 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29849 msgid "NOTE"
29850 msgstr ""
29851
29852 #. type: textblock
29853 #: ../tools/virt-win-reg.pl:90
29854 msgid ""
29855 "This program is only meant for simple access to the registry.  If you want "
29856 "to do complicated things with the registry, we suggest you download the "
29857 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29858 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29859 "L<hivexregedit(1)>."
29860 msgstr ""
29861
29862 #. type: textblock
29863 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
29864 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
29865 #: ../tools/virt-list-partitions.pl:64
29866 msgid "Display brief help."
29867 msgstr ""
29868
29869 #. type: textblock
29870 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
29871 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
29872 #: ../tools/virt-list-partitions.pl:72
29873 msgid "Display version number and exit."
29874 msgstr ""
29875
29876 #. type: =item
29877 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29878 msgid "B<--debug>"
29879 msgstr ""
29880
29881 #. type: textblock
29882 #: ../tools/virt-win-reg.pl:122
29883 msgid "Enable debugging messages."
29884 msgstr ""
29885
29886 #. type: =item
29887 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
29888 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29889 msgid "B<--connect URI> | B<-c URI>"
29890 msgstr ""
29891
29892 #. type: textblock
29893 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
29894 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29895 msgid ""
29896 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29897 "to the default libvirt hypervisor."
29898 msgstr ""
29899
29900 #. type: textblock
29901 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
29902 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29903 msgid ""
29904 "If you specify guest block devices directly, then libvirt is not used at all."
29905 msgstr ""
29906
29907 #. type: =item
29908 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
29909 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29910 msgid "B<--format> raw"
29911 msgstr ""
29912
29913 #. type: textblock
29914 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
29915 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29916 msgid ""
29917 "Specify the format of disk images given on the command line.  If this is "
29918 "omitted then the format is autodetected from the content of the disk image."
29919 msgstr ""
29920
29921 #. type: textblock
29922 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
29923 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29924 msgid ""
29925 "If disk images are requested from libvirt, then this program asks libvirt "
29926 "for this information.  In this case, the value of the format parameter is "
29927 "ignored."
29928 msgstr ""
29929
29930 #. type: textblock
29931 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
29932 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29933 msgid ""
29934 "If working with untrusted raw-format guest disk images, you should ensure "
29935 "the format is always specified."
29936 msgstr ""
29937
29938 #. type: =item
29939 #: ../tools/virt-win-reg.pl:157
29940 msgid "B<--merge>"
29941 msgstr ""
29942
29943 #. type: textblock
29944 #: ../tools/virt-win-reg.pl:159
29945 msgid ""
29946 "In merge mode, this merges a textual regedit file into the Windows Registry "
29947 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29948 "displays or exports Registry entries instead."
29949 msgstr ""
29950
29951 #. type: textblock
29952 #: ../tools/virt-win-reg.pl:163
29953 msgid ""
29954 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29955 "result in disk corruption.  However exporting (without this flag)  is always "
29956 "safe."
29957 msgstr ""
29958
29959 #. type: =item
29960 #: ../tools/virt-win-reg.pl:171
29961 msgid "B<--encoding> UTF-16LE|ASCII"
29962 msgstr ""
29963
29964 #. type: textblock
29965 #: ../tools/virt-win-reg.pl:173
29966 msgid ""
29967 "When merging (only), you may need to specify the encoding for strings to be "
29968 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29969 "(3)/ENCODING STRINGS>."
29970 msgstr ""
29971
29972 #. type: textblock
29973 #: ../tools/virt-win-reg.pl:177
29974 msgid ""
29975 "The default is to use UTF-16LE, which should work with recent versions of "
29976 "Windows."
29977 msgstr ""
29978
29979 #. type: =item
29980 #: ../tools/virt-win-reg.pl:184
29981 msgid "B<--unsafe-printable-strings>"
29982 msgstr ""
29983
29984 #. type: textblock
29985 #: ../tools/virt-win-reg.pl:186
29986 msgid ""
29987 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29988 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29989 "present."
29990 msgstr ""
29991
29992 #. type: textblock
29993 #: ../tools/virt-win-reg.pl:190
29994 msgid ""
29995 "This is unsafe and does not preserve the fidelity of strings in the original "
29996 "Registry for various reasons:"
29997 msgstr ""
29998
29999 #. type: textblock
30000 #: ../tools/virt-win-reg.pl:197
30001 msgid ""
30002 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
30003 "other encodings will be corrupted by this transformation."
30004 msgstr ""
30005
30006 #. type: textblock
30007 #: ../tools/virt-win-reg.pl:202
30008 msgid ""
30009 "Assumes that everything which has type 1 or 2 is really a string and that "
30010 "everything else is not a string, but the type field in real Registries is "
30011 "not reliable."
30012 msgstr ""
30013
30014 #. type: textblock
30015 #: ../tools/virt-win-reg.pl:208
30016 msgid ""
30017 "Loses information about whether a zero codepoint followed the string in the "
30018 "Registry or not."
30019 msgstr ""
30020
30021 #. type: textblock
30022 #: ../tools/virt-win-reg.pl:213
30023 msgid ""
30024 "This all happens because the Registry itself contains no information about "
30025 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
30026 msgstr ""
30027
30028 #. type: textblock
30029 #: ../tools/virt-win-reg.pl:217
30030 msgid ""
30031 "You should only use this option for quick hacking and debugging of the "
30032 "Registry contents, and I<never> use it if the output is going to be passed "
30033 "into another program or stored in another Registry."
30034 msgstr ""
30035
30036 #. type: =head1
30037 #: ../tools/virt-win-reg.pl:554
30038 msgid "SUPPORTED SYSTEMS"
30039 msgstr ""
30040
30041 #. type: textblock
30042 #: ../tools/virt-win-reg.pl:556
30043 msgid ""
30044 "The program currently supports Windows NT-derived guests starting with "
30045 "Windows XP through to at least Windows 7."
30046 msgstr ""
30047
30048 #. type: textblock
30049 #: ../tools/virt-win-reg.pl:559
30050 msgid "The following Registry keys are supported:"
30051 msgstr ""
30052
30053 #. type: =item
30054 #: ../tools/virt-win-reg.pl:563
30055 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
30056 msgstr ""
30057
30058 #. type: =item
30059 #: ../tools/virt-win-reg.pl:565
30060 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
30061 msgstr ""
30062
30063 #. type: =item
30064 #: ../tools/virt-win-reg.pl:567
30065 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
30066 msgstr ""
30067
30068 #. type: =item
30069 #: ../tools/virt-win-reg.pl:569
30070 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
30071 msgstr ""
30072
30073 #. type: =item
30074 #: ../tools/virt-win-reg.pl:571
30075 msgid "C<HKEY_USERS\\.DEFAULT>"
30076 msgstr ""
30077
30078 #. type: =item
30079 #: ../tools/virt-win-reg.pl:573
30080 msgid "C<HKEY_USERS\\I<SID>>"
30081 msgstr ""
30082
30083 #. type: textblock
30084 #: ../tools/virt-win-reg.pl:575
30085 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
30086 msgstr ""
30087
30088 #. type: =item
30089 #: ../tools/virt-win-reg.pl:577
30090 msgid "C<HKEY_USERS\\I<username>>"
30091 msgstr ""
30092
30093 #. type: textblock
30094 #: ../tools/virt-win-reg.pl:579
30095 msgid ""
30096 "where I<username> is a local user name (this is a libguestfs extension)."
30097 msgstr ""
30098
30099 #. type: textblock
30100 #: ../tools/virt-win-reg.pl:583
30101 msgid ""
30102 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
30103 "C<HKEY_USERS>."
30104 msgstr ""
30105
30106 #. type: textblock
30107 #: ../tools/virt-win-reg.pl:586
30108 msgid ""
30109 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
30110 "supported (there is no \"current user\")."
30111 msgstr ""
30112
30113 #. type: =head1
30114 #: ../tools/virt-win-reg.pl:589
30115 msgid "ENCODING"
30116 msgstr ""
30117
30118 #. type: textblock
30119 #: ../tools/virt-win-reg.pl:591
30120 msgid ""
30121 "C<virt-win-reg> expects that regedit files have already been reencoded in "
30122 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
30123 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
30124 "Windows-style line endings, you may need to reencode the whole file before "
30125 "or after processing."
30126 msgstr ""
30127
30128 #. type: textblock
30129 #: ../tools/virt-win-reg.pl:597
30130 msgid ""
30131 "To reencode a file from Windows format to Linux (before processing it with "
30132 "the I<--merge> option), you would do something like this:"
30133 msgstr ""
30134
30135 #. type: verbatim
30136 #: ../tools/virt-win-reg.pl:600
30137 #, no-wrap
30138 msgid ""
30139 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30140 "\n"
30141 msgstr ""
30142
30143 #. type: textblock
30144 #: ../tools/virt-win-reg.pl:602
30145 msgid ""
30146 "To go in the opposite direction, after exporting and before sending the file "
30147 "to a Windows user, do something like this:"
30148 msgstr ""
30149
30150 #. type: verbatim
30151 #: ../tools/virt-win-reg.pl:605
30152 #, no-wrap
30153 msgid ""
30154 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30155 "\n"
30156 msgstr ""
30157
30158 #. type: textblock
30159 #: ../tools/virt-win-reg.pl:607
30160 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30161 msgstr ""
30162
30163 #. type: textblock
30164 #: ../tools/virt-win-reg.pl:609
30165 msgid ""
30166 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30167 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30168 "style (CRLF) line endings, like this:"
30169 msgstr ""
30170
30171 #. type: verbatim
30172 #: ../tools/virt-win-reg.pl:613
30173 #, no-wrap
30174 msgid ""
30175 " $ file software.reg\n"
30176 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30177 " with CRLF line terminators\n"
30178 "\n"
30179 msgstr ""
30180
30181 #. type: textblock
30182 #: ../tools/virt-win-reg.pl:617
30183 msgid "This file would need conversion before you could I<--merge> it."
30184 msgstr ""
30185
30186 #. type: =head1
30187 #: ../tools/virt-win-reg.pl:619
30188 msgid "CurrentControlSet etc."
30189 msgstr ""
30190
30191 #. type: textblock
30192 #: ../tools/virt-win-reg.pl:621
30193 msgid ""
30194 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30195 "Registry at the level of the hive file, and therefore you cannot modify "
30196 "these."
30197 msgstr ""
30198
30199 #. type: textblock
30200 #: ../tools/virt-win-reg.pl:625
30201 msgid ""
30202 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30203 "circumstances it might refer to another control set.  The way to find out is "
30204 "to look at the C<HKLM\\SYSTEM\\Select> key:"
30205 msgstr ""
30206
30207 #. type: verbatim
30208 #: ../tools/virt-win-reg.pl:629
30209 #, no-wrap
30210 msgid ""
30211 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30212 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30213 " \"Current\"=dword:00000001\n"
30214 " \"Default\"=dword:00000001\n"
30215 " \"Failed\"=dword:00000000\n"
30216 " \"LastKnownGood\"=dword:00000002\n"
30217 "\n"
30218 msgstr ""
30219
30220 #. type: textblock
30221 #: ../tools/virt-win-reg.pl:636
30222 msgid "\"Current\" is the one which Windows will choose when it boots."
30223 msgstr ""
30224
30225 #. type: textblock
30226 #: ../tools/virt-win-reg.pl:638
30227 msgid ""
30228 "Similarly, other C<Current...> keys in the path may need to be replaced."
30229 msgstr ""
30230
30231 #. type: =head1
30232 #: ../tools/virt-win-reg.pl:641
30233 msgid "WINDOWS TIPS"
30234 msgstr ""
30235
30236 #. type: textblock
30237 #: ../tools/virt-win-reg.pl:643
30238 msgid ""
30239 "Note that some of these tips modify the guest disk image.  The guest I<must> "
30240 "be shut off, else you will get disk corruption."
30241 msgstr ""
30242
30243 #. type: =head2
30244 #: ../tools/virt-win-reg.pl:646
30245 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30246 msgstr ""
30247
30248 #. type: textblock
30249 #: ../tools/virt-win-reg.pl:648
30250 msgid ""
30251 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30252 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30253 "is uploaded into C<C:\\>:"
30254 msgstr ""
30255
30256 #. type: verbatim
30257 #: ../tools/virt-win-reg.pl:652
30258 #, no-wrap
30259 msgid ""
30260 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30261 "\n"
30262 msgstr ""
30263
30264 #. type: textblock
30265 #: ../tools/virt-win-reg.pl:654
30266 msgid "Prepare a regedit file containing the registry change:"
30267 msgstr ""
30268
30269 #. type: verbatim
30270 #: ../tools/virt-win-reg.pl:656
30271 #, no-wrap
30272 msgid ""
30273 " cat > test.reg <<'EOF'\n"
30274 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30275 " \"Test\"=\"c:\\\\test.bat\"\n"
30276 " EOF\n"
30277 "\n"
30278 msgstr ""
30279
30280 #. type: textblock
30281 #: ../tools/virt-win-reg.pl:661
30282 msgid ""
30283 "In this example we use the key C<RunOnce> which means that the script will "
30284 "run precisely once when the first user logs in.  If you want it to run every "
30285 "time a user logs in, replace C<RunOnce> with C<Run>."
30286 msgstr ""
30287
30288 #. type: textblock
30289 #: ../tools/virt-win-reg.pl:665
30290 msgid "Now update the registry:"
30291 msgstr ""
30292
30293 #. type: verbatim
30294 #: ../tools/virt-win-reg.pl:667
30295 #, no-wrap
30296 msgid ""
30297 " virt-win-reg --merge WindowsGuest test.reg\n"
30298 "\n"
30299 msgstr ""
30300
30301 #. type: =head2
30302 #: ../tools/virt-win-reg.pl:669
30303 msgid "INSTALLING A SERVICE"
30304 msgstr ""
30305
30306 #. type: textblock
30307 #: ../tools/virt-win-reg.pl:671
30308 msgid ""
30309 "This section assumes you are familiar with Windows services, and you either "
30310 "have a program which handles the Windows Service Control Protocol directly "
30311 "or you want to run any program using a service wrapper like SrvAny or the "
30312 "free RHSrvAny."
30313 msgstr ""
30314
30315 #. type: textblock
30316 #: ../tools/virt-win-reg.pl:676
30317 msgid ""
30318 "First upload the program and optionally the service wrapper.  In this case "
30319 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30320 msgstr ""
30321
30322 #. type: verbatim
30323 #: ../tools/virt-win-reg.pl:680
30324 #, no-wrap
30325 msgid ""
30326 " guestfish -i -d WindowsGuest <<EOF\n"
30327 "   upload rhsrvany.exe /rhsrvany.exe\n"
30328 "   upload test.exe /test.exe\n"
30329 " EOF\n"
30330 "\n"
30331 msgstr ""
30332
30333 #. type: textblock
30334 #: ../tools/virt-win-reg.pl:685
30335 msgid ""
30336 "Prepare a regedit file containing the registry changes.  In this example, "
30337 "the first registry change is needed for the service itself or the service "
30338 "wrapper (if used).  The second registry change is only needed because I am "
30339 "using the RHSrvAny service wrapper."
30340 msgstr ""
30341
30342 #. type: verbatim
30343 #: ../tools/virt-win-reg.pl:690
30344 #, no-wrap
30345 msgid ""
30346 " cat > service.reg <<'EOF'\n"
30347 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30348 " \"Type\"=dword:00000010\n"
30349 " \"Start\"=dword:00000002\n"
30350 " \"ErrorControl\"=dword:00000001\n"
30351 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30352 " \"DisplayName\"=\"RHSrvAny\"\n"
30353 " \"ObjectName\"=\"NetworkService\"\n"
30354 " \n"
30355 msgstr ""
30356
30357 #. type: verbatim
30358 #: ../tools/virt-win-reg.pl:699
30359 #, no-wrap
30360 msgid ""
30361 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30362 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30363 " \"PWD\"=\"c:\\\\Temp\"\n"
30364 " EOF\n"
30365 "\n"
30366 msgstr ""
30367
30368 #. type: textblock
30369 #: ../tools/virt-win-reg.pl:710
30370 msgid ""
30371 "For use of C<ControlSet001> see the section above in this manual page.  You "
30372 "may need to adjust this according to the control set that is in use by the "
30373 "guest."
30374 msgstr ""
30375
30376 #. type: textblock
30377 #: ../tools/virt-win-reg.pl:716
30378 msgid ""
30379 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30380 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30381 "privileged account."
30382 msgstr ""
30383
30384 #. type: textblock
30385 #: ../tools/virt-win-reg.pl:722
30386 msgid ""
30387 "For the meaning of the magic numbers, see this Microsoft KB article: "
30388 "L<http://support.microsoft.com/kb/103000>."
30389 msgstr ""
30390
30391 #. type: textblock
30392 #: ../tools/virt-win-reg.pl:727
30393 msgid "Update the registry:"
30394 msgstr ""
30395
30396 #. type: verbatim
30397 #: ../tools/virt-win-reg.pl:729
30398 #, no-wrap
30399 msgid ""
30400 " virt-win-reg --merge WindowsGuest service.reg\n"
30401 "\n"
30402 msgstr ""
30403
30404 #. type: =head1
30405 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30406 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30407 #: ../tools/virt-list-partitions.pl:250
30408 msgid "SHELL QUOTING"
30409 msgstr ""
30410
30411 #. type: textblock
30412 #: ../tools/virt-win-reg.pl:733
30413 msgid ""
30414 "Be careful when passing parameters containing C<\\> (backslash) in the "
30415 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30416 "(but not both) to protect them from the shell."
30417 msgstr ""
30418
30419 #. type: textblock
30420 #: ../tools/virt-win-reg.pl:737
30421 msgid "Paths and value names are case-insensitive."
30422 msgstr ""
30423
30424 #. type: textblock
30425 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30426 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30427 #: ../tools/virt-list-partitions.pl:252
30428 msgid ""
30429 "Libvirt guest names can contain arbitrary characters, some of which have "
30430 "meaning to the shell such as C<#> and space.  You may need to quote or "
30431 "escape these characters on the command line.  See the shell manual page L<sh"
30432 "(1)> for details."
30433 msgstr ""
30434
30435 #. type: textblock
30436 #: ../tools/virt-win-reg.pl:746
30437 msgid ""
30438 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30439 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30440 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30441 msgstr ""
30442
30443 #. type: textblock
30444 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30445 msgid ""
30446 "When reporting bugs, please enable debugging and capture the I<complete> "
30447 "output:"
30448 msgstr ""
30449
30450 #. type: verbatim
30451 #: ../tools/virt-win-reg.pl:764
30452 #, no-wrap
30453 msgid ""
30454 " export LIBGUESTFS_DEBUG=1\n"
30455 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30456 "\n"
30457 msgstr ""
30458
30459 #. type: textblock
30460 #: ../tools/virt-win-reg.pl:767
30461 msgid ""
30462 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30463 "redhat.com/>"
30464 msgstr ""
30465
30466 #. type: =head1
30467 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30468 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30469 #: ../tools/virt-list-partitions.pl:269
30470 msgid "AUTHOR"
30471 msgstr ""
30472
30473 #. type: textblock
30474 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30475 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30476 #: ../tools/virt-list-partitions.pl:271
30477 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30478 msgstr ""
30479
30480 #. type: textblock
30481 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30482 msgid "Copyright (C) 2010 Red Hat Inc."
30483 msgstr ""
30484
30485 #. type: textblock
30486 #: ../tools/virt-list-filesystems.pl:32
30487 msgid ""
30488 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30489 msgstr ""
30490
30491 #. type: verbatim
30492 #: ../tools/virt-list-filesystems.pl:36
30493 #, no-wrap
30494 msgid ""
30495 " virt-list-filesystems [--options] domname\n"
30496 "\n"
30497 msgstr ""
30498
30499 #. type: verbatim
30500 #: ../tools/virt-list-filesystems.pl:38
30501 #, no-wrap
30502 msgid ""
30503 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30504 "\n"
30505 msgstr ""
30506
30507 #. type: textblock
30508 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30509 msgid ""
30510 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30511 "replacement."
30512 msgstr ""
30513
30514 #. type: textblock
30515 #: ../tools/virt-list-filesystems.pl:45
30516 msgid ""
30517 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30518 "are contained in a virtual machine or disk image."
30519 msgstr ""
30520
30521 #. type: textblock
30522 #: ../tools/virt-list-filesystems.pl:49
30523 msgid ""
30524 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30525 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30526 "> tool."
30527 msgstr ""
30528
30529 #. type: =item
30530 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30531 msgid "B<-l> | B<--long>"
30532 msgstr ""
30533
30534 #. type: textblock
30535 #: ../tools/virt-list-filesystems.pl:108
30536 msgid ""
30537 "With this option, C<virt-list-filesystems> displays the type of each "
30538 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30539 msgstr ""
30540
30541 #. type: =item
30542 #: ../tools/virt-list-filesystems.pl:115
30543 msgid "B<-a> | B<--all>"
30544 msgstr ""
30545
30546 #. type: textblock
30547 #: ../tools/virt-list-filesystems.pl:117
30548 msgid ""
30549 "Normally we only show mountable filesystems.  If this option is given then "
30550 "swap devices are shown too."
30551 msgstr ""
30552
30553 #. type: textblock
30554 #: ../tools/virt-list-filesystems.pl:191
30555 msgid ""
30556 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30557 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30558 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30559 msgstr ""
30560
30561 #. type: textblock
30562 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30563 msgid "Copyright (C) 2009 Red Hat Inc."
30564 msgstr ""
30565
30566 #. type: textblock
30567 #: ../tools/virt-tar.pl:33
30568 msgid "virt-tar - Extract or upload files to a virtual machine"
30569 msgstr ""
30570
30571 #. type: verbatim
30572 #: ../tools/virt-tar.pl:37
30573 #, no-wrap
30574 msgid ""
30575 " virt-tar [--options] -x domname directory tarball\n"
30576 "\n"
30577 msgstr ""
30578
30579 #. type: verbatim
30580 #: ../tools/virt-tar.pl:39
30581 #, no-wrap
30582 msgid ""
30583 " virt-tar [--options] -u domname tarball directory\n"
30584 "\n"
30585 msgstr ""
30586
30587 #. type: verbatim
30588 #: ../tools/virt-tar.pl:41
30589 #, no-wrap
30590 msgid ""
30591 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30592 "\n"
30593 msgstr ""
30594
30595 #. type: verbatim
30596 #: ../tools/virt-tar.pl:43
30597 #, no-wrap
30598 msgid ""
30599 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30600 "\n"
30601 msgstr ""
30602
30603 #. type: textblock
30604 #: ../tools/virt-tar.pl:47
30605 msgid ""
30606 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30607 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30608 msgstr ""
30609
30610 #. type: textblock
30611 #: ../tools/virt-tar.pl:52
30612 msgid "Download C</home> from the VM into a local tarball:"
30613 msgstr ""
30614
30615 #. type: verbatim
30616 #: ../tools/virt-tar.pl:54
30617 #, no-wrap
30618 msgid ""
30619 " virt-tar -x domname /home home.tar\n"
30620 "\n"
30621 msgstr ""
30622
30623 #. type: verbatim
30624 #: ../tools/virt-tar.pl:56
30625 #, no-wrap
30626 msgid ""
30627 " virt-tar -zx domname /home home.tar.gz\n"
30628 "\n"
30629 msgstr ""
30630
30631 #. type: textblock
30632 #: ../tools/virt-tar.pl:58
30633 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30634 msgstr ""
30635
30636 #. type: verbatim
30637 #: ../tools/virt-tar.pl:60
30638 #, no-wrap
30639 msgid ""
30640 " virt-tar -u domname uploadstuff.tar /tmp\n"
30641 "\n"
30642 msgstr ""
30643
30644 #. type: verbatim
30645 #: ../tools/virt-tar.pl:62
30646 #, no-wrap
30647 msgid ""
30648 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30649 "\n"
30650 msgstr ""
30651
30652 #. type: textblock
30653 #: ../tools/virt-tar.pl:66
30654 msgid ""
30655 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30656 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30657 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30658 msgstr ""
30659
30660 #. type: textblock
30661 #: ../tools/virt-tar.pl:71
30662 msgid ""
30663 "You can use I<-x> (extract) on live virtual machines, but you might get "
30664 "inconsistent results or errors if there is filesystem activity inside the "
30665 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30666 "work, but the only way to guarantee consistent results is if the virtual "
30667 "machine is shut down."
30668 msgstr ""
30669
30670 #. type: textblock
30671 #: ../tools/virt-tar.pl:79
30672 msgid ""
30673 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30674 "parts of a guest filesystem.  There are many possibilities: making backups, "
30675 "uploading data files, snooping on guest activity, fixing or customizing "
30676 "guests, etc."
30677 msgstr ""
30678
30679 #. type: textblock
30680 #: ../tools/virt-tar.pl:84
30681 msgid ""
30682 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30683 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30684 "should look at the L<guestfish(1)> tool."
30685 msgstr ""
30686
30687 #. type: textblock
30688 #: ../tools/virt-tar.pl:88
30689 msgid ""
30690 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30691 "its contents (recursively) from the virtual machine into a local tarball.  "
30692 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30693 "virtual machine.  You cannot use these two options together."
30694 msgstr ""
30695
30696 #. type: textblock
30697 #: ../tools/virt-tar.pl:94
30698 msgid ""
30699 "In addition, you may need to use the I<-z> (gZip) option to enable "
30700 "compression.  When uploading, you have to specify I<-z> if the upload file "
30701 "is compressed because virt-tar won't detect this on its own."
30702 msgstr ""
30703
30704 #. type: textblock
30705 #: ../tools/virt-tar.pl:98
30706 msgid ""
30707 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30708 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30709 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30710 "the L<libguestfs(3)> API)."
30711 msgstr ""
30712
30713 #. type: =item
30714 #: ../tools/virt-tar.pl:156
30715 msgid "B<-x> | B<--extract> | B<--download>"
30716 msgstr ""
30717
30718 #. type: =item
30719 #: ../tools/virt-tar.pl:158
30720 msgid "B<-u> | B<--upload>"
30721 msgstr ""
30722
30723 #. type: textblock
30724 #: ../tools/virt-tar.pl:160
30725 msgid ""
30726 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30727 "local tarball."
30728 msgstr ""
30729
30730 #. type: textblock
30731 #: ../tools/virt-tar.pl:163
30732 msgid ""
30733 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30734 "Please read the L</WARNING> section above before using this option."
30735 msgstr ""
30736
30737 #. type: textblock
30738 #: ../tools/virt-tar.pl:167
30739 msgid "You must specify exactly one of these options."
30740 msgstr ""
30741
30742 #. type: =item
30743 #: ../tools/virt-tar.pl:173
30744 msgid "B<-z> | B<--gzip>"
30745 msgstr ""
30746
30747 #. type: textblock
30748 #: ../tools/virt-tar.pl:175
30749 msgid "Specify that the input or output tarball is gzip-compressed."
30750 msgstr ""
30751
30752 #. type: textblock
30753 #: ../tools/virt-tar.pl:288
30754 msgid ""
30755 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30756 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30757 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30758 "org/>."
30759 msgstr ""
30760
30761 #. type: textblock
30762 #: ../tools/virt-make-fs.pl:37
30763 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30764 msgstr ""
30765
30766 #. type: verbatim
30767 #: ../tools/virt-make-fs.pl:41
30768 #, no-wrap
30769 msgid ""
30770 " virt-make-fs [--options] input.tar output.img\n"
30771 "\n"
30772 msgstr ""
30773
30774 #. type: verbatim
30775 #: ../tools/virt-make-fs.pl:43
30776 #, no-wrap
30777 msgid ""
30778 " virt-make-fs [--options] input.tar.gz output.img\n"
30779 "\n"
30780 msgstr ""
30781
30782 #. type: verbatim
30783 #: ../tools/virt-make-fs.pl:45
30784 #, no-wrap
30785 msgid ""
30786 " virt-make-fs [--options] directory output.img\n"
30787 "\n"
30788 msgstr ""
30789
30790 #. type: textblock
30791 #: ../tools/virt-make-fs.pl:49
30792 msgid ""
30793 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30794 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30795 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30796 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30797 "you want to attach these filesystems to existing virtual machines (eg. to "
30798 "import large amounts of read-only data to a VM)."
30799 msgstr ""
30800
30801 #. type: textblock
30802 #: ../tools/virt-make-fs.pl:57
30803 msgid "Basic usage is:"
30804 msgstr ""
30805
30806 #. type: verbatim
30807 #: ../tools/virt-make-fs.pl:59
30808 #, no-wrap
30809 msgid ""
30810 " virt-make-fs input output\n"
30811 "\n"
30812 msgstr ""
30813
30814 #. type: textblock
30815 #: ../tools/virt-make-fs.pl:61
30816 msgid ""
30817 "where C<input> is either a directory containing files that you want to add, "
30818 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30819 "C<output> is a disk image.  The input type is detected automatically.  The "
30820 "output disk image defaults to a raw ext2 image unless you specify extra "
30821 "flags (see L</OPTIONS> below)."
30822 msgstr ""
30823
30824 #. type: =head2
30825 #: ../tools/virt-make-fs.pl:67
30826 msgid "EXTRA SPACE"
30827 msgstr ""
30828
30829 #. type: textblock
30830 #: ../tools/virt-make-fs.pl:69
30831 msgid ""
30832 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30833 "the files that it contains, but might have extra space.  Depending on how "
30834 "you are going to use the output, you might think this extra space is wasted "
30835 "and want to minimize it, or you might want to leave space so that more files "
30836 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30837 "but you can use the I<--size> flag to leave space in the filesystem if you "
30838 "want it."
30839 msgstr ""
30840
30841 #. type: textblock
30842 #: ../tools/virt-make-fs.pl:77
30843 msgid ""
30844 "An alternative way to leave extra space but not make the output image any "
30845 "bigger is to use an alternative disk image format (instead of the default "
30846 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30847 "image format (check your hypervisor supports this before using it).  This "
30848 "allows you to choose a large I<--size> but the extra space won't actually be "
30849 "allocated in the image until you try to store something in it."
30850 msgstr ""
30851
30852 #. type: textblock
30853 #: ../tools/virt-make-fs.pl:85
30854 msgid ""
30855 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30856 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30857 "to build another image from scratch."
30858 msgstr ""
30859
30860 #. type: =head3
30861 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30862 #: ../tools/virt-make-fs.pl:142
30863 msgid "EXAMPLE"
30864 msgstr ""
30865
30866 #. type: verbatim
30867 #: ../tools/virt-make-fs.pl:91
30868 #, no-wrap
30869 msgid ""
30870 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30871 "\n"
30872 msgstr ""
30873
30874 #. type: =head2
30875 #: ../tools/virt-make-fs.pl:93
30876 msgid "FILESYSTEM TYPE"
30877 msgstr ""
30878
30879 #. type: textblock
30880 #: ../tools/virt-make-fs.pl:95
30881 msgid ""
30882 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30883 "libguestfs supports can be used (but I<not> read-only formats like "
30884 "ISO9660).  Here are some of the more common choices:"
30885 msgstr ""
30886
30887 #. type: =item
30888 #: ../tools/virt-make-fs.pl:101
30889 msgid "I<ext3>"
30890 msgstr ""
30891
30892 #. type: textblock
30893 #: ../tools/virt-make-fs.pl:103
30894 msgid ""
30895 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30896 "you are not going to use the filesystem in a way that requires the journal, "
30897 "then this is just wasted overhead."
30898 msgstr ""
30899
30900 #. type: =item
30901 #: ../tools/virt-make-fs.pl:107
30902 msgid "I<ntfs> or I<vfat>"
30903 msgstr ""
30904
30905 #. type: textblock
30906 #: ../tools/virt-make-fs.pl:109
30907 msgid "Useful if exporting data to a Windows guest."
30908 msgstr ""
30909
30910 #. type: textblock
30911 #: ../tools/virt-make-fs.pl:111
30912 msgid ""
30913 "I<Note for vfat>: The tar archive or local directory must only contain files "
30914 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30915 "program running within libguestfs is unable to change the ownership of non-"
30916 "root files, since vfat itself does not support this."
30917 msgstr ""
30918
30919 #. type: =item
30920 #: ../tools/virt-make-fs.pl:116
30921 msgid "I<minix>"
30922 msgstr ""
30923
30924 #. type: textblock
30925 #: ../tools/virt-make-fs.pl:118
30926 msgid ""
30927 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30928 "total filesystem size."
30929 msgstr ""
30930
30931 #. type: verbatim
30932 #: ../tools/virt-make-fs.pl:125
30933 #, no-wrap
30934 msgid ""
30935 " virt-make-fs --type=minix input minixfs.img\n"
30936 "\n"
30937 msgstr ""
30938
30939 #. type: =head2
30940 #: ../tools/virt-make-fs.pl:127
30941 msgid "TO PARTITION OR NOT TO PARTITION"
30942 msgstr ""
30943
30944 #. type: textblock
30945 #: ../tools/virt-make-fs.pl:129
30946 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30947 msgstr ""
30948
30949 #. type: textblock
30950 #: ../tools/virt-make-fs.pl:131
30951 msgid ""
30952 "Adding a partition can make the disk image more compatible with certain "
30953 "virtualized operating systems which don't expect to see a filesystem "
30954 "directly located on a block device (Linux doesn't care and will happily "
30955 "handle both types)."
30956 msgstr ""
30957
30958 #. type: textblock
30959 #: ../tools/virt-make-fs.pl:136
30960 msgid ""
30961 "On the other hand, if you have a partition table then the output image is no "
30962 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30963 "directly on a partitioned disk image.  (However libguestfs tools such as "
30964 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30965 msgstr ""
30966
30967 #. type: textblock
30968 #: ../tools/virt-make-fs.pl:144
30969 msgid "Add an MBR partition:"
30970 msgstr ""
30971
30972 #. type: verbatim
30973 #: ../tools/virt-make-fs.pl:146
30974 #, no-wrap
30975 msgid ""
30976 " virt-make-fs --partition -- input disk.img\n"
30977 "\n"
30978 msgstr ""
30979
30980 #. type: textblock
30981 #: ../tools/virt-make-fs.pl:148
30982 msgid ""
30983 "If the output disk image could be terabyte-sized or larger, it's better to "
30984 "use an EFI/GPT-compatible partition table:"
30985 msgstr ""
30986
30987 #. type: verbatim
30988 #: ../tools/virt-make-fs.pl:151
30989 #, no-wrap
30990 msgid ""
30991 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30992 "\n"
30993 msgstr ""
30994
30995 #. type: textblock
30996 #: ../tools/virt-make-fs.pl:179
30997 msgid "Enable debugging information."
30998 msgstr ""
30999
31000 #. type: =item
31001 #: ../tools/virt-make-fs.pl:185
31002 msgid "B<--size=E<lt>NE<gt>>"
31003 msgstr ""
31004
31005 #. type: =item
31006 #: ../tools/virt-make-fs.pl:187
31007 msgid "B<--size=+E<lt>NE<gt>>"
31008 msgstr ""
31009
31010 #. type: =item
31011 #: ../tools/virt-make-fs.pl:189
31012 msgid "B<-s E<lt>NE<gt>>"
31013 msgstr ""
31014
31015 #. type: =item
31016 #: ../tools/virt-make-fs.pl:191
31017 msgid "B<-s +E<lt>NE<gt>>"
31018 msgstr ""
31019
31020 #. type: textblock
31021 #: ../tools/virt-make-fs.pl:193
31022 msgid ""
31023 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
31024 msgstr ""
31025
31026 #. type: textblock
31027 #: ../tools/virt-make-fs.pl:196
31028 msgid ""
31029 "If this option is I<not> given, then the output image will be just large "
31030 "enough to contain all the files, with not much wasted space."
31031 msgstr ""
31032
31033 #. type: textblock
31034 #: ../tools/virt-make-fs.pl:199
31035 msgid ""
31036 "To choose a fixed size output disk, specify an absolute number followed by b/"
31037 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31038 "Petabytes or Exabytes.  This must be large enough to contain all the input "
31039 "files, else you will get an error."
31040 msgstr ""
31041
31042 #. type: textblock
31043 #: ../tools/virt-make-fs.pl:204
31044 msgid ""
31045 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
31046 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31047 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
31048 "the input files, and (approximately) an extra 200 MB free space."
31049 msgstr ""
31050
31051 #. type: textblock
31052 #: ../tools/virt-make-fs.pl:210
31053 msgid ""
31054 "Note that virt-make-fs estimates free space, and therefore will not produce "
31055 "filesystems containing precisely the free space requested.  (It is much more "
31056 "expensive and time-consuming to produce a filesystem which has precisely the "
31057 "desired free space)."
31058 msgstr ""
31059
31060 #. type: =item
31061 #: ../tools/virt-make-fs.pl:219
31062 msgid "B<--format=E<lt>fmtE<gt>>"
31063 msgstr ""
31064
31065 #. type: =item
31066 #: ../tools/virt-make-fs.pl:221
31067 msgid "B<-F E<lt>fmtE<gt>>"
31068 msgstr ""
31069
31070 #. type: textblock
31071 #: ../tools/virt-make-fs.pl:223
31072 msgid "Choose the output disk image format."
31073 msgstr ""
31074
31075 #. type: textblock
31076 #: ../tools/virt-make-fs.pl:225
31077 msgid "The default is C<raw> (raw disk image)."
31078 msgstr ""
31079
31080 #. type: textblock
31081 #: ../tools/virt-make-fs.pl:227
31082 msgid ""
31083 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
31084 "that would really make sense here is C<qcow2>."
31085 msgstr ""
31086
31087 #. type: =item
31088 #: ../tools/virt-make-fs.pl:234
31089 msgid "B<--type=E<lt>fsE<gt>>"
31090 msgstr ""
31091
31092 #. type: =item
31093 #: ../tools/virt-make-fs.pl:236
31094 msgid "B<-t E<lt>fsE<gt>>"
31095 msgstr ""
31096
31097 #. type: textblock
31098 #: ../tools/virt-make-fs.pl:238
31099 msgid "Choose the output filesystem type."
31100 msgstr ""
31101
31102 #. type: textblock
31103 #: ../tools/virt-make-fs.pl:240
31104 msgid "The default is C<ext2>."
31105 msgstr ""
31106
31107 #. type: textblock
31108 #: ../tools/virt-make-fs.pl:242
31109 msgid ""
31110 "Any filesystem which is supported read-write by libguestfs can be used here."
31111 msgstr ""
31112
31113 #. type: =item
31114 #: ../tools/virt-make-fs.pl:249
31115 msgid "B<--partition>"
31116 msgstr ""
31117
31118 #. type: =item
31119 #: ../tools/virt-make-fs.pl:251
31120 msgid "B<--partition=E<lt>parttypeE<gt>>"
31121 msgstr ""
31122
31123 #. type: textblock
31124 #: ../tools/virt-make-fs.pl:253
31125 msgid ""
31126 "If specified, this flag adds an MBR partition table to the output disk image."
31127 msgstr ""
31128
31129 #. type: textblock
31130 #: ../tools/virt-make-fs.pl:256
31131 msgid ""
31132 "You can change the partition table type, eg. I<--partition=gpt> for large "
31133 "disks."
31134 msgstr ""
31135
31136 #. type: textblock
31137 #: ../tools/virt-make-fs.pl:259
31138 msgid ""
31139 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
31140 "might consider the next parameter to be the partition type.  For example:"
31141 msgstr ""
31142
31143 #. type: verbatim
31144 #: ../tools/virt-make-fs.pl:263
31145 #, no-wrap
31146 msgid ""
31147 " virt-make-fs --partition input.tar ...\n"
31148 "\n"
31149 msgstr ""
31150
31151 #. type: textblock
31152 #: ../tools/virt-make-fs.pl:265
31153 msgid ""
31154 "would cause virt-make-fs to think you wanted to use a partition type of "
31155 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
31156 "dash) between options and the input file argument:"
31157 msgstr ""
31158
31159 #. type: verbatim
31160 #: ../tools/virt-make-fs.pl:269
31161 #, no-wrap
31162 msgid ""
31163 " virt-make-fs --partition -- input.tar ...\n"
31164 "\n"
31165 msgstr ""
31166
31167 #. type: textblock
31168 #: ../tools/virt-make-fs.pl:541
31169 msgid ""
31170 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31171 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
31172 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31173 msgstr ""
31174
31175 #. type: verbatim
31176 #: ../tools/virt-make-fs.pl:558
31177 #, no-wrap
31178 msgid ""
31179 " export LIBGUESTFS_DEBUG=1\n"
31180 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31181 "\n"
31182 msgstr ""
31183
31184 #. type: textblock
31185 #: ../tools/virt-make-fs.pl:561
31186 msgid ""
31187 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
31188 "redhat.com/>"
31189 msgstr ""
31190
31191 #. type: textblock
31192 #: ../tools/virt-list-partitions.pl:32
31193 msgid ""
31194 "virt-list-partitions - List partitions in a virtual machine or disk image"
31195 msgstr ""
31196
31197 #. type: verbatim
31198 #: ../tools/virt-list-partitions.pl:36
31199 #, no-wrap
31200 msgid ""
31201 " virt-list-partitions [--options] domname\n"
31202 "\n"
31203 msgstr ""
31204
31205 #. type: verbatim
31206 #: ../tools/virt-list-partitions.pl:38
31207 #, no-wrap
31208 msgid ""
31209 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31210 "\n"
31211 msgstr ""
31212
31213 #. type: textblock
31214 #: ../tools/virt-list-partitions.pl:45
31215 msgid ""
31216 "C<virt-list-partitions> is a command line tool to list the partitions that "
31217 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31218 "first step to using L<virt-resize(1)>."
31219 msgstr ""
31220
31221 #. type: textblock
31222 #: ../tools/virt-list-partitions.pl:50
31223 msgid ""
31224 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31225 "functionality.  For more complex cases you should look at the L<guestfish(1)"
31226 "> tool."
31227 msgstr ""
31228
31229 #. type: =item
31230 #: ../tools/virt-list-partitions.pl:107
31231 msgid "B<-h> | B<--human-readable>"
31232 msgstr ""
31233
31234 #. type: textblock
31235 #: ../tools/virt-list-partitions.pl:109
31236 msgid "Show sizes in human-readable form (eg. \"1G\")."
31237 msgstr ""
31238
31239 #. type: textblock
31240 #: ../tools/virt-list-partitions.pl:117
31241 msgid ""
31242 "With this option, C<virt-list-partitions> displays the type and size of each "
31243 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31244 msgstr ""
31245
31246 #. type: =item
31247 #: ../tools/virt-list-partitions.pl:124
31248 msgid "B<-t> | B<--total>"
31249 msgstr ""
31250
31251 #. type: textblock
31252 #: ../tools/virt-list-partitions.pl:126
31253 msgid ""
31254 "Display the total size of each block device (as a separate row or rows)."
31255 msgstr ""
31256
31257 #. type: textblock
31258 #: ../tools/virt-list-partitions.pl:259
31259 msgid ""
31260 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31261 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
31262 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31263 msgstr ""
31264
31265 #. type: textblock
31266 #: ../tools/virt-list-partitions.pl:275
31267 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31268 msgstr ""