Version 1.11.18.
[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-15 17:18+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:2047 ../src/guestfs.pod:2052
865 #: ../src/guestfs.pod:2058 ../src/guestfs.pod:2066 ../src/guestfs.pod:2420
866 #: ../src/guestfs.pod:2426 ../src/guestfs.pod:2431 ../src/guestfs.pod:2437
867 #: ../src/guestfs.pod:3011 ../src/guestfs.pod:3015 ../src/guestfs.pod:3019
868 #: ../src/guestfs.pod:3023 ../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:1662
872 #: ../src/guestfs-actions.pod:1666 ../src/guestfs-actions.pod:1670
873 #: ../src/guestfs-actions.pod:1674 ../src/guestfs-actions.pod:1682
874 #: ../src/guestfs-actions.pod:1686 ../src/guestfs-actions.pod:1690
875 #: ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1704
876 #: ../src/guestfs-actions.pod:1708 ../src/guestfs-actions.pod:1846
877 #: ../src/guestfs-actions.pod:1850 ../src/guestfs-actions.pod:1855
878 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1921
879 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1930
880 #: ../src/guestfs-actions.pod:2857 ../src/guestfs-actions.pod:2863
881 #: ../src/guestfs-actions.pod:2871 ../src/guestfs-actions.pod:2878
882 #: ../src/guestfs-actions.pod:2885 ../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:1099
888 #: ../fish/guestfish-actions.pod:1103 ../fish/guestfish-actions.pod:1107
889 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1119
890 #: ../fish/guestfish-actions.pod:1123 ../fish/guestfish-actions.pod:1127
891 #: ../fish/guestfish-actions.pod:1137 ../fish/guestfish-actions.pod:1141
892 #: ../fish/guestfish-actions.pod:1145 ../fish/guestfish-actions.pod:1235
893 #: ../fish/guestfish-actions.pod:1239 ../fish/guestfish-actions.pod:1244
894 #: ../fish/guestfish-actions.pod:1249 ../fish/guestfish-actions.pod:1291
895 #: ../fish/guestfish-actions.pod:1295 ../fish/guestfish-actions.pod:1300
896 #: ../fish/guestfish-actions.pod:1933 ../fish/guestfish-actions.pod:1939
897 #: ../fish/guestfish-actions.pod:1947 ../fish/guestfish-actions.pod:1954
898 #: ../fish/guestfish-actions.pod:1961 ../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:2465
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:2490
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:825
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:1068
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:1917 ../src/guestfs-actions.pod:2853
3314 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1287
3315 #: ../fish/guestfish-actions.pod:1929 ../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 "CANCELLING LONG TRANSFERS"
3859 msgstr ""
3860
3861 #. type: textblock
3862 #: ../src/guestfs.pod:1954
3863 msgid ""
3864 "Some operations can be cancelled by the caller while they are in progress.  "
3865 "Currently only operations that involve uploading or downloading data can be "
3866 "cancelled (technically: operations that have C<FileIn> or C<FileOut> "
3867 "parameters in the generator)."
3868 msgstr ""
3869
3870 #. type: =head2
3871 #: ../src/guestfs.pod:1959
3872 msgid "guestfs_user_cancel"
3873 msgstr ""
3874
3875 #. type: verbatim
3876 #: ../src/guestfs.pod:1961
3877 #, no-wrap
3878 msgid ""
3879 " void guestfs_user_cancel (guestfs_h *g);\n"
3880 "\n"
3881 msgstr ""
3882
3883 #. type: textblock
3884 #: ../src/guestfs.pod:1963
3885 msgid ""
3886 "C<guestfs_user_cancel> cancels the current upload or download operation."
3887 msgstr ""
3888
3889 #. type: textblock
3890 #: ../src/guestfs.pod:1966
3891 msgid ""
3892 "Unlike most other libguestfs calls, this function is signal safe and thread "
3893 "safe.  You can call it from a signal handler or from another thread, without "
3894 "needing to do any locking."
3895 msgstr ""
3896
3897 #. type: textblock
3898 #: ../src/guestfs.pod:1970
3899 msgid ""
3900 "The transfer that was in progress (if there is one) will stop shortly "
3901 "afterwards, and will return an error.  The errno (see L</"
3902 "guestfs_last_errno>) is set to C<EINTR>, so you can test for this to find "
3903 "out if the operation was cancelled or failed because of another error."
3904 msgstr ""
3905
3906 #. type: textblock
3907 #: ../src/guestfs.pod:1976
3908 msgid ""
3909 "No cleanup is performed: for example, if a file was being uploaded then "
3910 "after cancellation there may be a partially uploaded file.  It is the "
3911 "caller's responsibility to clean up if necessary."
3912 msgstr ""
3913
3914 #. type: textblock
3915 #: ../src/guestfs.pod:1980
3916 msgid "There are two common places that you might call C<guestfs_user_cancel>."
3917 msgstr ""
3918
3919 #. type: textblock
3920 #: ../src/guestfs.pod:1982
3921 msgid ""
3922 "In an interactive text-based program, you might call it from a C<SIGINT> "
3923 "signal handler so that pressing C<^C> cancels the current operation.  (You "
3924 "also need to call L</guestfs_set_pgroup> so that child processes don't "
3925 "receive the C<^C> signal)."
3926 msgstr ""
3927
3928 #. type: textblock
3929 #: ../src/guestfs.pod:1987
3930 msgid ""
3931 "In a graphical program, when the main thread is displaying a progress bar "
3932 "with a cancel button, wire up the cancel button to call this function."
3933 msgstr ""
3934
3935 #. type: =head1
3936 #: ../src/guestfs.pod:1991
3937 msgid "PRIVATE DATA AREA"
3938 msgstr ""
3939
3940 #. type: textblock
3941 #: ../src/guestfs.pod:1993
3942 msgid ""
3943 "You can attach named pieces of private data to the libguestfs handle, fetch "
3944 "them by name, and walk over them, for the lifetime of the handle.  This is "
3945 "called the private data area and is only available from the C API."
3946 msgstr ""
3947
3948 #. type: textblock
3949 #: ../src/guestfs.pod:1998
3950 msgid "To attach a named piece of data, use the following call:"
3951 msgstr ""
3952
3953 #. type: verbatim
3954 #: ../src/guestfs.pod:2000
3955 #, no-wrap
3956 msgid ""
3957 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3958 "\n"
3959 msgstr ""
3960
3961 #. type: textblock
3962 #: ../src/guestfs.pod:2002
3963 msgid ""
3964 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3965 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3966 "overwritten."
3967 msgstr ""
3968
3969 #. type: textblock
3970 #: ../src/guestfs.pod:2006
3971 msgid ""
3972 "You can use any C<key> you want, but your key should I<not> start with an "
3973 "underscore character.  Keys beginning with an underscore character are "
3974 "reserved for internal libguestfs purposes (eg. for implementing language "
3975 "bindings).  It is recommended that you prefix the key with some unique "
3976 "string to avoid collisions with other users."
3977 msgstr ""
3978
3979 #. type: textblock
3980 #: ../src/guestfs.pod:2012
3981 msgid "To retrieve the pointer, use:"
3982 msgstr ""
3983
3984 #. type: verbatim
3985 #: ../src/guestfs.pod:2014
3986 #, no-wrap
3987 msgid ""
3988 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3989 "\n"
3990 msgstr ""
3991
3992 #. type: textblock
3993 #: ../src/guestfs.pod:2016
3994 msgid ""
3995 "This function returns C<NULL> if either no data is found associated with "
3996 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3997 "C<NULL>."
3998 msgstr ""
3999
4000 #. type: textblock
4001 #: ../src/guestfs.pod:2020
4002 msgid ""
4003 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
4004 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
4005 "all.  In particular, libguestfs does I<not> try to free the data when the "
4006 "handle is closed.  If the data must be freed, then the caller must either "
4007 "free it before calling L</guestfs_close> or must set up a close callback to "
4008 "do it (see L</GUESTFS_EVENT_CLOSE>)."
4009 msgstr ""
4010
4011 #. type: textblock
4012 #: ../src/guestfs.pod:2027
4013 msgid "To walk over all entries, use these two functions:"
4014 msgstr ""
4015
4016 #. type: verbatim
4017 #: ../src/guestfs.pod:2029
4018 #, no-wrap
4019 msgid ""
4020 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4021 "\n"
4022 msgstr ""
4023
4024 #. type: verbatim
4025 #: ../src/guestfs.pod:2031
4026 #, no-wrap
4027 msgid ""
4028 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4029 "\n"
4030 msgstr ""
4031
4032 #. type: textblock
4033 #: ../src/guestfs.pod:2033
4034 msgid ""
4035 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
4036 "not have any particular meaning -- keys are not returned in any defined "
4037 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4038 "corresponding data pointer is returned from the function.  C<NULL> is "
4039 "returned if there are no keys stored in the handle."
4040 msgstr ""
4041
4042 #. type: textblock
4043 #: ../src/guestfs.pod:2039
4044 msgid ""
4045 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4046 "value of this function is also C<NULL> is there are no further entries to "
4047 "return."
4048 msgstr ""
4049
4050 #. type: textblock
4051 #: ../src/guestfs.pod:2043
4052 msgid "Notes about walking over entries:"
4053 msgstr ""
4054
4055 #. type: textblock
4056 #: ../src/guestfs.pod:2049
4057 msgid ""
4058 "You must not call C<guestfs_set_private> while walking over the entries."
4059 msgstr ""
4060
4061 #. type: textblock
4062 #: ../src/guestfs.pod:2054
4063 msgid ""
4064 "The handle maintains an internal iterator which is reset when you call "
4065 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4066 "call C<guestfs_set_private>."
4067 msgstr ""
4068
4069 #. type: textblock
4070 #: ../src/guestfs.pod:2060
4071 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4072 msgstr ""
4073
4074 #. type: verbatim
4075 #: ../src/guestfs.pod:2062
4076 #, no-wrap
4077 msgid ""
4078 " guestfs_set_private (g, key, NULL);\n"
4079 "\n"
4080 msgstr ""
4081
4082 #. type: textblock
4083 #: ../src/guestfs.pod:2064
4084 msgid "then that C<key> is not returned when walking."
4085 msgstr ""
4086
4087 #. type: textblock
4088 #: ../src/guestfs.pod:2068
4089 msgid ""
4090 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4091 "C<guestfs_next_private> or C<guestfs_set_private>."
4092 msgstr ""
4093
4094 #. type: textblock
4095 #: ../src/guestfs.pod:2074
4096 msgid ""
4097 "The following example code shows how to print all keys and data pointers "
4098 "that are associated with the handle C<g>:"
4099 msgstr ""
4100
4101 #. type: verbatim
4102 #: ../src/guestfs.pod:2077
4103 #, no-wrap
4104 msgid ""
4105 " const char *key;\n"
4106 " void *data = guestfs_first_private (g, &key);\n"
4107 " while (data != NULL)\n"
4108 "   {\n"
4109 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4110 "     data = guestfs_next_private (g, &key);\n"
4111 "   }\n"
4112 "\n"
4113 msgstr ""
4114
4115 #. type: textblock
4116 #: ../src/guestfs.pod:2085
4117 msgid ""
4118 "More commonly you are only interested in keys that begin with an application-"
4119 "specific prefix C<foo_>.  Modify the loop like so:"
4120 msgstr ""
4121
4122 #. type: verbatim
4123 #: ../src/guestfs.pod:2088
4124 #, no-wrap
4125 msgid ""
4126 " const char *key;\n"
4127 " void *data = guestfs_first_private (g, &key);\n"
4128 " while (data != NULL)\n"
4129 "   {\n"
4130 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4131 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4132 "     data = guestfs_next_private (g, &key);\n"
4133 "   }\n"
4134 "\n"
4135 msgstr ""
4136
4137 #. type: textblock
4138 #: ../src/guestfs.pod:2097
4139 msgid ""
4140 "If you need to modify keys while walking, then you have to jump back to the "
4141 "beginning of the loop.  For example, to delete all keys prefixed with "
4142 "C<foo_>:"
4143 msgstr ""
4144
4145 #. type: verbatim
4146 #: ../src/guestfs.pod:2101
4147 #, no-wrap
4148 msgid ""
4149 "  const char *key;\n"
4150 "  void *data;\n"
4151 " again:\n"
4152 "  data = guestfs_first_private (g, &key);\n"
4153 "  while (data != NULL)\n"
4154 "    {\n"
4155 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4156 "        {\n"
4157 "          guestfs_set_private (g, key, NULL);\n"
4158 "          /* note that 'key' pointer is now invalid, and so is\n"
4159 "             the internal iterator */\n"
4160 "          goto again;\n"
4161 "        }\n"
4162 "      data = guestfs_next_private (g, &key);\n"
4163 "    }\n"
4164 "\n"
4165 msgstr ""
4166
4167 #. type: textblock
4168 #: ../src/guestfs.pod:2117
4169 msgid ""
4170 "Note that the above loop is guaranteed to terminate because the keys are "
4171 "being deleted, but other manipulations of keys within the loop might not "
4172 "terminate unless you also maintain an indication of which keys have been "
4173 "visited."
4174 msgstr ""
4175
4176 #. type: =end
4177 #: ../src/guestfs.pod:2122 ../src/guestfs.pod:2127
4178 msgid "html"
4179 msgstr "html"
4180
4181 #. type: textblock
4182 #: ../src/guestfs.pod:2124
4183 msgid ""
4184 "<!-- old anchor for the next section --> <a name="
4185 "\"state_machine_and_low_level_event_api\"/>"
4186 msgstr ""
4187 "<!-- old anchor for the next section --> <a name="
4188 "\"state_machine_and_low_level_event_api\"/>"
4189
4190 #. type: =head1
4191 #: ../src/guestfs.pod:2129
4192 msgid "ARCHITECTURE"
4193 msgstr "АРХІТЕКТУРА"
4194
4195 #. type: textblock
4196 #: ../src/guestfs.pod:2131
4197 msgid ""
4198 "Internally, libguestfs is implemented by running an appliance (a special "
4199 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4200 "process of the main program."
4201 msgstr ""
4202
4203 #. type: verbatim
4204 #: ../src/guestfs.pod:2135
4205 #, no-wrap
4206 msgid ""
4207 "  ___________________\n"
4208 " /                   \\\n"
4209 " | main program      |\n"
4210 " |                   |\n"
4211 " |                   |           child process / appliance\n"
4212 " |                   |           __________________________\n"
4213 " |                   |          / qemu                     \\\n"
4214 " +-------------------+   RPC    |      +-----------------+ |\n"
4215 " | libguestfs     <--------------------> guestfsd        | |\n"
4216 " |                   |          |      +-----------------+ |\n"
4217 " \\___________________/          |      | Linux kernel    | |\n"
4218 "                                |      +--^--------------+ |\n"
4219 "                                \\_________|________________/\n"
4220 "                                          |\n"
4221 "                                   _______v______\n"
4222 "                                  /              \\\n"
4223 "                                  | Device or    |\n"
4224 "                                  | disk image   |\n"
4225 "                                  \\______________/\n"
4226 "\n"
4227 msgstr ""
4228
4229 #. type: textblock
4230 #: ../src/guestfs.pod:2155
4231 msgid ""
4232 "The library, linked to the main program, creates the child process and hence "
4233 "the appliance in the L</guestfs_launch> function."
4234 msgstr ""
4235
4236 #. type: textblock
4237 #: ../src/guestfs.pod:2158
4238 msgid ""
4239 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4240 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4241 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4242 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4243 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4244 "attached to the qemu process which translates device access by the "
4245 "appliance's Linux kernel into accesses to the image."
4246 msgstr ""
4247
4248 #. type: textblock
4249 #: ../src/guestfs.pod:2167
4250 msgid ""
4251 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4252 "Although the disk image you are attached to might also be used by some "
4253 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4254 "care if both libguestfs's qemu process and your virtual machine are trying "
4255 "to update the disk image at the same time, since these usually results in "
4256 "massive disk corruption)."
4257 msgstr ""
4258
4259 #. type: =head1
4260 #: ../src/guestfs.pod:2174
4261 msgid "STATE MACHINE"
4262 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4263
4264 #. type: textblock
4265 #: ../src/guestfs.pod:2176
4266 msgid "libguestfs uses a state machine to model the child process:"
4267 msgstr ""
4268
4269 #. type: verbatim
4270 #: ../src/guestfs.pod:2178
4271 #, no-wrap
4272 msgid ""
4273 "                         |\n"
4274 "                    guestfs_create\n"
4275 "                         |\n"
4276 "                         |\n"
4277 "                     ____V_____\n"
4278 "                    /          \\\n"
4279 "                    |  CONFIG  |\n"
4280 "                    \\__________/\n"
4281 "                     ^ ^   ^  \\\n"
4282 "                    /  |    \\  \\ guestfs_launch\n"
4283 "                   /   |    _\\__V______\n"
4284 "                  /    |   /           \\\n"
4285 "                 /     |   | LAUNCHING |\n"
4286 "                /      |   \\___________/\n"
4287 "               /       |       /\n"
4288 "              /        |  guestfs_launch\n"
4289 "             /         |     /\n"
4290 "    ______  /        __|____V\n"
4291 "   /      \\ ------> /        \\\n"
4292 "   | BUSY |         | READY  |\n"
4293 "   \\______/ <------ \\________/\n"
4294 "\n"
4295 msgstr ""
4296
4297 #. type: textblock
4298 #: ../src/guestfs.pod:2200
4299 msgid ""
4300 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4301 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4302 "(3) alternating between READY and BUSY as commands are issued to, and "
4303 "carried out by, the child process."
4304 msgstr ""
4305
4306 #. type: textblock
4307 #: ../src/guestfs.pod:2205
4308 msgid ""
4309 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4310 "asynchronously at any time (eg. due to some internal error), and that causes "
4311 "the state to transition back to CONFIG."
4312 msgstr ""
4313
4314 #. type: textblock
4315 #: ../src/guestfs.pod:2209
4316 msgid ""
4317 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4318 "issued when in the CONFIG state."
4319 msgstr ""
4320
4321 #. type: textblock
4322 #: ../src/guestfs.pod:2212
4323 msgid ""
4324 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4325 "L</guestfs_launch> blocks until the child process is READY to accept "
4326 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4327 "moves the state from CONFIG to LAUNCHING while it is running."
4328 msgstr ""
4329
4330 #. type: textblock
4331 #: ../src/guestfs.pod:2218
4332 msgid ""
4333 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4334 "state.  These API calls block waiting for the command to be carried out (ie. "
4335 "the state to transition to BUSY and then back to READY).  There are no non-"
4336 "blocking versions, and no way to issue more than one command per handle at "
4337 "the same time."
4338 msgstr ""
4339
4340 #. type: textblock
4341 #: ../src/guestfs.pod:2224
4342 msgid ""
4343 "Finally, the child process sends asynchronous messages back to the main "
4344 "program, such as kernel log messages.  You can register a callback to "
4345 "receive these messages."
4346 msgstr ""
4347
4348 #. type: =head1
4349 #: ../src/guestfs.pod:2228
4350 msgid "INTERNALS"
4351 msgstr ""
4352
4353 #. type: =head2
4354 #: ../src/guestfs.pod:2230
4355 msgid "COMMUNICATION PROTOCOL"
4356 msgstr ""
4357
4358 #. type: textblock
4359 #: ../src/guestfs.pod:2232
4360 msgid ""
4361 "Don't rely on using this protocol directly.  This section documents how it "
4362 "currently works, but it may change at any time."
4363 msgstr ""
4364
4365 #. type: textblock
4366 #: ../src/guestfs.pod:2235
4367 msgid ""
4368 "The protocol used to talk between the library and the daemon running inside "
4369 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4370 "1014, RFC 1832, RFC 4506)."
4371 msgstr ""
4372
4373 #. type: textblock
4374 #: ../src/guestfs.pod:2239
4375 msgid ""
4376 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4377 "this file is automatically generated)."
4378 msgstr ""
4379
4380 #. type: textblock
4381 #: ../src/guestfs.pod:2242
4382 msgid ""
4383 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4384 "and C<FileOut> parameters, which are handled with very simple request/reply "
4385 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4386 "parameters, which use the same request and reply messages, but they may also "
4387 "be followed by files sent using a chunked encoding."
4388 msgstr ""
4389
4390 #. type: =head3
4391 #: ../src/guestfs.pod:2249
4392 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4393 msgstr ""
4394
4395 #. type: textblock
4396 #: ../src/guestfs.pod:2251
4397 msgid "For ordinary functions, the request message is:"
4398 msgstr ""
4399
4400 #. type: verbatim
4401 #: ../src/guestfs.pod:2253
4402 #, no-wrap
4403 msgid ""
4404 " total length (header + arguments,\n"
4405 "      but not including the length word itself)\n"
4406 " struct guestfs_message_header (encoded as XDR)\n"
4407 " struct guestfs_<foo>_args (encoded as XDR)\n"
4408 "\n"
4409 msgstr ""
4410
4411 #. type: textblock
4412 #: ../src/guestfs.pod:2258
4413 msgid ""
4414 "The total length field allows the daemon to allocate a fixed size buffer "
4415 "into which it slurps the rest of the message.  As a result, the total length "
4416 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4417 "effective size of any request is limited to somewhere under this size."
4418 msgstr ""
4419
4420 #. type: textblock
4421 #: ../src/guestfs.pod:2264
4422 msgid ""
4423 "Note also that many functions don't take any arguments, in which case the "
4424 "C<guestfs_I<foo>_args> is completely omitted."
4425 msgstr ""
4426
4427 #. type: textblock
4428 #: ../src/guestfs.pod:2267
4429 msgid ""
4430 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4431 "receiver knows what type of args structure to expect, or none at all."
4432 msgstr ""
4433
4434 #. type: textblock
4435 #: ../src/guestfs.pod:2271
4436 msgid ""
4437 "For functions that take optional arguments, the optional arguments are "
4438 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4439 "arguments.  A bitmask in the header indicates which optional arguments are "
4440 "meaningful.  The bitmask is also checked to see if it contains bits set "
4441 "which the daemon does not know about (eg. if more optional arguments were "
4442 "added in a later version of the library), and this causes the call to be "
4443 "rejected."
4444 msgstr ""
4445
4446 #. type: textblock
4447 #: ../src/guestfs.pod:2279
4448 msgid "The reply message for ordinary functions is:"
4449 msgstr ""
4450
4451 #. type: verbatim
4452 #: ../src/guestfs.pod:2281
4453 #, no-wrap
4454 msgid ""
4455 " total length (header + ret,\n"
4456 "      but not including the length word itself)\n"
4457 " struct guestfs_message_header (encoded as XDR)\n"
4458 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4459 "\n"
4460 msgstr ""
4461
4462 #. type: textblock
4463 #: ../src/guestfs.pod:2286
4464 msgid ""
4465 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4466 "functions that return no formal return values."
4467 msgstr ""
4468
4469 #. type: textblock
4470 #: ../src/guestfs.pod:2289
4471 msgid ""
4472 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4473 msgstr ""
4474
4475 #. type: textblock
4476 #: ../src/guestfs.pod:2292
4477 msgid ""
4478 "In the case of an error, a flag is set in the header, and the reply message "
4479 "is slightly changed:"
4480 msgstr ""
4481
4482 #. type: verbatim
4483 #: ../src/guestfs.pod:2295
4484 #, no-wrap
4485 msgid ""
4486 " total length (header + error,\n"
4487 "      but not including the length word itself)\n"
4488 " struct guestfs_message_header (encoded as XDR)\n"
4489 " struct guestfs_message_error (encoded as XDR)\n"
4490 "\n"
4491 msgstr ""
4492
4493 #. type: textblock
4494 #: ../src/guestfs.pod:2300
4495 msgid ""
4496 "The C<guestfs_message_error> structure contains the error message as a "
4497 "string."
4498 msgstr ""
4499
4500 #. type: =head3
4501 #: ../src/guestfs.pod:2303
4502 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4503 msgstr ""
4504
4505 #. type: textblock
4506 #: ../src/guestfs.pod:2305
4507 msgid ""
4508 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4509 "The normal request message is sent (see above).  However this is followed by "
4510 "a sequence of file chunks."
4511 msgstr ""
4512
4513 #. type: verbatim
4514 #: ../src/guestfs.pod:2309
4515 #, no-wrap
4516 msgid ""
4517 " total length (header + arguments,\n"
4518 "      but not including the length word itself,\n"
4519 "      and not including the chunks)\n"
4520 " struct guestfs_message_header (encoded as XDR)\n"
4521 " struct guestfs_<foo>_args (encoded as XDR)\n"
4522 " sequence of chunks for FileIn param #0\n"
4523 " sequence of chunks for FileIn param #1 etc.\n"
4524 "\n"
4525 msgstr ""
4526
4527 #. type: textblock
4528 #: ../src/guestfs.pod:2317
4529 msgid "The \"sequence of chunks\" is:"
4530 msgstr ""
4531
4532 #. type: verbatim
4533 #: ../src/guestfs.pod:2319
4534 #, no-wrap
4535 msgid ""
4536 " length of chunk (not including length word itself)\n"
4537 " struct guestfs_chunk (encoded as XDR)\n"
4538 " length of chunk\n"
4539 " struct guestfs_chunk (encoded as XDR)\n"
4540 "   ...\n"
4541 " length of chunk\n"
4542 " struct guestfs_chunk (with data.data_len == 0)\n"
4543 "\n"
4544 msgstr ""
4545
4546 #. type: textblock
4547 #: ../src/guestfs.pod:2327
4548 msgid ""
4549 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4550 "is set in the final chunk to indicate either successful completion or early "
4551 "cancellation."
4552 msgstr ""
4553
4554 #. type: textblock
4555 #: ../src/guestfs.pod:2331
4556 msgid ""
4557 "At time of writing there are no functions that have more than one FileIn "
4558 "parameter.  However this is (theoretically) supported, by sending the "
4559 "sequence of chunks for each FileIn parameter one after another (from left to "
4560 "right)."
4561 msgstr ""
4562
4563 #. type: textblock
4564 #: ../src/guestfs.pod:2336
4565 msgid ""
4566 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4567 "transfer.  The library does this by sending a chunk with a special flag set "
4568 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4569 "RPC, does I<not> send any reply, and goes back to reading the next request."
4570 msgstr ""
4571
4572 #. type: textblock
4573 #: ../src/guestfs.pod:2342
4574 msgid ""
4575 "The daemon may also cancel.  It does this by writing a special word "
4576 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4577 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4578 "cancel chunk).  The special word is chosen so that even if cancellation "
4579 "happens right at the end of the transfer (after the library has finished "
4580 "writing and has started listening for the reply), the \"spurious\" cancel "
4581 "flag will not be confused with the reply message."
4582 msgstr ""
4583
4584 #. type: textblock
4585 #: ../src/guestfs.pod:2351
4586 msgid ""
4587 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4588 "limit), and also files where the size is not known in advance (eg. from "
4589 "pipes or sockets).  However the chunks are rather small "
4590 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4591 "to keep much in memory."
4592 msgstr ""
4593
4594 #. type: =head3
4595 #: ../src/guestfs.pod:2357
4596 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4597 msgstr ""
4598
4599 #. type: textblock
4600 #: ../src/guestfs.pod:2359
4601 msgid ""
4602 "The protocol for FileOut parameters is exactly the same as for FileIn "
4603 "parameters, but with the roles of daemon and library reversed."
4604 msgstr ""
4605
4606 #. type: verbatim
4607 #: ../src/guestfs.pod:2362
4608 #, no-wrap
4609 msgid ""
4610 " total length (header + ret,\n"
4611 "      but not including the length word itself,\n"
4612 "      and not including the chunks)\n"
4613 " struct guestfs_message_header (encoded as XDR)\n"
4614 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4615 " sequence of chunks for FileOut param #0\n"
4616 " sequence of chunks for FileOut param #1 etc.\n"
4617 "\n"
4618 msgstr ""
4619
4620 #. type: =head3
4621 #: ../src/guestfs.pod:2370
4622 msgid "INITIAL MESSAGE"
4623 msgstr ""
4624
4625 #. type: textblock
4626 #: ../src/guestfs.pod:2372
4627 msgid ""
4628 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4629 "which indicates that the guest and daemon is alive.  This is what L</"
4630 "guestfs_launch> waits for."
4631 msgstr ""
4632
4633 #. type: =head3
4634 #: ../src/guestfs.pod:2376
4635 msgid "PROGRESS NOTIFICATION MESSAGES"
4636 msgstr ""
4637
4638 #. type: textblock
4639 #: ../src/guestfs.pod:2378
4640 msgid ""
4641 "The daemon may send progress notification messages at any time.  These are "
4642 "distinguished by the normal length word being replaced by "
4643 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4644 msgstr ""
4645
4646 #. type: textblock
4647 #: ../src/guestfs.pod:2382
4648 msgid ""
4649 "The library turns them into progress callbacks (see L</"
4650 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4651 "if not."
4652 msgstr ""
4653
4654 #. type: textblock
4655 #: ../src/guestfs.pod:2386
4656 msgid ""
4657 "The daemon self-limits the frequency of progress messages it sends (see "
4658 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4659 "messages."
4660 msgstr ""
4661
4662 #. type: =head1
4663 #: ../src/guestfs.pod:2390
4664 msgid "LIBGUESTFS VERSION NUMBERS"
4665 msgstr ""
4666
4667 #. type: textblock
4668 #: ../src/guestfs.pod:2392
4669 msgid ""
4670 "Since April 2010, libguestfs has started to make separate development and "
4671 "stable releases, along with corresponding branches in our git repository.  "
4672 "These separate releases can be identified by version number:"
4673 msgstr ""
4674
4675 #. type: verbatim
4676 #: ../src/guestfs.pod:2397
4677 #, no-wrap
4678 msgid ""
4679 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4680 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4681 "       |\n"
4682 "       v\n"
4683 " 1  .  3  .  5\n"
4684 " ^           ^\n"
4685 " |           |\n"
4686 " |           `-------- sub-version\n"
4687 " |\n"
4688 " `------ always '1' because we don't change the ABI\n"
4689 "\n"
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2408
4694 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4695 msgstr ""
4696
4697 #. type: textblock
4698 #: ../src/guestfs.pod:2410
4699 msgid ""
4700 "As time passes we cherry pick fixes from the development branch and backport "
4701 "those into the stable branch, the effect being that the stable branch should "
4702 "get more stable and less buggy over time.  So the stable releases are ideal "
4703 "for people who don't need new features but would just like the software to "
4704 "work."
4705 msgstr ""
4706
4707 #. type: textblock
4708 #: ../src/guestfs.pod:2416
4709 msgid "Our criteria for backporting changes are:"
4710 msgstr ""
4711
4712 #. type: textblock
4713 #: ../src/guestfs.pod:2422
4714 msgid ""
4715 "Documentation changes which don't affect any code are backported unless the "
4716 "documentation refers to a future feature which is not in stable."
4717 msgstr ""
4718
4719 #. type: textblock
4720 #: ../src/guestfs.pod:2428
4721 msgid ""
4722 "Bug fixes which are not controversial, fix obvious problems, and have been "
4723 "well tested are backported."
4724 msgstr ""
4725
4726 #. type: textblock
4727 #: ../src/guestfs.pod:2433
4728 msgid ""
4729 "Simple rearrangements of code which shouldn't affect how it works get "
4730 "backported.  This is so that the code in the two branches doesn't get too "
4731 "far out of step, allowing us to backport future fixes more easily."
4732 msgstr ""
4733
4734 #. type: textblock
4735 #: ../src/guestfs.pod:2439
4736 msgid ""
4737 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4738 "exceptional case: the new feature is required in order to implement an "
4739 "important bug fix."
4740 msgstr ""
4741
4742 #. type: textblock
4743 #: ../src/guestfs.pod:2445
4744 msgid ""
4745 "A new stable branch starts when we think the new features in development are "
4746 "substantial and compelling enough over the current stable branch to warrant "
4747 "it.  When that happens we create new stable and development versions 1.N.0 "
4748 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4749 "stable at this point, but by backporting fixes from development, that branch "
4750 "will stabilize over time."
4751 msgstr ""
4752
4753 #. type: =head1
4754 #: ../src/guestfs.pod:2453
4755 msgid "EXTENDING LIBGUESTFS"
4756 msgstr ""
4757
4758 #. type: =head2
4759 #: ../src/guestfs.pod:2455
4760 msgid "ADDING A NEW API ACTION"
4761 msgstr ""
4762
4763 #. type: textblock
4764 #: ../src/guestfs.pod:2457
4765 msgid ""
4766 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4767 "documentation) are generated, and this makes it easy to extend the "
4768 "libguestfs API."
4769 msgstr ""
4770
4771 #. type: textblock
4772 #: ../src/guestfs.pod:2461
4773 msgid "To add a new API action there are two changes:"
4774 msgstr ""
4775
4776 #. type: textblock
4777 #: ../src/guestfs.pod:2467
4778 msgid ""
4779 "You need to add a description of the call (name, parameters, return type, "
4780 "tests, documentation) to C<generator/generator_actions.ml>."
4781 msgstr ""
4782
4783 #. type: textblock
4784 #: ../src/guestfs.pod:2470
4785 msgid ""
4786 "There are two sorts of API action, depending on whether the call goes "
4787 "through to the daemon in the appliance, or is serviced entirely by the "
4788 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4789 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4790 "an example of the latter, since a trace flag is maintained in the handle and "
4791 "all tracing is done on the library side."
4792 msgstr ""
4793
4794 #. type: textblock
4795 #: ../src/guestfs.pod:2478
4796 msgid ""
4797 "Most new actions are of the first type, and get added to the "
4798 "C<daemon_functions> list.  Each function has a unique procedure number used "
4799 "in the RPC protocol which is assigned to that action when we publish "
4800 "libguestfs and cannot be reused.  Take the latest procedure number and "
4801 "increment it."
4802 msgstr ""
4803
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2484
4806 msgid ""
4807 "For library-only actions of the second type, add to the "
4808 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4809 "library and do not travel over the RPC mechanism to the daemon, these "
4810 "functions do not need a procedure number, and so the procedure number is set "
4811 "to C<-1>."
4812 msgstr ""
4813
4814 #. type: textblock
4815 #: ../src/guestfs.pod:2492
4816 msgid "Implement the action (in C):"
4817 msgstr ""
4818
4819 #. type: textblock
4820 #: ../src/guestfs.pod:2494
4821 msgid ""
4822 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4823 "C<daemon/> directory."
4824 msgstr ""
4825
4826 #. type: textblock
4827 #: ../src/guestfs.pod:2497
4828 msgid ""
4829 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4830 "(note: double underscore) in the C<src/> directory."
4831 msgstr ""
4832
4833 #. type: textblock
4834 #: ../src/guestfs.pod:2500
4835 msgid "In either case, use another function as an example of what to do."
4836 msgstr ""
4837
4838 #. type: textblock
4839 #: ../src/guestfs.pod:2504
4840 msgid "After making these changes, use C<make> to compile."
4841 msgstr ""
4842
4843 #. type: textblock
4844 #: ../src/guestfs.pod:2506
4845 msgid ""
4846 "Note that you don't need to implement the RPC, language bindings, manual "
4847 "pages or anything else.  It's all automatically generated from the OCaml "
4848 "description."
4849 msgstr ""
4850
4851 #. type: =head2
4852 #: ../src/guestfs.pod:2510
4853 msgid "ADDING TESTS FOR AN API ACTION"
4854 msgstr ""
4855
4856 #. type: textblock
4857 #: ../src/guestfs.pod:2512
4858 msgid ""
4859 "You can supply zero or as many tests as you want per API call.  The tests "
4860 "can either be added as part of the API description (C<generator/"
4861 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4862 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4863 "slower, so if possible use the first method."
4864 msgstr ""
4865
4866 #. type: textblock
4867 #: ../src/guestfs.pod:2518
4868 msgid ""
4869 "The following describes the test environment used when you add an API test "
4870 "in C<generator_actions.ml>."
4871 msgstr ""
4872
4873 #. type: textblock
4874 #: ../src/guestfs.pod:2521
4875 msgid "The test environment has 4 block devices:"
4876 msgstr ""
4877
4878 #. type: =item
4879 #: ../src/guestfs.pod:2525
4880 msgid "C</dev/sda> 500MB"
4881 msgstr ""
4882
4883 #. type: textblock
4884 #: ../src/guestfs.pod:2527
4885 msgid "General block device for testing."
4886 msgstr ""
4887
4888 #. type: =item
4889 #: ../src/guestfs.pod:2529
4890 msgid "C</dev/sdb> 50MB"
4891 msgstr ""
4892
4893 #. type: textblock
4894 #: ../src/guestfs.pod:2531
4895 msgid ""
4896 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4897 "operations."
4898 msgstr ""
4899
4900 #. type: =item
4901 #: ../src/guestfs.pod:2534
4902 msgid "C</dev/sdc> 10MB"
4903 msgstr ""
4904
4905 #. type: textblock
4906 #: ../src/guestfs.pod:2536
4907 msgid "Used in a few tests where two block devices are needed."
4908 msgstr ""
4909
4910 #. type: =item
4911 #: ../src/guestfs.pod:2538
4912 msgid "C</dev/sdd>"
4913 msgstr "C</dev/sdd>"
4914
4915 #. type: textblock
4916 #: ../src/guestfs.pod:2540
4917 msgid "ISO with fixed content (see C<images/test.iso>)."
4918 msgstr ""
4919
4920 #. type: textblock
4921 #: ../src/guestfs.pod:2544
4922 msgid ""
4923 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4924 "appliance and block devices are reused between tests.  So don't try testing "
4925 "L</guestfs_kill_subprocess> :-x"
4926 msgstr ""
4927
4928 #. type: textblock
4929 #: ../src/guestfs.pod:2548
4930 msgid ""
4931 "Each test starts with an initial scenario, selected using one of the "
4932 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4933 "initialize the disks mentioned above in a particular way as documented in "
4934 "C<generator_types.ml>.  You should not assume anything about the previous "
4935 "contents of other disks that are not initialized."
4936 msgstr ""
4937
4938 #. type: textblock
4939 #: ../src/guestfs.pod:2554
4940 msgid ""
4941 "You can add a prerequisite clause to any individual test.  This is a run-"
4942 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4943 "testing a command which might not work on all variations of libguestfs "
4944 "builds.  A test that has prerequisite of C<Always> means to run "
4945 "unconditionally."
4946 msgstr ""
4947
4948 #. type: textblock
4949 #: ../src/guestfs.pod:2560
4950 msgid ""
4951 "In addition, packagers can skip individual tests by setting environment "
4952 "variables before running C<make check>."
4953 msgstr ""
4954
4955 #. type: verbatim
4956 #: ../src/guestfs.pod:2563
4957 #, no-wrap
4958 msgid ""
4959 " SKIP_TEST_<CMD>_<NUM>=1\n"
4960 "\n"
4961 msgstr ""
4962
4963 #. type: textblock
4964 #: ../src/guestfs.pod:2565
4965 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4966 msgstr ""
4967
4968 #. type: textblock
4969 #: ../src/guestfs.pod:2567
4970 msgid "or:"
4971 msgstr "або:"
4972
4973 #. type: verbatim
4974 #: ../src/guestfs.pod:2569
4975 #, no-wrap
4976 msgid ""
4977 " SKIP_TEST_<CMD>=1\n"
4978 "\n"
4979 msgstr ""
4980
4981 #. type: textblock
4982 #: ../src/guestfs.pod:2571
4983 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4984 msgstr ""
4985
4986 #. type: textblock
4987 #: ../src/guestfs.pod:2573
4988 msgid "Packagers can run only certain tests by setting for example:"
4989 msgstr ""
4990
4991 #. type: verbatim
4992 #: ../src/guestfs.pod:2575
4993 #, no-wrap
4994 msgid ""
4995 " TEST_ONLY=\"vfs_type zerofree\"\n"
4996 "\n"
4997 msgstr ""
4998
4999 #. type: textblock
5000 #: ../src/guestfs.pod:2577
5001 msgid ""
5002 "See C<capitests/tests.c> for more details of how these environment variables "
5003 "work."
5004 msgstr ""
5005
5006 #. type: =head2
5007 #: ../src/guestfs.pod:2580
5008 msgid "DEBUGGING NEW API ACTIONS"
5009 msgstr ""
5010
5011 #. type: textblock
5012 #: ../src/guestfs.pod:2582
5013 msgid "Test new actions work before submitting them."
5014 msgstr ""
5015
5016 #. type: textblock
5017 #: ../src/guestfs.pod:2584
5018 msgid "You can use guestfish to try out new commands."
5019 msgstr ""
5020
5021 #. type: textblock
5022 #: ../src/guestfs.pod:2586
5023 msgid ""
5024 "Debugging the daemon is a problem because it runs inside a minimal "
5025 "environment.  However you can fprintf messages in the daemon to stderr, and "
5026 "they will show up if you use C<guestfish -v>."
5027 msgstr ""
5028
5029 #. type: =head2
5030 #: ../src/guestfs.pod:2590
5031 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5032 msgstr ""
5033
5034 #. type: textblock
5035 #: ../src/guestfs.pod:2592
5036 msgid ""
5037 "Our C source code generally adheres to some basic code-formatting "
5038 "conventions.  The existing code base is not totally consistent on this "
5039 "front, but we do prefer that contributed code be formatted similarly.  In "
5040 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5041 "indentation level, and other than that, follow the K&R style."
5042 msgstr ""
5043
5044 #. type: textblock
5045 #: ../src/guestfs.pod:2598
5046 msgid ""
5047 "If you use Emacs, add the following to one of one of your start-up files (e."
5048 "g., ~/.emacs), to help ensure that you get indentation right:"
5049 msgstr ""
5050
5051 #. type: verbatim
5052 #: ../src/guestfs.pod:2601
5053 #, no-wrap
5054 msgid ""
5055 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5056 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5057 " (add-hook 'find-file-hook\n"
5058 "     '(lambda () (if (and buffer-file-name\n"
5059 "                          (string-match \"/libguestfs\\\\>\"\n"
5060 "                              (buffer-file-name))\n"
5061 "                          (not (string-equal mode-name \"Change Log\"))\n"
5062 "                          (not (string-equal mode-name \"Makefile\")))\n"
5063 "                     (setq indent-tabs-mode nil))))\n"
5064 " \n"
5065 msgstr ""
5066
5067 #. type: verbatim
5068 #: ../src/guestfs.pod:2611
5069 #, no-wrap
5070 msgid ""
5071 " ;;; When editing C sources in libguestfs, use this style.\n"
5072 " (defun libguestfs-c-mode ()\n"
5073 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5074 "   (interactive)\n"
5075 "   (c-set-style \"K&R\")\n"
5076 "   (setq c-indent-level 2)\n"
5077 "   (setq c-basic-offset 2))\n"
5078 " (add-hook 'c-mode-hook\n"
5079 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5080 "                               (buffer-file-name))\n"
5081 "                           (libguestfs-c-mode))))\n"
5082 "\n"
5083 msgstr ""
5084
5085 #. type: textblock
5086 #: ../src/guestfs.pod:2623
5087 msgid "Enable warnings when compiling (and fix any problems this finds):"
5088 msgstr ""
5089
5090 #. type: verbatim
5091 #: ../src/guestfs.pod:2626
5092 #, no-wrap
5093 msgid ""
5094 " ./configure --enable-gcc-warnings\n"
5095 "\n"
5096 msgstr ""
5097
5098 #. type: textblock
5099 #: ../src/guestfs.pod:2628
5100 msgid "Useful targets are:"
5101 msgstr ""
5102
5103 #. type: verbatim
5104 #: ../src/guestfs.pod:2630
5105 #, no-wrap
5106 msgid ""
5107 " make syntax-check  # checks the syntax of the C code\n"
5108 " make check         # runs the test suite\n"
5109 "\n"
5110 msgstr ""
5111
5112 #. type: =head2
5113 #: ../src/guestfs.pod:2633
5114 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5115 msgstr ""
5116
5117 #. type: textblock
5118 #: ../src/guestfs.pod:2635
5119 msgid ""
5120 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5121 "which are used to do shell quoting."
5122 msgstr ""
5123
5124 #. type: =item
5125 #: ../src/guestfs.pod:2640
5126 msgid "%Q"
5127 msgstr "%Q"
5128
5129 #. type: textblock
5130 #: ../src/guestfs.pod:2642
5131 msgid ""
5132 "Simple shell quoted string.  Any spaces or other shell characters are "
5133 "escaped for you."
5134 msgstr ""
5135
5136 #. type: =item
5137 #: ../src/guestfs.pod:2645
5138 msgid "%R"
5139 msgstr "%R"
5140
5141 #. type: textblock
5142 #: ../src/guestfs.pod:2647
5143 msgid ""
5144 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5145 "the sysroot."
5146 msgstr ""
5147
5148 #. type: textblock
5149 #: ../src/guestfs.pod:2652 ../fish/guestfish.pod:242 ../fish/guestfish.pod:673
5150 msgid "For example:"
5151 msgstr "Приклад:"
5152
5153 #. type: verbatim
5154 #: ../src/guestfs.pod:2654
5155 #, no-wrap
5156 msgid ""
5157 " asprintf (&cmd, \"cat %R\", path);\n"
5158 "\n"
5159 msgstr ""
5160
5161 #. type: textblock
5162 #: ../src/guestfs.pod:2656
5163 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5164 msgstr ""
5165
5166 #. type: textblock
5167 #: ../src/guestfs.pod:2658
5168 msgid ""
5169 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5170 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5171 "they are not passed via the shell (instead, straight to exec).  You probably "
5172 "want to use the C<sysroot_path()> function however."
5173 msgstr ""
5174
5175 #. type: =head2
5176 #: ../src/guestfs.pod:2664
5177 msgid "SUBMITTING YOUR NEW API ACTIONS"
5178 msgstr ""
5179
5180 #. type: textblock
5181 #: ../src/guestfs.pod:2666
5182 msgid ""
5183 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5184 "libguestfs> and CC to L<rjones@redhat.com>."
5185 msgstr ""
5186
5187 #. type: =head2
5188 #: ../src/guestfs.pod:2670
5189 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5190 msgstr ""
5191
5192 #. type: textblock
5193 #: ../src/guestfs.pod:2672
5194 msgid "We support i18n (gettext anyhow) in the library."
5195 msgstr ""
5196
5197 #. type: textblock
5198 #: ../src/guestfs.pod:2674
5199 msgid ""
5200 "However many messages come from the daemon, and we don't translate those at "
5201 "the moment.  One reason is that the appliance generally has all locale files "
5202 "removed from it, because they take up a lot of space.  So we'd have to readd "
5203 "some of those, as well as copying our PO files into the appliance."
5204 msgstr ""
5205
5206 #. type: textblock
5207 #: ../src/guestfs.pod:2680
5208 msgid ""
5209 "Debugging messages are never translated, since they are intended for the "
5210 "programmers."
5211 msgstr ""
5212
5213 #. type: =head2
5214 #: ../src/guestfs.pod:2683
5215 msgid "SOURCE CODE SUBDIRECTORIES"
5216 msgstr ""
5217
5218 #. type: =item
5219 #: ../src/guestfs.pod:2687 ../src/guestfs-actions.pod:6174
5220 #: ../fish/guestfish-actions.pod:4072
5221 msgid "C<appliance>"
5222 msgstr "C<appliance>"
5223
5224 #. type: textblock
5225 #: ../src/guestfs.pod:2689
5226 msgid "The libguestfs appliance, build scripts and so on."
5227 msgstr ""
5228
5229 #. type: =item
5230 #: ../src/guestfs.pod:2691
5231 msgid "C<capitests>"
5232 msgstr "C<capitests>"
5233
5234 #. type: textblock
5235 #: ../src/guestfs.pod:2693
5236 msgid "Automated tests of the C API."
5237 msgstr ""
5238
5239 #. type: =item
5240 #: ../src/guestfs.pod:2695
5241 msgid "C<cat>"
5242 msgstr "C<cat>"
5243
5244 #. type: textblock
5245 #: ../src/guestfs.pod:2697
5246 msgid ""
5247 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5248 "documentation."
5249 msgstr ""
5250
5251 #. type: =item
5252 #: ../src/guestfs.pod:2700
5253 #, fuzzy
5254 #| msgid "C<cat>"
5255 msgid "C<caution>"
5256 msgstr "C<cat>"
5257
5258 #. type: textblock
5259 #: ../src/guestfs.pod:2702
5260 msgid ""
5261 "Safety and liveness tests of components that libguestfs depends upon (not of "
5262 "libguestfs itself).  Mainly this is for qemu and the kernel."
5263 msgstr ""
5264
5265 #. type: =item
5266 #: ../src/guestfs.pod:2705
5267 msgid "C<contrib>"
5268 msgstr "C<contrib>"
5269
5270 #. type: textblock
5271 #: ../src/guestfs.pod:2707
5272 msgid "Outside contributions, experimental parts."
5273 msgstr ""
5274
5275 #. type: =item
5276 #: ../src/guestfs.pod:2709
5277 msgid "C<daemon>"
5278 msgstr "C<daemon>"
5279
5280 #. type: textblock
5281 #: ../src/guestfs.pod:2711
5282 msgid ""
5283 "The daemon that runs inside the libguestfs appliance and carries out actions."
5284 msgstr ""
5285
5286 #. type: =item
5287 #: ../src/guestfs.pod:2714
5288 msgid "C<df>"
5289 msgstr "C<df>"
5290
5291 #. type: textblock
5292 #: ../src/guestfs.pod:2716
5293 msgid "L<virt-df(1)> command and documentation."
5294 msgstr ""
5295
5296 #. type: =item
5297 #: ../src/guestfs.pod:2718
5298 msgid "C<edit>"
5299 msgstr ""
5300
5301 #. type: textblock
5302 #: ../src/guestfs.pod:2720
5303 msgid "L<virt-edit(1)> command and documentation."
5304 msgstr ""
5305
5306 #. type: =item
5307 #: ../src/guestfs.pod:2722
5308 msgid "C<examples>"
5309 msgstr "C<examples>"
5310
5311 #. type: textblock
5312 #: ../src/guestfs.pod:2724
5313 msgid "C API example code."
5314 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5315
5316 #. type: =item
5317 #: ../src/guestfs.pod:2726
5318 msgid "C<fish>"
5319 msgstr "C<fish>"
5320
5321 #. type: textblock
5322 #: ../src/guestfs.pod:2728
5323 msgid ""
5324 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5325 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5326 "L<virt-tar-out(1)>."
5327 msgstr ""
5328
5329 #. type: =item
5330 #: ../src/guestfs.pod:2732
5331 msgid "C<fuse>"
5332 msgstr "C<fuse>"
5333
5334 #. type: textblock
5335 #: ../src/guestfs.pod:2734
5336 msgid ""
5337 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5338 msgstr ""
5339
5340 #. type: =item
5341 #: ../src/guestfs.pod:2736
5342 msgid "C<generator>"
5343 msgstr "C<generator>"
5344
5345 #. type: textblock
5346 #: ../src/guestfs.pod:2738
5347 msgid ""
5348 "The crucially important generator, used to automatically generate large "
5349 "amounts of boilerplate C code for things like RPC and bindings."
5350 msgstr ""
5351
5352 #. type: =item
5353 #: ../src/guestfs.pod:2741
5354 msgid "C<images>"
5355 msgstr "C<images>"
5356
5357 #. type: textblock
5358 #: ../src/guestfs.pod:2743
5359 msgid "Files used by the test suite."
5360 msgstr ""
5361
5362 #. type: textblock
5363 #: ../src/guestfs.pod:2745
5364 msgid "Some \"phony\" guest images which we test against."
5365 msgstr ""
5366
5367 #. type: =item
5368 #: ../src/guestfs.pod:2747
5369 msgid "C<inspector>"
5370 msgstr "C<inspector>"
5371
5372 #. type: textblock
5373 #: ../src/guestfs.pod:2749
5374 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5375 msgstr ""
5376
5377 #. type: =item
5378 #: ../src/guestfs.pod:2751
5379 msgid "C<logo>"
5380 msgstr "C<logo>"
5381
5382 #. type: textblock
5383 #: ../src/guestfs.pod:2753
5384 msgid "Logo used on the website.  The fish is called Arthur by the way."
5385 msgstr ""
5386
5387 #. type: =item
5388 #: ../src/guestfs.pod:2755
5389 msgid "C<m4>"
5390 msgstr "C<m4>"
5391
5392 #. type: textblock
5393 #: ../src/guestfs.pod:2757
5394 msgid "M4 macros used by autoconf."
5395 msgstr ""
5396
5397 #. type: =item
5398 #: ../src/guestfs.pod:2759
5399 msgid "C<po>"
5400 msgstr "C<po>"
5401
5402 #. type: textblock
5403 #: ../src/guestfs.pod:2761
5404 msgid "Translations of simple gettext strings."
5405 msgstr "Переклади простих рядків gettext."
5406
5407 #. type: =item
5408 #: ../src/guestfs.pod:2763
5409 msgid "C<po-docs>"
5410 msgstr "C<po-docs>"
5411
5412 #. type: textblock
5413 #: ../src/guestfs.pod:2765
5414 msgid ""
5415 "The build infrastructure and PO files for translations of manpages and POD "
5416 "files.  Eventually this will be combined with the C<po> directory, but that "
5417 "is rather complicated."
5418 msgstr ""
5419
5420 #. type: =item
5421 #: ../src/guestfs.pod:2769
5422 msgid "C<regressions>"
5423 msgstr "C<regressions>"
5424
5425 #. type: textblock
5426 #: ../src/guestfs.pod:2771
5427 msgid "Regression tests."
5428 msgstr "Тести на регресії."
5429
5430 #. type: =item
5431 #: ../src/guestfs.pod:2773
5432 msgid "C<rescue>"
5433 msgstr "C<rescue>"
5434
5435 #. type: textblock
5436 #: ../src/guestfs.pod:2775
5437 msgid "L<virt-rescue(1)> command and documentation."
5438 msgstr ""
5439
5440 #. type: =item
5441 #: ../src/guestfs.pod:2777
5442 msgid "C<src>"
5443 msgstr "C<src>"
5444
5445 #. type: textblock
5446 #: ../src/guestfs.pod:2779
5447 msgid "Source code to the C library."
5448 msgstr ""
5449
5450 #. type: =item
5451 #: ../src/guestfs.pod:2781
5452 msgid "C<tools>"
5453 msgstr "C<tools>"
5454
5455 #. type: textblock
5456 #: ../src/guestfs.pod:2783
5457 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5458 msgstr ""
5459
5460 #. type: =item
5461 #: ../src/guestfs.pod:2785
5462 msgid "C<test-tool>"
5463 msgstr "C<test-tool>"
5464
5465 #. type: textblock
5466 #: ../src/guestfs.pod:2787
5467 msgid ""
5468 "Test tool for end users to test if their qemu/kernel combination will work "
5469 "with libguestfs."
5470 msgstr ""
5471
5472 #. type: =item
5473 #: ../src/guestfs.pod:2790
5474 msgid "C<csharp>"
5475 msgstr "C<csharp>"
5476
5477 #. type: =item
5478 #: ../src/guestfs.pod:2792
5479 msgid "C<haskell>"
5480 msgstr "C<haskell>"
5481
5482 #. type: =item
5483 #: ../src/guestfs.pod:2794
5484 msgid "C<java>"
5485 msgstr "C<java>"
5486
5487 #. type: =item
5488 #: ../src/guestfs.pod:2796
5489 msgid "C<ocaml>"
5490 msgstr "C<ocaml>"
5491
5492 #. type: =item
5493 #: ../src/guestfs.pod:2798
5494 msgid "C<php>"
5495 msgstr "C<php>"
5496
5497 #. type: =item
5498 #: ../src/guestfs.pod:2800
5499 msgid "C<perl>"
5500 msgstr "C<perl>"
5501
5502 #. type: =item
5503 #: ../src/guestfs.pod:2802
5504 msgid "C<python>"
5505 msgstr "C<python>"
5506
5507 #. type: =item
5508 #: ../src/guestfs.pod:2804
5509 msgid "C<ruby>"
5510 msgstr "C<ruby>"
5511
5512 #. type: textblock
5513 #: ../src/guestfs.pod:2806
5514 msgid "Language bindings."
5515 msgstr "Прив’язки до мов програмування."
5516
5517 #. type: =head1
5518 #: ../src/guestfs.pod:2810
5519 msgid "LIMITS"
5520 msgstr ""
5521
5522 #. type: =head2
5523 #: ../src/guestfs.pod:2812
5524 msgid "PROTOCOL LIMITS"
5525 msgstr ""
5526
5527 #. type: textblock
5528 #: ../src/guestfs.pod:2814
5529 msgid ""
5530 "Internally libguestfs uses a message-based protocol to pass API calls and "
5531 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5532 "plenty more detail about this).  The maximum message size used by the "
5533 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5534 "aware of this limit.  The API calls which may be affected are individually "
5535 "documented, with a link back to this section of the documentation."
5536 msgstr ""
5537
5538 #. type: textblock
5539 #: ../src/guestfs.pod:2822
5540 msgid ""
5541 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5542 "a simple string.  Because this string is at some point internally encoded as "
5543 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5544 "the requested file is larger than this then you will get an error."
5545 msgstr ""
5546
5547 #. type: textblock
5548 #: ../src/guestfs.pod:2828
5549 msgid ""
5550 "In order to transfer large files into and out of the guest filesystem, you "
5551 "need to use particular calls that support this.  The sections L</UPLOADING> "
5552 "and L</DOWNLOADING> document how to do this."
5553 msgstr ""
5554
5555 #. type: textblock
5556 #: ../src/guestfs.pod:2832
5557 msgid ""
5558 "You might also consider mounting the disk image using our FUSE filesystem "
5559 "support (L<guestmount(1)>)."
5560 msgstr ""
5561
5562 #. type: =head2
5563 #: ../src/guestfs.pod:2835
5564 msgid "MAXIMUM NUMBER OF DISKS"
5565 msgstr ""
5566
5567 #. type: textblock
5568 #: ../src/guestfs.pod:2837
5569 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5570 msgstr ""
5571
5572 #. type: textblock
5573 #: ../src/guestfs.pod:2840
5574 msgid ""
5575 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5576 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5577 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5578 "purposes."
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2845
5583 msgid ""
5584 "We are working to substantially raise this limit in future versions but it "
5585 "requires complex changes to qemu."
5586 msgstr ""
5587
5588 #. type: textblock
5589 #: ../src/guestfs.pod:2848
5590 msgid ""
5591 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5592 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5593 "requires changes to qemu."
5594 msgstr ""
5595
5596 #. type: =head2
5597 #: ../src/guestfs.pod:2852
5598 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5599 msgstr ""
5600
5601 #. type: textblock
5602 #: ../src/guestfs.pod:2854
5603 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5604 msgstr ""
5605
5606 #. type: textblock
5607 #: ../src/guestfs.pod:2856
5608 msgid ""
5609 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5610 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5611 msgstr ""
5612
5613 #. type: textblock
5614 #: ../src/guestfs.pod:2859
5615 msgid ""
5616 "If you attach a disk with more than 15 partitions, the extra partitions are "
5617 "ignored by libguestfs."
5618 msgstr ""
5619
5620 #. type: =head2
5621 #: ../src/guestfs.pod:2862
5622 msgid "MAXIMUM SIZE OF A DISK"
5623 msgstr ""
5624
5625 #. type: textblock
5626 #: ../src/guestfs.pod:2864
5627 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5628 msgstr ""
5629
5630 #. type: textblock
5631 #: ../src/guestfs.pod:2866
5632 msgid ""
5633 "We have tested block devices up to 1 exabyte (2**60 or "
5634 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5635 "filesystem."
5636 msgstr ""
5637
5638 #. type: textblock
5639 #: ../src/guestfs.pod:2870
5640 msgid ""
5641 "Although libguestfs probably does not impose any limit, the underlying host "
5642 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5643 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5644 "TB).  If you store disk images as host logical volumes then you are limited "
5645 "by the maximum size of an LV."
5646 msgstr ""
5647
5648 #. type: textblock
5649 #: ../src/guestfs.pod:2876
5650 msgid ""
5651 "For the hugest disk image files, we recommend using XFS on the host for "
5652 "storage."
5653 msgstr ""
5654
5655 #. type: =head2
5656 #: ../src/guestfs.pod:2879
5657 msgid "MAXIMUM SIZE OF A PARTITION"
5658 msgstr ""
5659
5660 #. type: textblock
5661 #: ../src/guestfs.pod:2881
5662 msgid ""
5663 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5664 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5665 "address a partition located beyond 2 TB on the disk."
5666 msgstr ""
5667
5668 #. type: textblock
5669 #: ../src/guestfs.pod:2885
5670 msgid ""
5671 "It is recommended that you use GPT partitions on disks which are larger than "
5672 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5673 "which are theoretically larger than the largest disk we could support."
5674 msgstr ""
5675
5676 #. type: =head2
5677 #: ../src/guestfs.pod:2890
5678 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5679 msgstr ""
5680
5681 #. type: textblock
5682 #: ../src/guestfs.pod:2892
5683 msgid ""
5684 "This depends on the filesystem type.  libguestfs itself does not impose any "
5685 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5686 "what these limits are."
5687 msgstr ""
5688
5689 #. type: =head2
5690 #: ../src/guestfs.pod:2896
5691 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5692 msgstr ""
5693
5694 #. type: textblock
5695 #: ../src/guestfs.pod:2898
5696 msgid ""
5697 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5698 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5699 "uploads and downloads."
5700 msgstr ""
5701
5702 #. type: =head2
5703 #: ../src/guestfs.pod:2902
5704 #, fuzzy
5705 #| msgid "INSPECTION"
5706 msgid "INSPECTION LIMITS"
5707 msgstr "ПЕРЕВІРКА"
5708
5709 #. type: textblock
5710 #: ../src/guestfs.pod:2904
5711 msgid ""
5712 "The inspection code has several arbitrary limits on things like the size of "
5713 "Windows Registry hive it will read, and the length of product name.  These "
5714 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5715 "memory and disk space on the host, and should not be reached in practice.  "
5716 "See the source code for more information."
5717 msgstr ""
5718
5719 #. type: =head1
5720 #: ../src/guestfs.pod:2910 ../fish/guestfish.pod:1075
5721 #: ../test-tool/libguestfs-test-tool.pod:82
5722 msgid "ENVIRONMENT VARIABLES"
5723 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5724
5725 #. type: =item
5726 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1106
5727 msgid "LIBGUESTFS_APPEND"
5728 msgstr ""
5729
5730 #. type: textblock
5731 #: ../src/guestfs.pod:2916 ../fish/guestfish.pod:1108
5732 msgid "Pass additional options to the guest kernel."
5733 msgstr ""
5734
5735 #. type: =item
5736 #: ../src/guestfs.pod:2918 ../fish/guestfish.pod:1110
5737 msgid "LIBGUESTFS_DEBUG"
5738 msgstr ""
5739
5740 #. type: textblock
5741 #: ../src/guestfs.pod:2920
5742 msgid ""
5743 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5744 "effect as calling C<guestfs_set_verbose (g, 1)>."
5745 msgstr ""
5746
5747 #. type: =item
5748 #: ../src/guestfs.pod:2923 ../fish/guestfish.pod:1115
5749 msgid "LIBGUESTFS_MEMSIZE"
5750 msgstr ""
5751
5752 #. type: textblock
5753 #: ../src/guestfs.pod:2925 ../fish/guestfish.pod:1117
5754 msgid ""
5755 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5756 msgstr ""
5757
5758 #. type: verbatim
5759 #: ../src/guestfs.pod:2928 ../fish/guestfish.pod:1120
5760 #, no-wrap
5761 msgid ""
5762 " LIBGUESTFS_MEMSIZE=700\n"
5763 "\n"
5764 msgstr ""
5765
5766 #. type: =item
5767 #: ../src/guestfs.pod:2930 ../fish/guestfish.pod:1122
5768 msgid "LIBGUESTFS_PATH"
5769 msgstr ""
5770
5771 #. type: textblock
5772 #: ../src/guestfs.pod:2932
5773 msgid ""
5774 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5775 "the discussion of paths in section L</PATH> above."
5776 msgstr ""
5777
5778 #. type: =item
5779 #: ../src/guestfs.pod:2935 ../fish/guestfish.pod:1127
5780 msgid "LIBGUESTFS_QEMU"
5781 msgstr ""
5782
5783 #. type: textblock
5784 #: ../src/guestfs.pod:2937 ../fish/guestfish.pod:1129
5785 msgid ""
5786 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5787 "which was found at compile time by the configure script is used."
5788 msgstr ""
5789
5790 #. type: textblock
5791 #: ../src/guestfs.pod:2941
5792 msgid "See also L</QEMU WRAPPERS> above."
5793 msgstr ""
5794
5795 #. type: =item
5796 #: ../src/guestfs.pod:2943 ../fish/guestfish.pod:1133
5797 msgid "LIBGUESTFS_TRACE"
5798 msgstr ""
5799
5800 #. type: textblock
5801 #: ../src/guestfs.pod:2945
5802 msgid ""
5803 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5804 "effect as calling C<guestfs_set_trace (g, 1)>."
5805 msgstr ""
5806
5807 #. type: =item
5808 #: ../src/guestfs.pod:2948 ../fish/guestfish.pod:1142
5809 msgid "TMPDIR"
5810 msgstr ""
5811
5812 #. type: textblock
5813 #: ../src/guestfs.pod:2950 ../fish/guestfish.pod:1144
5814 msgid ""
5815 "Location of temporary directory, defaults to C</tmp> except for the cached "
5816 "supermin appliance which defaults to C</var/tmp>."
5817 msgstr ""
5818
5819 #. type: textblock
5820 #: ../src/guestfs.pod:2953 ../fish/guestfish.pod:1147
5821 msgid ""
5822 "If libguestfs was compiled to use the supermin appliance then the real "
5823 "appliance is cached in this directory, shared between all handles belonging "
5824 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5825 "use in case C</var/tmp> is not large enough."
5826 msgstr ""
5827
5828 #. type: =head1
5829 #: ../src/guestfs.pod:2961 ../fish/guestfish.pod:1214
5830 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279
5831 #: ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189
5832 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539
5833 #: ../tools/virt-list-partitions.pl:257
5834 msgid "SEE ALSO"
5835 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5836
5837 #. type: textblock
5838 #: ../src/guestfs.pod:2963
5839 msgid ""
5840 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5841 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5842 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5843 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5844 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5845 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5846 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5847 msgstr ""
5848
5849 #. type: textblock
5850 #: ../src/guestfs.pod:2990
5851 msgid ""
5852 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5853 "(8)>, L<disktype(1)>."
5854 msgstr ""
5855
5856 #. type: =head1
5857 #: ../src/guestfs.pod:2997 ../tools/virt-win-reg.pl:759
5858 #: ../tools/virt-make-fs.pl:553
5859 msgid "BUGS"
5860 msgstr "ВАДИ"
5861
5862 #. type: textblock
5863 #: ../src/guestfs.pod:2999
5864 msgid "To get a list of bugs against libguestfs use this link:"
5865 msgstr ""
5866 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5867 "посиланням:"
5868
5869 #. type: textblock
5870 #: ../src/guestfs.pod:3001
5871 msgid ""
5872 "L<https://bugzilla.redhat.com/buglist.cgi?"
5873 "component=libguestfs&product=Virtualization+Tools>"
5874 msgstr ""
5875 "L<https://bugzilla.redhat.com/buglist.cgi?"
5876 "component=libguestfs&product=Virtualization+Tools>"
5877
5878 #. type: textblock
5879 #: ../src/guestfs.pod:3003
5880 msgid "To report a new bug against libguestfs use this link:"
5881 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5882
5883 #. type: textblock
5884 #: ../src/guestfs.pod:3005
5885 msgid ""
5886 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5887 "component=libguestfs&product=Virtualization+Tools>"
5888 msgstr ""
5889 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5890 "component=libguestfs&product=Virtualization+Tools>"
5891
5892 #. type: textblock
5893 #: ../src/guestfs.pod:3007
5894 msgid "When reporting a bug, please check:"
5895 msgstr ""
5896
5897 #. type: textblock
5898 #: ../src/guestfs.pod:3013
5899 msgid "That the bug hasn't been reported already."
5900 msgstr ""
5901
5902 #. type: textblock
5903 #: ../src/guestfs.pod:3017
5904 msgid "That you are testing a recent version."
5905 msgstr ""
5906
5907 #. type: textblock
5908 #: ../src/guestfs.pod:3021
5909 msgid "Describe the bug accurately, and give a way to reproduce it."
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs.pod:3025
5914 msgid ""
5915 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5916 "bug report."
5917 msgstr ""
5918
5919 #. type: =head1
5920 #: ../src/guestfs.pod:3030 ../fish/guestfish.pod:1238
5921 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5922 msgid "AUTHORS"
5923 msgstr "АВТОРИ"
5924
5925 #. type: textblock
5926 #: ../src/guestfs.pod:3032 ../fish/guestfish.pod:1240
5927 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5928 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5929 msgstr ""
5930
5931 #. type: =head1
5932 #: ../src/guestfs.pod:3034 ../fish/guestfish.pod:1242
5933 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294
5934 #: ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206
5935 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568
5936 #: ../tools/virt-list-partitions.pl:273
5937 msgid "COPYRIGHT"
5938 msgstr "АВТОРСЬКІ ПРАВА"
5939
5940 #. type: textblock
5941 #: ../src/guestfs.pod:3036 ../fish/guestfish.pod:1244
5942 #: ../test-tool/libguestfs-test-tool.pod:99
5943 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5944 msgstr ""
5945
5946 #. type: textblock
5947 #: ../src/guestfs.pod:3039
5948 msgid ""
5949 "This library is free software; you can redistribute it and/or modify it "
5950 "under the terms of the GNU Lesser General Public License as published by the "
5951 "Free Software Foundation; either version 2 of the License, or (at your "
5952 "option) any later version."
5953 msgstr ""
5954
5955 #. type: textblock
5956 #: ../src/guestfs.pod:3044
5957 msgid ""
5958 "This library is distributed in the hope that it will be useful, but WITHOUT "
5959 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5960 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5961 "for more details."
5962 msgstr ""
5963
5964 #. type: textblock
5965 #: ../src/guestfs.pod:3049
5966 msgid ""
5967 "You should have received a copy of the GNU Lesser General Public License "
5968 "along with this library; if not, write to the Free Software Foundation, "
5969 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5970 msgstr ""
5971
5972 #. type: =head2
5973 #: ../src/guestfs-actions.pod:1
5974 msgid "guestfs_add_cdrom"
5975 msgstr ""
5976
5977 #. type: verbatim
5978 #: ../src/guestfs-actions.pod:3
5979 #, no-wrap
5980 msgid ""
5981 " int\n"
5982 " guestfs_add_cdrom (guestfs_h *g,\n"
5983 "                    const char *filename);\n"
5984 "\n"
5985 msgstr ""
5986
5987 #. type: textblock
5988 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5989 msgid "This function adds a virtual CD-ROM disk image to the guest."
5990 msgstr ""
5991
5992 #. type: textblock
5993 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5994 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5995 msgstr ""
5996
5997 #. type: textblock
5998 #: ../src/guestfs-actions.pod:17
5999 msgid ""
6000 "This call checks for the existence of C<filename>.  This stops you from "
6001 "specifying other types of drive which are supported by qemu such as C<nbd:> "
6002 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
6003 "instead."
6004 msgstr ""
6005
6006 #. type: textblock
6007 #: ../src/guestfs-actions.pod:24
6008 msgid ""
6009 "If you just want to add an ISO file (often you use this as an efficient way "
6010 "to transfer large files into the guest), then you should probably use "
6011 "C<guestfs_add_drive_ro> instead."
6012 msgstr ""
6013
6014 #. type: textblock
6015 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
6016 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
6017 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
6018 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
6019 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
6020 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
6021 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
6022 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
6023 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
6024 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
6025 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
6026 #: ../src/guestfs-actions.pod:858 ../src/guestfs-actions.pod:1041
6027 #: ../src/guestfs-actions.pod:1061 ../src/guestfs-actions.pod:1079
6028 #: ../src/guestfs-actions.pod:1163 ../src/guestfs-actions.pod:1181
6029 #: ../src/guestfs-actions.pod:1200 ../src/guestfs-actions.pod:1214
6030 #: ../src/guestfs-actions.pod:1234 ../src/guestfs-actions.pod:1304
6031 #: ../src/guestfs-actions.pod:1335 ../src/guestfs-actions.pod:1360
6032 #: ../src/guestfs-actions.pod:1402 ../src/guestfs-actions.pod:1508
6033 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1757
6034 #: ../src/guestfs-actions.pod:1779 ../src/guestfs-actions.pod:1866
6035 #: ../src/guestfs-actions.pod:2339 ../src/guestfs-actions.pod:2483
6036 #: ../src/guestfs-actions.pod:2544 ../src/guestfs-actions.pod:2579
6037 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3634
6038 #: ../src/guestfs-actions.pod:3659 ../src/guestfs-actions.pod:3848
6039 #: ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:3875
6040 #: ../src/guestfs-actions.pod:3889 ../src/guestfs-actions.pod:3904
6041 #: ../src/guestfs-actions.pod:3940 ../src/guestfs-actions.pod:4012
6042 #: ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4049
6043 #: ../src/guestfs-actions.pod:4072 ../src/guestfs-actions.pod:4095
6044 #: ../src/guestfs-actions.pod:4130 ../src/guestfs-actions.pod:4149
6045 #: ../src/guestfs-actions.pod:4168 ../src/guestfs-actions.pod:4203
6046 #: ../src/guestfs-actions.pod:4215 ../src/guestfs-actions.pod:4251
6047 #: ../src/guestfs-actions.pod:4267 ../src/guestfs-actions.pod:4280
6048 #: ../src/guestfs-actions.pod:4295 ../src/guestfs-actions.pod:4312
6049 #: ../src/guestfs-actions.pod:4405 ../src/guestfs-actions.pod:4425
6050 #: ../src/guestfs-actions.pod:4438 ../src/guestfs-actions.pod:4489
6051 #: ../src/guestfs-actions.pod:4507 ../src/guestfs-actions.pod:4525
6052 #: ../src/guestfs-actions.pod:4541 ../src/guestfs-actions.pod:4555
6053 #: ../src/guestfs-actions.pod:4569 ../src/guestfs-actions.pod:4586
6054 #: ../src/guestfs-actions.pod:4601 ../src/guestfs-actions.pod:4621
6055 #: ../src/guestfs-actions.pod:4691 ../src/guestfs-actions.pod:4764
6056 #: ../src/guestfs-actions.pod:4795 ../src/guestfs-actions.pod:4814
6057 #: ../src/guestfs-actions.pod:4833 ../src/guestfs-actions.pod:4845
6058 #: ../src/guestfs-actions.pod:4862 ../src/guestfs-actions.pod:4875
6059 #: ../src/guestfs-actions.pod:4890 ../src/guestfs-actions.pod:4905
6060 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4973
6061 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5032
6062 #: ../src/guestfs-actions.pod:5046 ../src/guestfs-actions.pod:5063
6063 #: ../src/guestfs-actions.pod:5112 ../src/guestfs-actions.pod:5158
6064 #: ../src/guestfs-actions.pod:5212 ../src/guestfs-actions.pod:5248
6065 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5300
6066 #: ../src/guestfs-actions.pod:5318 ../src/guestfs-actions.pod:5452
6067 #: ../src/guestfs-actions.pod:5509 ../src/guestfs-actions.pod:5531
6068 #: ../src/guestfs-actions.pod:5549 ../src/guestfs-actions.pod:5581
6069 #: ../src/guestfs-actions.pod:5647 ../src/guestfs-actions.pod:5664
6070 #: ../src/guestfs-actions.pod:5677 ../src/guestfs-actions.pod:5691
6071 #: ../src/guestfs-actions.pod:5980 ../src/guestfs-actions.pod:5999
6072 #: ../src/guestfs-actions.pod:6018 ../src/guestfs-actions.pod:6032
6073 #: ../src/guestfs-actions.pod:6044 ../src/guestfs-actions.pod:6058
6074 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6084
6075 #: ../src/guestfs-actions.pod:6100 ../src/guestfs-actions.pod:6121
6076 #: ../src/guestfs-actions.pod:6140 ../src/guestfs-actions.pod:6159
6077 #: ../src/guestfs-actions.pod:6189 ../src/guestfs-actions.pod:6207
6078 #: ../src/guestfs-actions.pod:6230 ../src/guestfs-actions.pod:6248
6079 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6288
6080 #: ../src/guestfs-actions.pod:6307 ../src/guestfs-actions.pod:6324
6081 #: ../src/guestfs-actions.pod:6343 ../src/guestfs-actions.pod:6369
6082 #: ../src/guestfs-actions.pod:6393 ../src/guestfs-actions.pod:6412
6083 #: ../src/guestfs-actions.pod:6436 ../src/guestfs-actions.pod:6455
6084 #: ../src/guestfs-actions.pod:6470 ../src/guestfs-actions.pod:6489
6085 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6556
6086 #: ../src/guestfs-actions.pod:6589 ../src/guestfs-actions.pod:6711
6087 #: ../src/guestfs-actions.pod:6832 ../src/guestfs-actions.pod:6844
6088 #: ../src/guestfs-actions.pod:6857 ../src/guestfs-actions.pod:6870
6089 #: ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6905
6090 #: ../src/guestfs-actions.pod:6918 ../src/guestfs-actions.pod:6931
6091 #: ../src/guestfs-actions.pod:6946 ../src/guestfs-actions.pod:7005
6092 #: ../src/guestfs-actions.pod:7022 ../src/guestfs-actions.pod:7038
6093 #: ../src/guestfs-actions.pod:7054 ../src/guestfs-actions.pod:7071
6094 #: ../src/guestfs-actions.pod:7084 ../src/guestfs-actions.pod:7104
6095 #: ../src/guestfs-actions.pod:7140 ../src/guestfs-actions.pod:7154
6096 #: ../src/guestfs-actions.pod:7195 ../src/guestfs-actions.pod:7208
6097 #: ../src/guestfs-actions.pod:7226 ../src/guestfs-actions.pod:7260
6098 #: ../src/guestfs-actions.pod:7296 ../src/guestfs-actions.pod:7412
6099 #: ../src/guestfs-actions.pod:7427 ../src/guestfs-actions.pod:7441
6100 #: ../src/guestfs-actions.pod:7496 ../src/guestfs-actions.pod:7509
6101 #: ../src/guestfs-actions.pod:7554 ../src/guestfs-actions.pod:7587
6102 #: ../src/guestfs-actions.pod:7650 ../src/guestfs-actions.pod:7670
6103 #: ../src/guestfs-actions.pod:7694 ../src/guestfs-actions.pod:7761
6104 #: ../src/guestfs-actions.pod:7780 ../src/guestfs-actions.pod:7809
6105 msgid "This function returns 0 on success or -1 on error."
6106 msgstr ""
6107
6108 #. type: textblock
6109 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6110 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6111 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6112 msgid ""
6113 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6114 "instead."
6115 msgstr ""
6116
6117 #. type: textblock
6118 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6119 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1513
6120 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2029
6121 #: ../src/guestfs-actions.pod:4626 ../src/guestfs-actions.pod:4945
6122 #: ../src/guestfs-actions.pod:5163 ../src/guestfs-actions.pod:5253
6123 #: ../src/guestfs-actions.pod:6534 ../src/guestfs-actions.pod:6564
6124 #: ../src/guestfs-actions.pod:6597 ../src/guestfs-actions.pod:6656
6125 #: ../src/guestfs-actions.pod:7592 ../src/guestfs-actions.pod:7702
6126 #: ../src/guestfs-actions.pod:7872 ../fish/guestfish-actions.pod:31
6127 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6128 #: ../fish/guestfish-actions.pod:986 ../fish/guestfish-actions.pod:1346
6129 #: ../fish/guestfish-actions.pod:1360 ../fish/guestfish-actions.pod:3085
6130 #: ../fish/guestfish-actions.pod:3292 ../fish/guestfish-actions.pod:3406
6131 #: ../fish/guestfish-actions.pod:3454 ../fish/guestfish-actions.pod:4349
6132 #: ../fish/guestfish-actions.pod:4372 ../fish/guestfish-actions.pod:4394
6133 #: ../fish/guestfish-actions.pod:4432 ../fish/guestfish-actions.pod:5081
6134 #: ../fish/guestfish-actions.pod:5179
6135 msgid ""
6136 "Deprecated functions will not be removed from the API, but the fact that "
6137 "they are deprecated indicates that there are problems with correct use of "
6138 "these functions."
6139 msgstr ""
6140
6141 #. type: textblock
6142 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6143 #: ../src/guestfs-actions.pod:1165 ../src/guestfs-actions.pod:1980
6144 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2190
6145 #: ../src/guestfs-actions.pod:3621 ../src/guestfs-actions.pod:3641
6146 #: ../src/guestfs-actions.pod:4949 ../src/guestfs-actions.pod:6209
6147 #: ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6457
6148 #: ../src/guestfs-actions.pod:6948 ../src/guestfs-actions.pod:7073
6149 #: ../src/guestfs-actions.pod:7596
6150 msgid "(Added in 0.3)"
6151 msgstr ""
6152
6153 #. type: =head2
6154 #: ../src/guestfs-actions.pod:41
6155 msgid "guestfs_add_domain"
6156 msgstr ""
6157
6158 #. type: verbatim
6159 #: ../src/guestfs-actions.pod:43
6160 #, no-wrap
6161 msgid ""
6162 " int\n"
6163 " guestfs_add_domain (guestfs_h *g,\n"
6164 "                     const char *dom,\n"
6165 "                     ...);\n"
6166 "\n"
6167 msgstr ""
6168
6169 #. type: textblock
6170 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6171 #: ../src/guestfs-actions.pod:832 ../src/guestfs-actions.pod:2824
6172 #: ../src/guestfs-actions.pod:4640 ../src/guestfs-actions.pod:4959
6173 #: ../src/guestfs-actions.pod:5176
6174 msgid ""
6175 "You may supply a list of optional arguments to this call.  Use zero or more "
6176 "of the following pairs of parameters, and terminate the list with C<-1> on "
6177 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6178 msgstr ""
6179
6180 #. type: verbatim
6181 #: ../src/guestfs-actions.pod:53
6182 #, no-wrap
6183 msgid ""
6184 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6185 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6186 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6187 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6188 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6189 "\n"
6190 msgstr ""
6191
6192 #. type: textblock
6193 #: ../src/guestfs-actions.pod:59
6194 msgid ""
6195 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6196 "It works by connecting to libvirt, requesting the domain and domain XML from "
6197 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6198 "one."
6199 msgstr ""
6200
6201 #. type: textblock
6202 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6203 msgid ""
6204 "The number of disks added is returned.  This operation is atomic: if an "
6205 "error is returned, then no disks are added."
6206 msgstr ""
6207
6208 #. type: textblock
6209 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6210 msgid ""
6211 "This function does some minimal checks to make sure the libvirt domain is "
6212 "not running (unless C<readonly> is true).  In a future version we will try "
6213 "to acquire the libvirt lock on each disk."
6214 msgstr ""
6215
6216 #. type: textblock
6217 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6218 msgid ""
6219 "Disks must be accessible locally.  This often means that adding disks from a "
6220 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6221 "unless those disks are accessible via the same device path locally too."
6222 msgstr ""
6223
6224 #. type: textblock
6225 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6226 msgid ""
6227 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6228 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6229 "libvirt URI (or one set through an environment variable, see the libvirt "
6230 "documentation for full details)."
6231 msgstr ""
6232
6233 #. type: textblock
6234 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6235 msgid ""
6236 "The optional C<live> flag controls whether this call will try to connect to "
6237 "a running virtual machine C<guestfsd> process if it sees a suitable "
6238 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6239 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6240 "DAEMONS> for more information."
6241 msgstr ""
6242
6243 #. type: textblock
6244 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6245 msgid ""
6246 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6247 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6248 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
6249 "as usual."
6250 msgstr ""
6251
6252 #. type: textblock
6253 #: ../src/guestfs-actions.pod:94
6254 msgid ""
6255 "The other optional parameters are passed directly through to "
6256 "C<guestfs_add_drive_opts>."
6257 msgstr ""
6258
6259 #. type: textblock
6260 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6261 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6262 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6263 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1380
6264 #: ../src/guestfs-actions.pod:1736 ../src/guestfs-actions.pod:1939
6265 #: ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:2099
6266 #: ../src/guestfs-actions.pod:2154 ../src/guestfs-actions.pod:2177
6267 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2942
6268 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:5135
6269 #: ../src/guestfs-actions.pod:5355 ../src/guestfs-actions.pod:5761
6270 #: ../src/guestfs-actions.pod:5787 ../src/guestfs-actions.pod:7181
6271 #: ../src/guestfs-actions.pod:7607 ../src/guestfs-actions.pod:7620
6272 #: ../src/guestfs-actions.pod:7633
6273 msgid "On error this function returns -1."
6274 msgstr ""
6275
6276 #. type: textblock
6277 #: ../src/guestfs-actions.pod:99
6278 msgid "(Added in 1.7.4)"
6279 msgstr ""
6280
6281 #. type: =head2
6282 #: ../src/guestfs-actions.pod:101
6283 msgid "guestfs_add_domain_va"
6284 msgstr ""
6285
6286 #. type: verbatim
6287 #: ../src/guestfs-actions.pod:103
6288 #, no-wrap
6289 msgid ""
6290 " int\n"
6291 " guestfs_add_domain_va (guestfs_h *g,\n"
6292 "                        const char *dom,\n"
6293 "                        va_list args);\n"
6294 "\n"
6295 msgstr ""
6296
6297 #. type: textblock
6298 #: ../src/guestfs-actions.pod:108
6299 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6300 msgstr ""
6301
6302 #. type: textblock
6303 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6304 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6305 #: ../src/guestfs-actions.pod:871 ../src/guestfs-actions.pod:882
6306 #: ../src/guestfs-actions.pod:2908 ../src/guestfs-actions.pod:2920
6307 #: ../src/guestfs-actions.pod:4705 ../src/guestfs-actions.pod:4717
6308 #: ../src/guestfs-actions.pod:4987 ../src/guestfs-actions.pod:4999
6309 #: ../src/guestfs-actions.pod:5225 ../src/guestfs-actions.pod:5236
6310 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6311 msgstr ""
6312
6313 #. type: =head2
6314 #: ../src/guestfs-actions.pod:112
6315 msgid "guestfs_add_domain_argv"
6316 msgstr ""
6317
6318 #. type: verbatim
6319 #: ../src/guestfs-actions.pod:114
6320 #, no-wrap
6321 msgid ""
6322 " int\n"
6323 " guestfs_add_domain_argv (guestfs_h *g,\n"
6324 "                          const char *dom,\n"
6325 "                          const struct guestfs_add_domain_argv *optargs);\n"
6326 "\n"
6327 msgstr ""
6328
6329 #. type: textblock
6330 #: ../src/guestfs-actions.pod:119
6331 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6332 msgstr ""
6333
6334 #. type: =head2
6335 #: ../src/guestfs-actions.pod:123
6336 msgid "guestfs_add_drive"
6337 msgstr ""
6338
6339 #. type: verbatim
6340 #: ../src/guestfs-actions.pod:125
6341 #, no-wrap
6342 msgid ""
6343 " int\n"
6344 " guestfs_add_drive (guestfs_h *g,\n"
6345 "                    const char *filename);\n"
6346 "\n"
6347 msgstr ""
6348
6349 #. type: textblock
6350 #: ../src/guestfs-actions.pod:129
6351 msgid ""
6352 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6353 "optional parameters, so the disk is added writable, with the format being "
6354 "detected automatically."
6355 msgstr ""
6356
6357 #. type: textblock
6358 #: ../src/guestfs-actions.pod:133
6359 msgid ""
6360 "Automatic detection of the format opens you up to a potential security hole "
6361 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6362 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6363 "you should think about replacing calls to this function with calls to "
6364 "C<guestfs_add_drive_opts>, and specifying the format."
6365 msgstr ""
6366
6367 #. type: =head2
6368 #: ../src/guestfs-actions.pod:144
6369 msgid "guestfs_add_drive_opts"
6370 msgstr ""
6371
6372 #. type: verbatim
6373 #: ../src/guestfs-actions.pod:146
6374 #, no-wrap
6375 msgid ""
6376 " int\n"
6377 " guestfs_add_drive_opts (guestfs_h *g,\n"
6378 "                         const char *filename,\n"
6379 "                         ...);\n"
6380 "\n"
6381 msgstr ""
6382
6383 #. type: verbatim
6384 #: ../src/guestfs-actions.pod:156
6385 #, no-wrap
6386 msgid ""
6387 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6388 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6389 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6390 "\n"
6391 msgstr ""
6392
6393 #. type: textblock
6394 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6395 msgid ""
6396 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6397 "The first time you call this function, the disk appears as C</dev/sda>, the "
6398 "second time as C</dev/sdb>, and so on."
6399 msgstr ""
6400
6401 #. type: textblock
6402 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6403 msgid ""
6404 "You don't necessarily need to be root when using libguestfs.  However you "
6405 "obviously do need sufficient permissions to access the filename for whatever "
6406 "operations you want to perform (ie. read access if you just want to read the "
6407 "image or write access if you want to modify the image)."
6408 msgstr ""
6409
6410 #. type: textblock
6411 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6412 msgid "This call checks that C<filename> exists."
6413 msgstr ""
6414
6415 #. type: textblock
6416 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4653
6417 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3096
6418 msgid "The optional arguments are:"
6419 msgstr ""
6420
6421 #. type: =item
6422 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6423 msgid "C<readonly>"
6424 msgstr "C<readonly>"
6425
6426 #. type: textblock
6427 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6428 msgid ""
6429 "If true then the image is treated as read-only.  Writes are still allowed, "
6430 "but they are stored in a temporary snapshot overlay which is discarded at "
6431 "the end.  The disk that you add is not modified."
6432 msgstr ""
6433
6434 #. type: =item
6435 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6436 msgid "C<format>"
6437 msgstr "C<format>"
6438
6439 #. type: textblock
6440 #: ../src/guestfs-actions.pod:185
6441 msgid ""
6442 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6443 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6444 "Possible formats include C<raw> and C<qcow2>."
6445 msgstr ""
6446
6447 #. type: textblock
6448 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6449 msgid ""
6450 "Automatic detection of the format opens you up to a potential security hole "
6451 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6452 "RHBZ#642934.  Specifying the format closes this security hole."
6453 msgstr ""
6454
6455 #. type: =item
6456 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6457 msgid "C<iface>"
6458 msgstr "C<iface>"
6459
6460 #. type: textblock
6461 #: ../src/guestfs-actions.pod:196
6462 msgid ""
6463 "This rarely-used option lets you emulate the behaviour of the deprecated "
6464 "C<guestfs_add_drive_with_if> call (q.v.)"
6465 msgstr ""
6466
6467 #. type: textblock
6468 #: ../src/guestfs-actions.pod:203
6469 msgid "(Added in 1.5.23)"
6470 msgstr ""
6471
6472 #. type: =head2
6473 #: ../src/guestfs-actions.pod:205
6474 msgid "guestfs_add_drive_opts_va"
6475 msgstr ""
6476
6477 #. type: verbatim
6478 #: ../src/guestfs-actions.pod:207
6479 #, no-wrap
6480 msgid ""
6481 " int\n"
6482 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6483 "                            const char *filename,\n"
6484 "                            va_list args);\n"
6485 "\n"
6486 msgstr ""
6487
6488 #. type: textblock
6489 #: ../src/guestfs-actions.pod:212
6490 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6491 msgstr ""
6492
6493 #. type: =head2
6494 #: ../src/guestfs-actions.pod:216
6495 msgid "guestfs_add_drive_opts_argv"
6496 msgstr ""
6497
6498 #. type: verbatim
6499 #: ../src/guestfs-actions.pod:218
6500 #, no-wrap
6501 msgid ""
6502 " int\n"
6503 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6504 "                              const char *filename,\n"
6505 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6506 "\n"
6507 msgstr ""
6508
6509 #. type: textblock
6510 #: ../src/guestfs-actions.pod:223
6511 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6512 msgstr ""
6513
6514 #. type: =head2
6515 #: ../src/guestfs-actions.pod:227
6516 msgid "guestfs_add_drive_ro"
6517 msgstr ""
6518
6519 #. type: verbatim
6520 #: ../src/guestfs-actions.pod:229
6521 #, no-wrap
6522 msgid ""
6523 " int\n"
6524 " guestfs_add_drive_ro (guestfs_h *g,\n"
6525 "                       const char *filename);\n"
6526 "\n"
6527 msgstr ""
6528
6529 #. type: textblock
6530 #: ../src/guestfs-actions.pod:233
6531 msgid ""
6532 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6533 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6534 "disk is added read-only, with the format being detected automatically."
6535 msgstr ""
6536
6537 #. type: textblock
6538 #: ../src/guestfs-actions.pod:240
6539 msgid "(Added in 1.0.38)"
6540 msgstr ""
6541
6542 #. type: =head2
6543 #: ../src/guestfs-actions.pod:242
6544 msgid "guestfs_add_drive_ro_with_if"
6545 msgstr ""
6546
6547 #. type: verbatim
6548 #: ../src/guestfs-actions.pod:244
6549 #, no-wrap
6550 msgid ""
6551 " int\n"
6552 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6553 "                               const char *filename,\n"
6554 "                               const char *iface);\n"
6555 "\n"
6556 msgstr ""
6557
6558 #. type: textblock
6559 #: ../src/guestfs-actions.pod:249
6560 msgid ""
6561 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6562 "QEMU interface emulation to use at run time."
6563 msgstr ""
6564
6565 #. type: textblock
6566 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6567 #: ../src/guestfs-actions.pod:2429
6568 msgid "(Added in 1.0.84)"
6569 msgstr ""
6570
6571 #. type: =head2
6572 #: ../src/guestfs-actions.pod:263
6573 msgid "guestfs_add_drive_with_if"
6574 msgstr ""
6575
6576 #. type: verbatim
6577 #: ../src/guestfs-actions.pod:265
6578 #, no-wrap
6579 msgid ""
6580 " int\n"
6581 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6582 "                            const char *filename,\n"
6583 "                            const char *iface);\n"
6584 "\n"
6585 msgstr ""
6586
6587 #. type: textblock
6588 #: ../src/guestfs-actions.pod:270
6589 msgid ""
6590 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6591 "QEMU interface emulation to use at run time."
6592 msgstr ""
6593
6594 #. type: =head2
6595 #: ../src/guestfs-actions.pod:284
6596 msgid "guestfs_aug_clear"
6597 msgstr ""
6598
6599 #. type: verbatim
6600 #: ../src/guestfs-actions.pod:286
6601 #, no-wrap
6602 msgid ""
6603 " int\n"
6604 " guestfs_aug_clear (guestfs_h *g,\n"
6605 "                    const char *augpath);\n"
6606 "\n"
6607 msgstr ""
6608
6609 #. type: textblock
6610 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6611 msgid ""
6612 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6613 "L<augtool(1)> C<clear> command."
6614 msgstr ""
6615
6616 #. type: textblock
6617 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2179
6618 msgid "(Added in 1.3.4)"
6619 msgstr ""
6620
6621 #. type: =head2
6622 #: ../src/guestfs-actions.pod:297
6623 msgid "guestfs_aug_close"
6624 msgstr ""
6625
6626 #. type: verbatim
6627 #: ../src/guestfs-actions.pod:299
6628 #, no-wrap
6629 msgid ""
6630 " int\n"
6631 " guestfs_aug_close (guestfs_h *g);\n"
6632 "\n"
6633 msgstr ""
6634
6635 #. type: textblock
6636 #: ../src/guestfs-actions.pod:302
6637 msgid ""
6638 "Close the current Augeas handle and free up any resources used by it.  After "
6639 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6640 "any other Augeas functions."
6641 msgstr ""
6642
6643 #. type: textblock
6644 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6645 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6646 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6647 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6648 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6649 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6650 #: ../src/guestfs-actions.pod:5838
6651 msgid "(Added in 0.7)"
6652 msgstr ""
6653
6654 #. type: =head2
6655 #: ../src/guestfs-actions.pod:311
6656 msgid "guestfs_aug_defnode"
6657 msgstr ""
6658
6659 #. type: verbatim
6660 #: ../src/guestfs-actions.pod:313
6661 #, no-wrap
6662 msgid ""
6663 " struct guestfs_int_bool *\n"
6664 " guestfs_aug_defnode (guestfs_h *g,\n"
6665 "                      const char *name,\n"
6666 "                      const char *expr,\n"
6667 "                      const char *val);\n"
6668 "\n"
6669 msgstr ""
6670
6671 #. type: textblock
6672 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6673 msgid ""
6674 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6675 msgstr ""
6676
6677 #. type: textblock
6678 #: ../src/guestfs-actions.pod:322
6679 msgid ""
6680 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6681 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6682 "containing that single node."
6683 msgstr ""
6684
6685 #. type: textblock
6686 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6687 msgid ""
6688 "On success this returns a pair containing the number of nodes in the "
6689 "nodeset, and a boolean flag if a node was created."
6690 msgstr ""
6691
6692 #. type: textblock
6693 #: ../src/guestfs-actions.pod:330
6694 msgid ""
6695 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6696 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6697 msgstr ""
6698
6699 #. type: =head2
6700 #: ../src/guestfs-actions.pod:336
6701 msgid "guestfs_aug_defvar"
6702 msgstr ""
6703
6704 #. type: verbatim
6705 #: ../src/guestfs-actions.pod:338
6706 #, no-wrap
6707 msgid ""
6708 " int\n"
6709 " guestfs_aug_defvar (guestfs_h *g,\n"
6710 "                     const char *name,\n"
6711 "                     const char *expr);\n"
6712 "\n"
6713 msgstr ""
6714
6715 #. type: textblock
6716 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6717 msgid ""
6718 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6719 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6720 msgstr ""
6721
6722 #. type: textblock
6723 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6724 msgid ""
6725 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6726 "evaluates to something which is not a nodeset."
6727 msgstr ""
6728
6729 #. type: =head2
6730 #: ../src/guestfs-actions.pod:354
6731 msgid "guestfs_aug_get"
6732 msgstr ""
6733
6734 #. type: verbatim
6735 #: ../src/guestfs-actions.pod:356
6736 #, no-wrap
6737 msgid ""
6738 " char *\n"
6739 " guestfs_aug_get (guestfs_h *g,\n"
6740 "                  const char *augpath);\n"
6741 "\n"
6742 msgstr ""
6743
6744 #. type: textblock
6745 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6746 msgid ""
6747 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6748 "node, the C<value> is returned."
6749 msgstr ""
6750
6751 #. type: textblock
6752 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:922
6753 #: ../src/guestfs-actions.pod:940 ../src/guestfs-actions.pod:1000
6754 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1119
6755 #: ../src/guestfs-actions.pod:1249 ../src/guestfs-actions.pod:1266
6756 #: ../src/guestfs-actions.pod:1285 ../src/guestfs-actions.pod:1419
6757 #: ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1719
6758 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:1899
6759 #: ../src/guestfs-actions.pod:1966 ../src/guestfs-actions.pod:2002
6760 #: ../src/guestfs-actions.pod:2023 ../src/guestfs-actions.pod:2202
6761 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2598
6762 #: ../src/guestfs-actions.pod:2688 ../src/guestfs-actions.pod:2792
6763 #: ../src/guestfs-actions.pod:2811 ../src/guestfs-actions.pod:3025
6764 #: ../src/guestfs-actions.pod:3053 ../src/guestfs-actions.pod:3074
6765 #: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:3167
6766 #: ../src/guestfs-actions.pod:3187 ../src/guestfs-actions.pod:3207
6767 #: ../src/guestfs-actions.pod:3834 ../src/guestfs-actions.pod:4187
6768 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4467
6769 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:5566
6770 #: ../src/guestfs-actions.pod:5736 ../src/guestfs-actions.pod:5914
6771 #: ../src/guestfs-actions.pod:5963 ../src/guestfs-actions.pod:6617
6772 #: ../src/guestfs-actions.pod:6633 ../src/guestfs-actions.pod:6650
6773 #: ../src/guestfs-actions.pod:6681 ../src/guestfs-actions.pod:7355
6774 #: ../src/guestfs-actions.pod:7374 ../src/guestfs-actions.pod:7392
6775 #: ../src/guestfs-actions.pod:7566 ../src/guestfs-actions.pod:7866
6776 msgid ""
6777 "This function returns a string, or NULL on error.  I<The caller must free "
6778 "the returned string after use>."
6779 msgstr ""
6780
6781 #. type: =head2
6782 #: ../src/guestfs-actions.pod:368
6783 msgid "guestfs_aug_init"
6784 msgstr ""
6785
6786 #. type: verbatim
6787 #: ../src/guestfs-actions.pod:370
6788 #, no-wrap
6789 msgid ""
6790 " int\n"
6791 " guestfs_aug_init (guestfs_h *g,\n"
6792 "                   const char *root,\n"
6793 "                   int flags);\n"
6794 "\n"
6795 msgstr ""
6796
6797 #. type: textblock
6798 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6799 msgid ""
6800 "Create a new Augeas handle for editing configuration files.  If there was "
6801 "any previous Augeas handle associated with this guestfs session, then it is "
6802 "closed."
6803 msgstr ""
6804
6805 #. type: textblock
6806 #: ../src/guestfs-actions.pod:379
6807 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6808 msgstr ""
6809
6810 #. type: textblock
6811 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6812 msgid ""
6813 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6814 msgstr ""
6815
6816 #. type: textblock
6817 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6818 msgid ""
6819 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6820 "logical I<or> of the following integers:"
6821 msgstr ""
6822
6823 #. type: =item
6824 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6825 msgid "C<AUG_SAVE_BACKUP> = 1"
6826 msgstr "C<AUG_SAVE_BACKUP> = 1"
6827
6828 #. type: textblock
6829 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6830 msgid "Keep the original file with a C<.augsave> extension."
6831 msgstr ""
6832
6833 #. type: =item
6834 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6835 msgid "C<AUG_SAVE_NEWFILE> = 2"
6836 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6837
6838 #. type: textblock
6839 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6840 msgid ""
6841 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6842 "original.  Overrides C<AUG_SAVE_BACKUP>."
6843 msgstr ""
6844
6845 #. type: =item
6846 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6847 msgid "C<AUG_TYPE_CHECK> = 4"
6848 msgstr "C<AUG_TYPE_CHECK> = 4"
6849
6850 #. type: textblock
6851 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6852 msgid "Typecheck lenses (can be expensive)."
6853 msgstr ""
6854
6855 #. type: =item
6856 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6857 msgid "C<AUG_NO_STDINC> = 8"
6858 msgstr "C<AUG_NO_STDINC> = 8"
6859
6860 #. type: textblock
6861 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6862 msgid "Do not use standard load path for modules."
6863 msgstr ""
6864
6865 #. type: =item
6866 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6867 msgid "C<AUG_SAVE_NOOP> = 16"
6868 msgstr "C<AUG_SAVE_NOOP> = 16"
6869
6870 #. type: textblock
6871 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6872 msgid "Make save a no-op, just record what would have been changed."
6873 msgstr ""
6874
6875 #. type: =item
6876 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6877 msgid "C<AUG_NO_LOAD> = 32"
6878 msgstr "C<AUG_NO_LOAD> = 32"
6879
6880 #. type: textblock
6881 #: ../src/guestfs-actions.pod:414
6882 msgid "Do not load the tree in C<guestfs_aug_init>."
6883 msgstr ""
6884
6885 #. type: textblock
6886 #: ../src/guestfs-actions.pod:418
6887 msgid "To close the handle, you can call C<guestfs_aug_close>."
6888 msgstr ""
6889
6890 #. type: textblock
6891 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6892 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6893 msgstr ""
6894
6895 #. type: =head2
6896 #: ../src/guestfs-actions.pod:426
6897 msgid "guestfs_aug_insert"
6898 msgstr ""
6899
6900 #. type: verbatim
6901 #: ../src/guestfs-actions.pod:428
6902 #, no-wrap
6903 msgid ""
6904 " int\n"
6905 " guestfs_aug_insert (guestfs_h *g,\n"
6906 "                     const char *augpath,\n"
6907 "                     const char *label,\n"
6908 "                     int before);\n"
6909 "\n"
6910 msgstr ""
6911
6912 #. type: textblock
6913 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6914 msgid ""
6915 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6916 "or after C<path> (depending on the boolean flag C<before>)."
6917 msgstr ""
6918
6919 #. type: textblock
6920 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6921 msgid ""
6922 "C<path> must match exactly one existing node in the tree, and C<label> must "
6923 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6924 msgstr ""
6925
6926 #. type: =head2
6927 #: ../src/guestfs-actions.pod:446
6928 msgid "guestfs_aug_load"
6929 msgstr ""
6930
6931 #. type: verbatim
6932 #: ../src/guestfs-actions.pod:448
6933 #, no-wrap
6934 msgid ""
6935 " int\n"
6936 " guestfs_aug_load (guestfs_h *g);\n"
6937 "\n"
6938 msgstr ""
6939
6940 #. type: textblock
6941 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6942 msgid "Load files into the tree."
6943 msgstr "Завантажити файли до ієрархії."
6944
6945 #. type: textblock
6946 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6947 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6948 msgstr ""
6949
6950 #. type: =head2
6951 #: ../src/guestfs-actions.pod:460
6952 msgid "guestfs_aug_ls"
6953 msgstr ""
6954
6955 #. type: verbatim
6956 #: ../src/guestfs-actions.pod:462
6957 #, no-wrap
6958 msgid ""
6959 " char **\n"
6960 " guestfs_aug_ls (guestfs_h *g,\n"
6961 "                 const char *augpath);\n"
6962 "\n"
6963 msgstr ""
6964
6965 #. type: textblock
6966 #: ../src/guestfs-actions.pod:466
6967 msgid ""
6968 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6969 "sorting the resulting nodes into alphabetical order."
6970 msgstr ""
6971
6972 #. type: textblock
6973 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6974 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1138
6975 #: ../src/guestfs-actions.pod:1434 ../src/guestfs-actions.pod:1453
6976 #: ../src/guestfs-actions.pod:1556 ../src/guestfs-actions.pod:1575
6977 #: ../src/guestfs-actions.pod:1821 ../src/guestfs-actions.pod:2274
6978 #: ../src/guestfs-actions.pod:2290 ../src/guestfs-actions.pod:2309
6979 #: ../src/guestfs-actions.pod:2352 ../src/guestfs-actions.pod:2376
6980 #: ../src/guestfs-actions.pod:2447 ../src/guestfs-actions.pod:2496
6981 #: ../src/guestfs-actions.pod:2753 ../src/guestfs-actions.pod:3127
6982 #: ../src/guestfs-actions.pod:3403 ../src/guestfs-actions.pod:3717
6983 #: ../src/guestfs-actions.pod:3734 ../src/guestfs-actions.pod:3754
6984 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3921
6985 #: ../src/guestfs-actions.pod:4329 ../src/guestfs-actions.pod:5096
6986 #: ../src/guestfs-actions.pod:5708 ../src/guestfs-actions.pod:5834
6987 #: ../src/guestfs-actions.pod:5948 ../src/guestfs-actions.pod:6697
6988 #: ../src/guestfs-actions.pod:6758 ../src/guestfs-actions.pod:6813
6989 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:6983
6990 #: ../src/guestfs-actions.pod:7459 ../src/guestfs-actions.pod:7479
6991 #: ../src/guestfs-actions.pod:7526 ../src/guestfs-actions.pod:7718
6992 #: ../src/guestfs-actions.pod:7737 ../src/guestfs-actions.pod:7823
6993 #: ../src/guestfs-actions.pod:7842 ../src/guestfs-actions.pod:7888
6994 #: ../src/guestfs-actions.pod:7907
6995 msgid ""
6996 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6997 ">), or NULL if there was an error.  I<The caller must free the strings and "
6998 "the array after use>."
6999 msgstr ""
7000
7001 #. type: textblock
7002 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1063
7003 #: ../src/guestfs-actions.pod:1081 ../src/guestfs-actions.pod:1491
7004 #: ../src/guestfs-actions.pod:3481 ../src/guestfs-actions.pod:3512
7005 #: ../src/guestfs-actions.pod:4170 ../src/guestfs-actions.pod:4220
7006 #: ../src/guestfs-actions.pod:4407 ../src/guestfs-actions.pod:4440
7007 #: ../src/guestfs-actions.pod:4603 ../src/guestfs-actions.pod:5100
7008 #: ../src/guestfs-actions.pod:5649 ../src/guestfs-actions.pod:6046
7009 #: ../src/guestfs-actions.pod:6060 ../src/guestfs-actions.pod:6072
7010 #: ../src/guestfs-actions.pod:6538 ../src/guestfs-actions.pod:7197
7011 #: ../src/guestfs-actions.pod:7210 ../src/guestfs-actions.pod:7443
7012 #: ../src/guestfs-actions.pod:7706
7013 msgid "(Added in 0.8)"
7014 msgstr ""
7015
7016 #. type: =head2
7017 #: ../src/guestfs-actions.pod:475
7018 msgid "guestfs_aug_match"
7019 msgstr ""
7020
7021 #. type: verbatim
7022 #: ../src/guestfs-actions.pod:477
7023 #, no-wrap
7024 msgid ""
7025 " char **\n"
7026 " guestfs_aug_match (guestfs_h *g,\n"
7027 "                    const char *augpath);\n"
7028 "\n"
7029 msgstr ""
7030
7031 #. type: textblock
7032 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
7033 msgid ""
7034 "Returns a list of paths which match the path expression C<path>.  The "
7035 "returned paths are sufficiently qualified so that they match exactly one "
7036 "node in the current tree."
7037 msgstr ""
7038
7039 #. type: =head2
7040 #: ../src/guestfs-actions.pod:491
7041 msgid "guestfs_aug_mv"
7042 msgstr ""
7043
7044 #. type: verbatim
7045 #: ../src/guestfs-actions.pod:493
7046 #, no-wrap
7047 msgid ""
7048 " int\n"
7049 " guestfs_aug_mv (guestfs_h *g,\n"
7050 "                 const char *src,\n"
7051 "                 const char *dest);\n"
7052 "\n"
7053 msgstr ""
7054
7055 #. type: textblock
7056 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
7057 msgid ""
7058 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7059 "C<dest> is overwritten if it exists."
7060 msgstr ""
7061
7062 #. type: =head2
7063 #: ../src/guestfs-actions.pod:505
7064 msgid "guestfs_aug_rm"
7065 msgstr ""
7066
7067 #. type: verbatim
7068 #: ../src/guestfs-actions.pod:507
7069 #, no-wrap
7070 msgid ""
7071 " int\n"
7072 " guestfs_aug_rm (guestfs_h *g,\n"
7073 "                 const char *augpath);\n"
7074 "\n"
7075 msgstr ""
7076
7077 #. type: textblock
7078 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
7079 msgid "Remove C<path> and all of its children."
7080 msgstr ""
7081
7082 #. type: textblock
7083 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
7084 msgid "On success this returns the number of entries which were removed."
7085 msgstr ""
7086
7087 #. type: =head2
7088 #: ../src/guestfs-actions.pod:519
7089 msgid "guestfs_aug_save"
7090 msgstr ""
7091
7092 #. type: verbatim
7093 #: ../src/guestfs-actions.pod:521
7094 #, no-wrap
7095 msgid ""
7096 " int\n"
7097 " guestfs_aug_save (guestfs_h *g);\n"
7098 "\n"
7099 msgstr ""
7100
7101 #. type: textblock
7102 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7103 msgid "This writes all pending changes to disk."
7104 msgstr ""
7105
7106 #. type: textblock
7107 #: ../src/guestfs-actions.pod:526
7108 msgid ""
7109 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7110 "are saved."
7111 msgstr ""
7112
7113 #. type: =head2
7114 #: ../src/guestfs-actions.pod:533
7115 msgid "guestfs_aug_set"
7116 msgstr ""
7117
7118 #. type: verbatim
7119 #: ../src/guestfs-actions.pod:535
7120 #, no-wrap
7121 msgid ""
7122 " int\n"
7123 " guestfs_aug_set (guestfs_h *g,\n"
7124 "                  const char *augpath,\n"
7125 "                  const char *val);\n"
7126 "\n"
7127 msgstr ""
7128
7129 #. type: textblock
7130 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7131 msgid "Set the value associated with C<path> to C<val>."
7132 msgstr ""
7133
7134 #. type: textblock
7135 #: ../src/guestfs-actions.pod:542
7136 msgid ""
7137 "In the Augeas API, it is possible to clear a node by setting the value to "
7138 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7139 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7140 msgstr ""
7141
7142 #. type: =head2
7143 #: ../src/guestfs-actions.pod:551
7144 msgid "guestfs_available"
7145 msgstr ""
7146
7147 #. type: verbatim
7148 #: ../src/guestfs-actions.pod:553
7149 #, no-wrap
7150 msgid ""
7151 " int\n"
7152 " guestfs_available (guestfs_h *g,\n"
7153 "                    char *const *groups);\n"
7154 "\n"
7155 msgstr ""
7156
7157 #. type: textblock
7158 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7159 msgid ""
7160 "This command is used to check the availability of some groups of "
7161 "functionality in the appliance, which not all builds of the libguestfs "
7162 "appliance will be able to provide."
7163 msgstr ""
7164
7165 #. type: textblock
7166 #: ../src/guestfs-actions.pod:561
7167 msgid ""
7168 "The libguestfs groups, and the functions that those groups correspond to, "
7169 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7170 "runtime by calling C<guestfs_available_all_groups>."
7171 msgstr ""
7172
7173 #. type: textblock
7174 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7175 msgid ""
7176 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7177 "\"]> would check for the availability of the Linux inotify functions and "
7178 "Augeas (configuration file editing) functions."
7179 msgstr ""
7180
7181 #. type: textblock
7182 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7183 msgid "The command returns no error if I<all> requested groups are available."
7184 msgstr ""
7185
7186 #. type: textblock
7187 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7188 msgid ""
7189 "It fails with an error if one or more of the requested groups is unavailable "
7190 "in the appliance."
7191 msgstr ""
7192
7193 #. type: textblock
7194 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7195 msgid ""
7196 "If an unknown group name is included in the list of groups then an error is "
7197 "always returned."
7198 msgstr ""
7199
7200 #. type: textblock
7201 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7202 msgid "I<Notes:>"
7203 msgstr "I<Нотатки:>"
7204
7205 #. type: textblock
7206 #: ../src/guestfs-actions.pod:585
7207 msgid "You must call C<guestfs_launch> before calling this function."
7208 msgstr ""
7209
7210 #. type: textblock
7211 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7212 msgid ""
7213 "The reason is because we don't know what groups are supported by the "
7214 "appliance/daemon until it is running and can be queried."
7215 msgstr ""
7216
7217 #. type: textblock
7218 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7219 msgid ""
7220 "If a group of functions is available, this does not necessarily mean that "
7221 "they will work.  You still have to check for errors when calling individual "
7222 "API functions even if they are available."
7223 msgstr ""
7224
7225 #. type: textblock
7226 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7227 msgid ""
7228 "It is usually the job of distro packagers to build complete functionality "
7229 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7230 "with all requirements satisfied, will support everything."
7231 msgstr ""
7232
7233 #. type: textblock
7234 #: ../src/guestfs-actions.pod:607
7235 msgid ""
7236 "This call was added in version C<1.0.80>.  In previous versions of "
7237 "libguestfs all you could do would be to speculatively execute a command to "
7238 "find out if the daemon implemented it.  See also C<guestfs_version>."
7239 msgstr ""
7240
7241 #. type: textblock
7242 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1236
7243 msgid "(Added in 1.0.80)"
7244 msgstr ""
7245
7246 #. type: =head2
7247 #: ../src/guestfs-actions.pod:618
7248 msgid "guestfs_available_all_groups"
7249 msgstr ""
7250
7251 #. type: verbatim
7252 #: ../src/guestfs-actions.pod:620
7253 #, no-wrap
7254 msgid ""
7255 " char **\n"
7256 " guestfs_available_all_groups (guestfs_h *g);\n"
7257 "\n"
7258 msgstr ""
7259
7260 #. type: textblock
7261 #: ../src/guestfs-actions.pod:623
7262 msgid ""
7263 "This command returns a list of all optional groups that this daemon knows "
7264 "about.  Note this returns both supported and unsupported groups.  To find "
7265 "out which ones the daemon can actually support you have to call "
7266 "C<guestfs_available> on each member of the returned list."
7267 msgstr ""
7268
7269 #. type: textblock
7270 #: ../src/guestfs-actions.pod:629
7271 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7272 msgstr ""
7273
7274 #. type: textblock
7275 #: ../src/guestfs-actions.pod:635
7276 msgid "(Added in 1.3.15)"
7277 msgstr ""
7278
7279 #. type: =head2
7280 #: ../src/guestfs-actions.pod:637
7281 msgid "guestfs_base64_in"
7282 msgstr ""
7283
7284 #. type: verbatim
7285 #: ../src/guestfs-actions.pod:639
7286 #, no-wrap
7287 msgid ""
7288 " int\n"
7289 " guestfs_base64_in (guestfs_h *g,\n"
7290 "                    const char *base64file,\n"
7291 "                    const char *filename);\n"
7292 "\n"
7293 msgstr ""
7294
7295 #. type: textblock
7296 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7297 msgid ""
7298 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7299 msgstr ""
7300
7301 #. type: textblock
7302 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7303 msgid "(Added in 1.3.5)"
7304 msgstr ""
7305
7306 #. type: =head2
7307 #: ../src/guestfs-actions.pod:651
7308 msgid "guestfs_base64_out"
7309 msgstr ""
7310
7311 #. type: verbatim
7312 #: ../src/guestfs-actions.pod:653
7313 #, no-wrap
7314 msgid ""
7315 " int\n"
7316 " guestfs_base64_out (guestfs_h *g,\n"
7317 "                     const char *filename,\n"
7318 "                     const char *base64file);\n"
7319 "\n"
7320 msgstr ""
7321
7322 #. type: textblock
7323 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7324 msgid ""
7325 "This command downloads the contents of C<filename>, writing it out to local "
7326 "file C<base64file> encoded as base64."
7327 msgstr ""
7328
7329 #. type: =head2
7330 #: ../src/guestfs-actions.pod:665
7331 msgid "guestfs_blockdev_flushbufs"
7332 msgstr ""
7333
7334 #. type: verbatim
7335 #: ../src/guestfs-actions.pod:667
7336 #, no-wrap
7337 msgid ""
7338 " int\n"
7339 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7340 "                             const char *device);\n"
7341 "\n"
7342 msgstr ""
7343
7344 #. type: textblock
7345 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7346 msgid ""
7347 "This tells the kernel to flush internal buffers associated with C<device>."
7348 msgstr ""
7349
7350 #. type: textblock
7351 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7352 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7353 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7354 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7355 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7356 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7357 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7358 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7359 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7360 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7361 msgid "This uses the L<blockdev(8)> command."
7362 msgstr ""
7363
7364 #. type: textblock
7365 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7366 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7367 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7368 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7369 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7370 msgid "(Added in 0.9.3)"
7371 msgstr ""
7372
7373 #. type: =head2
7374 #: ../src/guestfs-actions.pod:680
7375 msgid "guestfs_blockdev_getbsz"
7376 msgstr ""
7377
7378 #. type: verbatim
7379 #: ../src/guestfs-actions.pod:682
7380 #, no-wrap
7381 msgid ""
7382 " int\n"
7383 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7384 "                          const char *device);\n"
7385 "\n"
7386 msgstr ""
7387
7388 #. type: textblock
7389 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7390 msgid "This returns the block size of a device."
7391 msgstr ""
7392
7393 #. type: textblock
7394 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7395 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7396 msgid ""
7397 "(Note this is different from both I<size in blocks> and I<filesystem block "
7398 "size>)."
7399 msgstr ""
7400
7401 #. type: =head2
7402 #: ../src/guestfs-actions.pod:697
7403 msgid "guestfs_blockdev_getro"
7404 msgstr ""
7405
7406 #. type: verbatim
7407 #: ../src/guestfs-actions.pod:699
7408 #, no-wrap
7409 msgid ""
7410 " int\n"
7411 " guestfs_blockdev_getro (guestfs_h *g,\n"
7412 "                         const char *device);\n"
7413 "\n"
7414 msgstr ""
7415
7416 #. type: textblock
7417 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7418 msgid ""
7419 "Returns a boolean indicating if the block device is read-only (true if read-"
7420 "only, false if not)."
7421 msgstr ""
7422
7423 #. type: textblock
7424 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1474
7425 #: ../src/guestfs-actions.pod:1489 ../src/guestfs-actions.pod:1978
7426 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:2061
7427 #: ../src/guestfs-actions.pod:2087 ../src/guestfs-actions.pod:2125
7428 #: ../src/guestfs-actions.pod:2140 ../src/guestfs-actions.pod:2165
7429 #: ../src/guestfs-actions.pod:2188 ../src/guestfs-actions.pod:3224
7430 #: ../src/guestfs-actions.pod:3240 ../src/guestfs-actions.pod:3258
7431 #: ../src/guestfs-actions.pod:3420 ../src/guestfs-actions.pod:3434
7432 #: ../src/guestfs-actions.pod:3449 ../src/guestfs-actions.pod:3463
7433 #: ../src/guestfs-actions.pod:3479 ../src/guestfs-actions.pod:3494
7434 #: ../src/guestfs-actions.pod:3510 ../src/guestfs-actions.pod:3524
7435 #: ../src/guestfs-actions.pod:3537 ../src/guestfs-actions.pod:3551
7436 #: ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3581
7437 #: ../src/guestfs-actions.pod:3594 ../src/guestfs-actions.pod:3608
7438 #: ../src/guestfs-actions.pod:5337
7439 msgid "This function returns a C truth value on success or -1 on error."
7440 msgstr ""
7441
7442 #. type: =head2
7443 #: ../src/guestfs-actions.pod:712
7444 msgid "guestfs_blockdev_getsize64"
7445 msgstr ""
7446
7447 #. type: verbatim
7448 #: ../src/guestfs-actions.pod:714
7449 #, no-wrap
7450 msgid ""
7451 " int64_t\n"
7452 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7453 "                             const char *device);\n"
7454 "\n"
7455 msgstr ""
7456
7457 #. type: textblock
7458 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7459 msgid "This returns the size of the device in bytes."
7460 msgstr ""
7461
7462 #. type: textblock
7463 #: ../src/guestfs-actions.pod:720
7464 msgid "See also C<guestfs_blockdev_getsz>."
7465 msgstr ""
7466
7467 #. type: =head2
7468 #: ../src/guestfs-actions.pod:728
7469 msgid "guestfs_blockdev_getss"
7470 msgstr ""
7471
7472 #. type: verbatim
7473 #: ../src/guestfs-actions.pod:730
7474 #, no-wrap
7475 msgid ""
7476 " int\n"
7477 " guestfs_blockdev_getss (guestfs_h *g,\n"
7478 "                         const char *device);\n"
7479 "\n"
7480 msgstr ""
7481
7482 #. type: textblock
7483 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7484 msgid ""
7485 "This returns the size of sectors on a block device.  Usually 512, but can be "
7486 "larger for modern devices."
7487 msgstr ""
7488
7489 #. type: textblock
7490 #: ../src/guestfs-actions.pod:737
7491 msgid ""
7492 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7493 "that)."
7494 msgstr ""
7495
7496 #. type: =head2
7497 #: ../src/guestfs-actions.pod:746
7498 msgid "guestfs_blockdev_getsz"
7499 msgstr ""
7500
7501 #. type: verbatim
7502 #: ../src/guestfs-actions.pod:748
7503 #, no-wrap
7504 msgid ""
7505 " int64_t\n"
7506 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7507 "                         const char *device);\n"
7508 "\n"
7509 msgstr ""
7510
7511 #. type: textblock
7512 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7513 msgid ""
7514 "This returns the size of the device in units of 512-byte sectors (even if "
7515 "the sectorsize isn't 512 bytes ... weird)."
7516 msgstr ""
7517
7518 #. type: textblock
7519 #: ../src/guestfs-actions.pod:755
7520 msgid ""
7521 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7522 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7523 msgstr ""
7524
7525 #. type: =head2
7526 #: ../src/guestfs-actions.pod:765
7527 msgid "guestfs_blockdev_rereadpt"
7528 msgstr ""
7529
7530 #. type: verbatim
7531 #: ../src/guestfs-actions.pod:767
7532 #, no-wrap
7533 msgid ""
7534 " int\n"
7535 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7536 "                            const char *device);\n"
7537 "\n"
7538 msgstr ""
7539
7540 #. type: textblock
7541 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7542 msgid "Reread the partition table on C<device>."
7543 msgstr ""
7544
7545 #. type: =head2
7546 #: ../src/guestfs-actions.pod:779
7547 msgid "guestfs_blockdev_setbsz"
7548 msgstr ""
7549
7550 #. type: verbatim
7551 #: ../src/guestfs-actions.pod:781
7552 #, no-wrap
7553 msgid ""
7554 " int\n"
7555 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7556 "                          const char *device,\n"
7557 "                          int blocksize);\n"
7558 "\n"
7559 msgstr ""
7560
7561 #. type: textblock
7562 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7563 msgid "This sets the block size of a device."
7564 msgstr ""
7565
7566 #. type: =head2
7567 #: ../src/guestfs-actions.pod:797
7568 msgid "guestfs_blockdev_setro"
7569 msgstr ""
7570
7571 #. type: verbatim
7572 #: ../src/guestfs-actions.pod:799
7573 #, no-wrap
7574 msgid ""
7575 " int\n"
7576 " guestfs_blockdev_setro (guestfs_h *g,\n"
7577 "                         const char *device);\n"
7578 "\n"
7579 msgstr ""
7580
7581 #. type: textblock
7582 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7583 msgid "Sets the block device named C<device> to read-only."
7584 msgstr ""
7585
7586 #. type: =head2
7587 #: ../src/guestfs-actions.pod:811
7588 msgid "guestfs_blockdev_setrw"
7589 msgstr ""
7590
7591 #. type: verbatim
7592 #: ../src/guestfs-actions.pod:813
7593 #, no-wrap
7594 msgid ""
7595 " int\n"
7596 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7597 "                         const char *device);\n"
7598 "\n"
7599 msgstr ""
7600
7601 #. type: textblock
7602 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7603 msgid "Sets the block device named C<device> to read-write."
7604 msgstr ""
7605
7606 #. type: =head2
7607 #: ../src/guestfs-actions.pod:825
7608 msgid "guestfs_btrfs_filesystem_resize"
7609 msgstr ""
7610
7611 #. type: verbatim
7612 #: ../src/guestfs-actions.pod:827
7613 #, no-wrap
7614 msgid ""
7615 " int\n"
7616 " guestfs_btrfs_filesystem_resize (guestfs_h *g,\n"
7617 "                                  const char *mountpoint,\n"
7618 "                                  ...);\n"
7619 "\n"
7620 msgstr ""
7621
7622 #. type: verbatim
7623 #: ../src/guestfs-actions.pod:837
7624 #, no-wrap
7625 msgid ""
7626 " GUESTFS_BTRFS_FILESYSTEM_RESIZE_SIZE, int64_t size,\n"
7627 "\n"
7628 msgstr ""
7629
7630 #. type: textblock
7631 #: ../src/guestfs-actions.pod:839 ../fish/guestfish-actions.pod:549
7632 msgid "This command resizes a btrfs filesystem."
7633 msgstr ""
7634
7635 #. type: textblock
7636 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:551
7637 msgid ""
7638 "Note that unlike other resize calls, the filesystem has to be mounted and "
7639 "the parameter is the mountpoint not the device (this is a requirement of "
7640 "btrfs itself)."
7641 msgstr ""
7642
7643 #. type: textblock
7644 #: ../src/guestfs-actions.pod:845 ../src/guestfs-actions.pod:5187
7645 #: ../fish/guestfish-actions.pod:555 ../fish/guestfish-actions.pod:3417
7646 msgid "The optional parameters are:"
7647 msgstr ""
7648
7649 #. type: =item
7650 #: ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:5191
7651 #: ../fish/guestfish-actions.pod:559 ../fish/guestfish-actions.pod:3421
7652 #, fuzzy
7653 #| msgid "C<inspector>"
7654 msgid "C<size>"
7655 msgstr "C<inspector>"
7656
7657 #. type: textblock
7658 #: ../src/guestfs-actions.pod:851 ../fish/guestfish-actions.pod:561
7659 msgid ""
7660 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
7661 "resized to the maximum size."
7662 msgstr ""
7663
7664 #. type: textblock
7665 #: ../src/guestfs-actions.pod:856 ../fish/guestfish-actions.pod:566
7666 #, fuzzy
7667 #| msgid "See L<guestfish(1)>."
7668 msgid "See also L<btrfs(8)>."
7669 msgstr "Див. L<guestfish(1)>."
7670
7671 #. type: textblock
7672 #: ../src/guestfs-actions.pod:860
7673 msgid "(Added in 1.11.17)"
7674 msgstr ""
7675
7676 #. type: =head2
7677 #: ../src/guestfs-actions.pod:862
7678 msgid "guestfs_btrfs_filesystem_resize_va"
7679 msgstr ""
7680
7681 #. type: verbatim
7682 #: ../src/guestfs-actions.pod:864
7683 #, no-wrap
7684 msgid ""
7685 " int\n"
7686 " guestfs_btrfs_filesystem_resize_va (guestfs_h *g,\n"
7687 "                                     const char *mountpoint,\n"
7688 "                                     va_list args);\n"
7689 "\n"
7690 msgstr ""
7691
7692 #. type: textblock
7693 #: ../src/guestfs-actions.pod:869
7694 msgid "This is the \"va_list variant\" of L</guestfs_btrfs_filesystem_resize>."
7695 msgstr ""
7696
7697 #. type: =head2
7698 #: ../src/guestfs-actions.pod:873
7699 msgid "guestfs_btrfs_filesystem_resize_argv"
7700 msgstr ""
7701
7702 #. type: verbatim
7703 #: ../src/guestfs-actions.pod:875
7704 #, no-wrap
7705 msgid ""
7706 " int\n"
7707 " guestfs_btrfs_filesystem_resize_argv (guestfs_h *g,\n"
7708 "                                       const char *mountpoint,\n"
7709 "                                       const struct guestfs_btrfs_filesystem_resize_argv *optargs);\n"
7710 "\n"
7711 msgstr ""
7712
7713 #. type: textblock
7714 #: ../src/guestfs-actions.pod:880
7715 msgid "This is the \"argv variant\" of L</guestfs_btrfs_filesystem_resize>."
7716 msgstr ""
7717
7718 #. type: =head2
7719 #: ../src/guestfs-actions.pod:884
7720 msgid "guestfs_case_sensitive_path"
7721 msgstr ""
7722
7723 #. type: verbatim
7724 #: ../src/guestfs-actions.pod:886
7725 #, no-wrap
7726 msgid ""
7727 " char *\n"
7728 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7729 "                              const char *path);\n"
7730 "\n"
7731 msgstr ""
7732
7733 #. type: textblock
7734 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:574
7735 msgid ""
7736 "This can be used to resolve case insensitive paths on a filesystem which is "
7737 "case sensitive.  The use case is to resolve paths which you have read from "
7738 "Windows configuration files or the Windows Registry, to the true path."
7739 msgstr ""
7740
7741 #. type: textblock
7742 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:579
7743 msgid ""
7744 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7745 "(and probably others), which is that although the underlying filesystem is "
7746 "case-insensitive, the driver exports the filesystem to Linux as case-"
7747 "sensitive."
7748 msgstr ""
7749
7750 #. type: textblock
7751 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:584
7752 msgid ""
7753 "One consequence of this is that special directories such as C<c:\\windows> "
7754 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7755 "precise details of how they were created.  In Windows itself this would not "
7756 "be a problem."
7757 msgstr ""
7758
7759 #. type: textblock
7760 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:590
7761 msgid ""
7762 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7763 "#posixfilenames1>"
7764 msgstr ""
7765
7766 #. type: textblock
7767 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:593
7768 msgid ""
7769 "This function resolves the true case of each element in the path and returns "
7770 "the case-sensitive path."
7771 msgstr ""
7772
7773 #. type: textblock
7774 #: ../src/guestfs-actions.pod:912
7775 msgid ""
7776 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7777 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7778 "how the directories were originally created under Windows)."
7779 msgstr ""
7780
7781 #. type: textblock
7782 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:601
7783 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7784 msgstr ""
7785
7786 #. type: textblock
7787 #: ../src/guestfs-actions.pod:920
7788 msgid "See also C<guestfs_realpath>."
7789 msgstr ""
7790
7791 #. type: textblock
7792 #: ../src/guestfs-actions.pod:925 ../src/guestfs-actions.pod:7377
7793 msgid "(Added in 1.0.75)"
7794 msgstr ""
7795
7796 #. type: =head2
7797 #: ../src/guestfs-actions.pod:927
7798 msgid "guestfs_cat"
7799 msgstr ""
7800
7801 #. type: verbatim
7802 #: ../src/guestfs-actions.pod:929
7803 #, no-wrap
7804 msgid ""
7805 " char *\n"
7806 " guestfs_cat (guestfs_h *g,\n"
7807 "              const char *path);\n"
7808 "\n"
7809 msgstr ""
7810
7811 #. type: textblock
7812 #: ../src/guestfs-actions.pod:933 ../src/guestfs-actions.pod:5824
7813 #: ../fish/guestfish-actions.pod:610 ../fish/guestfish-actions.pod:3831
7814 msgid "Return the contents of the file named C<path>."
7815 msgstr ""
7816
7817 #. type: textblock
7818 #: ../src/guestfs-actions.pod:935
7819 msgid ""
7820 "Note that this function cannot correctly handle binary files (specifically, "
7821 "files containing C<\\0> character which is treated as end of string).  For "
7822 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7823 "functions which have a more complex interface."
7824 msgstr ""
7825
7826 #. type: textblock
7827 #: ../src/guestfs-actions.pod:943 ../src/guestfs-actions.pod:1122
7828 #: ../src/guestfs-actions.pod:1142 ../src/guestfs-actions.pod:1438
7829 #: ../src/guestfs-actions.pod:1457 ../src/guestfs-actions.pod:1560
7830 #: ../src/guestfs-actions.pod:1579 ../src/guestfs-actions.pod:1825
7831 #: ../src/guestfs-actions.pod:2294 ../src/guestfs-actions.pod:2313
7832 #: ../src/guestfs-actions.pod:2356 ../src/guestfs-actions.pod:2380
7833 #: ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2426
7834 #: ../src/guestfs-actions.pod:5606 ../src/guestfs-actions.pod:5632
7835 #: ../src/guestfs-actions.pod:5763 ../src/guestfs-actions.pod:5789
7836 #: ../src/guestfs-actions.pod:5813 ../src/guestfs-actions.pod:6762
7837 #: ../src/guestfs-actions.pod:6817 ../src/guestfs-actions.pod:6963
7838 #: ../src/guestfs-actions.pod:6987 ../src/guestfs-actions.pod:7652
7839 #: ../src/guestfs-actions.pod:7672 ../src/guestfs-actions.pod:7696
7840 #: ../src/guestfs-actions.pod:7722 ../src/guestfs-actions.pod:7741
7841 #: ../src/guestfs-actions.pod:7827 ../src/guestfs-actions.pod:7846
7842 #: ../src/guestfs-actions.pod:7892 ../src/guestfs-actions.pod:7911
7843 #: ../fish/guestfish-actions.pod:617 ../fish/guestfish-actions.pod:752
7844 #: ../fish/guestfish-actions.pod:764 ../fish/guestfish-actions.pod:940
7845 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:1017
7846 #: ../fish/guestfish-actions.pod:1027 ../fish/guestfish-actions.pod:1219
7847 #: ../fish/guestfish-actions.pod:1526 ../fish/guestfish-actions.pod:1536
7848 #: ../fish/guestfish-actions.pod:1564 ../fish/guestfish-actions.pod:1579
7849 #: ../fish/guestfish-actions.pod:1589 ../fish/guestfish-actions.pod:1608
7850 #: ../fish/guestfish-actions.pod:3701 ../fish/guestfish-actions.pod:3716
7851 #: ../fish/guestfish-actions.pod:3792 ../fish/guestfish-actions.pod:3809
7852 #: ../fish/guestfish-actions.pod:3824 ../fish/guestfish-actions.pod:4493
7853 #: ../fish/guestfish-actions.pod:4539 ../fish/guestfish-actions.pod:4624
7854 #: ../fish/guestfish-actions.pod:4639 ../fish/guestfish-actions.pod:5045
7855 #: ../fish/guestfish-actions.pod:5057 ../fish/guestfish-actions.pod:5075
7856 #: ../fish/guestfish-actions.pod:5092 ../fish/guestfish-actions.pod:5102
7857 #: ../fish/guestfish-actions.pod:5151 ../fish/guestfish-actions.pod:5161
7858 #: ../fish/guestfish-actions.pod:5190 ../fish/guestfish-actions.pod:5200
7859 msgid ""
7860 "Because of the message protocol, there is a transfer limit of somewhere "
7861 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7862 msgstr ""
7863
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:3738
7866 #: ../src/guestfs-actions.pod:3820 ../src/guestfs-actions.pod:3837
7867 #: ../src/guestfs-actions.pod:3925 ../src/guestfs-actions.pod:4333
7868 #: ../src/guestfs-actions.pod:4347 ../src/guestfs-actions.pod:5712
7869 #: ../src/guestfs-actions.pod:5726 ../src/guestfs-actions.pod:7530
7870 #: ../src/guestfs-actions.pod:7544
7871 msgid "(Added in 0.4)"
7872 msgstr ""
7873
7874 #. type: =head2
7875 #: ../src/guestfs-actions.pod:948
7876 msgid "guestfs_checksum"
7877 msgstr ""
7878
7879 #. type: verbatim
7880 #: ../src/guestfs-actions.pod:950
7881 #, no-wrap
7882 msgid ""
7883 " char *\n"
7884 " guestfs_checksum (guestfs_h *g,\n"
7885 "                   const char *csumtype,\n"
7886 "                   const char *path);\n"
7887 "\n"
7888 msgstr ""
7889
7890 #. type: textblock
7891 #: ../src/guestfs-actions.pod:955 ../fish/guestfish-actions.pod:624
7892 msgid ""
7893 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7894 msgstr ""
7895
7896 #. type: textblock
7897 #: ../src/guestfs-actions.pod:958 ../fish/guestfish-actions.pod:627
7898 msgid ""
7899 "The type of checksum to compute is given by the C<csumtype> parameter which "
7900 "must have one of the following values:"
7901 msgstr ""
7902
7903 #. type: =item
7904 #: ../src/guestfs-actions.pod:963 ../fish/guestfish-actions.pod:632
7905 msgid "C<crc>"
7906 msgstr "C<crc>"
7907
7908 #. type: textblock
7909 #: ../src/guestfs-actions.pod:965 ../fish/guestfish-actions.pod:634
7910 msgid ""
7911 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7912 "C<cksum> command."
7913 msgstr ""
7914
7915 #. type: =item
7916 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:637
7917 msgid "C<md5>"
7918 msgstr "C<md5>"
7919
7920 #. type: textblock
7921 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:639
7922 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7923 msgstr ""
7924
7925 #. type: =item
7926 #: ../src/guestfs-actions.pod:972 ../fish/guestfish-actions.pod:641
7927 msgid "C<sha1>"
7928 msgstr "C<sha1>"
7929
7930 #. type: textblock
7931 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:643
7932 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7933 msgstr ""
7934
7935 #. type: =item
7936 #: ../src/guestfs-actions.pod:976 ../fish/guestfish-actions.pod:645
7937 msgid "C<sha224>"
7938 msgstr "C<sha224>"
7939
7940 #. type: textblock
7941 #: ../src/guestfs-actions.pod:978 ../fish/guestfish-actions.pod:647
7942 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7943 msgstr ""
7944
7945 #. type: =item
7946 #: ../src/guestfs-actions.pod:980 ../fish/guestfish-actions.pod:649
7947 msgid "C<sha256>"
7948 msgstr "C<sha256>"
7949
7950 #. type: textblock
7951 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:651
7952 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7953 msgstr ""
7954
7955 #. type: =item
7956 #: ../src/guestfs-actions.pod:984 ../fish/guestfish-actions.pod:653
7957 msgid "C<sha384>"
7958 msgstr "C<sha384>"
7959
7960 #. type: textblock
7961 #: ../src/guestfs-actions.pod:986 ../fish/guestfish-actions.pod:655
7962 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7963 msgstr ""
7964
7965 #. type: =item
7966 #: ../src/guestfs-actions.pod:988 ../fish/guestfish-actions.pod:657
7967 msgid "C<sha512>"
7968 msgstr "C<sha512>"
7969
7970 #. type: textblock
7971 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:659
7972 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7973 msgstr ""
7974
7975 #. type: textblock
7976 #: ../src/guestfs-actions.pod:994 ../fish/guestfish-actions.pod:663
7977 msgid "The checksum is returned as a printable string."
7978 msgstr ""
7979
7980 #. type: textblock
7981 #: ../src/guestfs-actions.pod:996
7982 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7983 msgstr ""
7984
7985 #. type: textblock
7986 #: ../src/guestfs-actions.pod:998
7987 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7988 msgstr ""
7989
7990 #. type: textblock
7991 #: ../src/guestfs-actions.pod:1003 ../src/guestfs-actions.pod:1311
7992 #: ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:3436
7993 #: ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3526
7994 #: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:7233
7995 msgid "(Added in 1.0.2)"
7996 msgstr ""
7997
7998 #. type: =head2
7999 #: ../src/guestfs-actions.pod:1005
8000 msgid "guestfs_checksum_device"
8001 msgstr ""
8002
8003 #. type: verbatim
8004 #: ../src/guestfs-actions.pod:1007
8005 #, no-wrap
8006 msgid ""
8007 " char *\n"
8008 " guestfs_checksum_device (guestfs_h *g,\n"
8009 "                          const char *csumtype,\n"
8010 "                          const char *device);\n"
8011 "\n"
8012 msgstr ""
8013
8014 #. type: textblock
8015 #: ../src/guestfs-actions.pod:1012
8016 msgid ""
8017 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
8018 "device named C<device>.  For the types of checksums supported see the "
8019 "C<guestfs_checksum> command."
8020 msgstr ""
8021
8022 #. type: textblock
8023 #: ../src/guestfs-actions.pod:1019 ../src/guestfs-actions.pod:5167
8024 #: ../src/guestfs-actions.pod:5302 ../src/guestfs-actions.pod:5339
8025 #: ../src/guestfs-actions.pod:5357 ../src/guestfs-actions.pod:5533
8026 #: ../src/guestfs-actions.pod:7142 ../src/guestfs-actions.pod:7156
8027 #: ../src/guestfs-actions.pod:7556
8028 msgid "(Added in 1.3.2)"
8029 msgstr ""
8030
8031 #. type: =head2
8032 #: ../src/guestfs-actions.pod:1021
8033 msgid "guestfs_checksums_out"
8034 msgstr ""
8035
8036 #. type: verbatim
8037 #: ../src/guestfs-actions.pod:1023
8038 #, no-wrap
8039 msgid ""
8040 " int\n"
8041 " guestfs_checksums_out (guestfs_h *g,\n"
8042 "                        const char *csumtype,\n"
8043 "                        const char *directory,\n"
8044 "                        const char *sumsfile);\n"
8045 "\n"
8046 msgstr ""
8047
8048 #. type: textblock
8049 #: ../src/guestfs-actions.pod:1029 ../fish/guestfish-actions.pod:681
8050 msgid ""
8051 "This command computes the checksums of all regular files in C<directory> and "
8052 "then emits a list of those checksums to the local output file C<sumsfile>."
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1033 ../fish/guestfish-actions.pod:685
8057 msgid ""
8058 "This can be used for verifying the integrity of a virtual machine.  However "
8059 "to be properly secure you should pay attention to the output of the checksum "
8060 "command (it uses the ones from GNU coreutils).  In particular when the "
8061 "filename is not printable, coreutils uses a special backslash syntax.  For "
8062 "more information, see the GNU coreutils info file."
8063 msgstr ""
8064
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:1043
8067 msgid "(Added in 1.3.7)"
8068 msgstr ""
8069
8070 #. type: =head2
8071 #: ../src/guestfs-actions.pod:1045
8072 msgid "guestfs_chmod"
8073 msgstr ""
8074
8075 #. type: verbatim
8076 #: ../src/guestfs-actions.pod:1047
8077 #, no-wrap
8078 msgid ""
8079 " int\n"
8080 " guestfs_chmod (guestfs_h *g,\n"
8081 "                int mode,\n"
8082 "                const char *path);\n"
8083 "\n"
8084 msgstr ""
8085
8086 #. type: textblock
8087 #: ../src/guestfs-actions.pod:1052 ../fish/guestfish-actions.pod:699
8088 msgid ""
8089 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8090 "supported."
8091 msgstr ""
8092
8093 #. type: textblock
8094 #: ../src/guestfs-actions.pod:1055 ../fish/guestfish-actions.pod:702
8095 msgid ""
8096 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8097 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8098 "C<700>."
8099 msgstr ""
8100
8101 #. type: textblock
8102 #: ../src/guestfs-actions.pod:1059 ../src/guestfs-actions.pod:4584
8103 #: ../src/guestfs-actions.pod:4793 ../src/guestfs-actions.pod:4812
8104 #: ../src/guestfs-actions.pod:4831 ../fish/guestfish-actions.pod:706
8105 #: ../fish/guestfish-actions.pod:3060 ../fish/guestfish-actions.pod:3199
8106 #: ../fish/guestfish-actions.pod:3209 ../fish/guestfish-actions.pod:3219
8107 msgid "The mode actually set is affected by the umask."
8108 msgstr ""
8109
8110 #. type: =head2
8111 #: ../src/guestfs-actions.pod:1065
8112 msgid "guestfs_chown"
8113 msgstr ""
8114
8115 #. type: verbatim
8116 #: ../src/guestfs-actions.pod:1067
8117 #, no-wrap
8118 msgid ""
8119 " int\n"
8120 " guestfs_chown (guestfs_h *g,\n"
8121 "                int owner,\n"
8122 "                int group,\n"
8123 "                const char *path);\n"
8124 "\n"
8125 msgstr ""
8126
8127 #. type: textblock
8128 #: ../src/guestfs-actions.pod:1073 ../fish/guestfish-actions.pod:712
8129 msgid "Change the file owner to C<owner> and group to C<group>."
8130 msgstr ""
8131
8132 #. type: textblock
8133 #: ../src/guestfs-actions.pod:1075 ../src/guestfs-actions.pod:3655
8134 #: ../fish/guestfish-actions.pod:714 ../fish/guestfish-actions.pod:2495
8135 msgid ""
8136 "Only numeric uid and gid are supported.  If you want to use names, you will "
8137 "need to locate and parse the password file yourself (Augeas support makes "
8138 "this relatively easy)."
8139 msgstr ""
8140
8141 #. type: =head2
8142 #: ../src/guestfs-actions.pod:1083
8143 msgid "guestfs_command"
8144 msgstr ""
8145
8146 #. type: verbatim
8147 #: ../src/guestfs-actions.pod:1085
8148 #, no-wrap
8149 msgid ""
8150 " char *\n"
8151 " guestfs_command (guestfs_h *g,\n"
8152 "                  char *const *arguments);\n"
8153 "\n"
8154 msgstr ""
8155
8156 #. type: textblock
8157 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:722
8158 msgid ""
8159 "This call runs a command from the guest filesystem.  The filesystem must be "
8160 "mounted, and must contain a compatible operating system (ie. something "
8161 "Linux, with the same or compatible processor architecture)."
8162 msgstr ""
8163
8164 #. type: textblock
8165 #: ../src/guestfs-actions.pod:1094
8166 msgid ""
8167 "The single parameter is an argv-style list of arguments.  The first element "
8168 "is the name of the program to run.  Subsequent elements are parameters.  The "
8169 "list must be non-empty (ie. must contain a program name).  Note that the "
8170 "command runs directly, and is I<not> invoked via the shell (see "
8171 "C<guestfs_sh>)."
8172 msgstr ""
8173
8174 #. type: textblock
8175 #: ../src/guestfs-actions.pod:1101 ../fish/guestfish-actions.pod:734
8176 msgid "The return value is anything printed to I<stdout> by the command."
8177 msgstr ""
8178
8179 #. type: textblock
8180 #: ../src/guestfs-actions.pod:1104 ../fish/guestfish-actions.pod:737
8181 msgid ""
8182 "If the command returns a non-zero exit status, then this function returns an "
8183 "error message.  The error message string is the content of I<stderr> from "
8184 "the command."
8185 msgstr ""
8186
8187 #. type: textblock
8188 #: ../src/guestfs-actions.pod:1108 ../fish/guestfish-actions.pod:741
8189 msgid ""
8190 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8191 "bin>.  If you require a program from another location, you should provide "
8192 "the full path in the first parameter."
8193 msgstr ""
8194
8195 #. type: textblock
8196 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:746
8197 msgid ""
8198 "Shared libraries and data files required by the program must be available on "
8199 "filesystems which are mounted in the correct places.  It is the caller's "
8200 "responsibility to ensure all filesystems that are needed are mounted at the "
8201 "right locations."
8202 msgstr ""
8203
8204 #. type: textblock
8205 #: ../src/guestfs-actions.pod:1125 ../src/guestfs-actions.pod:1145
8206 #: ../src/guestfs-actions.pod:1610
8207 msgid "(Added in 0.9.1)"
8208 msgstr ""
8209
8210 #. type: =head2
8211 #: ../src/guestfs-actions.pod:1127
8212 msgid "guestfs_command_lines"
8213 msgstr ""
8214
8215 #. type: verbatim
8216 #: ../src/guestfs-actions.pod:1129
8217 #, no-wrap
8218 msgid ""
8219 " char **\n"
8220 " guestfs_command_lines (guestfs_h *g,\n"
8221 "                        char *const *arguments);\n"
8222 "\n"
8223 msgstr ""
8224
8225 #. type: textblock
8226 #: ../src/guestfs-actions.pod:1133
8227 msgid ""
8228 "This is the same as C<guestfs_command>, but splits the result into a list of "
8229 "lines."
8230 msgstr ""
8231
8232 #. type: textblock
8233 #: ../src/guestfs-actions.pod:1136
8234 msgid "See also: C<guestfs_sh_lines>"
8235 msgstr ""
8236
8237 #. type: =head2
8238 #: ../src/guestfs-actions.pod:1147
8239 msgid "guestfs_config"
8240 msgstr ""
8241
8242 #. type: verbatim
8243 #: ../src/guestfs-actions.pod:1149
8244 #, no-wrap
8245 msgid ""
8246 " int\n"
8247 " guestfs_config (guestfs_h *g,\n"
8248 "                 const char *qemuparam,\n"
8249 "                 const char *qemuvalue);\n"
8250 "\n"
8251 msgstr ""
8252
8253 #. type: textblock
8254 #: ../src/guestfs-actions.pod:1154 ../fish/guestfish-actions.pod:771
8255 msgid ""
8256 "This can be used to add arbitrary qemu command line parameters of the form "
8257 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8258 "setting some parameters which would interfere with parameters that we use."
8259 msgstr ""
8260
8261 #. type: textblock
8262 #: ../src/guestfs-actions.pod:1159 ../fish/guestfish-actions.pod:776
8263 msgid "The first character of C<param> string must be a C<-> (dash)."
8264 msgstr ""
8265
8266 #. type: textblock
8267 #: ../src/guestfs-actions.pod:1161 ../fish/guestfish-actions.pod:778
8268 msgid "C<value> can be NULL."
8269 msgstr ""
8270
8271 #. type: =head2
8272 #: ../src/guestfs-actions.pod:1167
8273 msgid "guestfs_copy_size"
8274 msgstr ""
8275
8276 #. type: verbatim
8277 #: ../src/guestfs-actions.pod:1169
8278 #, no-wrap
8279 msgid ""
8280 " int\n"
8281 " guestfs_copy_size (guestfs_h *g,\n"
8282 "                    const char *src,\n"
8283 "                    const char *dest,\n"
8284 "                    int64_t size);\n"
8285 "\n"
8286 msgstr ""
8287
8288 #. type: textblock
8289 #: ../src/guestfs-actions.pod:1175 ../fish/guestfish-actions.pod:784
8290 msgid ""
8291 "This command copies exactly C<size> bytes from one source device or file "
8292 "C<src> to another destination device or file C<dest>."
8293 msgstr ""
8294
8295 #. type: textblock
8296 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:787
8297 msgid ""
8298 "Note this will fail if the source is too short or if the destination is not "
8299 "large enough."
8300 msgstr ""
8301
8302 #. type: textblock
8303 #: ../src/guestfs-actions.pod:1183 ../src/guestfs-actions.pod:1306
8304 #: ../src/guestfs-actions.pod:1337 ../src/guestfs-actions.pod:1382
8305 #: ../src/guestfs-actions.pod:1759 ../src/guestfs-actions.pod:1781
8306 #: ../src/guestfs-actions.pod:3636 ../src/guestfs-actions.pod:7228
8307 #: ../src/guestfs-actions.pod:7262 ../src/guestfs-actions.pod:7763
8308 #: ../src/guestfs-actions.pod:7782
8309 msgid ""
8310 "This long-running command can generate progress notification messages so "
8311 "that the caller can display a progress bar or indicator.  To receive these "
8312 "messages, the caller must register a progress event callback.  See L<guestfs"
8313 "(3)/GUESTFS_EVENT_PROGRESS>."
8314 msgstr ""
8315
8316 #. type: textblock
8317 #: ../src/guestfs-actions.pod:1188 ../src/guestfs-actions.pod:4360
8318 #: ../src/guestfs-actions.pod:5739 ../src/guestfs-actions.pod:7463
8319 #: ../src/guestfs-actions.pod:7483 ../src/guestfs-actions.pod:7569
8320 msgid "(Added in 1.0.87)"
8321 msgstr ""
8322
8323 #. type: =head2
8324 #: ../src/guestfs-actions.pod:1190
8325 msgid "guestfs_cp"
8326 msgstr ""
8327
8328 #. type: verbatim
8329 #: ../src/guestfs-actions.pod:1192
8330 #, no-wrap
8331 msgid ""
8332 " int\n"
8333 " guestfs_cp (guestfs_h *g,\n"
8334 "             const char *src,\n"
8335 "             const char *dest);\n"
8336 "\n"
8337 msgstr ""
8338
8339 #. type: textblock
8340 #: ../src/guestfs-actions.pod:1197 ../fish/guestfish-actions.pod:794
8341 msgid ""
8342 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8343 "destination filename or destination directory."
8344 msgstr ""
8345
8346 #. type: textblock
8347 #: ../src/guestfs-actions.pod:1202 ../src/guestfs-actions.pod:1216
8348 #: ../src/guestfs-actions.pod:1288 ../src/guestfs-actions.pod:1362
8349 #: ../src/guestfs-actions.pod:1476 ../src/guestfs-actions.pod:5114
8350 #: ../src/guestfs-actions.pod:5583
8351 msgid "(Added in 1.0.18)"
8352 msgstr ""
8353
8354 #. type: =head2
8355 #: ../src/guestfs-actions.pod:1204
8356 msgid "guestfs_cp_a"
8357 msgstr ""
8358
8359 #. type: verbatim
8360 #: ../src/guestfs-actions.pod:1206
8361 #, no-wrap
8362 msgid ""
8363 " int\n"
8364 " guestfs_cp_a (guestfs_h *g,\n"
8365 "               const char *src,\n"
8366 "               const char *dest);\n"
8367 "\n"
8368 msgstr ""
8369
8370 #. type: textblock
8371 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:801
8372 msgid ""
8373 "This copies a file or directory from C<src> to C<dest> recursively using the "
8374 "C<cp -a> command."
8375 msgstr ""
8376
8377 #. type: =head2
8378 #: ../src/guestfs-actions.pod:1218
8379 msgid "guestfs_dd"
8380 msgstr ""
8381
8382 #. type: verbatim
8383 #: ../src/guestfs-actions.pod:1220
8384 #, no-wrap
8385 msgid ""
8386 " int\n"
8387 " guestfs_dd (guestfs_h *g,\n"
8388 "             const char *src,\n"
8389 "             const char *dest);\n"
8390 "\n"
8391 msgstr ""
8392
8393 #. type: textblock
8394 #: ../src/guestfs-actions.pod:1225 ../fish/guestfish-actions.pod:808
8395 msgid ""
8396 "This command copies from one source device or file C<src> to another "
8397 "destination device or file C<dest>.  Normally you would use this to copy to "
8398 "or from a device or partition, for example to duplicate a filesystem."
8399 msgstr ""
8400
8401 #. type: textblock
8402 #: ../src/guestfs-actions.pod:1230
8403 msgid ""
8404 "If the destination is a device, it must be as large or larger than the "
8405 "source file or device, otherwise the copy will fail.  This command cannot do "
8406 "partial copies (see C<guestfs_copy_size>)."
8407 msgstr ""
8408
8409 #. type: =head2
8410 #: ../src/guestfs-actions.pod:1238
8411 msgid "guestfs_df"
8412 msgstr ""
8413
8414 #. type: verbatim
8415 #: ../src/guestfs-actions.pod:1240
8416 #, no-wrap
8417 msgid ""
8418 " char *\n"
8419 " guestfs_df (guestfs_h *g);\n"
8420 "\n"
8421 msgstr ""
8422
8423 #. type: textblock
8424 #: ../src/guestfs-actions.pod:1243 ../fish/guestfish-actions.pod:821
8425 msgid "This command runs the C<df> command to report disk space used."
8426 msgstr ""
8427
8428 #. type: textblock
8429 #: ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1262
8430 msgid ""
8431 "This command is mostly useful for interactive sessions.  It is I<not> "
8432 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8433 "from programs."
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:1269
8438 #: ../src/guestfs-actions.pod:1387 ../src/guestfs-actions.pod:2359
8439 #: ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:2451
8440 #: ../src/guestfs-actions.pod:4470 ../src/guestfs-actions.pod:5014
8441 #: ../src/guestfs-actions.pod:6966 ../src/guestfs-actions.pod:6990
8442 #: ../src/guestfs-actions.pod:7609 ../src/guestfs-actions.pod:7622
8443 #: ../src/guestfs-actions.pod:7635
8444 msgid "(Added in 1.0.54)"
8445 msgstr ""
8446
8447 #. type: =head2
8448 #: ../src/guestfs-actions.pod:1254
8449 msgid "guestfs_df_h"
8450 msgstr ""
8451
8452 #. type: verbatim
8453 #: ../src/guestfs-actions.pod:1256
8454 #, no-wrap
8455 msgid ""
8456 " char *\n"
8457 " guestfs_df_h (guestfs_h *g);\n"
8458 "\n"
8459 msgstr ""
8460
8461 #. type: textblock
8462 #: ../src/guestfs-actions.pod:1259 ../fish/guestfish-actions.pod:831
8463 msgid ""
8464 "This command runs the C<df -h> command to report disk space used in human-"
8465 "readable format."
8466 msgstr ""
8467
8468 #. type: =head2
8469 #: ../src/guestfs-actions.pod:1271
8470 msgid "guestfs_dmesg"
8471 msgstr ""
8472
8473 #. type: verbatim
8474 #: ../src/guestfs-actions.pod:1273
8475 #, no-wrap
8476 msgid ""
8477 " char *\n"
8478 " guestfs_dmesg (guestfs_h *g);\n"
8479 "\n"
8480 msgstr ""
8481
8482 #. type: textblock
8483 #: ../src/guestfs-actions.pod:1276 ../fish/guestfish-actions.pod:842
8484 msgid ""
8485 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8486 "This is sometimes useful for extended debugging of problems."
8487 msgstr ""
8488
8489 #. type: textblock
8490 #: ../src/guestfs-actions.pod:1280
8491 msgid ""
8492 "Another way to get the same information is to enable verbose messages with "
8493 "C<guestfs_set_verbose> or by setting the environment variable "
8494 "C<LIBGUESTFS_DEBUG=1> before running the program."
8495 msgstr ""
8496
8497 #. type: =head2
8498 #: ../src/guestfs-actions.pod:1290
8499 msgid "guestfs_download"
8500 msgstr ""
8501
8502 #. type: verbatim
8503 #: ../src/guestfs-actions.pod:1292
8504 #, no-wrap
8505 msgid ""
8506 " int\n"
8507 " guestfs_download (guestfs_h *g,\n"
8508 "                   const char *remotefilename,\n"
8509 "                   const char *filename);\n"
8510 "\n"
8511 msgstr ""
8512
8513 #. type: textblock
8514 #: ../src/guestfs-actions.pod:1297 ../src/guestfs-actions.pod:1322
8515 #: ../fish/guestfish-actions.pod:855 ../fish/guestfish-actions.pod:868
8516 msgid ""
8517 "Download file C<remotefilename> and save it as C<filename> on the local "
8518 "machine."
8519 msgstr ""
8520
8521 #. type: textblock
8522 #: ../src/guestfs-actions.pod:1300 ../src/guestfs-actions.pod:7222
8523 #: ../fish/guestfish-actions.pod:858 ../fish/guestfish-actions.pod:4797
8524 msgid "C<filename> can also be a named pipe."
8525 msgstr ""
8526
8527 #. type: textblock
8528 #: ../src/guestfs-actions.pod:1302
8529 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8530 msgstr ""
8531
8532 #. type: =head2
8533 #: ../src/guestfs-actions.pod:1313
8534 msgid "guestfs_download_offset"
8535 msgstr ""
8536
8537 #. type: verbatim
8538 #: ../src/guestfs-actions.pod:1315
8539 #, no-wrap
8540 msgid ""
8541 " int\n"
8542 " guestfs_download_offset (guestfs_h *g,\n"
8543 "                          const char *remotefilename,\n"
8544 "                          const char *filename,\n"
8545 "                          int64_t offset,\n"
8546 "                          int64_t size);\n"
8547 "\n"
8548 msgstr ""
8549
8550 #. type: textblock
8551 #: ../src/guestfs-actions.pod:1325 ../fish/guestfish-actions.pod:871
8552 msgid ""
8553 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8554 "region must be within the file or device)."
8555 msgstr ""
8556
8557 #. type: textblock
8558 #: ../src/guestfs-actions.pod:1328
8559 msgid ""
8560 "Note that there is no limit on the amount of data that can be downloaded "
8561 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8562 "full amount unless an error occurs."
8563 msgstr ""
8564
8565 #. type: textblock
8566 #: ../src/guestfs-actions.pod:1333
8567 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8568 msgstr ""
8569
8570 #. type: textblock
8571 #: ../src/guestfs-actions.pod:1342 ../src/guestfs-actions.pod:7267
8572 msgid "(Added in 1.5.17)"
8573 msgstr ""
8574
8575 #. type: =head2
8576 #: ../src/guestfs-actions.pod:1344
8577 msgid "guestfs_drop_caches"
8578 msgstr ""
8579
8580 #. type: verbatim
8581 #: ../src/guestfs-actions.pod:1346
8582 #, no-wrap
8583 msgid ""
8584 " int\n"
8585 " guestfs_drop_caches (guestfs_h *g,\n"
8586 "                      int whattodrop);\n"
8587 "\n"
8588 msgstr ""
8589
8590 #. type: textblock
8591 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:887
8592 msgid ""
8593 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8594 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8595 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8596 msgstr ""
8597
8598 #. type: textblock
8599 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:892
8600 msgid "Setting C<whattodrop> to 3 should drop everything."
8601 msgstr ""
8602
8603 #. type: textblock
8604 #: ../src/guestfs-actions.pod:1357 ../fish/guestfish-actions.pod:894
8605 msgid ""
8606 "This automatically calls L<sync(2)> before the operation, so that the "
8607 "maximum guest memory is freed."
8608 msgstr ""
8609
8610 #. type: =head2
8611 #: ../src/guestfs-actions.pod:1364
8612 msgid "guestfs_du"
8613 msgstr ""
8614
8615 #. type: verbatim
8616 #: ../src/guestfs-actions.pod:1366
8617 #, no-wrap
8618 msgid ""
8619 " int64_t\n"
8620 " guestfs_du (guestfs_h *g,\n"
8621 "             const char *path);\n"
8622 "\n"
8623 msgstr ""
8624
8625 #. type: textblock
8626 #: ../src/guestfs-actions.pod:1370 ../fish/guestfish-actions.pod:901
8627 msgid ""
8628 "This command runs the C<du -s> command to estimate file space usage for "
8629 "C<path>."
8630 msgstr ""
8631
8632 #. type: textblock
8633 #: ../src/guestfs-actions.pod:1373 ../fish/guestfish-actions.pod:904
8634 msgid ""
8635 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8636 "estimate includes the contents of the directory and all subdirectories "
8637 "(recursively)."
8638 msgstr ""
8639
8640 #. type: textblock
8641 #: ../src/guestfs-actions.pod:1377 ../fish/guestfish-actions.pod:908
8642 msgid ""
8643 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8644 msgstr ""
8645
8646 #. type: =head2
8647 #: ../src/guestfs-actions.pod:1389
8648 msgid "guestfs_e2fsck_f"
8649 msgstr ""
8650
8651 #. type: verbatim
8652 #: ../src/guestfs-actions.pod:1391
8653 #, no-wrap
8654 msgid ""
8655 " int\n"
8656 " guestfs_e2fsck_f (guestfs_h *g,\n"
8657 "                   const char *device);\n"
8658 "\n"
8659 msgstr ""
8660
8661 #. type: textblock
8662 #: ../src/guestfs-actions.pod:1395 ../fish/guestfish-actions.pod:915
8663 msgid ""
8664 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8665 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8666 "clean (I<-f>)."
8667 msgstr ""
8668
8669 #. type: textblock
8670 #: ../src/guestfs-actions.pod:1399
8671 msgid ""
8672 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8673 "Normally you should use C<guestfs_fsck>."
8674 msgstr ""
8675
8676 #. type: textblock
8677 #: ../src/guestfs-actions.pod:1404
8678 msgid "(Added in 1.0.29)"
8679 msgstr ""
8680
8681 #. type: =head2
8682 #: ../src/guestfs-actions.pod:1406
8683 msgid "guestfs_echo_daemon"
8684 msgstr ""
8685
8686 #. type: verbatim
8687 #: ../src/guestfs-actions.pod:1408
8688 #, no-wrap
8689 msgid ""
8690 " char *\n"
8691 " guestfs_echo_daemon (guestfs_h *g,\n"
8692 "                      char *const *words);\n"
8693 "\n"
8694 msgstr ""
8695
8696 #. type: textblock
8697 #: ../src/guestfs-actions.pod:1412 ../fish/guestfish-actions.pod:926
8698 msgid ""
8699 "This command concatenates the list of C<words> passed with single spaces "
8700 "between them and returns the resulting string."
8701 msgstr ""
8702
8703 #. type: textblock
8704 #: ../src/guestfs-actions.pod:1415 ../fish/guestfish-actions.pod:929
8705 msgid "You can use this command to test the connection through to the daemon."
8706 msgstr ""
8707
8708 #. type: textblock
8709 #: ../src/guestfs-actions.pod:1417
8710 msgid "See also C<guestfs_ping_daemon>."
8711 msgstr ""
8712
8713 #. type: textblock
8714 #: ../src/guestfs-actions.pod:1422 ../src/guestfs-actions.pod:2167
8715 #: ../src/guestfs-actions.pod:6438
8716 msgid "(Added in 1.0.69)"
8717 msgstr ""
8718
8719 #. type: =head2
8720 #: ../src/guestfs-actions.pod:1424
8721 msgid "guestfs_egrep"
8722 msgstr ""
8723
8724 #. type: verbatim
8725 #: ../src/guestfs-actions.pod:1426
8726 #, no-wrap
8727 msgid ""
8728 " char **\n"
8729 " guestfs_egrep (guestfs_h *g,\n"
8730 "                const char *regex,\n"
8731 "                const char *path);\n"
8732 "\n"
8733 msgstr ""
8734
8735 #. type: textblock
8736 #: ../src/guestfs-actions.pod:1431 ../fish/guestfish-actions.pod:937
8737 msgid ""
8738 "This calls the external C<egrep> program and returns the matching lines."
8739 msgstr ""
8740
8741 #. type: textblock
8742 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1460
8743 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:1563
8744 #: ../src/guestfs-actions.pod:1582 ../src/guestfs-actions.pod:2297
8745 #: ../src/guestfs-actions.pod:2316 ../src/guestfs-actions.pod:2472
8746 #: ../src/guestfs-actions.pod:2485 ../src/guestfs-actions.pod:2500
8747 #: ../src/guestfs-actions.pod:2546 ../src/guestfs-actions.pod:2568
8748 #: ../src/guestfs-actions.pod:2581 ../src/guestfs-actions.pod:3850
8749 #: ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:3877
8750 #: ../src/guestfs-actions.pod:3891 ../src/guestfs-actions.pod:4892
8751 #: ../src/guestfs-actions.pod:5917 ../src/guestfs-actions.pod:5966
8752 #: ../src/guestfs-actions.pod:6834 ../src/guestfs-actions.pod:6846
8753 #: ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6872
8754 #: ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:6907
8755 #: ../src/guestfs-actions.pod:6920 ../src/guestfs-actions.pod:6933
8756 #: ../src/guestfs-actions.pod:7725 ../src/guestfs-actions.pod:7744
8757 #: ../src/guestfs-actions.pod:7830 ../src/guestfs-actions.pod:7849
8758 #: ../src/guestfs-actions.pod:7895 ../src/guestfs-actions.pod:7914
8759 msgid "(Added in 1.0.66)"
8760 msgstr ""
8761
8762 #. type: =head2
8763 #: ../src/guestfs-actions.pod:1443
8764 msgid "guestfs_egrepi"
8765 msgstr ""
8766
8767 #. type: verbatim
8768 #: ../src/guestfs-actions.pod:1445
8769 #, no-wrap
8770 msgid ""
8771 " char **\n"
8772 " guestfs_egrepi (guestfs_h *g,\n"
8773 "                 const char *regex,\n"
8774 "                 const char *path);\n"
8775 "\n"
8776 msgstr ""
8777
8778 #. type: textblock
8779 #: ../src/guestfs-actions.pod:1450 ../fish/guestfish-actions.pod:947
8780 msgid ""
8781 "This calls the external C<egrep -i> program and returns the matching lines."
8782 msgstr ""
8783
8784 #. type: =head2
8785 #: ../src/guestfs-actions.pod:1462
8786 msgid "guestfs_equal"
8787 msgstr ""
8788
8789 #. type: verbatim
8790 #: ../src/guestfs-actions.pod:1464
8791 #, no-wrap
8792 msgid ""
8793 " int\n"
8794 " guestfs_equal (guestfs_h *g,\n"
8795 "                const char *file1,\n"
8796 "                const char *file2);\n"
8797 "\n"
8798 msgstr ""
8799
8800 #. type: textblock
8801 #: ../src/guestfs-actions.pod:1469 ../fish/guestfish-actions.pod:957
8802 msgid ""
8803 "This compares the two files C<file1> and C<file2> and returns true if their "
8804 "content is exactly equal, or false otherwise."
8805 msgstr ""
8806
8807 #. type: textblock
8808 #: ../src/guestfs-actions.pod:1472 ../fish/guestfish-actions.pod:960
8809 msgid "The external L<cmp(1)> program is used for the comparison."
8810 msgstr ""
8811
8812 #. type: =head2
8813 #: ../src/guestfs-actions.pod:1478
8814 msgid "guestfs_exists"
8815 msgstr ""
8816
8817 #. type: verbatim
8818 #: ../src/guestfs-actions.pod:1480
8819 #, no-wrap
8820 msgid ""
8821 " int\n"
8822 " guestfs_exists (guestfs_h *g,\n"
8823 "                 const char *path);\n"
8824 "\n"
8825 msgstr ""
8826
8827 #. type: textblock
8828 #: ../src/guestfs-actions.pod:1484 ../fish/guestfish-actions.pod:966
8829 msgid ""
8830 "This returns C<true> if and only if there is a file, directory (or anything) "
8831 "with the given C<path> name."
8832 msgstr ""
8833
8834 #. type: textblock
8835 #: ../src/guestfs-actions.pod:1487
8836 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8837 msgstr ""
8838
8839 #. type: =head2
8840 #: ../src/guestfs-actions.pod:1493
8841 msgid "guestfs_fallocate"
8842 msgstr ""
8843
8844 #. type: verbatim
8845 #: ../src/guestfs-actions.pod:1495
8846 #, no-wrap
8847 msgid ""
8848 " int\n"
8849 " guestfs_fallocate (guestfs_h *g,\n"
8850 "                    const char *path,\n"
8851 "                    int len);\n"
8852 "\n"
8853 msgstr ""
8854
8855 #. type: textblock
8856 #: ../src/guestfs-actions.pod:1500 ../src/guestfs-actions.pod:1526
8857 #: ../fish/guestfish-actions.pod:975 ../fish/guestfish-actions.pod:994
8858 msgid ""
8859 "This command preallocates a file (containing zero bytes) named C<path> of "
8860 "size C<len> bytes.  If the file exists already, it is overwritten."
8861 msgstr ""
8862
8863 #. type: textblock
8864 #: ../src/guestfs-actions.pod:1504 ../fish/guestfish-actions.pod:979
8865 msgid ""
8866 "Do not confuse this with the guestfish-specific C<alloc> command which "
8867 "allocates a file in the host and attaches it as a device."
8868 msgstr ""
8869
8870 #. type: textblock
8871 #: ../src/guestfs-actions.pod:1510 ../fish/guestfish-actions.pod:983
8872 msgid ""
8873 "This function is deprecated.  In new code, use the C<fallocate64> call "
8874 "instead."
8875 msgstr ""
8876
8877 #. type: =head2
8878 #: ../src/guestfs-actions.pod:1519
8879 msgid "guestfs_fallocate64"
8880 msgstr ""
8881
8882 #. type: verbatim
8883 #: ../src/guestfs-actions.pod:1521
8884 #, no-wrap
8885 msgid ""
8886 " int\n"
8887 " guestfs_fallocate64 (guestfs_h *g,\n"
8888 "                      const char *path,\n"
8889 "                      int64_t len);\n"
8890 "\n"
8891 msgstr ""
8892
8893 #. type: textblock
8894 #: ../src/guestfs-actions.pod:1530
8895 msgid ""
8896 "Note that this call allocates disk blocks for the file.  To create a sparse "
8897 "file use C<guestfs_truncate_size> instead."
8898 msgstr ""
8899
8900 #. type: textblock
8901 #: ../src/guestfs-actions.pod:1533
8902 msgid ""
8903 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8904 "oversight it only allowed 30 bit lengths to be specified, effectively "
8905 "limiting the maximum size of files created through that call to 1GB."
8906 msgstr ""
8907
8908 #. type: textblock
8909 #: ../src/guestfs-actions.pod:1538 ../fish/guestfish-actions.pod:1006
8910 msgid ""
8911 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8912 "commands which create a file in the host and attach it as a device."
8913 msgstr ""
8914
8915 #. type: textblock
8916 #: ../src/guestfs-actions.pod:1544
8917 msgid "(Added in 1.3.17)"
8918 msgstr ""
8919
8920 #. type: =head2
8921 #: ../src/guestfs-actions.pod:1546
8922 msgid "guestfs_fgrep"
8923 msgstr ""
8924
8925 #. type: verbatim
8926 #: ../src/guestfs-actions.pod:1548
8927 #, no-wrap
8928 msgid ""
8929 " char **\n"
8930 " guestfs_fgrep (guestfs_h *g,\n"
8931 "                const char *pattern,\n"
8932 "                const char *path);\n"
8933 "\n"
8934 msgstr ""
8935
8936 #. type: textblock
8937 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1014
8938 msgid ""
8939 "This calls the external C<fgrep> program and returns the matching lines."
8940 msgstr ""
8941
8942 #. type: =head2
8943 #: ../src/guestfs-actions.pod:1565
8944 msgid "guestfs_fgrepi"
8945 msgstr ""
8946
8947 #. type: verbatim
8948 #: ../src/guestfs-actions.pod:1567
8949 #, no-wrap
8950 msgid ""
8951 " char **\n"
8952 " guestfs_fgrepi (guestfs_h *g,\n"
8953 "                 const char *pattern,\n"
8954 "                 const char *path);\n"
8955 "\n"
8956 msgstr ""
8957
8958 #. type: textblock
8959 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1024
8960 msgid ""
8961 "This calls the external C<fgrep -i> program and returns the matching lines."
8962 msgstr ""
8963
8964 #. type: =head2
8965 #: ../src/guestfs-actions.pod:1584
8966 msgid "guestfs_file"
8967 msgstr ""
8968
8969 #. type: verbatim
8970 #: ../src/guestfs-actions.pod:1586
8971 #, no-wrap
8972 msgid ""
8973 " char *\n"
8974 " guestfs_file (guestfs_h *g,\n"
8975 "               const char *path);\n"
8976 "\n"
8977 msgstr ""
8978
8979 #. type: textblock
8980 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1034
8981 msgid ""
8982 "This call uses the standard L<file(1)> command to determine the type or "
8983 "contents of the file."
8984 msgstr ""
8985
8986 #. type: textblock
8987 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1037
8988 msgid ""
8989 "This call will also transparently look inside various types of compressed "
8990 "file."
8991 msgstr ""
8992
8993 #. type: textblock
8994 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1040
8995 msgid ""
8996 "The exact command which runs is C<file -zb path>.  Note in particular that "
8997 "the filename is not prepended to the output (the I<-b> option)."
8998 msgstr ""
8999
9000 #. type: textblock
9001 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1044
9002 msgid ""
9003 "The output depends on the output of the underlying L<file(1)> command and it "
9004 "can change in future in ways beyond our control.  In other words, the output "
9005 "is not guaranteed by the ABI."
9006 msgstr ""
9007
9008 #. type: textblock
9009 #: ../src/guestfs-actions.pod:1604
9010 msgid ""
9011 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
9012 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
9013 msgstr ""
9014
9015 #. type: =head2
9016 #: ../src/guestfs-actions.pod:1612
9017 msgid "guestfs_file_architecture"
9018 msgstr ""
9019
9020 #. type: verbatim
9021 #: ../src/guestfs-actions.pod:1614
9022 #, no-wrap
9023 msgid ""
9024 " char *\n"
9025 " guestfs_file_architecture (guestfs_h *g,\n"
9026 "                            const char *filename);\n"
9027 "\n"
9028 msgstr ""
9029
9030 #. type: textblock
9031 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1055
9032 msgid ""
9033 "This detects the architecture of the binary C<filename>, and returns it if "
9034 "known."
9035 msgstr ""
9036
9037 #. type: textblock
9038 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1058
9039 msgid "Currently defined architectures are:"
9040 msgstr ""
9041
9042 #. type: =item
9043 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1062
9044 msgid "\"i386\""
9045 msgstr "\"i386\""
9046
9047 #. type: textblock
9048 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1064
9049 msgid ""
9050 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9051 "irrespective of the precise processor requirements of the binary."
9052 msgstr ""
9053
9054 #. type: =item
9055 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1067
9056 msgid "\"x86_64\""
9057 msgstr "\"x86_64\""
9058
9059 #. type: textblock
9060 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1069
9061 msgid "64 bit x86-64."
9062 msgstr ""
9063
9064 #. type: =item
9065 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1071
9066 msgid "\"sparc\""
9067 msgstr ""
9068
9069 #. type: textblock
9070 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1073
9071 msgid "32 bit SPARC."
9072 msgstr ""
9073
9074 #. type: =item
9075 #: ../src/guestfs-actions.pod:1638 ../fish/guestfish-actions.pod:1075
9076 msgid "\"sparc64\""
9077 msgstr ""
9078
9079 #. type: textblock
9080 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1077
9081 msgid "64 bit SPARC V9 and above."
9082 msgstr ""
9083
9084 #. type: =item
9085 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1079
9086 msgid "\"ia64\""
9087 msgstr "\"ia64\""
9088
9089 #. type: textblock
9090 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1081
9091 msgid "Intel Itanium."
9092 msgstr "Intel Itanium."
9093
9094 #. type: =item
9095 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1083
9096 msgid "\"ppc\""
9097 msgstr ""
9098
9099 #. type: textblock
9100 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1085
9101 msgid "32 bit Power PC."
9102 msgstr ""
9103
9104 #. type: =item
9105 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1087
9106 msgid "\"ppc64\""
9107 msgstr ""
9108
9109 #. type: textblock
9110 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1089
9111 msgid "64 bit Power PC."
9112 msgstr ""
9113
9114 #. type: textblock
9115 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1093
9116 msgid "Libguestfs may return other architecture strings in future."
9117 msgstr ""
9118
9119 #. type: textblock
9120 #: ../src/guestfs-actions.pod:1658 ../fish/guestfish-actions.pod:1095
9121 msgid "The function works on at least the following types of files:"
9122 msgstr ""
9123
9124 #. type: textblock
9125 #: ../src/guestfs-actions.pod:1664 ../fish/guestfish-actions.pod:1101
9126 msgid "many types of Un*x and Linux binary"
9127 msgstr ""
9128
9129 #. type: textblock
9130 #: ../src/guestfs-actions.pod:1668 ../fish/guestfish-actions.pod:1105
9131 msgid "many types of Un*x and Linux shared library"
9132 msgstr ""
9133
9134 #. type: textblock
9135 #: ../src/guestfs-actions.pod:1672 ../fish/guestfish-actions.pod:1109
9136 msgid "Windows Win32 and Win64 binaries"
9137 msgstr ""
9138
9139 #. type: textblock
9140 #: ../src/guestfs-actions.pod:1676 ../fish/guestfish-actions.pod:1113
9141 msgid "Windows Win32 and Win64 DLLs"
9142 msgstr ""
9143
9144 #. type: textblock
9145 #: ../src/guestfs-actions.pod:1678 ../fish/guestfish-actions.pod:1115
9146 msgid "Win32 binaries and DLLs return C<i386>."
9147 msgstr ""
9148
9149 #. type: textblock
9150 #: ../src/guestfs-actions.pod:1680 ../fish/guestfish-actions.pod:1117
9151 msgid "Win64 binaries and DLLs return C<x86_64>."
9152 msgstr ""
9153
9154 #. type: textblock
9155 #: ../src/guestfs-actions.pod:1684 ../fish/guestfish-actions.pod:1121
9156 msgid "Linux kernel modules"
9157 msgstr ""
9158
9159 #. type: textblock
9160 #: ../src/guestfs-actions.pod:1688 ../fish/guestfish-actions.pod:1125
9161 msgid "Linux new-style initrd images"
9162 msgstr ""
9163
9164 #. type: textblock
9165 #: ../src/guestfs-actions.pod:1692 ../fish/guestfish-actions.pod:1129
9166 msgid "some non-x86 Linux vmlinuz kernels"
9167 msgstr ""
9168
9169 #. type: textblock
9170 #: ../src/guestfs-actions.pod:1696 ../fish/guestfish-actions.pod:1133
9171 msgid "What it can't do currently:"
9172 msgstr ""
9173
9174 #. type: textblock
9175 #: ../src/guestfs-actions.pod:1702 ../fish/guestfish-actions.pod:1139
9176 msgid "static libraries (libfoo.a)"
9177 msgstr ""
9178
9179 #. type: textblock
9180 #: ../src/guestfs-actions.pod:1706 ../fish/guestfish-actions.pod:1143
9181 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9182 msgstr ""
9183
9184 #. type: textblock
9185 #: ../src/guestfs-actions.pod:1710 ../fish/guestfish-actions.pod:1147
9186 msgid "x86 Linux vmlinuz kernels"
9187 msgstr ""
9188
9189 #. type: textblock
9190 #: ../src/guestfs-actions.pod:1712 ../fish/guestfish-actions.pod:1149
9191 msgid ""
9192 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9193 "compressed code, and are horribly hard to unpack.  If you want to find the "
9194 "architecture of a kernel, use the architecture of the associated initrd or "
9195 "kernel module(s) instead."
9196 msgstr ""
9197
9198 #. type: textblock
9199 #: ../src/guestfs-actions.pod:1722 ../src/guestfs-actions.pod:1885
9200 #: ../src/guestfs-actions.pod:1902 ../src/guestfs-actions.pod:2601
9201 #: ../src/guestfs-actions.pod:2691 ../src/guestfs-actions.pod:2757
9202 #: ../src/guestfs-actions.pod:2944 ../src/guestfs-actions.pod:2962
9203 #: ../src/guestfs-actions.pod:3002 ../src/guestfs-actions.pod:3077
9204 #: ../src/guestfs-actions.pod:3170 ../src/guestfs-actions.pod:3407
9205 #: ../src/guestfs-actions.pod:3539
9206 msgid "(Added in 1.5.3)"
9207 msgstr ""
9208
9209 #. type: =head2
9210 #: ../src/guestfs-actions.pod:1724
9211 msgid "guestfs_filesize"
9212 msgstr ""
9213
9214 #. type: verbatim
9215 #: ../src/guestfs-actions.pod:1726
9216 #, no-wrap
9217 msgid ""
9218 " int64_t\n"
9219 " guestfs_filesize (guestfs_h *g,\n"
9220 "                   const char *file);\n"
9221 "\n"
9222 msgstr ""
9223
9224 #. type: textblock
9225 #: ../src/guestfs-actions.pod:1730 ../fish/guestfish-actions.pod:1160
9226 msgid "This command returns the size of C<file> in bytes."
9227 msgstr ""
9228
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:1732
9231 msgid ""
9232 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9233 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9234 "devices, use C<guestfs_blockdev_getsize64>."
9235 msgstr ""
9236
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1738
9239 msgid "(Added in 1.0.82)"
9240 msgstr ""
9241
9242 #. type: =head2
9243 #: ../src/guestfs-actions.pod:1740
9244 msgid "guestfs_fill"
9245 msgstr ""
9246
9247 #. type: verbatim
9248 #: ../src/guestfs-actions.pod:1742
9249 #, no-wrap
9250 msgid ""
9251 " int\n"
9252 " guestfs_fill (guestfs_h *g,\n"
9253 "               int c,\n"
9254 "               int len,\n"
9255 "               const char *path);\n"
9256 "\n"
9257 msgstr ""
9258
9259 #. type: textblock
9260 #: ../src/guestfs-actions.pod:1748 ../fish/guestfish-actions.pod:1170
9261 msgid ""
9262 "This command creates a new file called C<path>.  The initial content of the "
9263 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9264 "[0..255]>."
9265 msgstr ""
9266
9267 #. type: textblock
9268 #: ../src/guestfs-actions.pod:1752
9269 msgid ""
9270 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9271 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9272 "bytes use C<guestfs_fill_pattern>."
9273 msgstr ""
9274
9275 #. type: textblock
9276 #: ../src/guestfs-actions.pod:1764
9277 msgid "(Added in 1.0.79)"
9278 msgstr ""
9279
9280 #. type: =head2
9281 #: ../src/guestfs-actions.pod:1766
9282 msgid "guestfs_fill_pattern"
9283 msgstr ""
9284
9285 #. type: verbatim
9286 #: ../src/guestfs-actions.pod:1768
9287 #, no-wrap
9288 msgid ""
9289 " int\n"
9290 " guestfs_fill_pattern (guestfs_h *g,\n"
9291 "                       const char *pattern,\n"
9292 "                       int len,\n"
9293 "                       const char *path);\n"
9294 "\n"
9295 msgstr ""
9296
9297 #. type: textblock
9298 #: ../src/guestfs-actions.pod:1774
9299 msgid ""
9300 "This function is like C<guestfs_fill> except that it creates a new file of "
9301 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9302 "pattern is truncated if necessary to ensure the length of the file is "
9303 "exactly C<len> bytes."
9304 msgstr ""
9305
9306 #. type: textblock
9307 #: ../src/guestfs-actions.pod:1786
9308 msgid "(Added in 1.3.12)"
9309 msgstr ""
9310
9311 #. type: =head2
9312 #: ../src/guestfs-actions.pod:1788
9313 msgid "guestfs_find"
9314 msgstr ""
9315
9316 #. type: verbatim
9317 #: ../src/guestfs-actions.pod:1790
9318 #, no-wrap
9319 msgid ""
9320 " char **\n"
9321 " guestfs_find (guestfs_h *g,\n"
9322 "               const char *directory);\n"
9323 "\n"
9324 msgstr ""
9325
9326 #. type: textblock
9327 #: ../src/guestfs-actions.pod:1794 ../fish/guestfish-actions.pod:1192
9328 msgid ""
9329 "This command lists out all files and directories, recursively, starting at "
9330 "C<directory>.  It is essentially equivalent to running the shell command "
9331 "C<find directory -print> but some post-processing happens on the output, "
9332 "described below."
9333 msgstr ""
9334
9335 #. type: textblock
9336 #: ../src/guestfs-actions.pod:1799 ../fish/guestfish-actions.pod:1197
9337 msgid ""
9338 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9339 "structure was:"
9340 msgstr ""
9341
9342 #. type: verbatim
9343 #: ../src/guestfs-actions.pod:1802 ../fish/guestfish-actions.pod:1200
9344 #, no-wrap
9345 msgid ""
9346 " /tmp/a\n"
9347 " /tmp/b\n"
9348 " /tmp/c/d\n"
9349 "\n"
9350 msgstr ""
9351
9352 #. type: textblock
9353 #: ../src/guestfs-actions.pod:1806
9354 msgid ""
9355 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9356 msgstr ""
9357
9358 #. type: verbatim
9359 #: ../src/guestfs-actions.pod:1809 ../fish/guestfish-actions.pod:1207
9360 #, no-wrap
9361 msgid ""
9362 " a\n"
9363 " b\n"
9364 " c\n"
9365 " c/d\n"
9366 "\n"
9367 msgstr ""
9368
9369 #. type: textblock
9370 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1212
9371 msgid "If C<directory> is not a directory, then this command returns an error."
9372 msgstr ""
9373
9374 #. type: textblock
9375 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1215
9376 msgid "The returned list is sorted."
9377 msgstr ""
9378
9379 #. type: textblock
9380 #: ../src/guestfs-actions.pod:1819
9381 msgid "See also C<guestfs_find0>."
9382 msgstr ""
9383
9384 #. type: textblock
9385 #: ../src/guestfs-actions.pod:1828 ../src/guestfs-actions.pod:4297
9386 #: ../src/guestfs-actions.pod:6001
9387 msgid "(Added in 1.0.27)"
9388 msgstr ""
9389
9390 #. type: =head2
9391 #: ../src/guestfs-actions.pod:1830
9392 msgid "guestfs_find0"
9393 msgstr ""
9394
9395 #. type: verbatim
9396 #: ../src/guestfs-actions.pod:1832
9397 #, no-wrap
9398 msgid ""
9399 " int\n"
9400 " guestfs_find0 (guestfs_h *g,\n"
9401 "                const char *directory,\n"
9402 "                const char *files);\n"
9403 "\n"
9404 msgstr ""
9405
9406 #. type: textblock
9407 #: ../src/guestfs-actions.pod:1837 ../fish/guestfish-actions.pod:1226
9408 msgid ""
9409 "This command lists out all files and directories, recursively, starting at "
9410 "C<directory>, placing the resulting list in the external file called "
9411 "C<files>."
9412 msgstr ""
9413
9414 #. type: textblock
9415 #: ../src/guestfs-actions.pod:1841
9416 msgid ""
9417 "This command works the same way as C<guestfs_find> with the following "
9418 "exceptions:"
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:1848 ../fish/guestfish-actions.pod:1237
9423 msgid "The resulting list is written to an external file."
9424 msgstr ""
9425
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1241
9428 msgid ""
9429 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9430 "L<find(1)> option I<-print0>."
9431 msgstr ""
9432
9433 #. type: textblock
9434 #: ../src/guestfs-actions.pod:1857 ../fish/guestfish-actions.pod:1246
9435 msgid "This command is not limited in the number of names that it can return."
9436 msgstr ""
9437
9438 #. type: textblock
9439 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1251
9440 msgid "The result list is not sorted."
9441 msgstr ""
9442
9443 #. type: textblock
9444 #: ../src/guestfs-actions.pod:1868
9445 msgid "(Added in 1.0.74)"
9446 msgstr ""
9447
9448 #. type: =head2
9449 #: ../src/guestfs-actions.pod:1870
9450 msgid "guestfs_findfs_label"
9451 msgstr ""
9452
9453 #. type: verbatim
9454 #: ../src/guestfs-actions.pod:1872
9455 #, no-wrap
9456 msgid ""
9457 " char *\n"
9458 " guestfs_findfs_label (guestfs_h *g,\n"
9459 "                       const char *label);\n"
9460 "\n"
9461 msgstr ""
9462
9463 #. type: textblock
9464 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1261
9465 msgid ""
9466 "This command searches the filesystems and returns the one which has the "
9467 "given label.  An error is returned if no such filesystem can be found."
9468 msgstr ""
9469
9470 #. type: textblock
9471 #: ../src/guestfs-actions.pod:1880
9472 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9473 msgstr ""
9474
9475 #. type: =head2
9476 #: ../src/guestfs-actions.pod:1887
9477 msgid "guestfs_findfs_uuid"
9478 msgstr ""
9479
9480 #. type: verbatim
9481 #: ../src/guestfs-actions.pod:1889
9482 #, no-wrap
9483 msgid ""
9484 " char *\n"
9485 " guestfs_findfs_uuid (guestfs_h *g,\n"
9486 "                      const char *uuid);\n"
9487 "\n"
9488 msgstr ""
9489
9490 #. type: textblock
9491 #: ../src/guestfs-actions.pod:1893 ../fish/guestfish-actions.pod:1271
9492 msgid ""
9493 "This command searches the filesystems and returns the one which has the "
9494 "given UUID.  An error is returned if no such filesystem can be found."
9495 msgstr ""
9496
9497 #. type: textblock
9498 #: ../src/guestfs-actions.pod:1897
9499 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9500 msgstr ""
9501
9502 #. type: =head2
9503 #: ../src/guestfs-actions.pod:1904
9504 msgid "guestfs_fsck"
9505 msgstr ""
9506
9507 #. type: verbatim
9508 #: ../src/guestfs-actions.pod:1906
9509 #, no-wrap
9510 msgid ""
9511 " int\n"
9512 " guestfs_fsck (guestfs_h *g,\n"
9513 "               const char *fstype,\n"
9514 "               const char *device);\n"
9515 "\n"
9516 msgstr ""
9517
9518 #. type: textblock
9519 #: ../src/guestfs-actions.pod:1911 ../fish/guestfish-actions.pod:1281
9520 msgid ""
9521 "This runs the filesystem checker (fsck) on C<device> which should have "
9522 "filesystem type C<fstype>."
9523 msgstr ""
9524
9525 #. type: textblock
9526 #: ../src/guestfs-actions.pod:1914 ../fish/guestfish-actions.pod:1284
9527 msgid ""
9528 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9529 "codes from C<fsck>."
9530 msgstr ""
9531
9532 #. type: textblock
9533 #: ../src/guestfs-actions.pod:1923 ../fish/guestfish-actions.pod:1293
9534 msgid "Multiple status codes can be summed together."
9535 msgstr ""
9536
9537 #. type: textblock
9538 #: ../src/guestfs-actions.pod:1927 ../fish/guestfish-actions.pod:1297
9539 msgid ""
9540 "A non-zero return code can mean \"success\", for example if errors have been "
9541 "corrected on the filesystem."
9542 msgstr ""
9543
9544 #. type: textblock
9545 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1302
9546 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9547 msgstr ""
9548
9549 #. type: textblock
9550 #: ../src/guestfs-actions.pod:1937 ../fish/guestfish-actions.pod:1307
9551 msgid ""
9552 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9553 msgstr ""
9554
9555 #. type: textblock
9556 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:7768
9557 msgid "(Added in 1.0.16)"
9558 msgstr ""
9559
9560 #. type: =head2
9561 #: ../src/guestfs-actions.pod:1943
9562 msgid "guestfs_get_append"
9563 msgstr ""
9564
9565 #. type: verbatim
9566 #: ../src/guestfs-actions.pod:1945
9567 #, no-wrap
9568 msgid ""
9569 " const char *\n"
9570 " guestfs_get_append (guestfs_h *g);\n"
9571 "\n"
9572 msgstr ""
9573
9574 #. type: textblock
9575 #: ../src/guestfs-actions.pod:1948 ../fish/guestfish-actions.pod:1313
9576 msgid ""
9577 "Return the additional kernel options which are added to the guest kernel "
9578 "command line."
9579 msgstr ""
9580
9581 #. type: textblock
9582 #: ../src/guestfs-actions.pod:1951 ../fish/guestfish-actions.pod:1316
9583 msgid "If C<NULL> then no options are added."
9584 msgstr ""
9585
9586 #. type: textblock
9587 #: ../src/guestfs-actions.pod:1953
9588 msgid ""
9589 "This function returns a string which may be NULL.  There is no way to return "
9590 "an error from this function.  The string is owned by the guest handle and "
9591 "must I<not> be freed."
9592 msgstr ""
9593
9594 #. type: textblock
9595 #: ../src/guestfs-actions.pod:1957 ../src/guestfs-actions.pod:5679
9596 #: ../src/guestfs-actions.pod:6161 ../src/guestfs-actions.pod:6601
9597 #: ../src/guestfs-actions.pod:6620 ../src/guestfs-actions.pod:6636
9598 #: ../src/guestfs-actions.pod:6660 ../src/guestfs-actions.pod:7414
9599 #: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:7811
9600 msgid "(Added in 1.0.26)"
9601 msgstr ""
9602
9603 #. type: =head2
9604 #: ../src/guestfs-actions.pod:1959
9605 msgid "guestfs_get_attach_method"
9606 msgstr ""
9607
9608 #. type: verbatim
9609 #: ../src/guestfs-actions.pod:1961
9610 #, no-wrap
9611 msgid ""
9612 " char *\n"
9613 " guestfs_get_attach_method (guestfs_h *g);\n"
9614 "\n"
9615 msgstr ""
9616
9617 #. type: textblock
9618 #: ../src/guestfs-actions.pod:1964
9619 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9620 msgstr ""
9621
9622 #. type: textblock
9623 #: ../src/guestfs-actions.pod:1969 ../src/guestfs-actions.pod:6191
9624 msgid "(Added in 1.9.8)"
9625 msgstr ""
9626
9627 #. type: =head2
9628 #: ../src/guestfs-actions.pod:1971
9629 msgid "guestfs_get_autosync"
9630 msgstr ""
9631
9632 #. type: verbatim
9633 #: ../src/guestfs-actions.pod:1973
9634 #, no-wrap
9635 msgid ""
9636 " int\n"
9637 " guestfs_get_autosync (guestfs_h *g);\n"
9638 "\n"
9639 msgstr ""
9640
9641 #. type: textblock
9642 #: ../src/guestfs-actions.pod:1976 ../fish/guestfish-actions.pod:1328
9643 msgid "Get the autosync flag."
9644 msgstr ""
9645
9646 #. type: =head2
9647 #: ../src/guestfs-actions.pod:1982
9648 msgid "guestfs_get_direct"
9649 msgstr ""
9650
9651 #. type: verbatim
9652 #: ../src/guestfs-actions.pod:1984
9653 #, no-wrap
9654 msgid ""
9655 " int\n"
9656 " guestfs_get_direct (guestfs_h *g);\n"
9657 "\n"
9658 msgstr ""
9659
9660 #. type: textblock
9661 #: ../src/guestfs-actions.pod:1987 ../fish/guestfish-actions.pod:1334
9662 msgid "Return the direct appliance mode flag."
9663 msgstr ""
9664
9665 #. type: textblock
9666 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:6232
9667 msgid "(Added in 1.0.72)"
9668 msgstr ""
9669
9670 #. type: =head2
9671 #: ../src/guestfs-actions.pod:1993
9672 msgid "guestfs_get_e2label"
9673 msgstr ""
9674
9675 #. type: verbatim
9676 #: ../src/guestfs-actions.pod:1995
9677 #, no-wrap
9678 msgid ""
9679 " char *\n"
9680 " guestfs_get_e2label (guestfs_h *g,\n"
9681 "                      const char *device);\n"
9682 "\n"
9683 msgstr ""
9684
9685 #. type: textblock
9686 #: ../src/guestfs-actions.pod:1999 ../fish/guestfish-actions.pod:1340
9687 msgid ""
9688 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9689 msgstr ""
9690
9691 #. type: textblock
9692 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1343
9693 msgid ""
9694 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9695 msgstr ""
9696
9697 #. type: textblock
9698 #: ../src/guestfs-actions.pod:2012 ../src/guestfs-actions.pod:2033
9699 #: ../src/guestfs-actions.pod:6250 ../src/guestfs-actions.pod:6269
9700 msgid "(Added in 1.0.15)"
9701 msgstr ""
9702
9703 #. type: =head2
9704 #: ../src/guestfs-actions.pod:2014
9705 msgid "guestfs_get_e2uuid"
9706 msgstr ""
9707
9708 #. type: verbatim
9709 #: ../src/guestfs-actions.pod:2016
9710 #, no-wrap
9711 msgid ""
9712 " char *\n"
9713 " guestfs_get_e2uuid (guestfs_h *g,\n"
9714 "                     const char *device);\n"
9715 "\n"
9716 msgstr ""
9717
9718 #. type: textblock
9719 #: ../src/guestfs-actions.pod:2020 ../fish/guestfish-actions.pod:1354
9720 msgid ""
9721 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9722 msgstr ""
9723
9724 #. type: textblock
9725 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1357
9726 msgid ""
9727 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9728 msgstr ""
9729
9730 #. type: =head2
9731 #: ../src/guestfs-actions.pod:2035
9732 msgid "guestfs_get_memsize"
9733 msgstr ""
9734
9735 #. type: verbatim
9736 #: ../src/guestfs-actions.pod:2037
9737 #, no-wrap
9738 msgid ""
9739 " int\n"
9740 " guestfs_get_memsize (guestfs_h *g);\n"
9741 "\n"
9742 msgstr ""
9743
9744 #. type: textblock
9745 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1368
9746 msgid ""
9747 "This gets the memory size in megabytes allocated to the qemu subprocess."
9748 msgstr ""
9749
9750 #. type: textblock
9751 #: ../src/guestfs-actions.pod:2043
9752 msgid ""
9753 "If C<guestfs_set_memsize> was not called on this handle, and if "
9754 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9755 "value for memsize."
9756 msgstr ""
9757
9758 #. type: textblock
9759 #: ../src/guestfs-actions.pod:2047 ../src/guestfs-actions.pod:2137
9760 #: ../src/guestfs-actions.pod:6285 ../src/guestfs-actions.pod:6409
9761 #: ../fish/guestfish-actions.pod:1375 ../fish/guestfish-actions.pod:1432
9762 #: ../fish/guestfish-actions.pod:4157 ../fish/guestfish-actions.pod:4259
9763 msgid ""
9764 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9765 msgstr ""
9766
9767 #. type: textblock
9768 #: ../src/guestfs-actions.pod:2052 ../src/guestfs-actions.pod:4588
9769 #: ../src/guestfs-actions.pod:4797 ../src/guestfs-actions.pod:4816
9770 #: ../src/guestfs-actions.pod:4835 ../src/guestfs-actions.pod:4847
9771 #: ../src/guestfs-actions.pod:4864 ../src/guestfs-actions.pod:4877
9772 #: ../src/guestfs-actions.pod:5904 ../src/guestfs-actions.pod:6290
9773 #: ../src/guestfs-actions.pod:6568 ../src/guestfs-actions.pod:7183
9774 msgid "(Added in 1.0.55)"
9775 msgstr ""
9776
9777 #. type: =head2
9778 #: ../src/guestfs-actions.pod:2054
9779 msgid "guestfs_get_network"
9780 msgstr ""
9781
9782 #. type: verbatim
9783 #: ../src/guestfs-actions.pod:2056
9784 #, no-wrap
9785 msgid ""
9786 " int\n"
9787 " guestfs_get_network (guestfs_h *g);\n"
9788 "\n"
9789 msgstr ""
9790
9791 #. type: textblock
9792 #: ../src/guestfs-actions.pod:2059 ../fish/guestfish-actions.pod:1382
9793 msgid "This returns the enable network flag."
9794 msgstr ""
9795
9796 #. type: textblock
9797 #: ../src/guestfs-actions.pod:2063 ../src/guestfs-actions.pod:6309
9798 msgid "(Added in 1.5.4)"
9799 msgstr ""
9800
9801 #. type: =head2
9802 #: ../src/guestfs-actions.pod:2065
9803 msgid "guestfs_get_path"
9804 msgstr ""
9805
9806 #. type: verbatim
9807 #: ../src/guestfs-actions.pod:2067
9808 #, no-wrap
9809 msgid ""
9810 " const char *\n"
9811 " guestfs_get_path (guestfs_h *g);\n"
9812 "\n"
9813 msgstr ""
9814
9815 #. type: textblock
9816 #: ../src/guestfs-actions.pod:2070 ../fish/guestfish-actions.pod:1388
9817 msgid "Return the current search path."
9818 msgstr ""
9819
9820 #. type: textblock
9821 #: ../src/guestfs-actions.pod:2072 ../fish/guestfish-actions.pod:1390
9822 msgid ""
9823 "This is always non-NULL.  If it wasn't set already, then this will return "
9824 "the default path."
9825 msgstr ""
9826
9827 #. type: textblock
9828 #: ../src/guestfs-actions.pod:2075 ../src/guestfs-actions.pod:2113
9829 msgid ""
9830 "This function returns a string, or NULL on error.  The string is owned by "
9831 "the guest handle and must I<not> be freed."
9832 msgstr ""
9833
9834 #. type: =head2
9835 #: ../src/guestfs-actions.pod:2080
9836 msgid "guestfs_get_pgroup"
9837 msgstr ""
9838
9839 #. type: verbatim
9840 #: ../src/guestfs-actions.pod:2082
9841 #, fuzzy, no-wrap
9842 #| msgid ""
9843 #| " guestfs_h *g = guestfs_create ();\n"
9844 #| " \n"
9845 msgid ""
9846 " int\n"
9847 " guestfs_get_pgroup (guestfs_h *g);\n"
9848 "\n"
9849 msgstr ""
9850 " guestfs_h *g = guestfs_create ();\n"
9851 " \n"
9852
9853 #. type: textblock
9854 #: ../src/guestfs-actions.pod:2085 ../fish/guestfish-actions.pod:1397
9855 msgid "This returns the process group flag."
9856 msgstr ""
9857
9858 #. type: =head2
9859 #: ../src/guestfs-actions.pod:2089
9860 msgid "guestfs_get_pid"
9861 msgstr ""
9862
9863 #. type: verbatim
9864 #: ../src/guestfs-actions.pod:2091
9865 #, no-wrap
9866 msgid ""
9867 " int\n"
9868 " guestfs_get_pid (guestfs_h *g);\n"
9869 "\n"
9870 msgstr ""
9871
9872 #. type: textblock
9873 #: ../src/guestfs-actions.pod:2094 ../fish/guestfish-actions.pod:1405
9874 msgid ""
9875 "Return the process ID of the qemu subprocess.  If there is no qemu "
9876 "subprocess, then this will return an error."
9877 msgstr ""
9878
9879 #. type: textblock
9880 #: ../src/guestfs-actions.pod:2097 ../fish/guestfish-actions.pod:1408
9881 msgid "This is an internal call used for debugging and testing."
9882 msgstr ""
9883
9884 #. type: textblock
9885 #: ../src/guestfs-actions.pod:2101
9886 msgid "(Added in 1.0.56)"
9887 msgstr ""
9888
9889 #. type: =head2
9890 #: ../src/guestfs-actions.pod:2103
9891 msgid "guestfs_get_qemu"
9892 msgstr ""
9893
9894 #. type: verbatim
9895 #: ../src/guestfs-actions.pod:2105
9896 #, no-wrap
9897 msgid ""
9898 " const char *\n"
9899 " guestfs_get_qemu (guestfs_h *g);\n"
9900 "\n"
9901 msgstr ""
9902
9903 #. type: textblock
9904 #: ../src/guestfs-actions.pod:2108 ../fish/guestfish-actions.pod:1414
9905 msgid "Return the current qemu binary."
9906 msgstr ""
9907
9908 #. type: textblock
9909 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1416
9910 msgid ""
9911 "This is always non-NULL.  If it wasn't set already, then this will return "
9912 "the default qemu binary name."
9913 msgstr ""
9914
9915 #. type: textblock
9916 #: ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:6371
9917 msgid "(Added in 1.0.6)"
9918 msgstr ""
9919
9920 #. type: =head2
9921 #: ../src/guestfs-actions.pod:2118
9922 msgid "guestfs_get_recovery_proc"
9923 msgstr ""
9924
9925 #. type: verbatim
9926 #: ../src/guestfs-actions.pod:2120
9927 #, no-wrap
9928 msgid ""
9929 " int\n"
9930 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9931 "\n"
9932 msgstr ""
9933
9934 #. type: textblock
9935 #: ../src/guestfs-actions.pod:2123 ../fish/guestfish-actions.pod:1423
9936 msgid "Return the recovery process enabled flag."
9937 msgstr ""
9938
9939 #. type: textblock
9940 #: ../src/guestfs-actions.pod:2127 ../src/guestfs-actions.pod:3661
9941 #: ../src/guestfs-actions.pod:3992 ../src/guestfs-actions.pod:4395
9942 #: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:5609
9943 #: ../src/guestfs-actions.pod:5952 ../src/guestfs-actions.pod:6395
9944 #: ../src/guestfs-actions.pod:7086 ../src/guestfs-actions.pod:7106
9945 #: ../src/guestfs-actions.pod:7298
9946 msgid "(Added in 1.0.77)"
9947 msgstr ""
9948
9949 #. type: =head2
9950 #: ../src/guestfs-actions.pod:2129
9951 msgid "guestfs_get_selinux"
9952 msgstr ""
9953
9954 #. type: verbatim
9955 #: ../src/guestfs-actions.pod:2131
9956 #, no-wrap
9957 msgid ""
9958 " int\n"
9959 " guestfs_get_selinux (guestfs_h *g);\n"
9960 "\n"
9961 msgstr ""
9962
9963 #. type: textblock
9964 #: ../src/guestfs-actions.pod:2134
9965 msgid ""
9966 "This returns the current setting of the selinux flag which is passed to the "
9967 "appliance at boot time.  See C<guestfs_set_selinux>."
9968 msgstr ""
9969
9970 #. type: textblock
9971 #: ../src/guestfs-actions.pod:2142 ../src/guestfs-actions.pod:2205
9972 #: ../src/guestfs-actions.pod:6414 ../src/guestfs-actions.pod:6472
9973 msgid "(Added in 1.0.67)"
9974 msgstr ""
9975
9976 #. type: =head2
9977 #: ../src/guestfs-actions.pod:2144
9978 msgid "guestfs_get_state"
9979 msgstr ""
9980
9981 #. type: verbatim
9982 #: ../src/guestfs-actions.pod:2146
9983 #, no-wrap
9984 msgid ""
9985 " int\n"
9986 " guestfs_get_state (guestfs_h *g);\n"
9987 "\n"
9988 msgstr ""
9989
9990 #. type: textblock
9991 #: ../src/guestfs-actions.pod:2149 ../fish/guestfish-actions.pod:1439
9992 msgid ""
9993 "This returns the current state as an opaque integer.  This is only useful "
9994 "for printing debug and internal error messages."
9995 msgstr ""
9996
9997 #. type: textblock
9998 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3432
9999 #: ../src/guestfs-actions.pod:3461 ../src/guestfs-actions.pod:3522
10000 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:1442
10001 #: ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2380
10002 #: ../fish/guestfish-actions.pod:2418 ../fish/guestfish-actions.pod:2434
10003 msgid "For more information on states, see L<guestfs(3)>."
10004 msgstr ""
10005
10006 #. type: =head2
10007 #: ../src/guestfs-actions.pod:2158
10008 msgid "guestfs_get_trace"
10009 msgstr ""
10010
10011 #. type: verbatim
10012 #: ../src/guestfs-actions.pod:2160
10013 #, no-wrap
10014 msgid ""
10015 " int\n"
10016 " guestfs_get_trace (guestfs_h *g);\n"
10017 "\n"
10018 msgstr ""
10019
10020 #. type: textblock
10021 #: ../src/guestfs-actions.pod:2163 ../fish/guestfish-actions.pod:1448
10022 msgid "Return the command trace flag."
10023 msgstr ""
10024
10025 #. type: =head2
10026 #: ../src/guestfs-actions.pod:2169
10027 msgid "guestfs_get_umask"
10028 msgstr ""
10029
10030 #. type: verbatim
10031 #: ../src/guestfs-actions.pod:2171
10032 #, no-wrap
10033 msgid ""
10034 " int\n"
10035 " guestfs_get_umask (guestfs_h *g);\n"
10036 "\n"
10037 msgstr ""
10038
10039 #. type: textblock
10040 #: ../src/guestfs-actions.pod:2174
10041 msgid ""
10042 "Return the current umask.  By default the umask is C<022> unless it has been "
10043 "set by calling C<guestfs_umask>."
10044 msgstr ""
10045
10046 #. type: =head2
10047 #: ../src/guestfs-actions.pod:2181
10048 msgid "guestfs_get_verbose"
10049 msgstr ""
10050
10051 #. type: verbatim
10052 #: ../src/guestfs-actions.pod:2183
10053 #, no-wrap
10054 msgid ""
10055 " int\n"
10056 " guestfs_get_verbose (guestfs_h *g);\n"
10057 "\n"
10058 msgstr ""
10059
10060 #. type: textblock
10061 #: ../src/guestfs-actions.pod:2186 ../fish/guestfish-actions.pod:1461
10062 msgid "This returns the verbose messages flag."
10063 msgstr ""
10064
10065 #. type: =head2
10066 #: ../src/guestfs-actions.pod:2192
10067 msgid "guestfs_getcon"
10068 msgstr ""
10069
10070 #. type: verbatim
10071 #: ../src/guestfs-actions.pod:2194
10072 #, no-wrap
10073 msgid ""
10074 " char *\n"
10075 " guestfs_getcon (guestfs_h *g);\n"
10076 "\n"
10077 msgstr ""
10078
10079 #. type: textblock
10080 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1467
10081 msgid "This gets the SELinux security context of the daemon."
10082 msgstr ""
10083
10084 #. type: textblock
10085 #: ../src/guestfs-actions.pod:2199
10086 msgid ""
10087 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10088 msgstr ""
10089
10090 #. type: =head2
10091 #: ../src/guestfs-actions.pod:2207
10092 msgid "guestfs_getxattr"
10093 msgstr ""
10094
10095 #. type: verbatim
10096 #: ../src/guestfs-actions.pod:2209
10097 #, no-wrap
10098 msgid ""
10099 " char *\n"
10100 " guestfs_getxattr (guestfs_h *g,\n"
10101 "                   const char *path,\n"
10102 "                   const char *name,\n"
10103 "                   size_t *size_r);\n"
10104 "\n"
10105 msgstr ""
10106
10107 #. type: textblock
10108 #: ../src/guestfs-actions.pod:2215
10109 msgid ""
10110 "Get a single extended attribute from file C<path> named C<name>.  This call "
10111 "follows symlinks.  If you want to lookup an extended attribute for the "
10112 "symlink itself, use C<guestfs_lgetxattr>."
10113 msgstr ""
10114
10115 #. type: textblock
10116 #: ../src/guestfs-actions.pod:2219 ../src/guestfs-actions.pod:3675
10117 msgid ""
10118 "Normally it is better to get all extended attributes from a file in one go "
10119 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10120 "implementations are buggy and do not provide a way to list out attributes.  "
10121 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10122 "extended attributes you want in advance and call this function."
10123 msgstr ""
10124
10125 #. type: textblock
10126 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:3682
10127 #: ../fish/guestfish-actions.pod:1487 ../fish/guestfish-actions.pod:2514
10128 msgid ""
10129 "Extended attribute values are blobs of binary data.  If there is no extended "
10130 "attribute named C<name>, this returns an error."
10131 msgstr ""
10132
10133 #. type: textblock
10134 #: ../src/guestfs-actions.pod:2229
10135 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10136 msgstr ""
10137
10138 #. type: textblock
10139 #: ../src/guestfs-actions.pod:2231 ../src/guestfs-actions.pod:2422
10140 #: ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:3687
10141 #: ../src/guestfs-actions.pod:5602 ../src/guestfs-actions.pod:5628
10142 #: ../src/guestfs-actions.pod:5809
10143 msgid ""
10144 "This function returns a buffer, or NULL on error.  The size of the returned "
10145 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10146 "after use>."
10147 msgstr ""
10148
10149 #. type: textblock
10150 #: ../src/guestfs-actions.pod:2235 ../src/guestfs-actions.pod:3691
10151 msgid "(Added in 1.7.24)"
10152 msgstr ""
10153
10154 #. type: =head2
10155 #: ../src/guestfs-actions.pod:2237
10156 msgid "guestfs_getxattrs"
10157 msgstr ""
10158
10159 #. type: verbatim
10160 #: ../src/guestfs-actions.pod:2239
10161 #, no-wrap
10162 msgid ""
10163 " struct guestfs_xattr_list *\n"
10164 " guestfs_getxattrs (guestfs_h *g,\n"
10165 "                    const char *path);\n"
10166 "\n"
10167 msgstr ""
10168
10169 #. type: textblock
10170 #: ../src/guestfs-actions.pod:2243 ../fish/guestfish-actions.pod:1496
10171 msgid ""
10172 "This call lists the extended attributes of the file or directory C<path>."
10173 msgstr ""
10174
10175 #. type: textblock
10176 #: ../src/guestfs-actions.pod:2246 ../fish/guestfish-actions.pod:1499
10177 msgid ""
10178 "At the system call level, this is a combination of the L<listxattr(2)> and "
10179 "L<getxattr(2)> calls."
10180 msgstr ""
10181
10182 #. type: textblock
10183 #: ../src/guestfs-actions.pod:2249
10184 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10185 msgstr ""
10186
10187 #. type: textblock
10188 #: ../src/guestfs-actions.pod:2251 ../src/guestfs-actions.pod:3703
10189 #: ../src/guestfs-actions.pod:4391
10190 msgid ""
10191 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10192 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10193 msgstr ""
10194
10195 #. type: textblock
10196 #: ../src/guestfs-actions.pod:2255 ../src/guestfs-actions.pod:3707
10197 #: ../src/guestfs-actions.pod:3906 ../src/guestfs-actions.pod:3942
10198 #: ../src/guestfs-actions.pod:5982 ../src/guestfs-actions.pod:6491
10199 #: ../src/guestfs-actions.pod:7876
10200 msgid "(Added in 1.0.59)"
10201 msgstr ""
10202
10203 #. type: =head2
10204 #: ../src/guestfs-actions.pod:2257
10205 msgid "guestfs_glob_expand"
10206 msgstr ""
10207
10208 #. type: verbatim
10209 #: ../src/guestfs-actions.pod:2259
10210 #, no-wrap
10211 msgid ""
10212 " char **\n"
10213 " guestfs_glob_expand (guestfs_h *g,\n"
10214 "                      const char *pattern);\n"
10215 "\n"
10216 msgstr ""
10217
10218 #. type: textblock
10219 #: ../src/guestfs-actions.pod:2263 ../fish/guestfish-actions.pod:1508
10220 msgid ""
10221 "This command searches for all the pathnames matching C<pattern> according to "
10222 "the wildcard expansion rules used by the shell."
10223 msgstr ""
10224
10225 #. type: textblock
10226 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1512
10227 msgid ""
10228 "If no paths match, then this returns an empty list (note: not an error)."
10229 msgstr ""
10230
10231 #. type: textblock
10232 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1515
10233 msgid ""
10234 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10235 "GLOB_BRACE>.  See that manual page for more details."
10236 msgstr ""
10237
10238 #. type: textblock
10239 #: ../src/guestfs-actions.pod:2278 ../src/guestfs-actions.pod:6684
10240 #: ../src/guestfs-actions.pod:6701
10241 msgid "(Added in 1.0.50)"
10242 msgstr ""
10243
10244 #. type: =head2
10245 #: ../src/guestfs-actions.pod:2280
10246 msgid "guestfs_grep"
10247 msgstr ""
10248
10249 #. type: verbatim
10250 #: ../src/guestfs-actions.pod:2282
10251 #, no-wrap
10252 msgid ""
10253 " char **\n"
10254 " guestfs_grep (guestfs_h *g,\n"
10255 "               const char *regex,\n"
10256 "               const char *path);\n"
10257 "\n"
10258 msgstr ""
10259
10260 #. type: textblock
10261 #: ../src/guestfs-actions.pod:2287 ../fish/guestfish-actions.pod:1523
10262 msgid "This calls the external C<grep> program and returns the matching lines."
10263 msgstr ""
10264
10265 #. type: =head2
10266 #: ../src/guestfs-actions.pod:2299
10267 msgid "guestfs_grepi"
10268 msgstr ""
10269
10270 #. type: verbatim
10271 #: ../src/guestfs-actions.pod:2301
10272 #, no-wrap
10273 msgid ""
10274 " char **\n"
10275 " guestfs_grepi (guestfs_h *g,\n"
10276 "                const char *regex,\n"
10277 "                const char *path);\n"
10278 "\n"
10279 msgstr ""
10280
10281 #. type: textblock
10282 #: ../src/guestfs-actions.pod:2306 ../fish/guestfish-actions.pod:1533
10283 msgid ""
10284 "This calls the external C<grep -i> program and returns the matching lines."
10285 msgstr ""
10286
10287 #. type: =head2
10288 #: ../src/guestfs-actions.pod:2318
10289 msgid "guestfs_grub_install"
10290 msgstr ""
10291
10292 #. type: verbatim
10293 #: ../src/guestfs-actions.pod:2320
10294 #, no-wrap
10295 msgid ""
10296 " int\n"
10297 " guestfs_grub_install (guestfs_h *g,\n"
10298 "                       const char *root,\n"
10299 "                       const char *device);\n"
10300 "\n"
10301 msgstr ""
10302
10303 #. type: textblock
10304 #: ../src/guestfs-actions.pod:2325 ../fish/guestfish-actions.pod:1543
10305 msgid ""
10306 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10307 "the root directory being C<root>."
10308 msgstr ""
10309
10310 #. type: textblock
10311 #: ../src/guestfs-actions.pod:2328 ../fish/guestfish-actions.pod:1546
10312 msgid ""
10313 "Note: If grub-install reports the error \"No suitable drive was found in the "
10314 "generated device map.\" it may be that you need to create a C</boot/grub/"
10315 "device.map> file first that contains the mapping between grub device names "
10316 "and Linux device names.  It is usually sufficient to create a file "
10317 "containing:"
10318 msgstr ""
10319
10320 #. type: verbatim
10321 #: ../src/guestfs-actions.pod:2335 ../fish/guestfish-actions.pod:1553
10322 #, no-wrap
10323 msgid ""
10324 " (hd0) /dev/vda\n"
10325 "\n"
10326 msgstr ""
10327
10328 #. type: textblock
10329 #: ../src/guestfs-actions.pod:2337 ../fish/guestfish-actions.pod:1555
10330 msgid "replacing C</dev/vda> with the name of the installation device."
10331 msgstr ""
10332
10333 #. type: textblock
10334 #: ../src/guestfs-actions.pod:2341
10335 msgid "(Added in 1.0.17)"
10336 msgstr ""
10337
10338 #. type: =head2
10339 #: ../src/guestfs-actions.pod:2343
10340 msgid "guestfs_head"
10341 msgstr ""
10342
10343 #. type: verbatim
10344 #: ../src/guestfs-actions.pod:2345
10345 #, no-wrap
10346 msgid ""
10347 " char **\n"
10348 " guestfs_head (guestfs_h *g,\n"
10349 "               const char *path);\n"
10350 "\n"
10351 msgstr ""
10352
10353 #. type: textblock
10354 #: ../src/guestfs-actions.pod:2349 ../fish/guestfish-actions.pod:1561
10355 msgid ""
10356 "This command returns up to the first 10 lines of a file as a list of strings."
10357 msgstr ""
10358
10359 #. type: =head2
10360 #: ../src/guestfs-actions.pod:2361
10361 msgid "guestfs_head_n"
10362 msgstr ""
10363
10364 #. type: verbatim
10365 #: ../src/guestfs-actions.pod:2363
10366 #, no-wrap
10367 msgid ""
10368 " char **\n"
10369 " guestfs_head_n (guestfs_h *g,\n"
10370 "                 int nrlines,\n"
10371 "                 const char *path);\n"
10372 "\n"
10373 msgstr ""
10374
10375 #. type: textblock
10376 #: ../src/guestfs-actions.pod:2368 ../fish/guestfish-actions.pod:1571
10377 msgid ""
10378 "If the parameter C<nrlines> is a positive number, this returns the first "
10379 "C<nrlines> lines of the file C<path>."
10380 msgstr ""
10381
10382 #. type: textblock
10383 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1574
10384 msgid ""
10385 "If the parameter C<nrlines> is a negative number, this returns lines from "
10386 "the file C<path>, excluding the last C<nrlines> lines."
10387 msgstr ""
10388
10389 #. type: textblock
10390 #: ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:6981
10391 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:4637
10392 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10393 msgstr ""
10394
10395 #. type: =head2
10396 #: ../src/guestfs-actions.pod:2385
10397 msgid "guestfs_hexdump"
10398 msgstr ""
10399
10400 #. type: verbatim
10401 #: ../src/guestfs-actions.pod:2387
10402 #, no-wrap
10403 msgid ""
10404 " char *\n"
10405 " guestfs_hexdump (guestfs_h *g,\n"
10406 "                  const char *path);\n"
10407 "\n"
10408 msgstr ""
10409
10410 #. type: textblock
10411 #: ../src/guestfs-actions.pod:2391 ../fish/guestfish-actions.pod:1586
10412 msgid ""
10413 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10414 "readable, canonical hex dump of the file."
10415 msgstr ""
10416
10417 #. type: textblock
10418 #: ../src/guestfs-actions.pod:2400 ../src/guestfs-actions.pod:6765
10419 #: ../src/guestfs-actions.pod:6820
10420 msgid "(Added in 1.0.22)"
10421 msgstr ""
10422
10423 #. type: =head2
10424 #: ../src/guestfs-actions.pod:2402
10425 msgid "guestfs_initrd_cat"
10426 msgstr ""
10427
10428 #. type: verbatim
10429 #: ../src/guestfs-actions.pod:2404
10430 #, no-wrap
10431 msgid ""
10432 " char *\n"
10433 " guestfs_initrd_cat (guestfs_h *g,\n"
10434 "                     const char *initrdpath,\n"
10435 "                     const char *filename,\n"
10436 "                     size_t *size_r);\n"
10437 "\n"
10438 msgstr ""
10439
10440 #. type: textblock
10441 #: ../src/guestfs-actions.pod:2410 ../fish/guestfish-actions.pod:1596
10442 msgid ""
10443 "This command unpacks the file C<filename> from the initrd file called "
10444 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10445 "character."
10446 msgstr ""
10447
10448 #. type: textblock
10449 #: ../src/guestfs-actions.pod:2414 ../fish/guestfish-actions.pod:1600
10450 msgid ""
10451 "For example, in guestfish you could use the following command to examine the "
10452 "boot script (usually called C</init>)  contained in a Linux initrd or "
10453 "initramfs image:"
10454 msgstr ""
10455
10456 #. type: verbatim
10457 #: ../src/guestfs-actions.pod:2418 ../fish/guestfish-actions.pod:1604
10458 #, no-wrap
10459 msgid ""
10460 " initrd-cat /boot/initrd-<version>.img init\n"
10461 "\n"
10462 msgstr ""
10463
10464 #. type: textblock
10465 #: ../src/guestfs-actions.pod:2420
10466 msgid "See also C<guestfs_initrd_list>."
10467 msgstr ""
10468
10469 #. type: =head2
10470 #: ../src/guestfs-actions.pod:2431
10471 msgid "guestfs_initrd_list"
10472 msgstr ""
10473
10474 #. type: verbatim
10475 #: ../src/guestfs-actions.pod:2433
10476 #, no-wrap
10477 msgid ""
10478 " char **\n"
10479 " guestfs_initrd_list (guestfs_h *g,\n"
10480 "                      const char *path);\n"
10481 "\n"
10482 msgstr ""
10483
10484 #. type: textblock
10485 #: ../src/guestfs-actions.pod:2437 ../fish/guestfish-actions.pod:1615
10486 msgid "This command lists out files contained in an initrd."
10487 msgstr ""
10488
10489 #. type: textblock
10490 #: ../src/guestfs-actions.pod:2439 ../fish/guestfish-actions.pod:1617
10491 msgid ""
10492 "The files are listed without any initial C</> character.  The files are "
10493 "listed in the order they appear (not necessarily alphabetical).  Directory "
10494 "names are listed as separate items."
10495 msgstr ""
10496
10497 #. type: textblock
10498 #: ../src/guestfs-actions.pod:2443 ../fish/guestfish-actions.pod:1621
10499 msgid ""
10500 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10501 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10502 "files)."
10503 msgstr ""
10504
10505 #. type: =head2
10506 #: ../src/guestfs-actions.pod:2453
10507 msgid "guestfs_inotify_add_watch"
10508 msgstr ""
10509
10510 #. type: verbatim
10511 #: ../src/guestfs-actions.pod:2455
10512 #, no-wrap
10513 msgid ""
10514 " int64_t\n"
10515 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10516 "                            const char *path,\n"
10517 "                            int mask);\n"
10518 "\n"
10519 msgstr ""
10520
10521 #. type: textblock
10522 #: ../src/guestfs-actions.pod:2460 ../fish/guestfish-actions.pod:1629
10523 msgid "Watch C<path> for the events listed in C<mask>."
10524 msgstr ""
10525
10526 #. type: textblock
10527 #: ../src/guestfs-actions.pod:2462 ../fish/guestfish-actions.pod:1631
10528 msgid ""
10529 "Note that if C<path> is a directory then events within that directory are "
10530 "watched, but this does I<not> happen recursively (in subdirectories)."
10531 msgstr ""
10532
10533 #. type: textblock
10534 #: ../src/guestfs-actions.pod:2466 ../fish/guestfish-actions.pod:1635
10535 msgid ""
10536 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10537 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10538 msgstr ""
10539
10540 #. type: =head2
10541 #: ../src/guestfs-actions.pod:2474
10542 msgid "guestfs_inotify_close"
10543 msgstr ""
10544
10545 #. type: verbatim
10546 #: ../src/guestfs-actions.pod:2476
10547 #, no-wrap
10548 msgid ""
10549 " int\n"
10550 " guestfs_inotify_close (guestfs_h *g);\n"
10551 "\n"
10552 msgstr ""
10553
10554 #. type: textblock
10555 #: ../src/guestfs-actions.pod:2479 ../fish/guestfish-actions.pod:1643
10556 msgid ""
10557 "This closes the inotify handle which was previously opened by inotify_init.  "
10558 "It removes all watches, throws away any pending events, and deallocates all "
10559 "resources."
10560 msgstr ""
10561
10562 #. type: =head2
10563 #: ../src/guestfs-actions.pod:2487
10564 msgid "guestfs_inotify_files"
10565 msgstr ""
10566
10567 #. type: verbatim
10568 #: ../src/guestfs-actions.pod:2489
10569 #, no-wrap
10570 msgid ""
10571 " char **\n"
10572 " guestfs_inotify_files (guestfs_h *g);\n"
10573 "\n"
10574 msgstr ""
10575
10576 #. type: textblock
10577 #: ../src/guestfs-actions.pod:2492
10578 msgid ""
10579 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10580 "returns a list of pathnames of objects that were touched.  The returned "
10581 "pathnames are sorted and deduplicated."
10582 msgstr ""
10583
10584 #. type: =head2
10585 #: ../src/guestfs-actions.pod:2502
10586 msgid "guestfs_inotify_init"
10587 msgstr ""
10588
10589 #. type: verbatim
10590 #: ../src/guestfs-actions.pod:2504
10591 #, no-wrap
10592 msgid ""
10593 " int\n"
10594 " guestfs_inotify_init (guestfs_h *g,\n"
10595 "                       int maxevents);\n"
10596 "\n"
10597 msgstr ""
10598
10599 #. type: textblock
10600 #: ../src/guestfs-actions.pod:2508 ../fish/guestfish-actions.pod:1659
10601 msgid ""
10602 "This command creates a new inotify handle.  The inotify subsystem can be "
10603 "used to notify events which happen to objects in the guest filesystem."
10604 msgstr ""
10605
10606 #. type: textblock
10607 #: ../src/guestfs-actions.pod:2512
10608 msgid ""
10609 "C<maxevents> is the maximum number of events which will be queued up between "
10610 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10611 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10612 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10613 "throws away events, but records the fact that it threw them away by setting "
10614 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10615 "C<guestfs_inotify_read>)."
10616 msgstr ""
10617
10618 #. type: textblock
10619 #: ../src/guestfs-actions.pod:2522
10620 msgid ""
10621 "Before any events are generated, you have to add some watches to the "
10622 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10623 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10624 msgstr ""
10625
10626 #. type: textblock
10627 #: ../src/guestfs-actions.pod:2528
10628 msgid ""
10629 "Queued up events should be read periodically by calling "
10630 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10631 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10632 "often enough then you risk the internal queue overflowing."
10633 msgstr ""
10634
10635 #. type: textblock
10636 #: ../src/guestfs-actions.pod:2535
10637 msgid ""
10638 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10639 "This also removes any watches automatically."
10640 msgstr ""
10641
10642 #. type: textblock
10643 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1690
10644 msgid ""
10645 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10646 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10647 "that there is one global inotify handle per libguestfs instance."
10648 msgstr ""
10649
10650 #. type: =head2
10651 #: ../src/guestfs-actions.pod:2548
10652 msgid "guestfs_inotify_read"
10653 msgstr ""
10654
10655 #. type: verbatim
10656 #: ../src/guestfs-actions.pod:2550
10657 #, no-wrap
10658 msgid ""
10659 " struct guestfs_inotify_event_list *\n"
10660 " guestfs_inotify_read (guestfs_h *g);\n"
10661 "\n"
10662 msgstr ""
10663
10664 #. type: textblock
10665 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1699
10666 msgid ""
10667 "Return the complete queue of events that have happened since the previous "
10668 "read call."
10669 msgstr ""
10670
10671 #. type: textblock
10672 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1702
10673 msgid "If no events have happened, this returns an empty list."
10674 msgstr ""
10675
10676 #. type: textblock
10677 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1704
10678 msgid ""
10679 "I<Note>: In order to make sure that all events have been read, you must call "
10680 "this function repeatedly until it returns an empty list.  The reason is that "
10681 "the call will read events up to the maximum appliance-to-host message size "
10682 "and leave remaining events in the queue."
10683 msgstr ""
10684
10685 #. type: textblock
10686 #: ../src/guestfs-actions.pod:2564
10687 msgid ""
10688 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10689 "there was an error.  I<The caller must call "
10690 "C<guestfs_free_inotify_event_list> after use>."
10691 msgstr ""
10692
10693 #. type: =head2
10694 #: ../src/guestfs-actions.pod:2570
10695 msgid "guestfs_inotify_rm_watch"
10696 msgstr ""
10697
10698 #. type: verbatim
10699 #: ../src/guestfs-actions.pod:2572
10700 #, no-wrap
10701 msgid ""
10702 " int\n"
10703 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10704 "                           int wd);\n"
10705 "\n"
10706 msgstr ""
10707
10708 #. type: textblock
10709 #: ../src/guestfs-actions.pod:2576
10710 msgid ""
10711 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10712 msgstr ""
10713
10714 #. type: =head2
10715 #: ../src/guestfs-actions.pod:2583
10716 msgid "guestfs_inspect_get_arch"
10717 msgstr ""
10718
10719 #. type: verbatim
10720 #: ../src/guestfs-actions.pod:2585
10721 #, no-wrap
10722 msgid ""
10723 " char *\n"
10724 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10725 "                           const char *root);\n"
10726 "\n"
10727 msgstr ""
10728
10729 #. type: textblock
10730 #: ../src/guestfs-actions.pod:2589
10731 msgid ""
10732 "This returns the architecture of the inspected operating system.  The "
10733 "possible return values are listed under C<guestfs_file_architecture>."
10734 msgstr ""
10735
10736 #. type: textblock
10737 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1725
10738 msgid ""
10739 "If the architecture could not be determined, then the string C<unknown> is "
10740 "returned."
10741 msgstr ""
10742
10743 #. type: textblock
10744 #: ../src/guestfs-actions.pod:2596 ../src/guestfs-actions.pod:2686
10745 #: ../src/guestfs-actions.pod:2790 ../src/guestfs-actions.pod:2809
10746 #: ../src/guestfs-actions.pod:2940 ../src/guestfs-actions.pod:3023
10747 #: ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3072
10748 #: ../src/guestfs-actions.pod:3125 ../src/guestfs-actions.pod:3165
10749 #: ../src/guestfs-actions.pod:3185 ../src/guestfs-actions.pod:3205
10750 #: ../src/guestfs-actions.pod:3222 ../src/guestfs-actions.pod:3238
10751 #: ../src/guestfs-actions.pod:3256 ../src/guestfs-actions.pod:3358
10752 #: ../src/guestfs-actions.pod:3399 ../fish/guestfish-actions.pod:1728
10753 #: ../fish/guestfish-actions.pod:1811 ../fish/guestfish-actions.pod:1890
10754 #: ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1986
10755 #: ../fish/guestfish-actions.pod:2047 ../fish/guestfish-actions.pod:2068
10756 #: ../fish/guestfish-actions.pod:2082 ../fish/guestfish-actions.pod:2122
10757 #: ../fish/guestfish-actions.pod:2154 ../fish/guestfish-actions.pod:2167
10758 #: ../fish/guestfish-actions.pod:2180 ../fish/guestfish-actions.pod:2190
10759 #: ../fish/guestfish-actions.pod:2200 ../fish/guestfish-actions.pod:2212
10760 #: ../fish/guestfish-actions.pod:2308 ../fish/guestfish-actions.pod:2342
10761 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10762 msgstr ""
10763
10764 #. type: =head2
10765 #: ../src/guestfs-actions.pod:2603
10766 msgid "guestfs_inspect_get_distro"
10767 msgstr ""
10768
10769 #. type: verbatim
10770 #: ../src/guestfs-actions.pod:2605
10771 #, no-wrap
10772 msgid ""
10773 " char *\n"
10774 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10775 "                             const char *root);\n"
10776 "\n"
10777 msgstr ""
10778
10779 #. type: textblock
10780 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1734
10781 msgid ""
10782 "This returns the distro (distribution) of the inspected operating system."
10783 msgstr ""
10784
10785 #. type: textblock
10786 #: ../src/guestfs-actions.pod:2612 ../fish/guestfish-actions.pod:1737
10787 msgid "Currently defined distros are:"
10788 msgstr ""
10789
10790 #. type: =item
10791 #: ../src/guestfs-actions.pod:2616 ../fish/guestfish-actions.pod:1741
10792 msgid "\"archlinux\""
10793 msgstr "\"archlinux\""
10794
10795 #. type: textblock
10796 #: ../src/guestfs-actions.pod:2618 ../fish/guestfish-actions.pod:1743
10797 msgid "Arch Linux."
10798 msgstr "Arch Linux."
10799
10800 #. type: =item
10801 #: ../src/guestfs-actions.pod:2620 ../fish/guestfish-actions.pod:1745
10802 #, fuzzy
10803 #| msgid "\"gentoo\""
10804 msgid "\"centos\""
10805 msgstr "\"gentoo\""
10806
10807 #. type: textblock
10808 #: ../src/guestfs-actions.pod:2622 ../fish/guestfish-actions.pod:1747
10809 msgid "CentOS."
10810 msgstr ""
10811
10812 #. type: =item
10813 #: ../src/guestfs-actions.pod:2624 ../fish/guestfish-actions.pod:1749
10814 msgid "\"debian\""
10815 msgstr "\"debian\""
10816
10817 #. type: textblock
10818 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1751
10819 msgid "Debian."
10820 msgstr "Debian."
10821
10822 #. type: =item
10823 #: ../src/guestfs-actions.pod:2628 ../fish/guestfish-actions.pod:1753
10824 msgid "\"fedora\""
10825 msgstr "\"fedora\""
10826
10827 #. type: textblock
10828 #: ../src/guestfs-actions.pod:2630 ../fish/guestfish-actions.pod:1755
10829 msgid "Fedora."
10830 msgstr "Fedora."
10831
10832 #. type: =item
10833 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1757
10834 msgid "\"gentoo\""
10835 msgstr "\"gentoo\""
10836
10837 #. type: textblock
10838 #: ../src/guestfs-actions.pod:2634 ../fish/guestfish-actions.pod:1759
10839 msgid "Gentoo."
10840 msgstr "Gentoo."
10841
10842 #. type: =item
10843 #: ../src/guestfs-actions.pod:2636 ../fish/guestfish-actions.pod:1761
10844 msgid "\"linuxmint\""
10845 msgstr "\"linuxmint\""
10846
10847 #. type: textblock
10848 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1763
10849 msgid "Linux Mint."
10850 msgstr "Linux Mint."
10851
10852 #. type: =item
10853 #: ../src/guestfs-actions.pod:2640 ../fish/guestfish-actions.pod:1765
10854 msgid "\"mandriva\""
10855 msgstr "\"mandriva\""
10856
10857 #. type: textblock
10858 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1767
10859 msgid "Mandriva."
10860 msgstr "Mandriva."
10861
10862 #. type: =item
10863 #: ../src/guestfs-actions.pod:2644 ../fish/guestfish-actions.pod:1769
10864 msgid "\"meego\""
10865 msgstr "\"meego\""
10866
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1771
10869 msgid "MeeGo."
10870 msgstr "MeeGo."
10871
10872 #. type: =item
10873 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1773
10874 msgid "\"pardus\""
10875 msgstr "\"pardus\""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1775
10879 msgid "Pardus."
10880 msgstr "Pardus."
10881
10882 #. type: =item
10883 #: ../src/guestfs-actions.pod:2652 ../fish/guestfish-actions.pod:1777
10884 msgid "\"redhat-based\""
10885 msgstr "\"redhat-based\""
10886
10887 #. type: textblock
10888 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1779
10889 msgid "Some Red Hat-derived distro."
10890 msgstr "Дистрибутив, що походить від Red Hat."
10891
10892 #. type: =item
10893 #: ../src/guestfs-actions.pod:2656 ../fish/guestfish-actions.pod:1781
10894 msgid "\"rhel\""
10895 msgstr "\"rhel\""
10896
10897 #. type: textblock
10898 #: ../src/guestfs-actions.pod:2658 ../fish/guestfish-actions.pod:1783
10899 #, fuzzy
10900 #| msgid "Red Hat Enterprise Linux and some derivatives."
10901 msgid "Red Hat Enterprise Linux."
10902 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10903
10904 #. type: =item
10905 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1785
10906 msgid "\"scientificlinux\""
10907 msgstr ""
10908
10909 #. type: textblock
10910 #: ../src/guestfs-actions.pod:2662 ../fish/guestfish-actions.pod:1787
10911 msgid "Scientific Linux."
10912 msgstr ""
10913
10914 #. type: =item
10915 #: ../src/guestfs-actions.pod:2664 ../fish/guestfish-actions.pod:1789
10916 msgid "\"slackware\""
10917 msgstr ""
10918
10919 #. type: textblock
10920 #: ../src/guestfs-actions.pod:2666 ../fish/guestfish-actions.pod:1791
10921 msgid "Slackware."
10922 msgstr ""
10923
10924 #. type: =item
10925 #: ../src/guestfs-actions.pod:2668 ../fish/guestfish-actions.pod:1793
10926 msgid "\"ubuntu\""
10927 msgstr "\"ubuntu\""
10928
10929 #. type: textblock
10930 #: ../src/guestfs-actions.pod:2670 ../fish/guestfish-actions.pod:1795
10931 msgid "Ubuntu."
10932 msgstr "Ubuntu."
10933
10934 #. type: =item
10935 #: ../src/guestfs-actions.pod:2672 ../src/guestfs-actions.pod:2781
10936 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:1797
10937 #: ../fish/guestfish-actions.pod:1881 ../fish/guestfish-actions.pod:2145
10938 msgid "\"unknown\""
10939 msgstr "\"unknown\""
10940
10941 #. type: textblock
10942 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1799
10943 msgid "The distro could not be determined."
10944 msgstr "Дистрибутив, тип якого не вдалося визначити."
10945
10946 #. type: =item
10947 #: ../src/guestfs-actions.pod:2676 ../src/guestfs-actions.pod:3148
10948 #: ../fish/guestfish-actions.pod:1801 ../fish/guestfish-actions.pod:2137
10949 msgid "\"windows\""
10950 msgstr "\"windows\""
10951
10952 #. type: textblock
10953 #: ../src/guestfs-actions.pod:2678 ../fish/guestfish-actions.pod:1803
10954 msgid ""
10955 "Windows does not have distributions.  This string is returned if the OS type "
10956 "is Windows."
10957 msgstr ""
10958
10959 #. type: textblock
10960 #: ../src/guestfs-actions.pod:2683 ../src/guestfs-actions.pod:2787
10961 #: ../src/guestfs-actions.pod:3162 ../fish/guestfish-actions.pod:1808
10962 #: ../fish/guestfish-actions.pod:1887 ../fish/guestfish-actions.pod:2151
10963 msgid ""
10964 "Future versions of libguestfs may return other strings here.  The caller "
10965 "should be prepared to handle any string."
10966 msgstr ""
10967
10968 #. type: =head2
10969 #: ../src/guestfs-actions.pod:2693
10970 msgid "guestfs_inspect_get_drive_mappings"
10971 msgstr ""
10972
10973 #. type: verbatim
10974 #: ../src/guestfs-actions.pod:2695
10975 #, no-wrap
10976 msgid ""
10977 " char **\n"
10978 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10979 "                                     const char *root);\n"
10980 "\n"
10981 msgstr ""
10982
10983 #. type: textblock
10984 #: ../src/guestfs-actions.pod:2699 ../fish/guestfish-actions.pod:1817
10985 msgid ""
10986 "This call is useful for Windows which uses a primitive system of assigning "
10987 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10988 "Windows Registry to find out how disks/partitions are mapped to drive "
10989 "letters, and returns a hash table as in the example below:"
10990 msgstr ""
10991
10992 #. type: verbatim
10993 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1823
10994 #, no-wrap
10995 msgid ""
10996 " C      =>     /dev/vda2\n"
10997 " E      =>     /dev/vdb1\n"
10998 " F      =>     /dev/vdc1\n"
10999 "\n"
11000 msgstr ""
11001
11002 #. type: textblock
11003 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1827
11004 msgid ""
11005 "Note that keys are drive letters.  For Windows, the key is case insensitive "
11006 "and just contains the drive letter, without the customary colon separator "
11007 "character."
11008 msgstr ""
11009
11010 #. type: textblock
11011 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1831
11012 msgid ""
11013 "In future we may support other operating systems that also used drive "
11014 "letters, but the keys for those might not be case insensitive and might be "
11015 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
11016 "C<h1> etc."
11017 msgstr ""
11018
11019 #. type: textblock
11020 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1836
11021 msgid ""
11022 "For Windows guests, currently only hard drive mappings are returned.  "
11023 "Removable disks (eg. DVD-ROMs) are ignored."
11024 msgstr ""
11025
11026 #. type: textblock
11027 #: ../src/guestfs-actions.pod:2721 ../fish/guestfish-actions.pod:1839
11028 msgid ""
11029 "For guests that do not use drive mappings, or if the drive mappings could "
11030 "not be determined, this returns an empty hash table."
11031 msgstr ""
11032
11033 #. type: textblock
11034 #: ../src/guestfs-actions.pod:2724
11035 msgid ""
11036 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11037 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11038 msgstr ""
11039
11040 #. type: textblock
11041 #: ../src/guestfs-actions.pod:2728 ../src/guestfs-actions.pod:2996
11042 #: ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:5076
11043 #: ../src/guestfs-actions.pod:7122
11044 msgid ""
11045 "This function returns a NULL-terminated array of strings, or NULL if there "
11046 "was an error.  The array of strings will always have length C<2n+1>, where "
11047 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11048 "caller must free the strings and the array after use>."
11049 msgstr ""
11050
11051 #. type: textblock
11052 #: ../src/guestfs-actions.pod:2734 ../src/guestfs-actions.pod:3190
11053 msgid "(Added in 1.9.17)"
11054 msgstr ""
11055
11056 #. type: =head2
11057 #: ../src/guestfs-actions.pod:2736
11058 msgid "guestfs_inspect_get_filesystems"
11059 msgstr ""
11060
11061 #. type: verbatim
11062 #: ../src/guestfs-actions.pod:2738
11063 #, no-wrap
11064 msgid ""
11065 " char **\n"
11066 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11067 "                                  const char *root);\n"
11068 "\n"
11069 msgstr ""
11070
11071 #. type: textblock
11072 #: ../src/guestfs-actions.pod:2742 ../fish/guestfish-actions.pod:1850
11073 msgid ""
11074 "This returns a list of all the filesystems that we think are associated with "
11075 "this operating system.  This includes the root filesystem, other ordinary "
11076 "filesystems, and non-mounted devices like swap partitions."
11077 msgstr ""
11078
11079 #. type: textblock
11080 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1855
11081 msgid ""
11082 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
11083 "to be shared between operating systems."
11084 msgstr ""
11085
11086 #. type: textblock
11087 #: ../src/guestfs-actions.pod:2750
11088 msgid ""
11089 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11090 "C<guestfs_inspect_get_mountpoints>."
11091 msgstr ""
11092
11093 #. type: =head2
11094 #: ../src/guestfs-actions.pod:2759
11095 msgid "guestfs_inspect_get_format"
11096 msgstr ""
11097
11098 #. type: verbatim
11099 #: ../src/guestfs-actions.pod:2761
11100 #, no-wrap
11101 msgid ""
11102 " char *\n"
11103 " guestfs_inspect_get_format (guestfs_h *g,\n"
11104 "                             const char *root);\n"
11105 "\n"
11106 msgstr ""
11107
11108 #. type: textblock
11109 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1865
11110 msgid ""
11111 "This returns the format of the inspected operating system.  You can use it "
11112 "to detect install images, live CDs and similar."
11113 msgstr ""
11114
11115 #. type: textblock
11116 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1868
11117 msgid "Currently defined formats are:"
11118 msgstr ""
11119
11120 #. type: =item
11121 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1872
11122 msgid "\"installed\""
11123 msgstr "\"installed\""
11124
11125 #. type: textblock
11126 #: ../src/guestfs-actions.pod:2774 ../fish/guestfish-actions.pod:1874
11127 msgid "This is an installed operating system."
11128 msgstr "Це встановлена операційна система."
11129
11130 #. type: =item
11131 #: ../src/guestfs-actions.pod:2776 ../fish/guestfish-actions.pod:1876
11132 msgid "\"installer\""
11133 msgstr ""
11134
11135 #. type: textblock
11136 #: ../src/guestfs-actions.pod:2778 ../fish/guestfish-actions.pod:1878
11137 msgid ""
11138 "The disk image being inspected is not an installed operating system, but a "
11139 "I<bootable> install disk, live CD, or similar."
11140 msgstr ""
11141
11142 #. type: textblock
11143 #: ../src/guestfs-actions.pod:2783 ../fish/guestfish-actions.pod:1883
11144 msgid "The format of this disk image is not known."
11145 msgstr ""
11146
11147 #. type: textblock
11148 #: ../src/guestfs-actions.pod:2795 ../src/guestfs-actions.pod:3226
11149 #: ../src/guestfs-actions.pod:3242 ../src/guestfs-actions.pod:3260
11150 #: ../src/guestfs-actions.pod:6020
11151 msgid "(Added in 1.9.4)"
11152 msgstr ""
11153
11154 #. type: =head2
11155 #: ../src/guestfs-actions.pod:2797
11156 msgid "guestfs_inspect_get_hostname"
11157 msgstr ""
11158
11159 #. type: verbatim
11160 #: ../src/guestfs-actions.pod:2799
11161 #, no-wrap
11162 msgid ""
11163 " char *\n"
11164 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
11165 "                               const char *root);\n"
11166 "\n"
11167 msgstr ""
11168
11169 #. type: textblock
11170 #: ../src/guestfs-actions.pod:2803 ../fish/guestfish-actions.pod:1896
11171 msgid ""
11172 "This function returns the hostname of the operating system as found by "
11173 "inspection of the guest's configuration files."
11174 msgstr ""
11175
11176 #. type: textblock
11177 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1899
11178 msgid ""
11179 "If the hostname could not be determined, then the string C<unknown> is "
11180 "returned."
11181 msgstr ""
11182
11183 #. type: textblock
11184 #: ../src/guestfs-actions.pod:2814
11185 msgid "(Added in 1.7.9)"
11186 msgstr ""
11187
11188 #. type: =head2
11189 #: ../src/guestfs-actions.pod:2816
11190 msgid "guestfs_inspect_get_icon"
11191 msgstr ""
11192
11193 #. type: verbatim
11194 #: ../src/guestfs-actions.pod:2818
11195 #, no-wrap
11196 msgid ""
11197 " char *\n"
11198 " guestfs_inspect_get_icon (guestfs_h *g,\n"
11199 "                           const char *root,\n"
11200 "                           size_t *size_r,\n"
11201 "                           ...);\n"
11202 "\n"
11203 msgstr ""
11204
11205 #. type: verbatim
11206 #: ../src/guestfs-actions.pod:2829
11207 #, no-wrap
11208 msgid ""
11209 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
11210 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
11211 "\n"
11212 msgstr ""
11213
11214 #. type: textblock
11215 #: ../src/guestfs-actions.pod:2832 ../fish/guestfish-actions.pod:1908
11216 msgid ""
11217 "This function returns an icon corresponding to the inspected operating "
11218 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
11219 "to PNG if necessary)."
11220 msgstr ""
11221
11222 #. type: textblock
11223 #: ../src/guestfs-actions.pod:2836 ../fish/guestfish-actions.pod:1912
11224 msgid ""
11225 "If it was not possible to get an icon this function returns a zero-length "
11226 "(non-NULL) buffer.  I<Callers must check for this case>."
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:2839 ../fish/guestfish-actions.pod:1915
11231 msgid ""
11232 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11233 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11234 "this file will be returned.  You can disable favicons by passing the "
11235 "optional C<favicon> boolean as false (default is true)."
11236 msgstr ""
11237
11238 #. type: textblock
11239 #: ../src/guestfs-actions.pod:2845 ../fish/guestfish-actions.pod:1921
11240 msgid ""
11241 "If finding the favicon fails, then we look in other places in the guest for "
11242 "a suitable icon."
11243 msgstr ""
11244
11245 #. type: textblock
11246 #: ../src/guestfs-actions.pod:2848 ../fish/guestfish-actions.pod:1924
11247 msgid ""
11248 "If the optional C<highquality> boolean is true then only high quality icons "
11249 "are returned, which means only icons of high resolution with an alpha "
11250 "channel.  The default (false) is to return any icon we can, even if it is of "
11251 "substandard quality."
11252 msgstr ""
11253
11254 #. type: textblock
11255 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1935
11256 msgid ""
11257 "Unlike most other inspection API calls, the guest's disks must be mounted up "
11258 "before you call this, since it needs to read information from the guest "
11259 "filesystem during the call."
11260 msgstr ""
11261
11262 #. type: textblock
11263 #: ../src/guestfs-actions.pod:2865 ../fish/guestfish-actions.pod:1941
11264 msgid ""
11265 "B<Security:> The icon data comes from the untrusted guest, and should be "
11266 "treated with caution.  PNG files have been known to contain exploits.  "
11267 "Ensure that libpng (or other relevant libraries) are fully up to date before "
11268 "trying to process or display the icon."
11269 msgstr ""
11270
11271 #. type: textblock
11272 #: ../src/guestfs-actions.pod:2873 ../fish/guestfish-actions.pod:1949
11273 msgid ""
11274 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
11275 "tries to return the largest, highest quality icon available.  The "
11276 "application must scale the icon to the required size."
11277 msgstr ""
11278
11279 #. type: textblock
11280 #: ../src/guestfs-actions.pod:2880 ../fish/guestfish-actions.pod:1956
11281 msgid ""
11282 "Extracting icons from Windows guests requires the external C<wrestool> "
11283 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11284 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11285 "installed separately."
11286 msgstr ""
11287
11288 #. type: textblock
11289 #: ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1963
11290 msgid ""
11291 "Operating system icons are usually trademarks.  Seek legal advice before "
11292 "using trademarks in applications."
11293 msgstr ""
11294
11295 #. type: textblock
11296 #: ../src/guestfs-actions.pod:2896 ../src/guestfs-actions.pod:3721
11297 #: ../src/guestfs-actions.pod:4975
11298 msgid "(Added in 1.11.12)"
11299 msgstr ""
11300
11301 #. type: =head2
11302 #: ../src/guestfs-actions.pod:2898
11303 msgid "guestfs_inspect_get_icon_va"
11304 msgstr ""
11305
11306 #. type: verbatim
11307 #: ../src/guestfs-actions.pod:2900
11308 #, no-wrap
11309 msgid ""
11310 " char *\n"
11311 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11312 "                              const char *root,\n"
11313 "                              size_t *size_r,\n"
11314 "                              va_list args);\n"
11315 "\n"
11316 msgstr ""
11317
11318 #. type: textblock
11319 #: ../src/guestfs-actions.pod:2906
11320 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11321 msgstr ""
11322
11323 #. type: =head2
11324 #: ../src/guestfs-actions.pod:2910
11325 msgid "guestfs_inspect_get_icon_argv"
11326 msgstr ""
11327
11328 #. type: verbatim
11329 #: ../src/guestfs-actions.pod:2912
11330 #, no-wrap
11331 msgid ""
11332 " char *\n"
11333 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11334 "                                const char *root,\n"
11335 "                                size_t *size_r,\n"
11336 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11337 "\n"
11338 msgstr ""
11339
11340 #. type: textblock
11341 #: ../src/guestfs-actions.pod:2918
11342 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11343 msgstr ""
11344
11345 #. type: =head2
11346 #: ../src/guestfs-actions.pod:2922
11347 msgid "guestfs_inspect_get_major_version"
11348 msgstr ""
11349
11350 #. type: verbatim
11351 #: ../src/guestfs-actions.pod:2924
11352 #, no-wrap
11353 msgid ""
11354 " int\n"
11355 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11356 "                                    const char *root);\n"
11357 "\n"
11358 msgstr ""
11359
11360 #. type: textblock
11361 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:1974
11362 msgid ""
11363 "This returns the major version number of the inspected operating system."
11364 msgstr ""
11365
11366 #. type: textblock
11367 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:1977
11368 msgid ""
11369 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11370 "popular public names used by the operating system.  Notably the operating "
11371 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11372 "1).  You can find out the real versions corresponding to releases of Windows "
11373 "by consulting Wikipedia or MSDN."
11374 msgstr ""
11375
11376 #. type: textblock
11377 #: ../src/guestfs-actions.pod:2938 ../src/guestfs-actions.pod:2955
11378 #: ../fish/guestfish-actions.pod:1984 ../fish/guestfish-actions.pod:1995
11379 msgid "If the version could not be determined, then C<0> is returned."
11380 msgstr ""
11381
11382 #. type: =head2
11383 #: ../src/guestfs-actions.pod:2946
11384 msgid "guestfs_inspect_get_minor_version"
11385 msgstr ""
11386
11387 #. type: verbatim
11388 #: ../src/guestfs-actions.pod:2948
11389 #, no-wrap
11390 msgid ""
11391 " int\n"
11392 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11393 "                                    const char *root);\n"
11394 "\n"
11395 msgstr ""
11396
11397 #. type: textblock
11398 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:1992
11399 msgid ""
11400 "This returns the minor version number of the inspected operating system."
11401 msgstr ""
11402
11403 #. type: textblock
11404 #: ../src/guestfs-actions.pod:2957
11405 msgid ""
11406 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11407 "C<guestfs_inspect_get_major_version>."
11408 msgstr ""
11409
11410 #. type: =head2
11411 #: ../src/guestfs-actions.pod:2964
11412 msgid "guestfs_inspect_get_mountpoints"
11413 msgstr ""
11414
11415 #. type: verbatim
11416 #: ../src/guestfs-actions.pod:2966
11417 #, no-wrap
11418 msgid ""
11419 " char **\n"
11420 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11421 "                                  const char *root);\n"
11422 "\n"
11423 msgstr ""
11424
11425 #. type: textblock
11426 #: ../src/guestfs-actions.pod:2970 ../fish/guestfish-actions.pod:2004
11427 msgid ""
11428 "This returns a hash of where we think the filesystems associated with this "
11429 "operating system should be mounted.  Callers should note that this is at "
11430 "best an educated guess made by reading configuration files such as C</etc/"
11431 "fstab>.  I<In particular note> that this may return filesystems which are "
11432 "non-existent or not mountable and callers should be prepared to handle or "
11433 "ignore failures if they try to mount them."
11434 msgstr ""
11435
11436 #. type: textblock
11437 #: ../src/guestfs-actions.pod:2979 ../fish/guestfish-actions.pod:2013
11438 msgid ""
11439 "Each element in the returned hashtable has a key which is the path of the "
11440 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11441 "mounted there (eg. C</dev/sda1>)."
11442 msgstr ""
11443
11444 #. type: textblock
11445 #: ../src/guestfs-actions.pod:2984 ../fish/guestfish-actions.pod:2018
11446 msgid ""
11447 "Non-mounted devices such as swap devices are I<not> returned in this list."
11448 msgstr ""
11449
11450 #. type: textblock
11451 #: ../src/guestfs-actions.pod:2987
11452 msgid ""
11453 "For operating systems like Windows which still use drive letters, this call "
11454 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11455 "information about the mapping of drive letters to partitions, see "
11456 "C<guestfs_inspect_get_drive_mappings>."
11457 msgstr ""
11458
11459 #. type: textblock
11460 #: ../src/guestfs-actions.pod:2993
11461 msgid ""
11462 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11463 "C<guestfs_inspect_get_filesystems>."
11464 msgstr ""
11465
11466 #. type: =head2
11467 #: ../src/guestfs-actions.pod:3004
11468 msgid "guestfs_inspect_get_package_format"
11469 msgstr ""
11470
11471 #. type: verbatim
11472 #: ../src/guestfs-actions.pod:3006
11473 #, no-wrap
11474 msgid ""
11475 " char *\n"
11476 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11477 "                                     const char *root);\n"
11478 "\n"
11479 msgstr ""
11480
11481 #. type: textblock
11482 #: ../src/guestfs-actions.pod:3010
11483 msgid ""
11484 "This function and C<guestfs_inspect_get_package_management> return the "
11485 "package format and package management tool used by the inspected operating "
11486 "system.  For example for Fedora these functions would return C<rpm> (package "
11487 "format) and C<yum> (package management)."
11488 msgstr ""
11489
11490 #. type: textblock
11491 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:2040
11492 msgid ""
11493 "This returns the string C<unknown> if we could not determine the package "
11494 "format I<or> if the operating system does not have a real packaging system "
11495 "(eg. Windows)."
11496 msgstr ""
11497
11498 #. type: textblock
11499 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2044
11500 msgid ""
11501 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11502 "Future versions of libguestfs may return other strings."
11503 msgstr ""
11504
11505 #. type: textblock
11506 #: ../src/guestfs-actions.pod:3028 ../src/guestfs-actions.pod:3056
11507 msgid "(Added in 1.7.5)"
11508 msgstr ""
11509
11510 #. type: =head2
11511 #: ../src/guestfs-actions.pod:3030
11512 msgid "guestfs_inspect_get_package_management"
11513 msgstr ""
11514
11515 #. type: verbatim
11516 #: ../src/guestfs-actions.pod:3032
11517 #, no-wrap
11518 msgid ""
11519 " char *\n"
11520 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11521 "                                         const char *root);\n"
11522 "\n"
11523 msgstr ""
11524
11525 #. type: textblock
11526 #: ../src/guestfs-actions.pod:3036
11527 msgid ""
11528 "C<guestfs_inspect_get_package_format> and this function return the package "
11529 "format and package management tool used by the inspected operating system.  "
11530 "For example for Fedora these functions would return C<rpm> (package format) "
11531 "and C<yum> (package management)."
11532 msgstr ""
11533
11534 #. type: textblock
11535 #: ../src/guestfs-actions.pod:3042 ../fish/guestfish-actions.pod:2059
11536 msgid ""
11537 "This returns the string C<unknown> if we could not determine the package "
11538 "management tool I<or> if the operating system does not have a real packaging "
11539 "system (eg. Windows)."
11540 msgstr ""
11541
11542 #. type: textblock
11543 #: ../src/guestfs-actions.pod:3046 ../fish/guestfish-actions.pod:2063
11544 msgid ""
11545 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11546 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11547 "libguestfs may return other strings."
11548 msgstr ""
11549
11550 #. type: =head2
11551 #: ../src/guestfs-actions.pod:3058
11552 msgid "guestfs_inspect_get_product_name"
11553 msgstr ""
11554
11555 #. type: verbatim
11556 #: ../src/guestfs-actions.pod:3060
11557 #, no-wrap
11558 msgid ""
11559 " char *\n"
11560 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11561 "                                   const char *root);\n"
11562 "\n"
11563 msgstr ""
11564
11565 #. type: textblock
11566 #: ../src/guestfs-actions.pod:3064 ../fish/guestfish-actions.pod:2074
11567 msgid ""
11568 "This returns the product name of the inspected operating system.  The "
11569 "product name is generally some freeform string which can be displayed to the "
11570 "user, but should not be parsed by programs."
11571 msgstr ""
11572
11573 #. type: textblock
11574 #: ../src/guestfs-actions.pod:3069 ../fish/guestfish-actions.pod:2079
11575 msgid ""
11576 "If the product name could not be determined, then the string C<unknown> is "
11577 "returned."
11578 msgstr ""
11579
11580 #. type: =head2
11581 #: ../src/guestfs-actions.pod:3079
11582 msgid "guestfs_inspect_get_product_variant"
11583 msgstr ""
11584
11585 #. type: verbatim
11586 #: ../src/guestfs-actions.pod:3081
11587 #, no-wrap
11588 msgid ""
11589 " char *\n"
11590 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11591 "                                      const char *root);\n"
11592 "\n"
11593 msgstr ""
11594
11595 #. type: textblock
11596 #: ../src/guestfs-actions.pod:3085 ../fish/guestfish-actions.pod:2088
11597 #, fuzzy
11598 #| msgid "This is an installed operating system."
11599 msgid "This returns the product variant of the inspected operating system."
11600 msgstr "Це встановлена операційна система."
11601
11602 #. type: textblock
11603 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:2091
11604 msgid ""
11605 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11606 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11607 "is usually a string such as C<Client> or C<Server> (other values are "
11608 "possible).  This can be used to distinguish consumer and enterprise versions "
11609 "of Windows that have the same version number (for example, Windows 7 and "
11610 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11611 "the latter is C<Server>)."
11612 msgstr ""
11613
11614 #. type: textblock
11615 #: ../src/guestfs-actions.pod:3097 ../fish/guestfish-actions.pod:2100
11616 msgid ""
11617 "For enterprise Linux guests, in future we intend this to return the product "
11618 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11619 "implemented at present."
11620 msgstr ""
11621
11622 #. type: textblock
11623 #: ../src/guestfs-actions.pod:3101 ../fish/guestfish-actions.pod:2104
11624 msgid ""
11625 "If the product variant could not be determined, then the string C<unknown> "
11626 "is returned."
11627 msgstr ""
11628
11629 #. type: textblock
11630 #: ../src/guestfs-actions.pod:3104
11631 msgid ""
11632 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11633 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11634 msgstr ""
11635
11636 #. type: textblock
11637 #: ../src/guestfs-actions.pod:3111
11638 msgid "(Added in 1.9.13)"
11639 msgstr ""
11640
11641 #. type: =head2
11642 #: ../src/guestfs-actions.pod:3113
11643 msgid "guestfs_inspect_get_roots"
11644 msgstr ""
11645
11646 #. type: verbatim
11647 #: ../src/guestfs-actions.pod:3115
11648 #, no-wrap
11649 msgid ""
11650 " char **\n"
11651 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11652 "\n"
11653 msgstr ""
11654
11655 #. type: textblock
11656 #: ../src/guestfs-actions.pod:3118
11657 msgid ""
11658 "This function is a convenient way to get the list of root devices, as "
11659 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11660 "the whole inspection process."
11661 msgstr ""
11662
11663 #. type: textblock
11664 #: ../src/guestfs-actions.pod:3122
11665 msgid ""
11666 "This returns an empty list if either no root devices were found or the "
11667 "caller has not called C<guestfs_inspect_os>."
11668 msgstr ""
11669
11670 #. type: textblock
11671 #: ../src/guestfs-actions.pod:3131
11672 msgid "(Added in 1.7.3)"
11673 msgstr ""
11674
11675 #. type: =head2
11676 #: ../src/guestfs-actions.pod:3133
11677 msgid "guestfs_inspect_get_type"
11678 msgstr ""
11679
11680 #. type: verbatim
11681 #: ../src/guestfs-actions.pod:3135
11682 #, no-wrap
11683 msgid ""
11684 " char *\n"
11685 " guestfs_inspect_get_type (guestfs_h *g,\n"
11686 "                           const char *root);\n"
11687 "\n"
11688 msgstr ""
11689
11690 #. type: textblock
11691 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2128
11692 msgid ""
11693 "This returns the type of the inspected operating system.  Currently defined "
11694 "types are:"
11695 msgstr ""
11696
11697 #. type: =item
11698 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2133
11699 msgid "\"linux\""
11700 msgstr "\"linux\""
11701
11702 #. type: textblock
11703 #: ../src/guestfs-actions.pod:3146 ../fish/guestfish-actions.pod:2135
11704 msgid "Any Linux-based operating system."
11705 msgstr ""
11706
11707 #. type: textblock
11708 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2139
11709 msgid "Any Microsoft Windows operating system."
11710 msgstr ""
11711
11712 #. type: =item
11713 #: ../src/guestfs-actions.pod:3152 ../fish/guestfish-actions.pod:2141
11714 msgid "\"freebsd\""
11715 msgstr "\"freebsd\""
11716
11717 #. type: textblock
11718 #: ../src/guestfs-actions.pod:3154 ../fish/guestfish-actions.pod:2143
11719 msgid "FreeBSD."
11720 msgstr "FreeBSD."
11721
11722 #. type: textblock
11723 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2147
11724 msgid "The operating system type could not be determined."
11725 msgstr ""
11726
11727 #. type: =head2
11728 #: ../src/guestfs-actions.pod:3172
11729 msgid "guestfs_inspect_get_windows_current_control_set"
11730 msgstr ""
11731
11732 #. type: verbatim
11733 #: ../src/guestfs-actions.pod:3174
11734 #, no-wrap
11735 msgid ""
11736 " char *\n"
11737 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11738 "                                                  const char *root);\n"
11739 "\n"
11740 msgstr ""
11741
11742 #. type: textblock
11743 #: ../src/guestfs-actions.pod:3178 ../fish/guestfish-actions.pod:2160
11744 msgid ""
11745 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11746 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11747 msgstr ""
11748
11749 #. type: textblock
11750 #: ../src/guestfs-actions.pod:3181 ../fish/guestfish-actions.pod:2163
11751 msgid ""
11752 "This call assumes that the guest is Windows and that the Registry could be "
11753 "examined by inspection.  If this is not the case then an error is returned."
11754 msgstr ""
11755
11756 #. type: =head2
11757 #: ../src/guestfs-actions.pod:3192
11758 msgid "guestfs_inspect_get_windows_systemroot"
11759 msgstr ""
11760
11761 #. type: verbatim
11762 #: ../src/guestfs-actions.pod:3194
11763 #, no-wrap
11764 msgid ""
11765 " char *\n"
11766 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11767 "                                         const char *root);\n"
11768 "\n"
11769 msgstr ""
11770
11771 #. type: textblock
11772 #: ../src/guestfs-actions.pod:3198 ../fish/guestfish-actions.pod:2173
11773 msgid ""
11774 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11775 "is a directory path such as C</WINDOWS>."
11776 msgstr ""
11777
11778 #. type: textblock
11779 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2176
11780 msgid ""
11781 "This call assumes that the guest is Windows and that the systemroot could be "
11782 "determined by inspection.  If this is not the case then an error is returned."
11783 msgstr ""
11784
11785 #. type: textblock
11786 #: ../src/guestfs-actions.pod:3210
11787 msgid "(Added in 1.5.25)"
11788 msgstr ""
11789
11790 #. type: =head2
11791 #: ../src/guestfs-actions.pod:3212
11792 msgid "guestfs_inspect_is_live"
11793 msgstr ""
11794
11795 #. type: verbatim
11796 #: ../src/guestfs-actions.pod:3214
11797 #, no-wrap
11798 msgid ""
11799 " int\n"
11800 " guestfs_inspect_is_live (guestfs_h *g,\n"
11801 "                          const char *root);\n"
11802 "\n"
11803 msgstr ""
11804
11805 #. type: textblock
11806 #: ../src/guestfs-actions.pod:3218
11807 msgid ""
11808 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11809 "disk), then this returns true if a live image was detected on the disk."
11810 msgstr ""
11811
11812 #. type: =head2
11813 #: ../src/guestfs-actions.pod:3228
11814 msgid "guestfs_inspect_is_multipart"
11815 msgstr ""
11816
11817 #. type: verbatim
11818 #: ../src/guestfs-actions.pod:3230
11819 #, no-wrap
11820 msgid ""
11821 " int\n"
11822 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11823 "                               const char *root);\n"
11824 "\n"
11825 msgstr ""
11826
11827 #. type: textblock
11828 #: ../src/guestfs-actions.pod:3234
11829 msgid ""
11830 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11831 "disk), then this returns true if the disk is part of a set."
11832 msgstr ""
11833
11834 #. type: =head2
11835 #: ../src/guestfs-actions.pod:3244
11836 msgid "guestfs_inspect_is_netinst"
11837 msgstr ""
11838
11839 #. type: verbatim
11840 #: ../src/guestfs-actions.pod:3246
11841 #, no-wrap
11842 msgid ""
11843 " int\n"
11844 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11845 "                             const char *root);\n"
11846 "\n"
11847 msgstr ""
11848
11849 #. type: textblock
11850 #: ../src/guestfs-actions.pod:3250
11851 msgid ""
11852 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11853 "disk), then this returns true if the disk is a network installer, ie. not a "
11854 "self-contained install CD but one which is likely to require network access "
11855 "to complete the install."
11856 msgstr ""
11857
11858 #. type: =head2
11859 #: ../src/guestfs-actions.pod:3262
11860 msgid "guestfs_inspect_list_applications"
11861 msgstr ""
11862
11863 #. type: verbatim
11864 #: ../src/guestfs-actions.pod:3264
11865 #, no-wrap
11866 msgid ""
11867 " struct guestfs_application_list *\n"
11868 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11869 "                                    const char *root);\n"
11870 "\n"
11871 msgstr ""
11872
11873 #. type: textblock
11874 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2218
11875 msgid "Return the list of applications installed in the operating system."
11876 msgstr ""
11877
11878 #. type: textblock
11879 #: ../src/guestfs-actions.pod:3270
11880 msgid ""
11881 "I<Note:> This call works differently from other parts of the inspection "
11882 "API.  You have to call C<guestfs_inspect_os>, then "
11883 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11884 "this.  Listing applications is a significantly more difficult operation "
11885 "which requires access to the full filesystem.  Also note that unlike the "
11886 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11887 "the libguestfs handle, this call actually reads parts of the mounted "
11888 "filesystems during the call."
11889 msgstr ""
11890
11891 #. type: textblock
11892 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2230
11893 msgid ""
11894 "This returns an empty list if the inspection code was not able to determine "
11895 "the list of applications."
11896 msgstr ""
11897
11898 #. type: textblock
11899 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2233
11900 msgid "The application structure contains the following fields:"
11901 msgstr ""
11902
11903 #. type: =item
11904 #: ../src/guestfs-actions.pod:3287 ../fish/guestfish-actions.pod:2237
11905 msgid "C<app_name>"
11906 msgstr "C<app_name>"
11907
11908 #. type: textblock
11909 #: ../src/guestfs-actions.pod:3289 ../fish/guestfish-actions.pod:2239
11910 msgid ""
11911 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11912 "guests, this is the package name."
11913 msgstr ""
11914
11915 #. type: =item
11916 #: ../src/guestfs-actions.pod:3292 ../fish/guestfish-actions.pod:2242
11917 msgid "C<app_display_name>"
11918 msgstr "C<app_display_name>"
11919
11920 #. type: textblock
11921 #: ../src/guestfs-actions.pod:3294 ../fish/guestfish-actions.pod:2244
11922 msgid ""
11923 "The display name of the application, sometimes localized to the install "
11924 "language of the guest operating system."
11925 msgstr ""
11926
11927 #. type: textblock
11928 #: ../src/guestfs-actions.pod:3297 ../fish/guestfish-actions.pod:2247
11929 msgid ""
11930 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11931 "to display something can use C<app_name> instead."
11932 msgstr ""
11933
11934 #. type: =item
11935 #: ../src/guestfs-actions.pod:3300 ../fish/guestfish-actions.pod:2250
11936 msgid "C<app_epoch>"
11937 msgstr "C<app_epoch>"
11938
11939 #. type: textblock
11940 #: ../src/guestfs-actions.pod:3302 ../fish/guestfish-actions.pod:2252
11941 msgid ""
11942 "For package managers which use epochs, this contains the epoch of the "
11943 "package (an integer).  If unavailable, this is returned as C<0>."
11944 msgstr ""
11945
11946 #. type: =item
11947 #: ../src/guestfs-actions.pod:3305 ../fish/guestfish-actions.pod:2255
11948 msgid "C<app_version>"
11949 msgstr "C<app_version>"
11950
11951 #. type: textblock
11952 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2257
11953 msgid ""
11954 "The version string of the application or package.  If unavailable this is "
11955 "returned as an empty string C<\"\">."
11956 msgstr ""
11957
11958 #. type: =item
11959 #: ../src/guestfs-actions.pod:3310 ../fish/guestfish-actions.pod:2260
11960 msgid "C<app_release>"
11961 msgstr "C<app_release>"
11962
11963 #. type: textblock
11964 #: ../src/guestfs-actions.pod:3312 ../fish/guestfish-actions.pod:2262
11965 msgid ""
11966 "The release string of the application or package, for package managers that "
11967 "use this.  If unavailable this is returned as an empty string C<\"\">."
11968 msgstr ""
11969
11970 #. type: =item
11971 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2266
11972 msgid "C<app_install_path>"
11973 msgstr "C<app_install_path>"
11974
11975 #. type: textblock
11976 #: ../src/guestfs-actions.pod:3318 ../fish/guestfish-actions.pod:2268
11977 msgid ""
11978 "The installation path of the application (on operating systems such as "
11979 "Windows which use installation paths).  This path is in the format used by "
11980 "the guest operating system, it is not a libguestfs path."
11981 msgstr ""
11982
11983 #. type: textblock
11984 #: ../src/guestfs-actions.pod:3323 ../fish/guestfish-actions.pod:2273
11985 msgid "If unavailable this is returned as an empty string C<\"\">."
11986 msgstr ""
11987
11988 #. type: =item
11989 #: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2275
11990 msgid "C<app_trans_path>"
11991 msgstr "C<app_trans_path>"
11992
11993 #. type: textblock
11994 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2277
11995 msgid ""
11996 "The install path translated into a libguestfs path.  If unavailable this is "
11997 "returned as an empty string C<\"\">."
11998 msgstr ""
11999
12000 #. type: =item
12001 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2280
12002 msgid "C<app_publisher>"
12003 msgstr "C<app_publisher>"
12004
12005 #. type: textblock
12006 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2282
12007 msgid ""
12008 "The name of the publisher of the application, for package managers that use "
12009 "this.  If unavailable this is returned as an empty string C<\"\">."
12010 msgstr ""
12011
12012 #. type: =item
12013 #: ../src/guestfs-actions.pod:3336 ../fish/guestfish-actions.pod:2286
12014 msgid "C<app_url>"
12015 msgstr "C<app_url>"
12016
12017 #. type: textblock
12018 #: ../src/guestfs-actions.pod:3338 ../fish/guestfish-actions.pod:2288
12019 msgid ""
12020 "The URL (eg. upstream URL) of the application.  If unavailable this is "
12021 "returned as an empty string C<\"\">."
12022 msgstr ""
12023
12024 #. type: =item
12025 #: ../src/guestfs-actions.pod:3341 ../fish/guestfish-actions.pod:2291
12026 msgid "C<app_source_package>"
12027 msgstr ""
12028
12029 #. type: textblock
12030 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2293
12031 msgid ""
12032 "For packaging systems which support this, the name of the source package.  "
12033 "If unavailable this is returned as an empty string C<\"\">."
12034 msgstr ""
12035
12036 #. type: =item
12037 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2296
12038 msgid "C<app_summary>"
12039 msgstr ""
12040
12041 #. type: textblock
12042 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2298
12043 msgid ""
12044 "A short (usually one line) description of the application or package.  If "
12045 "unavailable this is returned as an empty string C<\"\">."
12046 msgstr ""
12047
12048 #. type: =item
12049 #: ../src/guestfs-actions.pod:3351 ../fish/guestfish-actions.pod:2301
12050 msgid "C<app_description>"
12051 msgstr ""
12052
12053 #. type: textblock
12054 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2303
12055 msgid ""
12056 "A longer description of the application or package.  If unavailable this is "
12057 "returned as an empty string C<\"\">."
12058 msgstr ""
12059
12060 #. type: textblock
12061 #: ../src/guestfs-actions.pod:3360
12062 msgid ""
12063 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12064 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
12065 "after use>."
12066 msgstr ""
12067
12068 #. type: textblock
12069 #: ../src/guestfs-actions.pod:3364
12070 msgid "(Added in 1.7.8)"
12071 msgstr ""
12072
12073 #. type: =head2
12074 #: ../src/guestfs-actions.pod:3366
12075 msgid "guestfs_inspect_os"
12076 msgstr ""
12077
12078 #. type: verbatim
12079 #: ../src/guestfs-actions.pod:3368
12080 #, no-wrap
12081 msgid ""
12082 " char **\n"
12083 " guestfs_inspect_os (guestfs_h *g);\n"
12084 "\n"
12085 msgstr ""
12086
12087 #. type: textblock
12088 #: ../src/guestfs-actions.pod:3371 ../fish/guestfish-actions.pod:2314
12089 msgid ""
12090 "This function uses other libguestfs functions and certain heuristics to "
12091 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12092 "for operating systems."
12093 msgstr ""
12094
12095 #. type: textblock
12096 #: ../src/guestfs-actions.pod:3375 ../fish/guestfish-actions.pod:2318
12097 msgid "The list returned is empty if no operating systems were found."
12098 msgstr ""
12099
12100 #. type: textblock
12101 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2320
12102 msgid ""
12103 "If one operating system was found, then this returns a list with a single "
12104 "element, which is the name of the root filesystem of this operating system.  "
12105 "It is also possible for this function to return a list containing more than "
12106 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
12107 "element being the root filesystem of one of the operating systems."
12108 msgstr ""
12109
12110 #. type: textblock
12111 #: ../src/guestfs-actions.pod:3384
12112 msgid ""
12113 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12114 "functions in order to query further information about each operating system, "
12115 "such as the name and version."
12116 msgstr ""
12117
12118 #. type: textblock
12119 #: ../src/guestfs-actions.pod:3389
12120 msgid ""
12121 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12122 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12123 "the contents.  This should be called with no disks currently mounted.  The "
12124 "function may also use Augeas, so any existing Augeas handle will be closed."
12125 msgstr ""
12126
12127 #. type: textblock
12128 #: ../src/guestfs-actions.pod:3395 ../fish/guestfish-actions.pod:2338
12129 msgid ""
12130 "This function cannot decrypt encrypted disks.  The caller must do that first "
12131 "(supplying the necessary keys) if the disk is encrypted."
12132 msgstr ""
12133
12134 #. type: textblock
12135 #: ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3732
12136 #: ../src/guestfs-actions.pod:3814
12137 msgid "See also C<guestfs_list_filesystems>."
12138 msgstr ""
12139
12140 #. type: =head2
12141 #: ../src/guestfs-actions.pod:3409
12142 msgid "guestfs_is_blockdev"
12143 msgstr ""
12144
12145 #. type: verbatim
12146 #: ../src/guestfs-actions.pod:3411
12147 #, no-wrap
12148 msgid ""
12149 " int\n"
12150 " guestfs_is_blockdev (guestfs_h *g,\n"
12151 "                      const char *path);\n"
12152 "\n"
12153 msgstr ""
12154
12155 #. type: textblock
12156 #: ../src/guestfs-actions.pod:3415 ../fish/guestfish-actions.pod:2350
12157 msgid ""
12158 "This returns C<true> if and only if there is a block device with the given "
12159 "C<path> name."
12160 msgstr ""
12161
12162 #. type: textblock
12163 #: ../src/guestfs-actions.pod:3418 ../src/guestfs-actions.pod:3447
12164 #: ../src/guestfs-actions.pod:3477 ../src/guestfs-actions.pod:3492
12165 #: ../src/guestfs-actions.pod:3508 ../src/guestfs-actions.pod:3564
12166 #: ../src/guestfs-actions.pod:3579
12167 msgid "See also C<guestfs_stat>."
12168 msgstr ""
12169
12170 #. type: textblock
12171 #: ../src/guestfs-actions.pod:3422 ../src/guestfs-actions.pod:3451
12172 #: ../src/guestfs-actions.pod:3496 ../src/guestfs-actions.pod:3568
12173 #: ../src/guestfs-actions.pod:3583
12174 msgid "(Added in 1.5.10)"
12175 msgstr ""
12176
12177 #. type: =head2
12178 #: ../src/guestfs-actions.pod:3424
12179 msgid "guestfs_is_busy"
12180 msgstr ""
12181
12182 #. type: verbatim
12183 #: ../src/guestfs-actions.pod:3426
12184 #, no-wrap
12185 msgid ""
12186 " int\n"
12187 " guestfs_is_busy (guestfs_h *g);\n"
12188 "\n"
12189 msgstr ""
12190
12191 #. type: textblock
12192 #: ../src/guestfs-actions.pod:3429 ../fish/guestfish-actions.pod:2359
12193 msgid ""
12194 "This returns true iff this handle is busy processing a command (in the "
12195 "C<BUSY> state)."
12196 msgstr ""
12197
12198 #. type: =head2
12199 #: ../src/guestfs-actions.pod:3438
12200 msgid "guestfs_is_chardev"
12201 msgstr ""
12202
12203 #. type: verbatim
12204 #: ../src/guestfs-actions.pod:3440
12205 #, no-wrap
12206 msgid ""
12207 " int\n"
12208 " guestfs_is_chardev (guestfs_h *g,\n"
12209 "                     const char *path);\n"
12210 "\n"
12211 msgstr ""
12212
12213 #. type: textblock
12214 #: ../src/guestfs-actions.pod:3444 ../fish/guestfish-actions.pod:2368
12215 msgid ""
12216 "This returns C<true> if and only if there is a character device with the "
12217 "given C<path> name."
12218 msgstr ""
12219
12220 #. type: =head2
12221 #: ../src/guestfs-actions.pod:3453
12222 msgid "guestfs_is_config"
12223 msgstr ""
12224
12225 #. type: verbatim
12226 #: ../src/guestfs-actions.pod:3455
12227 #, no-wrap
12228 msgid ""
12229 " int\n"
12230 " guestfs_is_config (guestfs_h *g);\n"
12231 "\n"
12232 msgstr ""
12233
12234 #. type: textblock
12235 #: ../src/guestfs-actions.pod:3458 ../fish/guestfish-actions.pod:2377
12236 msgid ""
12237 "This returns true iff this handle is being configured (in the C<CONFIG> "
12238 "state)."
12239 msgstr ""
12240
12241 #. type: =head2
12242 #: ../src/guestfs-actions.pod:3467
12243 msgid "guestfs_is_dir"
12244 msgstr ""
12245
12246 #. type: verbatim
12247 #: ../src/guestfs-actions.pod:3469
12248 #, no-wrap
12249 msgid ""
12250 " int\n"
12251 " guestfs_is_dir (guestfs_h *g,\n"
12252 "                 const char *path);\n"
12253 "\n"
12254 msgstr ""
12255
12256 #. type: textblock
12257 #: ../src/guestfs-actions.pod:3473 ../fish/guestfish-actions.pod:2386
12258 msgid ""
12259 "This returns C<true> if and only if there is a directory with the given "
12260 "C<path> name.  Note that it returns false for other objects like files."
12261 msgstr ""
12262
12263 #. type: =head2
12264 #: ../src/guestfs-actions.pod:3483
12265 msgid "guestfs_is_fifo"
12266 msgstr ""
12267
12268 #. type: verbatim
12269 #: ../src/guestfs-actions.pod:3485
12270 #, no-wrap
12271 msgid ""
12272 " int\n"
12273 " guestfs_is_fifo (guestfs_h *g,\n"
12274 "                  const char *path);\n"
12275 "\n"
12276 msgstr ""
12277
12278 #. type: textblock
12279 #: ../src/guestfs-actions.pod:3489 ../fish/guestfish-actions.pod:2396
12280 msgid ""
12281 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12282 "given C<path> name."
12283 msgstr ""
12284
12285 #. type: =head2
12286 #: ../src/guestfs-actions.pod:3498
12287 msgid "guestfs_is_file"
12288 msgstr ""
12289
12290 #. type: verbatim
12291 #: ../src/guestfs-actions.pod:3500
12292 #, no-wrap
12293 msgid ""
12294 " int\n"
12295 " guestfs_is_file (guestfs_h *g,\n"
12296 "                  const char *path);\n"
12297 "\n"
12298 msgstr ""
12299
12300 #. type: textblock
12301 #: ../src/guestfs-actions.pod:3504 ../fish/guestfish-actions.pod:2405
12302 msgid ""
12303 "This returns C<true> if and only if there is a regular file with the given "
12304 "C<path> name.  Note that it returns false for other objects like directories."
12305 msgstr ""
12306
12307 #. type: =head2
12308 #: ../src/guestfs-actions.pod:3514
12309 msgid "guestfs_is_launching"
12310 msgstr ""
12311
12312 #. type: verbatim
12313 #: ../src/guestfs-actions.pod:3516
12314 #, no-wrap
12315 msgid ""
12316 " int\n"
12317 " guestfs_is_launching (guestfs_h *g);\n"
12318 "\n"
12319 msgstr ""
12320
12321 #. type: textblock
12322 #: ../src/guestfs-actions.pod:3519 ../fish/guestfish-actions.pod:2415
12323 msgid ""
12324 "This returns true iff this handle is launching the subprocess (in the "
12325 "C<LAUNCHING> state)."
12326 msgstr ""
12327
12328 #. type: =head2
12329 #: ../src/guestfs-actions.pod:3528
12330 msgid "guestfs_is_lv"
12331 msgstr ""
12332
12333 #. type: verbatim
12334 #: ../src/guestfs-actions.pod:3530
12335 #, no-wrap
12336 msgid ""
12337 " int\n"
12338 " guestfs_is_lv (guestfs_h *g,\n"
12339 "                const char *device);\n"
12340 "\n"
12341 msgstr ""
12342
12343 #. type: textblock
12344 #: ../src/guestfs-actions.pod:3534 ../fish/guestfish-actions.pod:2424
12345 msgid ""
12346 "This command tests whether C<device> is a logical volume, and returns true "
12347 "iff this is the case."
12348 msgstr ""
12349
12350 #. type: =head2
12351 #: ../src/guestfs-actions.pod:3541
12352 msgid "guestfs_is_ready"
12353 msgstr ""
12354
12355 #. type: verbatim
12356 #: ../src/guestfs-actions.pod:3543
12357 #, no-wrap
12358 msgid ""
12359 " int\n"
12360 " guestfs_is_ready (guestfs_h *g);\n"
12361 "\n"
12362 msgstr ""
12363
12364 #. type: textblock
12365 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2431
12366 msgid ""
12367 "This returns true iff this handle is ready to accept commands (in the "
12368 "C<READY> state)."
12369 msgstr ""
12370
12371 #. type: =head2
12372 #: ../src/guestfs-actions.pod:3555
12373 msgid "guestfs_is_socket"
12374 msgstr ""
12375
12376 #. type: verbatim
12377 #: ../src/guestfs-actions.pod:3557
12378 #, no-wrap
12379 msgid ""
12380 " int\n"
12381 " guestfs_is_socket (guestfs_h *g,\n"
12382 "                    const char *path);\n"
12383 "\n"
12384 msgstr ""
12385
12386 #. type: textblock
12387 #: ../src/guestfs-actions.pod:3561 ../fish/guestfish-actions.pod:2440
12388 msgid ""
12389 "This returns C<true> if and only if there is a Unix domain socket with the "
12390 "given C<path> name."
12391 msgstr ""
12392
12393 #. type: =head2
12394 #: ../src/guestfs-actions.pod:3570
12395 msgid "guestfs_is_symlink"
12396 msgstr ""
12397
12398 #. type: verbatim
12399 #: ../src/guestfs-actions.pod:3572
12400 #, no-wrap
12401 msgid ""
12402 " int\n"
12403 " guestfs_is_symlink (guestfs_h *g,\n"
12404 "                     const char *path);\n"
12405 "\n"
12406 msgstr ""
12407
12408 #. type: textblock
12409 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2449
12410 msgid ""
12411 "This returns C<true> if and only if there is a symbolic link with the given "
12412 "C<path> name."
12413 msgstr ""
12414
12415 #. type: =head2
12416 #: ../src/guestfs-actions.pod:3585
12417 msgid "guestfs_is_zero"
12418 msgstr ""
12419
12420 #. type: verbatim
12421 #: ../src/guestfs-actions.pod:3587
12422 #, no-wrap
12423 msgid ""
12424 " int\n"
12425 " guestfs_is_zero (guestfs_h *g,\n"
12426 "                  const char *path);\n"
12427 "\n"
12428 msgstr ""
12429
12430 #. type: textblock
12431 #: ../src/guestfs-actions.pod:3591 ../fish/guestfish-actions.pod:2458
12432 msgid ""
12433 "This returns true iff the file exists and the file is empty or it contains "
12434 "all zero bytes."
12435 msgstr ""
12436
12437 #. type: textblock
12438 #: ../src/guestfs-actions.pod:3596 ../src/guestfs-actions.pod:3610
12439 msgid "(Added in 1.11.8)"
12440 msgstr ""
12441
12442 #. type: =head2
12443 #: ../src/guestfs-actions.pod:3598
12444 msgid "guestfs_is_zero_device"
12445 msgstr ""
12446
12447 #. type: verbatim
12448 #: ../src/guestfs-actions.pod:3600
12449 #, no-wrap
12450 msgid ""
12451 " int\n"
12452 " guestfs_is_zero_device (guestfs_h *g,\n"
12453 "                         const char *device);\n"
12454 "\n"
12455 msgstr ""
12456
12457 #. type: textblock
12458 #: ../src/guestfs-actions.pod:3604 ../fish/guestfish-actions.pod:2465
12459 msgid "This returns true iff the device exists and contains all zero bytes."
12460 msgstr ""
12461
12462 #. type: textblock
12463 #: ../src/guestfs-actions.pod:3606 ../fish/guestfish-actions.pod:2467
12464 msgid "Note that for large devices this can take a long time to run."
12465 msgstr ""
12466
12467 #. type: =head2
12468 #: ../src/guestfs-actions.pod:3612
12469 msgid "guestfs_kill_subprocess"
12470 msgstr ""
12471
12472 #. type: verbatim
12473 #: ../src/guestfs-actions.pod:3614
12474 #, no-wrap
12475 msgid ""
12476 " int\n"
12477 " guestfs_kill_subprocess (guestfs_h *g);\n"
12478 "\n"
12479 msgstr ""
12480
12481 #. type: textblock
12482 #: ../src/guestfs-actions.pod:3617 ../fish/guestfish-actions.pod:2473
12483 msgid "This kills the qemu subprocess.  You should never need to call this."
12484 msgstr ""
12485
12486 #. type: =head2
12487 #: ../src/guestfs-actions.pod:3623
12488 msgid "guestfs_launch"
12489 msgstr ""
12490
12491 #. type: verbatim
12492 #: ../src/guestfs-actions.pod:3625
12493 #, no-wrap
12494 msgid ""
12495 " int\n"
12496 " guestfs_launch (guestfs_h *g);\n"
12497 "\n"
12498 msgstr ""
12499
12500 #. type: textblock
12501 #: ../src/guestfs-actions.pod:3628 ../fish/guestfish-actions.pod:2481
12502 msgid ""
12503 "Internally libguestfs is implemented by running a virtual machine using "
12504 "L<qemu(1)>."
12505 msgstr ""
12506
12507 #. type: textblock
12508 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2484
12509 msgid ""
12510 "You should call this after configuring the handle (eg. adding drives) but "
12511 "before performing any actions."
12512 msgstr ""
12513
12514 #. type: =head2
12515 #: ../src/guestfs-actions.pod:3643
12516 msgid "guestfs_lchown"
12517 msgstr ""
12518
12519 #. type: verbatim
12520 #: ../src/guestfs-actions.pod:3645
12521 #, no-wrap
12522 msgid ""
12523 " int\n"
12524 " guestfs_lchown (guestfs_h *g,\n"
12525 "                 int owner,\n"
12526 "                 int group,\n"
12527 "                 const char *path);\n"
12528 "\n"
12529 msgstr ""
12530
12531 #. type: textblock
12532 #: ../src/guestfs-actions.pod:3651
12533 msgid ""
12534 "Change the file owner to C<owner> and group to C<group>.  This is like "
12535 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12536 "changed, not the target."
12537 msgstr ""
12538
12539 #. type: =head2
12540 #: ../src/guestfs-actions.pod:3663
12541 msgid "guestfs_lgetxattr"
12542 msgstr ""
12543
12544 #. type: verbatim
12545 #: ../src/guestfs-actions.pod:3665
12546 #, no-wrap
12547 msgid ""
12548 " char *\n"
12549 " guestfs_lgetxattr (guestfs_h *g,\n"
12550 "                    const char *path,\n"
12551 "                    const char *name,\n"
12552 "                    size_t *size_r);\n"
12553 "\n"
12554 msgstr ""
12555
12556 #. type: textblock
12557 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2503
12558 msgid ""
12559 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12560 "is a symlink, then this call returns an extended attribute from the symlink."
12561 msgstr ""
12562
12563 #. type: textblock
12564 #: ../src/guestfs-actions.pod:3685
12565 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12566 msgstr ""
12567
12568 #. type: =head2
12569 #: ../src/guestfs-actions.pod:3693
12570 msgid "guestfs_lgetxattrs"
12571 msgstr ""
12572
12573 #. type: verbatim
12574 #: ../src/guestfs-actions.pod:3695
12575 #, no-wrap
12576 msgid ""
12577 " struct guestfs_xattr_list *\n"
12578 " guestfs_lgetxattrs (guestfs_h *g,\n"
12579 "                     const char *path);\n"
12580 "\n"
12581 msgstr ""
12582
12583 #. type: textblock
12584 #: ../src/guestfs-actions.pod:3699
12585 msgid ""
12586 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12587 "then it returns the extended attributes of the link itself."
12588 msgstr ""
12589
12590 #. type: =head2
12591 #: ../src/guestfs-actions.pod:3709
12592 msgid "guestfs_list_9p"
12593 msgstr ""
12594
12595 #. type: verbatim
12596 #: ../src/guestfs-actions.pod:3711
12597 #, no-wrap
12598 msgid ""
12599 " char **\n"
12600 " guestfs_list_9p (guestfs_h *g);\n"
12601 "\n"
12602 msgstr ""
12603
12604 #. type: textblock
12605 #: ../src/guestfs-actions.pod:3714 ../fish/guestfish-actions.pod:2531
12606 msgid ""
12607 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12608 "returned."
12609 msgstr ""
12610
12611 #. type: =head2
12612 #: ../src/guestfs-actions.pod:3723
12613 msgid "guestfs_list_devices"
12614 msgstr ""
12615
12616 #. type: verbatim
12617 #: ../src/guestfs-actions.pod:3725
12618 #, no-wrap
12619 msgid ""
12620 " char **\n"
12621 " guestfs_list_devices (guestfs_h *g);\n"
12622 "\n"
12623 msgstr ""
12624
12625 #. type: textblock
12626 #: ../src/guestfs-actions.pod:3728 ../fish/guestfish-actions.pod:2538
12627 msgid "List all the block devices."
12628 msgstr ""
12629
12630 #. type: textblock
12631 #: ../src/guestfs-actions.pod:3730 ../fish/guestfish-actions.pod:2540
12632 msgid "The full block device names are returned, eg. C</dev/sda>."
12633 msgstr ""
12634
12635 #. type: =head2
12636 #: ../src/guestfs-actions.pod:3740
12637 msgid "guestfs_list_dm_devices"
12638 msgstr ""
12639
12640 #. type: verbatim
12641 #: ../src/guestfs-actions.pod:3742
12642 #, no-wrap
12643 msgid ""
12644 " char **\n"
12645 " guestfs_list_dm_devices (guestfs_h *g);\n"
12646 "\n"
12647 msgstr ""
12648
12649 #. type: textblock
12650 #: ../src/guestfs-actions.pod:3745 ../fish/guestfish-actions.pod:2548
12651 msgid "List all device mapper devices."
12652 msgstr ""
12653
12654 #. type: textblock
12655 #: ../src/guestfs-actions.pod:3747
12656 msgid ""
12657 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12658 "previous call to C<guestfs_luks_open>."
12659 msgstr ""
12660
12661 #. type: textblock
12662 #: ../src/guestfs-actions.pod:3750
12663 msgid ""
12664 "Device mapper devices which correspond to logical volumes are I<not> "
12665 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12666 "volumes."
12667 msgstr ""
12668
12669 #. type: textblock
12670 #: ../src/guestfs-actions.pod:3758 ../src/guestfs-actions.pod:5214
12671 msgid "(Added in 1.11.15)"
12672 msgstr ""
12673
12674 #. type: =head2
12675 #: ../src/guestfs-actions.pod:3760
12676 msgid "guestfs_list_filesystems"
12677 msgstr ""
12678
12679 #. type: verbatim
12680 #: ../src/guestfs-actions.pod:3762
12681 #, no-wrap
12682 msgid ""
12683 " char **\n"
12684 " guestfs_list_filesystems (guestfs_h *g);\n"
12685 "\n"
12686 msgstr ""
12687
12688 #. type: textblock
12689 #: ../src/guestfs-actions.pod:3765 ../fish/guestfish-actions.pod:2561
12690 msgid ""
12691 "This inspection command looks for filesystems on partitions, block devices "
12692 "and logical volumes, returning a list of devices containing filesystems and "
12693 "their type."
12694 msgstr ""
12695
12696 #. type: textblock
12697 #: ../src/guestfs-actions.pod:3769 ../fish/guestfish-actions.pod:2565
12698 msgid ""
12699 "The return value is a hash, where the keys are the devices containing "
12700 "filesystems, and the values are the filesystem types.  For example:"
12701 msgstr ""
12702
12703 #. type: verbatim
12704 #: ../src/guestfs-actions.pod:3773 ../fish/guestfish-actions.pod:2569
12705 #, no-wrap
12706 msgid ""
12707 " \"/dev/sda1\" => \"ntfs\"\n"
12708 " \"/dev/sda2\" => \"ext2\"\n"
12709 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12710 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12711 "\n"
12712 msgstr ""
12713
12714 #. type: textblock
12715 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2574
12716 msgid ""
12717 "The value can have the special value \"unknown\", meaning the content of the "
12718 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12719 msgstr ""
12720
12721 #. type: textblock
12722 #: ../src/guestfs-actions.pod:3782
12723 msgid ""
12724 "This command runs other libguestfs commands, which might include "
12725 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12726 "soon after launch and only when nothing is mounted."
12727 msgstr ""
12728
12729 #. type: textblock
12730 #: ../src/guestfs-actions.pod:3786
12731 msgid ""
12732 "Not all of the filesystems returned will be mountable.  In particular, swap "
12733 "partitions are returned in the list.  Also this command does not check that "
12734 "each filesystem found is valid and mountable, and some filesystems might be "
12735 "mountable but require special options.  Filesystems may not all belong to a "
12736 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12737 msgstr ""
12738
12739 #. type: textblock
12740 #: ../src/guestfs-actions.pod:3800 ../src/guestfs-actions.pod:5569
12741 msgid "(Added in 1.5.15)"
12742 msgstr ""
12743
12744 #. type: =head2
12745 #: ../src/guestfs-actions.pod:3802
12746 msgid "guestfs_list_partitions"
12747 msgstr ""
12748
12749 #. type: verbatim
12750 #: ../src/guestfs-actions.pod:3804
12751 #, no-wrap
12752 msgid ""
12753 " char **\n"
12754 " guestfs_list_partitions (guestfs_h *g);\n"
12755 "\n"
12756 msgstr ""
12757
12758 #. type: textblock
12759 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2594
12760 msgid "List all the partitions detected on all block devices."
12761 msgstr ""
12762
12763 #. type: textblock
12764 #: ../src/guestfs-actions.pod:3809 ../fish/guestfish-actions.pod:2596
12765 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12766 msgstr ""
12767
12768 #. type: textblock
12769 #: ../src/guestfs-actions.pod:3811
12770 msgid ""
12771 "This does not return logical volumes.  For that you will need to call "
12772 "C<guestfs_lvs>."
12773 msgstr ""
12774
12775 #. type: =head2
12776 #: ../src/guestfs-actions.pod:3822
12777 msgid "guestfs_ll"
12778 msgstr ""
12779
12780 #. type: verbatim
12781 #: ../src/guestfs-actions.pod:3824
12782 #, no-wrap
12783 msgid ""
12784 " char *\n"
12785 " guestfs_ll (guestfs_h *g,\n"
12786 "             const char *directory);\n"
12787 "\n"
12788 msgstr ""
12789
12790 #. type: textblock
12791 #: ../src/guestfs-actions.pod:3828 ../fish/guestfish-actions.pod:2607
12792 msgid ""
12793 "List the files in C<directory> (relative to the root directory, there is no "
12794 "cwd) in the format of 'ls -la'."
12795 msgstr ""
12796
12797 #. type: textblock
12798 #: ../src/guestfs-actions.pod:3831 ../fish/guestfish-actions.pod:2610
12799 msgid ""
12800 "This command is mostly useful for interactive sessions.  It is I<not> "
12801 "intended that you try to parse the output string."
12802 msgstr ""
12803
12804 #. type: =head2
12805 #: ../src/guestfs-actions.pod:3839
12806 msgid "guestfs_ln"
12807 msgstr ""
12808
12809 #. type: verbatim
12810 #: ../src/guestfs-actions.pod:3841
12811 #, no-wrap
12812 msgid ""
12813 " int\n"
12814 " guestfs_ln (guestfs_h *g,\n"
12815 "             const char *target,\n"
12816 "             const char *linkname);\n"
12817 "\n"
12818 msgstr ""
12819
12820 #. type: textblock
12821 #: ../src/guestfs-actions.pod:3846 ../fish/guestfish-actions.pod:2617
12822 msgid "This command creates a hard link using the C<ln> command."
12823 msgstr ""
12824
12825 #. type: =head2
12826 #: ../src/guestfs-actions.pod:3852
12827 msgid "guestfs_ln_f"
12828 msgstr ""
12829
12830 #. type: verbatim
12831 #: ../src/guestfs-actions.pod:3854
12832 #, no-wrap
12833 msgid ""
12834 " int\n"
12835 " guestfs_ln_f (guestfs_h *g,\n"
12836 "               const char *target,\n"
12837 "               const char *linkname);\n"
12838 "\n"
12839 msgstr ""
12840
12841 #. type: textblock
12842 #: ../src/guestfs-actions.pod:3859 ../fish/guestfish-actions.pod:2623
12843 msgid ""
12844 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12845 "option removes the link (C<linkname>) if it exists already."
12846 msgstr ""
12847
12848 #. type: =head2
12849 #: ../src/guestfs-actions.pod:3866
12850 msgid "guestfs_ln_s"
12851 msgstr ""
12852
12853 #. type: verbatim
12854 #: ../src/guestfs-actions.pod:3868
12855 #, no-wrap
12856 msgid ""
12857 " int\n"
12858 " guestfs_ln_s (guestfs_h *g,\n"
12859 "               const char *target,\n"
12860 "               const char *linkname);\n"
12861 "\n"
12862 msgstr ""
12863
12864 #. type: textblock
12865 #: ../src/guestfs-actions.pod:3873 ../fish/guestfish-actions.pod:2630
12866 msgid "This command creates a symbolic link using the C<ln -s> command."
12867 msgstr ""
12868
12869 #. type: =head2
12870 #: ../src/guestfs-actions.pod:3879
12871 msgid "guestfs_ln_sf"
12872 msgstr ""
12873
12874 #. type: verbatim
12875 #: ../src/guestfs-actions.pod:3881
12876 #, no-wrap
12877 msgid ""
12878 " int\n"
12879 " guestfs_ln_sf (guestfs_h *g,\n"
12880 "                const char *target,\n"
12881 "                const char *linkname);\n"
12882 "\n"
12883 msgstr ""
12884
12885 #. type: textblock
12886 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2636
12887 msgid ""
12888 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12889 "option removes the link (C<linkname>) if it exists already."
12890 msgstr ""
12891
12892 #. type: =head2
12893 #: ../src/guestfs-actions.pod:3893
12894 msgid "guestfs_lremovexattr"
12895 msgstr ""
12896
12897 #. type: verbatim
12898 #: ../src/guestfs-actions.pod:3895
12899 #, no-wrap
12900 msgid ""
12901 " int\n"
12902 " guestfs_lremovexattr (guestfs_h *g,\n"
12903 "                       const char *xattr,\n"
12904 "                       const char *path);\n"
12905 "\n"
12906 msgstr ""
12907
12908 #. type: textblock
12909 #: ../src/guestfs-actions.pod:3900
12910 msgid ""
12911 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12912 "link, then it removes an extended attribute of the link itself."
12913 msgstr ""
12914
12915 #. type: =head2
12916 #: ../src/guestfs-actions.pod:3908
12917 msgid "guestfs_ls"
12918 msgstr ""
12919
12920 #. type: verbatim
12921 #: ../src/guestfs-actions.pod:3910
12922 #, no-wrap
12923 msgid ""
12924 " char **\n"
12925 " guestfs_ls (guestfs_h *g,\n"
12926 "             const char *directory);\n"
12927 "\n"
12928 msgstr ""
12929
12930 #. type: textblock
12931 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2651
12932 msgid ""
12933 "List the files in C<directory> (relative to the root directory, there is no "
12934 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12935 msgstr ""
12936
12937 #. type: textblock
12938 #: ../src/guestfs-actions.pod:3918
12939 msgid ""
12940 "This command is mostly useful for interactive sessions.  Programs should "
12941 "probably use C<guestfs_readdir> instead."
12942 msgstr ""
12943
12944 #. type: =head2
12945 #: ../src/guestfs-actions.pod:3927
12946 msgid "guestfs_lsetxattr"
12947 msgstr ""
12948
12949 #. type: verbatim
12950 #: ../src/guestfs-actions.pod:3929
12951 #, no-wrap
12952 msgid ""
12953 " int\n"
12954 " guestfs_lsetxattr (guestfs_h *g,\n"
12955 "                    const char *xattr,\n"
12956 "                    const char *val,\n"
12957 "                    int vallen,\n"
12958 "                    const char *path);\n"
12959 "\n"
12960 msgstr ""
12961
12962 #. type: textblock
12963 #: ../src/guestfs-actions.pod:3936
12964 msgid ""
12965 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12966 "then it sets an extended attribute of the link itself."
12967 msgstr ""
12968
12969 #. type: =head2
12970 #: ../src/guestfs-actions.pod:3944
12971 msgid "guestfs_lstat"
12972 msgstr ""
12973
12974 #. type: verbatim
12975 #: ../src/guestfs-actions.pod:3946
12976 #, no-wrap
12977 msgid ""
12978 " struct guestfs_stat *\n"
12979 " guestfs_lstat (guestfs_h *g,\n"
12980 "                const char *path);\n"
12981 "\n"
12982 msgstr ""
12983
12984 #. type: textblock
12985 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:6721
12986 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:4472
12987 msgid "Returns file information for the given C<path>."
12988 msgstr ""
12989
12990 #. type: textblock
12991 #: ../src/guestfs-actions.pod:3952
12992 msgid ""
12993 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12994 "link, then the link is stat-ed, not the file it refers to."
12995 msgstr ""
12996
12997 #. type: textblock
12998 #: ../src/guestfs-actions.pod:3956 ../fish/guestfish-actions.pod:2676
12999 msgid "This is the same as the C<lstat(2)> system call."
13000 msgstr ""
13001
13002 #. type: textblock
13003 #: ../src/guestfs-actions.pod:3958 ../src/guestfs-actions.pod:6725
13004 msgid ""
13005 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
13006 "error.  I<The caller must call C<guestfs_free_stat> after use>."
13007 msgstr ""
13008
13009 #. type: textblock
13010 #: ../src/guestfs-actions.pod:3962 ../src/guestfs-actions.pod:6729
13011 #: ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:7128
13012 msgid "(Added in 0.9.2)"
13013 msgstr ""
13014
13015 #. type: =head2
13016 #: ../src/guestfs-actions.pod:3964
13017 msgid "guestfs_lstatlist"
13018 msgstr ""
13019
13020 #. type: verbatim
13021 #: ../src/guestfs-actions.pod:3966
13022 #, no-wrap
13023 msgid ""
13024 " struct guestfs_stat_list *\n"
13025 " guestfs_lstatlist (guestfs_h *g,\n"
13026 "                    const char *path,\n"
13027 "                    char *const *names);\n"
13028 "\n"
13029 msgstr ""
13030
13031 #. type: textblock
13032 #: ../src/guestfs-actions.pod:3971
13033 msgid ""
13034 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13035 "files, where all files are in the directory C<path>.  C<names> is the list "
13036 "of files from this directory."
13037 msgstr ""
13038
13039 #. type: textblock
13040 #: ../src/guestfs-actions.pod:3975 ../fish/guestfish-actions.pod:2686
13041 msgid ""
13042 "On return you get a list of stat structs, with a one-to-one correspondence "
13043 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13044 "then the C<ino> field of that structure is set to C<-1>."
13045 msgstr ""
13046
13047 #. type: textblock
13048 #: ../src/guestfs-actions.pod:3980
13049 msgid ""
13050 "This call is intended for programs that want to efficiently list a directory "
13051 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13052 "for a similarly efficient call for getting extended attributes.  Very long "
13053 "directory listings might cause the protocol message size to be exceeded, "
13054 "causing this call to fail.  The caller must split up such requests into "
13055 "smaller groups of names."
13056 msgstr ""
13057
13058 #. type: textblock
13059 #: ../src/guestfs-actions.pod:3988
13060 msgid ""
13061 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13062 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13063 msgstr ""
13064
13065 #. type: =head2
13066 #: ../src/guestfs-actions.pod:3994
13067 msgid "guestfs_luks_add_key"
13068 msgstr ""
13069
13070 #. type: verbatim
13071 #: ../src/guestfs-actions.pod:3996
13072 #, no-wrap
13073 msgid ""
13074 " int\n"
13075 " guestfs_luks_add_key (guestfs_h *g,\n"
13076 "                       const char *device,\n"
13077 "                       const char *key,\n"
13078 "                       const char *newkey,\n"
13079 "                       int keyslot);\n"
13080 "\n"
13081 msgstr ""
13082
13083 #. type: textblock
13084 #: ../src/guestfs-actions.pod:4003 ../fish/guestfish-actions.pod:2703
13085 msgid ""
13086 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13087 "existing key, and is used to access the device.  C<newkey> is the new key to "
13088 "add.  C<keyslot> is the key slot that will be replaced."
13089 msgstr ""
13090
13091 #. type: textblock
13092 #: ../src/guestfs-actions.pod:4008
13093 msgid ""
13094 "Note that if C<keyslot> already contains a key, then this command will "
13095 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13096 msgstr ""
13097
13098 #. type: textblock
13099 #: ../src/guestfs-actions.pod:4014 ../src/guestfs-actions.pod:4054
13100 #: ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:4097
13101 #: ../src/guestfs-actions.pod:4132 ../src/guestfs-actions.pod:4151
13102 msgid ""
13103 "This function takes a key or passphrase parameter which could contain "
13104 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13105 "information."
13106 msgstr ""
13107
13108 #. type: textblock
13109 #: ../src/guestfs-actions.pod:4018 ../src/guestfs-actions.pod:4058
13110 #: ../src/guestfs-actions.pod:4081 ../src/guestfs-actions.pod:4101
13111 msgid "(Added in 1.5.2)"
13112 msgstr ""
13113
13114 #. type: =head2
13115 #: ../src/guestfs-actions.pod:4020
13116 msgid "guestfs_luks_close"
13117 msgstr ""
13118
13119 #. type: verbatim
13120 #: ../src/guestfs-actions.pod:4022
13121 #, no-wrap
13122 msgid ""
13123 " int\n"
13124 " guestfs_luks_close (guestfs_h *g,\n"
13125 "                     const char *device);\n"
13126 "\n"
13127 msgstr ""
13128
13129 #. type: textblock
13130 #: ../src/guestfs-actions.pod:4026
13131 msgid ""
13132 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13133 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13134 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13135 "underlying block device."
13136 msgstr ""
13137
13138 #. type: textblock
13139 #: ../src/guestfs-actions.pod:4034 ../src/guestfs-actions.pod:4136
13140 #: ../src/guestfs-actions.pod:4155 ../src/guestfs-actions.pod:4205
13141 #: ../src/guestfs-actions.pod:4253
13142 msgid "(Added in 1.5.1)"
13143 msgstr ""
13144
13145 #. type: =head2
13146 #: ../src/guestfs-actions.pod:4036
13147 msgid "guestfs_luks_format"
13148 msgstr ""
13149
13150 #. type: verbatim
13151 #: ../src/guestfs-actions.pod:4038
13152 #, no-wrap
13153 msgid ""
13154 " int\n"
13155 " guestfs_luks_format (guestfs_h *g,\n"
13156 "                      const char *device,\n"
13157 "                      const char *key,\n"
13158 "                      int keyslot);\n"
13159 "\n"
13160 msgstr ""
13161
13162 #. type: textblock
13163 #: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2729
13164 msgid ""
13165 "This command erases existing data on C<device> and formats the device as a "
13166 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13167 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13168 msgstr ""
13169
13170 #. type: textblock
13171 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4074
13172 #: ../src/guestfs-actions.pod:4217 ../src/guestfs-actions.pod:5320
13173 #: ../src/guestfs-actions.pod:6102 ../src/guestfs-actions.pod:6528
13174 #: ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6591
13175 #: ../src/guestfs-actions.pod:7787 ../fish/guestfish-actions.pod:2737
13176 #: ../fish/guestfish-actions.pod:2750 ../fish/guestfish-actions.pod:2837
13177 #: ../fish/guestfish-actions.pod:3498 ../fish/guestfish-actions.pod:4018
13178 #: ../fish/guestfish-actions.pod:4343 ../fish/guestfish-actions.pod:4366
13179 #: ../fish/guestfish-actions.pod:4388 ../fish/guestfish-actions.pod:5126
13180 msgid ""
13181 "B<This command is dangerous.  Without careful use you can easily destroy all "
13182 "your data>."
13183 msgstr ""
13184
13185 #. type: =head2
13186 #: ../src/guestfs-actions.pod:4060
13187 msgid "guestfs_luks_format_cipher"
13188 msgstr ""
13189
13190 #. type: verbatim
13191 #: ../src/guestfs-actions.pod:4062
13192 #, no-wrap
13193 msgid ""
13194 " int\n"
13195 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13196 "                             const char *device,\n"
13197 "                             const char *key,\n"
13198 "                             int keyslot,\n"
13199 "                             const char *cipher);\n"
13200 "\n"
13201 msgstr ""
13202
13203 #. type: textblock
13204 #: ../src/guestfs-actions.pod:4069
13205 msgid ""
13206 "This command is the same as C<guestfs_luks_format> but it also allows you to "
13207 "set the C<cipher> used."
13208 msgstr ""
13209
13210 #. type: =head2
13211 #: ../src/guestfs-actions.pod:4083
13212 msgid "guestfs_luks_kill_slot"
13213 msgstr ""
13214
13215 #. type: verbatim
13216 #: ../src/guestfs-actions.pod:4085
13217 #, no-wrap
13218 msgid ""
13219 " int\n"
13220 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13221 "                         const char *device,\n"
13222 "                         const char *key,\n"
13223 "                         int keyslot);\n"
13224 "\n"
13225 msgstr ""
13226
13227 #. type: textblock
13228 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2757
13229 msgid ""
13230 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13231 "device C<device>.  C<key> must be one of the I<other> keys."
13232 msgstr ""
13233
13234 #. type: =head2
13235 #: ../src/guestfs-actions.pod:4103
13236 msgid "guestfs_luks_open"
13237 msgstr ""
13238
13239 #. type: verbatim
13240 #: ../src/guestfs-actions.pod:4105
13241 #, no-wrap
13242 msgid ""
13243 " int\n"
13244 " guestfs_luks_open (guestfs_h *g,\n"
13245 "                    const char *device,\n"
13246 "                    const char *key,\n"
13247 "                    const char *mapname);\n"
13248 "\n"
13249 msgstr ""
13250
13251 #. type: textblock
13252 #: ../src/guestfs-actions.pod:4111 ../fish/guestfish-actions.pod:2768
13253 msgid ""
13254 "This command opens a block device which has been encrypted according to the "
13255 "Linux Unified Key Setup (LUKS) standard."
13256 msgstr ""
13257
13258 #. type: textblock
13259 #: ../src/guestfs-actions.pod:4114 ../fish/guestfish-actions.pod:2771
13260 msgid "C<device> is the encrypted block device or partition."
13261 msgstr ""
13262
13263 #. type: textblock
13264 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2773
13265 msgid ""
13266 "The caller must supply one of the keys associated with the LUKS block "
13267 "device, in the C<key> parameter."
13268 msgstr ""
13269
13270 #. type: textblock
13271 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2776
13272 msgid ""
13273 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13274 "writes to this block device are decrypted from and encrypted to the "
13275 "underlying C<device> respectively."
13276 msgstr ""
13277
13278 #. type: textblock
13279 #: ../src/guestfs-actions.pod:4123
13280 msgid ""
13281 "If this block device contains LVM volume groups, then calling "
13282 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13283 "visible."
13284 msgstr ""
13285
13286 #. type: textblock
13287 #: ../src/guestfs-actions.pod:4127
13288 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
13289 msgstr ""
13290
13291 #. type: =head2
13292 #: ../src/guestfs-actions.pod:4138
13293 msgid "guestfs_luks_open_ro"
13294 msgstr ""
13295
13296 #. type: verbatim
13297 #: ../src/guestfs-actions.pod:4140
13298 #, no-wrap
13299 msgid ""
13300 " int\n"
13301 " guestfs_luks_open_ro (guestfs_h *g,\n"
13302 "                       const char *device,\n"
13303 "                       const char *key,\n"
13304 "                       const char *mapname);\n"
13305 "\n"
13306 msgstr ""
13307
13308 #. type: textblock
13309 #: ../src/guestfs-actions.pod:4146
13310 msgid ""
13311 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13312 "created."
13313 msgstr ""
13314
13315 #. type: =head2
13316 #: ../src/guestfs-actions.pod:4157
13317 msgid "guestfs_lvcreate"
13318 msgstr ""
13319
13320 #. type: verbatim
13321 #: ../src/guestfs-actions.pod:4159
13322 #, no-wrap
13323 msgid ""
13324 " int\n"
13325 " guestfs_lvcreate (guestfs_h *g,\n"
13326 "                   const char *logvol,\n"
13327 "                   const char *volgroup,\n"
13328 "                   int mbytes);\n"
13329 "\n"
13330 msgstr ""
13331
13332 #. type: textblock
13333 #: ../src/guestfs-actions.pod:4165 ../fish/guestfish-actions.pod:2804
13334 msgid ""
13335 "This creates an LVM logical volume called C<logvol> on the volume group "
13336 "C<volgroup>, with C<size> megabytes."
13337 msgstr ""
13338
13339 #. type: =head2
13340 #: ../src/guestfs-actions.pod:4172
13341 msgid "guestfs_lvm_canonical_lv_name"
13342 msgstr ""
13343
13344 #. type: verbatim
13345 #: ../src/guestfs-actions.pod:4174
13346 #, no-wrap
13347 msgid ""
13348 " char *\n"
13349 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13350 "                                const char *lvname);\n"
13351 "\n"
13352 msgstr ""
13353
13354 #. type: textblock
13355 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2811
13356 msgid ""
13357 "This converts alternative naming schemes for LVs that you might find to the "
13358 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13359 "LV>."
13360 msgstr ""
13361
13362 #. type: textblock
13363 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2815
13364 msgid ""
13365 "This command returns an error if the C<lvname> parameter does not refer to a "
13366 "logical volume."
13367 msgstr ""
13368
13369 #. type: textblock
13370 #: ../src/guestfs-actions.pod:4185
13371 msgid "See also C<guestfs_is_lv>."
13372 msgstr ""
13373
13374 #. type: textblock
13375 #: ../src/guestfs-actions.pod:4190
13376 msgid "(Added in 1.5.24)"
13377 msgstr ""
13378
13379 #. type: =head2
13380 #: ../src/guestfs-actions.pod:4192
13381 msgid "guestfs_lvm_clear_filter"
13382 msgstr ""
13383
13384 #. type: verbatim
13385 #: ../src/guestfs-actions.pod:4194
13386 #, no-wrap
13387 msgid ""
13388 " int\n"
13389 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13390 "\n"
13391 msgstr ""
13392
13393 #. type: textblock
13394 #: ../src/guestfs-actions.pod:4197
13395 msgid ""
13396 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13397 "see every block device."
13398 msgstr ""
13399
13400 #. type: textblock
13401 #: ../src/guestfs-actions.pod:4200 ../src/guestfs-actions.pod:4242
13402 #: ../fish/guestfish-actions.pod:2827 ../fish/guestfish-actions.pod:2858
13403 msgid ""
13404 "This command also clears the LVM cache and performs a volume group scan."
13405 msgstr ""
13406
13407 #. type: =head2
13408 #: ../src/guestfs-actions.pod:4207
13409 msgid "guestfs_lvm_remove_all"
13410 msgstr ""
13411
13412 #. type: verbatim
13413 #: ../src/guestfs-actions.pod:4209
13414 #, no-wrap
13415 msgid ""
13416 " int\n"
13417 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13418 "\n"
13419 msgstr ""
13420
13421 #. type: textblock
13422 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2834
13423 msgid ""
13424 "This command removes all LVM logical volumes, volume groups and physical "
13425 "volumes."
13426 msgstr ""
13427
13428 #. type: =head2
13429 #: ../src/guestfs-actions.pod:4222
13430 msgid "guestfs_lvm_set_filter"
13431 msgstr ""
13432
13433 #. type: verbatim
13434 #: ../src/guestfs-actions.pod:4224
13435 #, no-wrap
13436 msgid ""
13437 " int\n"
13438 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13439 "                         char *const *devices);\n"
13440 "\n"
13441 msgstr ""
13442
13443 #. type: textblock
13444 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2844
13445 msgid ""
13446 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
13447 "block devices in the list C<devices>, and will ignore all other attached "
13448 "block devices."
13449 msgstr ""
13450
13451 #. type: textblock
13452 #: ../src/guestfs-actions.pod:4232 ../fish/guestfish-actions.pod:2848
13453 msgid ""
13454 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13455 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
13456 "there are two types of duplication possible: either cloned PVs/VGs which "
13457 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
13458 "same name.  In normal operation you cannot create this situation, but you "
13459 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13460 "inside the LVM metadata."
13461 msgstr ""
13462
13463 #. type: textblock
13464 #: ../src/guestfs-actions.pod:4245 ../fish/guestfish-actions.pod:2861
13465 msgid "You can filter whole block devices or individual partitions."
13466 msgstr ""
13467
13468 #. type: textblock
13469 #: ../src/guestfs-actions.pod:4247 ../fish/guestfish-actions.pod:2863
13470 msgid ""
13471 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13472 "filesystem), even if you are not filtering out that VG."
13473 msgstr ""
13474
13475 #. type: =head2
13476 #: ../src/guestfs-actions.pod:4255
13477 msgid "guestfs_lvremove"
13478 msgstr ""
13479
13480 #. type: verbatim
13481 #: ../src/guestfs-actions.pod:4257
13482 #, no-wrap
13483 msgid ""
13484 " int\n"
13485 " guestfs_lvremove (guestfs_h *g,\n"
13486 "                   const char *device);\n"
13487 "\n"
13488 msgstr ""
13489
13490 #. type: textblock
13491 #: ../src/guestfs-actions.pod:4261 ../fish/guestfish-actions.pod:2871
13492 msgid ""
13493 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13494 "LV, such as C</dev/VG/LV>."
13495 msgstr ""
13496
13497 #. type: textblock
13498 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2874
13499 msgid ""
13500 "You can also remove all LVs in a volume group by specifying the VG name, C</"
13501 "dev/VG>."
13502 msgstr ""
13503
13504 #. type: textblock
13505 #: ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:5666
13506 #: ../src/guestfs-actions.pod:7498
13507 msgid "(Added in 1.0.13)"
13508 msgstr ""
13509
13510 #. type: =head2
13511 #: ../src/guestfs-actions.pod:4271
13512 msgid "guestfs_lvrename"
13513 msgstr ""
13514
13515 #. type: verbatim
13516 #: ../src/guestfs-actions.pod:4273
13517 #, no-wrap
13518 msgid ""
13519 " int\n"
13520 " guestfs_lvrename (guestfs_h *g,\n"
13521 "                   const char *logvol,\n"
13522 "                   const char *newlogvol);\n"
13523 "\n"
13524 msgstr ""
13525
13526 #. type: textblock
13527 #: ../src/guestfs-actions.pod:4278 ../fish/guestfish-actions.pod:2881
13528 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13529 msgstr ""
13530
13531 #. type: textblock
13532 #: ../src/guestfs-actions.pod:4282 ../src/guestfs-actions.pod:7511
13533 msgid "(Added in 1.0.83)"
13534 msgstr ""
13535
13536 #. type: =head2
13537 #: ../src/guestfs-actions.pod:4284
13538 msgid "guestfs_lvresize"
13539 msgstr ""
13540
13541 #. type: verbatim
13542 #: ../src/guestfs-actions.pod:4286
13543 #, no-wrap
13544 msgid ""
13545 " int\n"
13546 " guestfs_lvresize (guestfs_h *g,\n"
13547 "                   const char *device,\n"
13548 "                   int mbytes);\n"
13549 "\n"
13550 msgstr ""
13551
13552 #. type: textblock
13553 #: ../src/guestfs-actions.pod:4291 ../fish/guestfish-actions.pod:2887
13554 msgid ""
13555 "This resizes (expands or shrinks) an existing LVM logical volume to "
13556 "C<mbytes>.  When reducing, data in the reduced part is lost."
13557 msgstr ""
13558
13559 #. type: =head2
13560 #: ../src/guestfs-actions.pod:4299
13561 msgid "guestfs_lvresize_free"
13562 msgstr ""
13563
13564 #. type: verbatim
13565 #: ../src/guestfs-actions.pod:4301
13566 #, no-wrap
13567 msgid ""
13568 " int\n"
13569 " guestfs_lvresize_free (guestfs_h *g,\n"
13570 "                        const char *lv,\n"
13571 "                        int percent);\n"
13572 "\n"
13573 msgstr ""
13574
13575 #. type: textblock
13576 #: ../src/guestfs-actions.pod:4306 ../fish/guestfish-actions.pod:2895
13577 msgid ""
13578 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13579 "remaining free space in the volume group.  Commonly you would call this with "
13580 "pc = 100 which expands the logical volume as much as possible, using all "
13581 "remaining free space in the volume group."
13582 msgstr ""
13583
13584 #. type: textblock
13585 #: ../src/guestfs-actions.pod:4314
13586 msgid "(Added in 1.3.3)"
13587 msgstr ""
13588
13589 #. type: =head2
13590 #: ../src/guestfs-actions.pod:4316
13591 msgid "guestfs_lvs"
13592 msgstr ""
13593
13594 #. type: verbatim
13595 #: ../src/guestfs-actions.pod:4318
13596 #, no-wrap
13597 msgid ""
13598 " char **\n"
13599 " guestfs_lvs (guestfs_h *g);\n"
13600 "\n"
13601 msgstr ""
13602
13603 #. type: textblock
13604 #: ../src/guestfs-actions.pod:4321 ../fish/guestfish-actions.pod:2905
13605 msgid ""
13606 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13607 "(8)> command."
13608 msgstr ""
13609
13610 #. type: textblock
13611 #: ../src/guestfs-actions.pod:4324 ../fish/guestfish-actions.pod:2908
13612 msgid ""
13613 "This returns a list of the logical volume device names (eg. C</dev/"
13614 "VolGroup00/LogVol00>)."
13615 msgstr ""
13616
13617 #. type: textblock
13618 #: ../src/guestfs-actions.pod:4327
13619 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13620 msgstr ""
13621
13622 #. type: =head2
13623 #: ../src/guestfs-actions.pod:4335
13624 msgid "guestfs_lvs_full"
13625 msgstr ""
13626
13627 #. type: verbatim
13628 #: ../src/guestfs-actions.pod:4337
13629 #, no-wrap
13630 msgid ""
13631 " struct guestfs_lvm_lv_list *\n"
13632 " guestfs_lvs_full (guestfs_h *g);\n"
13633 "\n"
13634 msgstr ""
13635
13636 #. type: textblock
13637 #: ../src/guestfs-actions.pod:4340 ../fish/guestfish-actions.pod:2917
13638 msgid ""
13639 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13640 "(8)> command.  The \"full\" version includes all fields."
13641 msgstr ""
13642
13643 #. type: textblock
13644 #: ../src/guestfs-actions.pod:4343
13645 msgid ""
13646 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13647 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13648 msgstr ""
13649
13650 #. type: =head2
13651 #: ../src/guestfs-actions.pod:4349
13652 msgid "guestfs_lvuuid"
13653 msgstr ""
13654
13655 #. type: verbatim
13656 #: ../src/guestfs-actions.pod:4351
13657 #, no-wrap
13658 msgid ""
13659 " char *\n"
13660 " guestfs_lvuuid (guestfs_h *g,\n"
13661 "                 const char *device);\n"
13662 "\n"
13663 msgstr ""
13664
13665 #. type: textblock
13666 #: ../src/guestfs-actions.pod:4355 ../fish/guestfish-actions.pod:2924
13667 msgid "This command returns the UUID of the LVM LV C<device>."
13668 msgstr ""
13669
13670 #. type: =head2
13671 #: ../src/guestfs-actions.pod:4362
13672 msgid "guestfs_lxattrlist"
13673 msgstr ""
13674
13675 #. type: verbatim
13676 #: ../src/guestfs-actions.pod:4364
13677 #, no-wrap
13678 msgid ""
13679 " struct guestfs_xattr_list *\n"
13680 " guestfs_lxattrlist (guestfs_h *g,\n"
13681 "                     const char *path,\n"
13682 "                     char *const *names);\n"
13683 "\n"
13684 msgstr ""
13685
13686 #. type: textblock
13687 #: ../src/guestfs-actions.pod:4369 ../fish/guestfish-actions.pod:2930
13688 msgid ""
13689 "This call allows you to get the extended attributes of multiple files, where "
13690 "all files are in the directory C<path>.  C<names> is the list of files from "
13691 "this directory."
13692 msgstr ""
13693
13694 #. type: textblock
13695 #: ../src/guestfs-actions.pod:4373 ../fish/guestfish-actions.pod:2934
13696 msgid ""
13697 "On return you get a flat list of xattr structs which must be interpreted "
13698 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13699 "C<attrval> in this struct is zero-length to indicate there was an error "
13700 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13701 "number (the number of following attributes for this file, which could be C<"
13702 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13703 "for the first named file.  This repeats for the second and subsequent files."
13704 msgstr ""
13705
13706 #. type: textblock
13707 #: ../src/guestfs-actions.pod:4383
13708 msgid ""
13709 "This call is intended for programs that want to efficiently list a directory "
13710 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13711 "a similarly efficient call for getting standard stats.  Very long directory "
13712 "listings might cause the protocol message size to be exceeded, causing this "
13713 "call to fail.  The caller must split up such requests into smaller groups of "
13714 "names."
13715 msgstr ""
13716
13717 #. type: =head2
13718 #: ../src/guestfs-actions.pod:4397
13719 msgid "guestfs_mkdir"
13720 msgstr ""
13721
13722 #. type: verbatim
13723 #: ../src/guestfs-actions.pod:4399
13724 #, no-wrap
13725 msgid ""
13726 " int\n"
13727 " guestfs_mkdir (guestfs_h *g,\n"
13728 "                const char *path);\n"
13729 "\n"
13730 msgstr ""
13731
13732 #. type: textblock
13733 #: ../src/guestfs-actions.pod:4403 ../fish/guestfish-actions.pod:2956
13734 msgid "Create a directory named C<path>."
13735 msgstr ""
13736
13737 #. type: =head2
13738 #: ../src/guestfs-actions.pod:4409
13739 msgid "guestfs_mkdir_mode"
13740 msgstr ""
13741
13742 #. type: verbatim
13743 #: ../src/guestfs-actions.pod:4411
13744 #, no-wrap
13745 msgid ""
13746 " int\n"
13747 " guestfs_mkdir_mode (guestfs_h *g,\n"
13748 "                     const char *path,\n"
13749 "                     int mode);\n"
13750 "\n"
13751 msgstr ""
13752
13753 #. type: textblock
13754 #: ../src/guestfs-actions.pod:4416 ../fish/guestfish-actions.pod:2962
13755 msgid ""
13756 "This command creates a directory, setting the initial permissions of the "
13757 "directory to C<mode>."
13758 msgstr ""
13759
13760 #. type: textblock
13761 #: ../src/guestfs-actions.pod:4419 ../fish/guestfish-actions.pod:2965
13762 msgid ""
13763 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13764 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13765 "other ways."
13766 msgstr ""
13767
13768 #. type: textblock
13769 #: ../src/guestfs-actions.pod:4423
13770 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13771 msgstr ""
13772
13773 #. type: =head2
13774 #: ../src/guestfs-actions.pod:4429
13775 msgid "guestfs_mkdir_p"
13776 msgstr ""
13777
13778 #. type: verbatim
13779 #: ../src/guestfs-actions.pod:4431
13780 #, no-wrap
13781 msgid ""
13782 " int\n"
13783 " guestfs_mkdir_p (guestfs_h *g,\n"
13784 "                  const char *path);\n"
13785 "\n"
13786 msgstr ""
13787
13788 #. type: textblock
13789 #: ../src/guestfs-actions.pod:4435 ../fish/guestfish-actions.pod:2975
13790 msgid ""
13791 "Create a directory named C<path>, creating any parent directories as "
13792 "necessary.  This is like the C<mkdir -p> shell command."
13793 msgstr ""
13794
13795 #. type: =head2
13796 #: ../src/guestfs-actions.pod:4442
13797 msgid "guestfs_mkdtemp"
13798 msgstr ""
13799
13800 #. type: verbatim
13801 #: ../src/guestfs-actions.pod:4444
13802 #, no-wrap
13803 msgid ""
13804 " char *\n"
13805 " guestfs_mkdtemp (guestfs_h *g,\n"
13806 "                  const char *template);\n"
13807 "\n"
13808 msgstr ""
13809
13810 #. type: textblock
13811 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2982
13812 msgid ""
13813 "This command creates a temporary directory.  The C<template> parameter "
13814 "should be a full pathname for the temporary directory name with the final "
13815 "six characters being \"XXXXXX\"."
13816 msgstr ""
13817
13818 #. type: textblock
13819 #: ../src/guestfs-actions.pod:4453 ../fish/guestfish-actions.pod:2987
13820 msgid ""
13821 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13822 "being suitable for Windows filesystems."
13823 msgstr ""
13824
13825 #. type: textblock
13826 #: ../src/guestfs-actions.pod:4456 ../fish/guestfish-actions.pod:2990
13827 msgid "The name of the temporary directory that was created is returned."
13828 msgstr ""
13829
13830 #. type: textblock
13831 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:2993
13832 msgid "The temporary directory is created with mode 0700 and is owned by root."
13833 msgstr ""
13834
13835 #. type: textblock
13836 #: ../src/guestfs-actions.pod:4462 ../fish/guestfish-actions.pod:2996
13837 msgid ""
13838 "The caller is responsible for deleting the temporary directory and its "
13839 "contents after use."
13840 msgstr ""
13841
13842 #. type: textblock
13843 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:2999
13844 msgid "See also: L<mkdtemp(3)>"
13845 msgstr ""
13846
13847 #. type: =head2
13848 #: ../src/guestfs-actions.pod:4472
13849 msgid "guestfs_mke2fs_J"
13850 msgstr ""
13851
13852 #. type: verbatim
13853 #: ../src/guestfs-actions.pod:4474
13854 #, no-wrap
13855 msgid ""
13856 " int\n"
13857 " guestfs_mke2fs_J (guestfs_h *g,\n"
13858 "                   const char *fstype,\n"
13859 "                   int blocksize,\n"
13860 "                   const char *device,\n"
13861 "                   const char *journal);\n"
13862 "\n"
13863 msgstr ""
13864
13865 #. type: textblock
13866 #: ../src/guestfs-actions.pod:4481 ../fish/guestfish-actions.pod:3005
13867 msgid ""
13868 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13869 "C<journal>.  It is equivalent to the command:"
13870 msgstr ""
13871
13872 #. type: verbatim
13873 #: ../src/guestfs-actions.pod:4485 ../fish/guestfish-actions.pod:3009
13874 #, no-wrap
13875 msgid ""
13876 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13877 "\n"
13878 msgstr ""
13879
13880 #. type: textblock
13881 #: ../src/guestfs-actions.pod:4487
13882 msgid "See also C<guestfs_mke2journal>."
13883 msgstr ""
13884
13885 #. type: textblock
13886 #: ../src/guestfs-actions.pod:4491 ../src/guestfs-actions.pod:4509
13887 #: ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4543
13888 #: ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:4571
13889 #: ../src/guestfs-actions.pod:4630 ../src/guestfs-actions.pod:4907
13890 msgid "(Added in 1.0.68)"
13891 msgstr ""
13892
13893 #. type: =head2
13894 #: ../src/guestfs-actions.pod:4493
13895 msgid "guestfs_mke2fs_JL"
13896 msgstr ""
13897
13898 #. type: verbatim
13899 #: ../src/guestfs-actions.pod:4495
13900 #, no-wrap
13901 msgid ""
13902 " int\n"
13903 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13904 "                    const char *fstype,\n"
13905 "                    int blocksize,\n"
13906 "                    const char *device,\n"
13907 "                    const char *label);\n"
13908 "\n"
13909 msgstr ""
13910
13911 #. type: textblock
13912 #: ../src/guestfs-actions.pod:4502 ../fish/guestfish-actions.pod:3017
13913 msgid ""
13914 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13915 "the journal labeled C<label>."
13916 msgstr ""
13917
13918 #. type: textblock
13919 #: ../src/guestfs-actions.pod:4505
13920 msgid "See also C<guestfs_mke2journal_L>."
13921 msgstr ""
13922
13923 #. type: =head2
13924 #: ../src/guestfs-actions.pod:4511
13925 msgid "guestfs_mke2fs_JU"
13926 msgstr ""
13927
13928 #. type: verbatim
13929 #: ../src/guestfs-actions.pod:4513
13930 #, no-wrap
13931 msgid ""
13932 " int\n"
13933 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13934 "                    const char *fstype,\n"
13935 "                    int blocksize,\n"
13936 "                    const char *device,\n"
13937 "                    const char *uuid);\n"
13938 "\n"
13939 msgstr ""
13940
13941 #. type: textblock
13942 #: ../src/guestfs-actions.pod:4520 ../fish/guestfish-actions.pod:3026
13943 msgid ""
13944 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13945 "the journal with UUID C<uuid>."
13946 msgstr ""
13947
13948 #. type: textblock
13949 #: ../src/guestfs-actions.pod:4523
13950 msgid "See also C<guestfs_mke2journal_U>."
13951 msgstr ""
13952
13953 #. type: =head2
13954 #: ../src/guestfs-actions.pod:4529
13955 msgid "guestfs_mke2journal"
13956 msgstr ""
13957
13958 #. type: verbatim
13959 #: ../src/guestfs-actions.pod:4531
13960 #, no-wrap
13961 msgid ""
13962 " int\n"
13963 " guestfs_mke2journal (guestfs_h *g,\n"
13964 "                      int blocksize,\n"
13965 "                      const char *device);\n"
13966 "\n"
13967 msgstr ""
13968
13969 #. type: textblock
13970 #: ../src/guestfs-actions.pod:4536 ../fish/guestfish-actions.pod:3035
13971 msgid ""
13972 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13973 "command:"
13974 msgstr ""
13975
13976 #. type: verbatim
13977 #: ../src/guestfs-actions.pod:4539 ../fish/guestfish-actions.pod:3038
13978 #, no-wrap
13979 msgid ""
13980 " mke2fs -O journal_dev -b blocksize device\n"
13981 "\n"
13982 msgstr ""
13983
13984 #. type: =head2
13985 #: ../src/guestfs-actions.pod:4545
13986 msgid "guestfs_mke2journal_L"
13987 msgstr ""
13988
13989 #. type: verbatim
13990 #: ../src/guestfs-actions.pod:4547
13991 #, no-wrap
13992 msgid ""
13993 " int\n"
13994 " guestfs_mke2journal_L (guestfs_h *g,\n"
13995 "                        int blocksize,\n"
13996 "                        const char *label,\n"
13997 "                        const char *device);\n"
13998 "\n"
13999 msgstr ""
14000
14001 #. type: textblock
14002 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3044
14003 msgid "This creates an ext2 external journal on C<device> with label C<label>."
14004 msgstr ""
14005
14006 #. type: =head2
14007 #: ../src/guestfs-actions.pod:4559
14008 msgid "guestfs_mke2journal_U"
14009 msgstr ""
14010
14011 #. type: verbatim
14012 #: ../src/guestfs-actions.pod:4561
14013 #, no-wrap
14014 msgid ""
14015 " int\n"
14016 " guestfs_mke2journal_U (guestfs_h *g,\n"
14017 "                        int blocksize,\n"
14018 "                        const char *uuid,\n"
14019 "                        const char *device);\n"
14020 "\n"
14021 msgstr ""
14022
14023 #. type: textblock
14024 #: ../src/guestfs-actions.pod:4567 ../fish/guestfish-actions.pod:3050
14025 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14026 msgstr ""
14027
14028 #. type: =head2
14029 #: ../src/guestfs-actions.pod:4573
14030 msgid "guestfs_mkfifo"
14031 msgstr ""
14032
14033 #. type: verbatim
14034 #: ../src/guestfs-actions.pod:4575
14035 #, no-wrap
14036 msgid ""
14037 " int\n"
14038 " guestfs_mkfifo (guestfs_h *g,\n"
14039 "                 int mode,\n"
14040 "                 const char *path);\n"
14041 "\n"
14042 msgstr ""
14043
14044 #. type: textblock
14045 #: ../src/guestfs-actions.pod:4580
14046 msgid ""
14047 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14048 "is just a convenient wrapper around C<guestfs_mknod>."
14049 msgstr ""
14050
14051 #. type: =head2
14052 #: ../src/guestfs-actions.pod:4590
14053 msgid "guestfs_mkfs"
14054 msgstr ""
14055
14056 #. type: verbatim
14057 #: ../src/guestfs-actions.pod:4592
14058 #, no-wrap
14059 msgid ""
14060 " int\n"
14061 " guestfs_mkfs (guestfs_h *g,\n"
14062 "               const char *fstype,\n"
14063 "               const char *device);\n"
14064 "\n"
14065 msgstr ""
14066
14067 #. type: textblock
14068 #: ../src/guestfs-actions.pod:4597 ../fish/guestfish-actions.pod:3066
14069 msgid ""
14070 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14071 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14072 msgstr ""
14073
14074 #. type: =head2
14075 #: ../src/guestfs-actions.pod:4605
14076 msgid "guestfs_mkfs_b"
14077 msgstr ""
14078
14079 #. type: verbatim
14080 #: ../src/guestfs-actions.pod:4607
14081 #, no-wrap
14082 msgid ""
14083 " int\n"
14084 " guestfs_mkfs_b (guestfs_h *g,\n"
14085 "                 const char *fstype,\n"
14086 "                 int blocksize,\n"
14087 "                 const char *device);\n"
14088 "\n"
14089 msgstr ""
14090
14091 #. type: textblock
14092 #: ../src/guestfs-actions.pod:4613
14093 msgid ""
14094 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
14095 "block size of the resulting filesystem.  Supported block sizes depend on the "
14096 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
14097 msgstr ""
14098
14099 #. type: textblock
14100 #: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4663
14101 #: ../fish/guestfish-actions.pod:3079 ../fish/guestfish-actions.pod:3106
14102 msgid ""
14103 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
14104 "cluster size."
14105 msgstr ""
14106
14107 #. type: textblock
14108 #: ../src/guestfs-actions.pod:4623 ../fish/guestfish-actions.pod:3082
14109 msgid ""
14110 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
14111 msgstr ""
14112
14113 #. type: =head2
14114 #: ../src/guestfs-actions.pod:4632
14115 msgid "guestfs_mkfs_opts"
14116 msgstr ""
14117
14118 #. type: verbatim
14119 #: ../src/guestfs-actions.pod:4634
14120 #, no-wrap
14121 msgid ""
14122 " int\n"
14123 " guestfs_mkfs_opts (guestfs_h *g,\n"
14124 "                    const char *fstype,\n"
14125 "                    const char *device,\n"
14126 "                    ...);\n"
14127 "\n"
14128 msgstr ""
14129
14130 #. type: verbatim
14131 #: ../src/guestfs-actions.pod:4645
14132 #, no-wrap
14133 msgid ""
14134 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
14135 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
14136 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
14137 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
14138 "\n"
14139 msgstr ""
14140
14141 #. type: textblock
14142 #: ../src/guestfs-actions.pod:4650 ../fish/guestfish-actions.pod:3093
14143 msgid ""
14144 "This function creates a filesystem on C<device>.  The filesystem type is "
14145 "C<fstype>, for example C<ext3>."
14146 msgstr ""
14147
14148 #. type: =item
14149 #: ../src/guestfs-actions.pod:4657 ../fish/guestfish-actions.pod:3100
14150 msgid "C<blocksize>"
14151 msgstr ""
14152
14153 #. type: textblock
14154 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3102
14155 msgid ""
14156 "The filesystem block size.  Supported block sizes depend on the filesystem "
14157 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
14158 "filesystems."
14159 msgstr ""
14160
14161 #. type: textblock
14162 #: ../src/guestfs-actions.pod:4666 ../fish/guestfish-actions.pod:3109
14163 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
14164 msgstr ""
14165
14166 #. type: =item
14167 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3111
14168 msgid "C<features>"
14169 msgstr ""
14170
14171 #. type: textblock
14172 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3113
14173 msgid "This passes the I<-O> parameter to the external mkfs program."
14174 msgstr ""
14175
14176 #. type: textblock
14177 #: ../src/guestfs-actions.pod:4672 ../fish/guestfish-actions.pod:3115
14178 msgid ""
14179 "For certain filesystem types, this allows extra filesystem features to be "
14180 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
14181 msgstr ""
14182
14183 #. type: textblock
14184 #: ../src/guestfs-actions.pod:4676 ../fish/guestfish-actions.pod:3119
14185 msgid ""
14186 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
14187 "type."
14188 msgstr ""
14189
14190 #. type: =item
14191 #: ../src/guestfs-actions.pod:4679 ../fish/guestfish-actions.pod:3122
14192 #, fuzzy
14193 #| msgid "C<inspector>"
14194 msgid "C<inode>"
14195 msgstr "C<inspector>"
14196
14197 #. type: textblock
14198 #: ../src/guestfs-actions.pod:4681 ../fish/guestfish-actions.pod:3124
14199 msgid ""
14200 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
14201 "sets the inode size (only for ext2/3/4 filesystems at present)."
14202 msgstr ""
14203
14204 #. type: =item
14205 #: ../src/guestfs-actions.pod:4684 ../fish/guestfish-actions.pod:3127
14206 #, fuzzy
14207 #| msgid "C<inspector>"
14208 msgid "C<sectorsize>"
14209 msgstr "C<inspector>"
14210
14211 #. type: textblock
14212 #: ../src/guestfs-actions.pod:4686 ../fish/guestfish-actions.pod:3129
14213 msgid ""
14214 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
14215 "sets sector size for ufs filesystem."
14216 msgstr ""
14217
14218 #. type: textblock
14219 #: ../src/guestfs-actions.pod:4693
14220 msgid "(Added in 1.7.19)"
14221 msgstr ""
14222
14223 #. type: =head2
14224 #: ../src/guestfs-actions.pod:4695
14225 msgid "guestfs_mkfs_opts_va"
14226 msgstr ""
14227
14228 #. type: verbatim
14229 #: ../src/guestfs-actions.pod:4697
14230 #, no-wrap
14231 msgid ""
14232 " int\n"
14233 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14234 "                       const char *fstype,\n"
14235 "                       const char *device,\n"
14236 "                       va_list args);\n"
14237 "\n"
14238 msgstr ""
14239
14240 #. type: textblock
14241 #: ../src/guestfs-actions.pod:4703
14242 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14243 msgstr ""
14244
14245 #. type: =head2
14246 #: ../src/guestfs-actions.pod:4707
14247 msgid "guestfs_mkfs_opts_argv"
14248 msgstr ""
14249
14250 #. type: verbatim
14251 #: ../src/guestfs-actions.pod:4709
14252 #, no-wrap
14253 msgid ""
14254 " int\n"
14255 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14256 "                         const char *fstype,\n"
14257 "                         const char *device,\n"
14258 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14259 "\n"
14260 msgstr ""
14261
14262 #. type: textblock
14263 #: ../src/guestfs-actions.pod:4715
14264 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14265 msgstr ""
14266
14267 #. type: =head2
14268 #: ../src/guestfs-actions.pod:4719
14269 msgid "guestfs_mkmountpoint"
14270 msgstr ""
14271
14272 #. type: verbatim
14273 #: ../src/guestfs-actions.pod:4721
14274 #, no-wrap
14275 msgid ""
14276 " int\n"
14277 " guestfs_mkmountpoint (guestfs_h *g,\n"
14278 "                       const char *exemptpath);\n"
14279 "\n"
14280 msgstr ""
14281
14282 #. type: textblock
14283 #: ../src/guestfs-actions.pod:4725
14284 msgid ""
14285 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14286 "that can be used to create extra mountpoints before mounting the first "
14287 "filesystem."
14288 msgstr ""
14289
14290 #. type: textblock
14291 #: ../src/guestfs-actions.pod:4729 ../fish/guestfish-actions.pod:3144
14292 msgid ""
14293 "These calls are I<only> necessary in some very limited circumstances, mainly "
14294 "the case where you want to mount a mix of unrelated and/or read-only "
14295 "filesystems together."
14296 msgstr ""
14297
14298 #. type: textblock
14299 #: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3148
14300 msgid ""
14301 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14302 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14303 "inside that.  You can unpack this as follows in guestfish:"
14304 msgstr ""
14305
14306 #. type: verbatim
14307 #: ../src/guestfs-actions.pod:4738 ../fish/guestfish-actions.pod:3153
14308 #, no-wrap
14309 msgid ""
14310 " add-ro Fedora-11-i686-Live.iso\n"
14311 " run\n"
14312 " mkmountpoint /cd\n"
14313 " mkmountpoint /sqsh\n"
14314 " mkmountpoint /ext3fs\n"
14315 " mount /dev/sda /cd\n"
14316 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14317 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14318 "\n"
14319 msgstr ""
14320
14321 #. type: textblock
14322 #: ../src/guestfs-actions.pod:4747 ../fish/guestfish-actions.pod:3162
14323 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14324 msgstr ""
14325
14326 #. type: textblock
14327 #: ../src/guestfs-actions.pod:4749
14328 msgid ""
14329 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14330 "may get unexpected errors if you try to mix these calls.  It is safest to "
14331 "manually unmount filesystems and remove mountpoints after use."
14332 msgstr ""
14333
14334 #. type: textblock
14335 #: ../src/guestfs-actions.pod:4753
14336 msgid ""
14337 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14338 "first, so for this to work for manual mountpoints, you must ensure that the "
14339 "innermost mountpoints have the longest pathnames, as in the example code "
14340 "above."
14341 msgstr ""
14342
14343 #. type: textblock
14344 #: ../src/guestfs-actions.pod:4758 ../fish/guestfish-actions.pod:3173
14345 msgid ""
14346 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14347 msgstr ""
14348
14349 #. type: textblock
14350 #: ../src/guestfs-actions.pod:4760
14351 msgid ""
14352 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14353 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
14354 "can also trigger these issues."
14355 msgstr ""
14356
14357 #. type: textblock
14358 #: ../src/guestfs-actions.pod:4766 ../src/guestfs-actions.pod:5082
14359 #: ../src/guestfs-actions.pod:6086
14360 msgid "(Added in 1.0.62)"
14361 msgstr ""
14362
14363 #. type: =head2
14364 #: ../src/guestfs-actions.pod:4768
14365 msgid "guestfs_mknod"
14366 msgstr ""
14367
14368 #. type: verbatim
14369 #: ../src/guestfs-actions.pod:4770
14370 #, no-wrap
14371 msgid ""
14372 " int\n"
14373 " guestfs_mknod (guestfs_h *g,\n"
14374 "                int mode,\n"
14375 "                int devmajor,\n"
14376 "                int devminor,\n"
14377 "                const char *path);\n"
14378 "\n"
14379 msgstr ""
14380
14381 #. type: textblock
14382 #: ../src/guestfs-actions.pod:4777 ../fish/guestfish-actions.pod:3183
14383 msgid ""
14384 "This call creates block or character special devices, or named pipes (FIFOs)."
14385 msgstr ""
14386
14387 #. type: textblock
14388 #: ../src/guestfs-actions.pod:4780 ../fish/guestfish-actions.pod:3186
14389 msgid ""
14390 "The C<mode> parameter should be the mode, using the standard constants.  "
14391 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14392 "used when creating block and character special devices."
14393 msgstr ""
14394
14395 #. type: textblock
14396 #: ../src/guestfs-actions.pod:4785
14397 msgid ""
14398 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14399 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14400 "regular file).  These constants are available in the standard Linux header "
14401 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14402 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
14403 "the appropriate constant for you."
14404 msgstr ""
14405
14406 #. type: =head2
14407 #: ../src/guestfs-actions.pod:4799
14408 msgid "guestfs_mknod_b"
14409 msgstr ""
14410
14411 #. type: verbatim
14412 #: ../src/guestfs-actions.pod:4801
14413 #, no-wrap
14414 msgid ""
14415 " int\n"
14416 " guestfs_mknod_b (guestfs_h *g,\n"
14417 "                  int mode,\n"
14418 "                  int devmajor,\n"
14419 "                  int devminor,\n"
14420 "                  const char *path);\n"
14421 "\n"
14422 msgstr ""
14423
14424 #. type: textblock
14425 #: ../src/guestfs-actions.pod:4808
14426 msgid ""
14427 "This call creates a block device node called C<path> with mode C<mode> and "
14428 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14429 "wrapper around C<guestfs_mknod>."
14430 msgstr ""
14431
14432 #. type: =head2
14433 #: ../src/guestfs-actions.pod:4818
14434 msgid "guestfs_mknod_c"
14435 msgstr ""
14436
14437 #. type: verbatim
14438 #: ../src/guestfs-actions.pod:4820
14439 #, no-wrap
14440 msgid ""
14441 " int\n"
14442 " guestfs_mknod_c (guestfs_h *g,\n"
14443 "                  int mode,\n"
14444 "                  int devmajor,\n"
14445 "                  int devminor,\n"
14446 "                  const char *path);\n"
14447 "\n"
14448 msgstr ""
14449
14450 #. type: textblock
14451 #: ../src/guestfs-actions.pod:4827
14452 msgid ""
14453 "This call creates a char device node called C<path> with mode C<mode> and "
14454 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14455 "wrapper around C<guestfs_mknod>."
14456 msgstr ""
14457
14458 #. type: =head2
14459 #: ../src/guestfs-actions.pod:4837
14460 msgid "guestfs_mkswap"
14461 msgstr ""
14462
14463 #. type: verbatim
14464 #: ../src/guestfs-actions.pod:4839
14465 #, no-wrap
14466 msgid ""
14467 " int\n"
14468 " guestfs_mkswap (guestfs_h *g,\n"
14469 "                 const char *device);\n"
14470 "\n"
14471 msgstr ""
14472
14473 #. type: textblock
14474 #: ../src/guestfs-actions.pod:4843 ../fish/guestfish-actions.pod:3225
14475 msgid "Create a swap partition on C<device>."
14476 msgstr ""
14477
14478 #. type: =head2
14479 #: ../src/guestfs-actions.pod:4849
14480 msgid "guestfs_mkswap_L"
14481 msgstr ""
14482
14483 #. type: verbatim
14484 #: ../src/guestfs-actions.pod:4851
14485 #, no-wrap
14486 msgid ""
14487 " int\n"
14488 " guestfs_mkswap_L (guestfs_h *g,\n"
14489 "                   const char *label,\n"
14490 "                   const char *device);\n"
14491 "\n"
14492 msgstr ""
14493
14494 #. type: textblock
14495 #: ../src/guestfs-actions.pod:4856 ../fish/guestfish-actions.pod:3231
14496 msgid "Create a swap partition on C<device> with label C<label>."
14497 msgstr ""
14498
14499 #. type: textblock
14500 #: ../src/guestfs-actions.pod:4858 ../fish/guestfish-actions.pod:3233
14501 msgid ""
14502 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
14503 "sda>), just to a partition.  This appears to be a limitation of the kernel "
14504 "or swap tools."
14505 msgstr ""
14506
14507 #. type: =head2
14508 #: ../src/guestfs-actions.pod:4866
14509 msgid "guestfs_mkswap_U"
14510 msgstr ""
14511
14512 #. type: verbatim
14513 #: ../src/guestfs-actions.pod:4868
14514 #, no-wrap
14515 msgid ""
14516 " int\n"
14517 " guestfs_mkswap_U (guestfs_h *g,\n"
14518 "                   const char *uuid,\n"
14519 "                   const char *device);\n"
14520 "\n"
14521 msgstr ""
14522
14523 #. type: textblock
14524 #: ../src/guestfs-actions.pod:4873 ../fish/guestfish-actions.pod:3241
14525 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14526 msgstr ""
14527
14528 #. type: =head2
14529 #: ../src/guestfs-actions.pod:4879
14530 msgid "guestfs_mkswap_file"
14531 msgstr ""
14532
14533 #. type: verbatim
14534 #: ../src/guestfs-actions.pod:4881
14535 #, no-wrap
14536 msgid ""
14537 " int\n"
14538 " guestfs_mkswap_file (guestfs_h *g,\n"
14539 "                      const char *path);\n"
14540 "\n"
14541 msgstr ""
14542
14543 #. type: textblock
14544 #: ../src/guestfs-actions.pod:4885 ../fish/guestfish-actions.pod:3247
14545 msgid "Create a swap file."
14546 msgstr ""
14547
14548 #. type: textblock
14549 #: ../src/guestfs-actions.pod:4887
14550 msgid ""
14551 "This command just writes a swap file signature to an existing file.  To "
14552 "create the file itself, use something like C<guestfs_fallocate>."
14553 msgstr ""
14554
14555 #. type: =head2
14556 #: ../src/guestfs-actions.pod:4894
14557 msgid "guestfs_modprobe"
14558 msgstr ""
14559
14560 #. type: verbatim
14561 #: ../src/guestfs-actions.pod:4896
14562 #, no-wrap
14563 msgid ""
14564 " int\n"
14565 " guestfs_modprobe (guestfs_h *g,\n"
14566 "                   const char *modulename);\n"
14567 "\n"
14568 msgstr ""
14569
14570 #. type: textblock
14571 #: ../src/guestfs-actions.pod:4900 ../fish/guestfish-actions.pod:3256
14572 msgid "This loads a kernel module in the appliance."
14573 msgstr ""
14574
14575 #. type: textblock
14576 #: ../src/guestfs-actions.pod:4902 ../fish/guestfish-actions.pod:3258
14577 msgid ""
14578 "The kernel module must have been whitelisted when libguestfs was built (see "
14579 "C<appliance/kmod.whitelist.in> in the source)."
14580 msgstr ""
14581
14582 #. type: =head2
14583 #: ../src/guestfs-actions.pod:4909
14584 msgid "guestfs_mount"
14585 msgstr ""
14586
14587 #. type: verbatim
14588 #: ../src/guestfs-actions.pod:4911
14589 #, no-wrap
14590 msgid ""
14591 " int\n"
14592 " guestfs_mount (guestfs_h *g,\n"
14593 "                const char *device,\n"
14594 "                const char *mountpoint);\n"
14595 "\n"
14596 msgstr ""
14597
14598 #. type: textblock
14599 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3265
14600 msgid ""
14601 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14602 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14603 "those block devices contain partitions, they will have the usual names (eg. "
14604 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14605 msgstr ""
14606
14607 #. type: textblock
14608 #: ../src/guestfs-actions.pod:4922 ../fish/guestfish-actions.pod:3271
14609 msgid ""
14610 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14611 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14612 "mounted on directories which already exist."
14613 msgstr ""
14614
14615 #. type: textblock
14616 #: ../src/guestfs-actions.pod:4927 ../fish/guestfish-actions.pod:3276
14617 msgid ""
14618 "The mounted filesystem is writable, if we have sufficient permissions on the "
14619 "underlying device."
14620 msgstr ""
14621
14622 #. type: textblock
14623 #: ../src/guestfs-actions.pod:4930
14624 msgid ""
14625 "B<Important note:> When you use this call, the filesystem options C<sync> "
14626 "and C<noatime> are set implicitly.  This was originally done because we "
14627 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14628 "very large negative performance impact and negligible effect on "
14629 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14630 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14631 "(use an empty string for the first parameter if you don't want any options)."
14632 msgstr ""
14633
14634 #. type: textblock
14635 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3289
14636 msgid ""
14637 "This function is deprecated.  In new code, use the C<mount_options> call "
14638 "instead."
14639 msgstr ""
14640
14641 #. type: =head2
14642 #: ../src/guestfs-actions.pod:4951
14643 msgid "guestfs_mount_9p"
14644 msgstr ""
14645
14646 #. type: verbatim
14647 #: ../src/guestfs-actions.pod:4953
14648 #, no-wrap
14649 msgid ""
14650 " int\n"
14651 " guestfs_mount_9p (guestfs_h *g,\n"
14652 "                   const char *mounttag,\n"
14653 "                   const char *mountpoint,\n"
14654 "                   ...);\n"
14655 "\n"
14656 msgstr ""
14657
14658 #. type: verbatim
14659 #: ../src/guestfs-actions.pod:4964
14660 #, no-wrap
14661 msgid ""
14662 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14663 "\n"
14664 msgstr ""
14665
14666 #. type: textblock
14667 #: ../src/guestfs-actions.pod:4966 ../fish/guestfish-actions.pod:3300
14668 msgid ""
14669 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14670 "C<mountpoint>."
14671 msgstr ""
14672
14673 #. type: textblock
14674 #: ../src/guestfs-actions.pod:4969 ../fish/guestfish-actions.pod:3303
14675 msgid ""
14676 "If required, C<trans=virtio> will be automatically added to the options.  "
14677 "Any other options required can be passed in the optional C<options> "
14678 "parameter."
14679 msgstr ""
14680
14681 #. type: =head2
14682 #: ../src/guestfs-actions.pod:4977
14683 msgid "guestfs_mount_9p_va"
14684 msgstr ""
14685
14686 #. type: verbatim
14687 #: ../src/guestfs-actions.pod:4979
14688 #, no-wrap
14689 msgid ""
14690 " int\n"
14691 " guestfs_mount_9p_va (guestfs_h *g,\n"
14692 "                      const char *mounttag,\n"
14693 "                      const char *mountpoint,\n"
14694 "                      va_list args);\n"
14695 "\n"
14696 msgstr ""
14697
14698 #. type: textblock
14699 #: ../src/guestfs-actions.pod:4985
14700 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14701 msgstr ""
14702
14703 #. type: =head2
14704 #: ../src/guestfs-actions.pod:4989
14705 msgid "guestfs_mount_9p_argv"
14706 msgstr ""
14707
14708 #. type: verbatim
14709 #: ../src/guestfs-actions.pod:4991
14710 #, no-wrap
14711 msgid ""
14712 " int\n"
14713 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14714 "                        const char *mounttag,\n"
14715 "                        const char *mountpoint,\n"
14716 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14717 "\n"
14718 msgstr ""
14719
14720 #. type: textblock
14721 #: ../src/guestfs-actions.pod:4997
14722 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14723 msgstr ""
14724
14725 #. type: =head2
14726 #: ../src/guestfs-actions.pod:5001
14727 msgid "guestfs_mount_loop"
14728 msgstr ""
14729
14730 #. type: verbatim
14731 #: ../src/guestfs-actions.pod:5003
14732 #, no-wrap
14733 msgid ""
14734 " int\n"
14735 " guestfs_mount_loop (guestfs_h *g,\n"
14736 "                     const char *file,\n"
14737 "                     const char *mountpoint);\n"
14738 "\n"
14739 msgstr ""
14740
14741 #. type: textblock
14742 #: ../src/guestfs-actions.pod:5008 ../fish/guestfish-actions.pod:3313
14743 msgid ""
14744 "This command lets you mount C<file> (a filesystem image in a file) on a "
14745 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14746 "mountpoint>."
14747 msgstr ""
14748
14749 #. type: =head2
14750 #: ../src/guestfs-actions.pod:5016
14751 msgid "guestfs_mount_options"
14752 msgstr ""
14753
14754 #. type: verbatim
14755 #: ../src/guestfs-actions.pod:5018
14756 #, no-wrap
14757 msgid ""
14758 " int\n"
14759 " guestfs_mount_options (guestfs_h *g,\n"
14760 "                        const char *options,\n"
14761 "                        const char *device,\n"
14762 "                        const char *mountpoint);\n"
14763 "\n"
14764 msgstr ""
14765
14766 #. type: textblock
14767 #: ../src/guestfs-actions.pod:5024
14768 msgid ""
14769 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14770 "the mount options as for the L<mount(8)> I<-o> flag."
14771 msgstr ""
14772
14773 #. type: textblock
14774 #: ../src/guestfs-actions.pod:5028 ../fish/guestfish-actions.pod:3325
14775 msgid ""
14776 "If the C<options> parameter is an empty string, then no options are passed "
14777 "(all options default to whatever the filesystem uses)."
14778 msgstr ""
14779
14780 #. type: textblock
14781 #: ../src/guestfs-actions.pod:5034 ../src/guestfs-actions.pod:5048
14782 #: ../src/guestfs-actions.pod:5065
14783 msgid "(Added in 1.0.10)"
14784 msgstr ""
14785
14786 #. type: =head2
14787 #: ../src/guestfs-actions.pod:5036
14788 msgid "guestfs_mount_ro"
14789 msgstr ""
14790
14791 #. type: verbatim
14792 #: ../src/guestfs-actions.pod:5038
14793 #, no-wrap
14794 msgid ""
14795 " int\n"
14796 " guestfs_mount_ro (guestfs_h *g,\n"
14797 "                   const char *device,\n"
14798 "                   const char *mountpoint);\n"
14799 "\n"
14800 msgstr ""
14801
14802 #. type: textblock
14803 #: ../src/guestfs-actions.pod:5043
14804 msgid ""
14805 "This is the same as the C<guestfs_mount> command, but it mounts the "
14806 "filesystem with the read-only (I<-o ro>) flag."
14807 msgstr ""
14808
14809 #. type: =head2
14810 #: ../src/guestfs-actions.pod:5050
14811 msgid "guestfs_mount_vfs"
14812 msgstr ""
14813
14814 #. type: verbatim
14815 #: ../src/guestfs-actions.pod:5052
14816 #, no-wrap
14817 msgid ""
14818 " int\n"
14819 " guestfs_mount_vfs (guestfs_h *g,\n"
14820 "                    const char *options,\n"
14821 "                    const char *vfstype,\n"
14822 "                    const char *device,\n"
14823 "                    const char *mountpoint);\n"
14824 "\n"
14825 msgstr ""
14826
14827 #. type: textblock
14828 #: ../src/guestfs-actions.pod:5059
14829 msgid ""
14830 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14831 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14832 "t> flags."
14833 msgstr ""
14834
14835 #. type: =head2
14836 #: ../src/guestfs-actions.pod:5067
14837 msgid "guestfs_mountpoints"
14838 msgstr ""
14839
14840 #. type: verbatim
14841 #: ../src/guestfs-actions.pod:5069
14842 #, no-wrap
14843 msgid ""
14844 " char **\n"
14845 " guestfs_mountpoints (guestfs_h *g);\n"
14846 "\n"
14847 msgstr ""
14848
14849 #. type: textblock
14850 #: ../src/guestfs-actions.pod:5072
14851 msgid ""
14852 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14853 "devices.  This one returns a hash table (map) of device name to directory "
14854 "where the device is mounted."
14855 msgstr ""
14856
14857 #. type: =head2
14858 #: ../src/guestfs-actions.pod:5084
14859 msgid "guestfs_mounts"
14860 msgstr ""
14861
14862 #. type: verbatim
14863 #: ../src/guestfs-actions.pod:5086
14864 #, no-wrap
14865 msgid ""
14866 " char **\n"
14867 " guestfs_mounts (guestfs_h *g);\n"
14868 "\n"
14869 msgstr ""
14870
14871 #. type: textblock
14872 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3356
14873 msgid ""
14874 "This returns the list of currently mounted filesystems.  It returns the list "
14875 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14876 msgstr ""
14877
14878 #. type: textblock
14879 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3359
14880 msgid "Some internal mounts are not shown."
14881 msgstr ""
14882
14883 #. type: textblock
14884 #: ../src/guestfs-actions.pod:5094
14885 msgid "See also: C<guestfs_mountpoints>"
14886 msgstr ""
14887
14888 #. type: =head2
14889 #: ../src/guestfs-actions.pod:5102
14890 msgid "guestfs_mv"
14891 msgstr ""
14892
14893 #. type: verbatim
14894 #: ../src/guestfs-actions.pod:5104
14895 #, no-wrap
14896 msgid ""
14897 " int\n"
14898 " guestfs_mv (guestfs_h *g,\n"
14899 "             const char *src,\n"
14900 "             const char *dest);\n"
14901 "\n"
14902 msgstr ""
14903
14904 #. type: textblock
14905 #: ../src/guestfs-actions.pod:5109 ../fish/guestfish-actions.pod:3367
14906 msgid ""
14907 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14908 "destination filename or destination directory."
14909 msgstr ""
14910
14911 #. type: =head2
14912 #: ../src/guestfs-actions.pod:5116
14913 msgid "guestfs_ntfs_3g_probe"
14914 msgstr ""
14915
14916 #. type: verbatim
14917 #: ../src/guestfs-actions.pod:5118
14918 #, no-wrap
14919 msgid ""
14920 " int\n"
14921 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14922 "                        int rw,\n"
14923 "                        const char *device);\n"
14924 "\n"
14925 msgstr ""
14926
14927 #. type: textblock
14928 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3374
14929 msgid ""
14930 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14931 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14932 "write, and some cannot be mounted at all)."
14933 msgstr ""
14934
14935 #. type: textblock
14936 #: ../src/guestfs-actions.pod:5127 ../fish/guestfish-actions.pod:3378
14937 msgid ""
14938 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14939 "can be mounted read-write.  Set it to false if you want to test if the "
14940 "volume can be mounted read-only."
14941 msgstr ""
14942
14943 #. type: textblock
14944 #: ../src/guestfs-actions.pod:5131 ../fish/guestfish-actions.pod:3382
14945 msgid ""
14946 "The return value is an integer which C<0> if the operation would succeed, or "
14947 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14948 msgstr ""
14949
14950 #. type: textblock
14951 #: ../src/guestfs-actions.pod:5137
14952 msgid "(Added in 1.0.43)"
14953 msgstr ""
14954
14955 #. type: =head2
14956 #: ../src/guestfs-actions.pod:5139
14957 msgid "guestfs_ntfsresize"
14958 msgstr ""
14959
14960 #. type: verbatim
14961 #: ../src/guestfs-actions.pod:5141
14962 #, no-wrap
14963 msgid ""
14964 " int\n"
14965 " guestfs_ntfsresize (guestfs_h *g,\n"
14966 "                     const char *device);\n"
14967 "\n"
14968 msgstr ""
14969
14970 #. type: textblock
14971 #: ../src/guestfs-actions.pod:5145 ../src/guestfs-actions.pod:5184
14972 #: ../fish/guestfish-actions.pod:3390 ../fish/guestfish-actions.pod:3414
14973 msgid ""
14974 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14975 "size of the underlying device."
14976 msgstr ""
14977
14978 #. type: textblock
14979 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3393
14980 msgid ""
14981 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14982 "consistency check (for safety).  You have to boot into Windows to perform "
14983 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14984 "resize filesystems which have been marked in this way.  So in effect it is "
14985 "not possible to call ntfsresize multiple times on a single filesystem "
14986 "without booting into Windows between each resize."
14987 msgstr ""
14988
14989 #. type: textblock
14990 #: ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5210
14991 #: ../fish/guestfish-actions.pod:3401 ../fish/guestfish-actions.pod:3440
14992 #, fuzzy
14993 #| msgid "See L<guestfish(1)>."
14994 msgid "See also L<ntfsresize(8)>."
14995 msgstr "Див. L<guestfish(1)>."
14996
14997 #. type: textblock
14998 #: ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5250
14999 #: ../fish/guestfish-actions.pod:3403 ../fish/guestfish-actions.pod:3451
15000 msgid ""
15001 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
15002 "instead."
15003 msgstr ""
15004
15005 #. type: =head2
15006 #: ../src/guestfs-actions.pod:5169
15007 msgid "guestfs_ntfsresize_opts"
15008 msgstr ""
15009
15010 #. type: verbatim
15011 #: ../src/guestfs-actions.pod:5171
15012 #, no-wrap
15013 msgid ""
15014 " int\n"
15015 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
15016 "                          const char *device,\n"
15017 "                          ...);\n"
15018 "\n"
15019 msgstr ""
15020
15021 #. type: verbatim
15022 #: ../src/guestfs-actions.pod:5181
15023 #, no-wrap
15024 msgid ""
15025 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
15026 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
15027 "\n"
15028 msgstr ""
15029
15030 #. type: textblock
15031 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3423
15032 msgid ""
15033 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
15034 "resized to fit the container (eg. partition)."
15035 msgstr ""
15036
15037 #. type: =item
15038 #: ../src/guestfs-actions.pod:5196 ../fish/guestfish-actions.pod:3426
15039 #, fuzzy
15040 #| msgid "C<format>"
15041 msgid "C<force>"
15042 msgstr "C<format>"
15043
15044 #. type: textblock
15045 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3428
15046 msgid ""
15047 "If this option is true, then force the resize of the filesystem even if the "
15048 "filesystem is marked as requiring a consistency check."
15049 msgstr ""
15050
15051 #. type: textblock
15052 #: ../src/guestfs-actions.pod:5201
15053 msgid ""
15054 "After the resize operation, the filesystem is always marked as requiring a "
15055 "consistency check (for safety).  You have to boot into Windows to perform "
15056 "this check and clear this condition.  If you I<don't> set the C<force> "
15057 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
15058 "times on a single filesystem without booting into Windows between each "
15059 "resize."
15060 msgstr ""
15061
15062 #. type: =head2
15063 #: ../src/guestfs-actions.pod:5216
15064 msgid "guestfs_ntfsresize_opts_va"
15065 msgstr ""
15066
15067 #. type: verbatim
15068 #: ../src/guestfs-actions.pod:5218
15069 #, no-wrap
15070 msgid ""
15071 " int\n"
15072 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
15073 "                             const char *device,\n"
15074 "                             va_list args);\n"
15075 "\n"
15076 msgstr ""
15077
15078 #. type: textblock
15079 #: ../src/guestfs-actions.pod:5223
15080 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
15081 msgstr ""
15082
15083 #. type: =head2
15084 #: ../src/guestfs-actions.pod:5227
15085 msgid "guestfs_ntfsresize_opts_argv"
15086 msgstr ""
15087
15088 #. type: verbatim
15089 #: ../src/guestfs-actions.pod:5229
15090 #, no-wrap
15091 msgid ""
15092 " int\n"
15093 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
15094 "                               const char *device,\n"
15095 "                               const struct guestfs_ntfsresize_opts_argv *optargs);\n"
15096 "\n"
15097 msgstr ""
15098
15099 #. type: textblock
15100 #: ../src/guestfs-actions.pod:5234
15101 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
15102 msgstr ""
15103
15104 #. type: =head2
15105 #: ../src/guestfs-actions.pod:5238
15106 msgid "guestfs_ntfsresize_size"
15107 msgstr ""
15108
15109 #. type: verbatim
15110 #: ../src/guestfs-actions.pod:5240
15111 #, no-wrap
15112 msgid ""
15113 " int\n"
15114 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15115 "                          const char *device,\n"
15116 "                          int64_t size);\n"
15117 "\n"
15118 msgstr ""
15119
15120 #. type: textblock
15121 #: ../src/guestfs-actions.pod:5245
15122 msgid ""
15123 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15124 "to specify the new size (in bytes) explicitly."
15125 msgstr ""
15126
15127 #. type: textblock
15128 #: ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5693
15129 #: ../src/guestfs-actions.pod:5766 ../src/guestfs-actions.pod:6034
15130 #: ../src/guestfs-actions.pod:7655
15131 msgid "(Added in 1.3.14)"
15132 msgstr ""
15133
15134 #. type: =head2
15135 #: ../src/guestfs-actions.pod:5259
15136 msgid "guestfs_part_add"
15137 msgstr ""
15138
15139 #. type: verbatim
15140 #: ../src/guestfs-actions.pod:5261
15141 #, no-wrap
15142 msgid ""
15143 " int\n"
15144 " guestfs_part_add (guestfs_h *g,\n"
15145 "                   const char *device,\n"
15146 "                   const char *prlogex,\n"
15147 "                   int64_t startsect,\n"
15148 "                   int64_t endsect);\n"
15149 "\n"
15150 msgstr ""
15151
15152 #. type: textblock
15153 #: ../src/guestfs-actions.pod:5268
15154 msgid ""
15155 "This command adds a partition to C<device>.  If there is no partition table "
15156 "on the device, call C<guestfs_part_init> first."
15157 msgstr ""
15158
15159 #. type: textblock
15160 #: ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3465
15161 msgid ""
15162 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15163 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15164 "C<logical>) and C<e> (or C<extended>) partition types."
15165 msgstr ""
15166
15167 #. type: textblock
15168 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3470
15169 msgid ""
15170 "C<startsect> and C<endsect> are the start and end of the partition in "
15171 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15172 "from the end of the disk (C<-1> is the last sector)."
15173 msgstr ""
15174
15175 #. type: textblock
15176 #: ../src/guestfs-actions.pod:5280
15177 msgid ""
15178 "Creating a partition which covers the whole disk is not so easy.  Use "
15179 "C<guestfs_part_disk> to do that."
15180 msgstr ""
15181
15182 #. type: textblock
15183 #: ../src/guestfs-actions.pod:5285 ../src/guestfs-actions.pod:5323
15184 #: ../src/guestfs-actions.pod:5376 ../src/guestfs-actions.pod:5454
15185 #: ../src/guestfs-actions.pod:5492 ../src/guestfs-actions.pod:5511
15186 #: ../src/guestfs-actions.pod:5551
15187 msgid "(Added in 1.0.78)"
15188 msgstr ""
15189
15190 #. type: =head2
15191 #: ../src/guestfs-actions.pod:5287
15192 msgid "guestfs_part_del"
15193 msgstr ""
15194
15195 #. type: verbatim
15196 #: ../src/guestfs-actions.pod:5289
15197 #, no-wrap
15198 msgid ""
15199 " int\n"
15200 " guestfs_part_del (guestfs_h *g,\n"
15201 "                   const char *device,\n"
15202 "                   int partnum);\n"
15203 "\n"
15204 msgstr ""
15205
15206 #. type: textblock
15207 #: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3481
15208 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15209 msgstr ""
15210
15211 #. type: textblock
15212 #: ../src/guestfs-actions.pod:5296 ../fish/guestfish-actions.pod:3483
15213 msgid ""
15214 "Note that in the case of MBR partitioning, deleting an extended partition "
15215 "also deletes any logical partitions it contains."
15216 msgstr ""
15217
15218 #. type: =head2
15219 #: ../src/guestfs-actions.pod:5304
15220 msgid "guestfs_part_disk"
15221 msgstr ""
15222
15223 #. type: verbatim
15224 #: ../src/guestfs-actions.pod:5306
15225 #, no-wrap
15226 msgid ""
15227 " int\n"
15228 " guestfs_part_disk (guestfs_h *g,\n"
15229 "                    const char *device,\n"
15230 "                    const char *parttype);\n"
15231 "\n"
15232 msgstr ""
15233
15234 #. type: textblock
15235 #: ../src/guestfs-actions.pod:5311
15236 msgid ""
15237 "This command is simply a combination of C<guestfs_part_init> followed by "
15238 "C<guestfs_part_add> to create a single primary partition covering the whole "
15239 "disk."
15240 msgstr ""
15241
15242 #. type: textblock
15243 #: ../src/guestfs-actions.pod:5315
15244 msgid ""
15245 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
15246 "possible values are described in C<guestfs_part_init>."
15247 msgstr ""
15248
15249 #. type: =head2
15250 #: ../src/guestfs-actions.pod:5325
15251 msgid "guestfs_part_get_bootable"
15252 msgstr ""
15253
15254 #. type: verbatim
15255 #: ../src/guestfs-actions.pod:5327
15256 #, no-wrap
15257 msgid ""
15258 " int\n"
15259 " guestfs_part_get_bootable (guestfs_h *g,\n"
15260 "                            const char *device,\n"
15261 "                            int partnum);\n"
15262 "\n"
15263 msgstr ""
15264
15265 #. type: textblock
15266 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3505
15267 msgid ""
15268 "This command returns true if the partition C<partnum> on C<device> has the "
15269 "bootable flag set."
15270 msgstr ""
15271
15272 #. type: textblock
15273 #: ../src/guestfs-actions.pod:5335
15274 msgid "See also C<guestfs_part_set_bootable>."
15275 msgstr ""
15276
15277 #. type: =head2
15278 #: ../src/guestfs-actions.pod:5341
15279 msgid "guestfs_part_get_mbr_id"
15280 msgstr ""
15281
15282 #. type: verbatim
15283 #: ../src/guestfs-actions.pod:5343
15284 #, no-wrap
15285 msgid ""
15286 " int\n"
15287 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15288 "                          const char *device,\n"
15289 "                          int partnum);\n"
15290 "\n"
15291 msgstr ""
15292
15293 #. type: textblock
15294 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3514
15295 msgid ""
15296 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15297 "partition C<partnum>."
15298 msgstr ""
15299
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:5351 ../src/guestfs-actions.pod:5527
15302 msgid ""
15303 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
15304 "undefined results for other partition table types (see "
15305 "C<guestfs_part_get_parttype>)."
15306 msgstr ""
15307
15308 #. type: =head2
15309 #: ../src/guestfs-actions.pod:5359
15310 msgid "guestfs_part_get_parttype"
15311 msgstr ""
15312
15313 #. type: verbatim
15314 #: ../src/guestfs-actions.pod:5361
15315 #, no-wrap
15316 msgid ""
15317 " char *\n"
15318 " guestfs_part_get_parttype (guestfs_h *g,\n"
15319 "                            const char *device);\n"
15320 "\n"
15321 msgstr ""
15322
15323 #. type: textblock
15324 #: ../src/guestfs-actions.pod:5365 ../fish/guestfish-actions.pod:3525
15325 msgid ""
15326 "This command examines the partition table on C<device> and returns the "
15327 "partition table type (format) being used."
15328 msgstr ""
15329
15330 #. type: textblock
15331 #: ../src/guestfs-actions.pod:5368
15332 msgid ""
15333 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15334 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15335 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15336 msgstr ""
15337
15338 #. type: =head2
15339 #: ../src/guestfs-actions.pod:5378
15340 msgid "guestfs_part_init"
15341 msgstr ""
15342
15343 #. type: verbatim
15344 #: ../src/guestfs-actions.pod:5380
15345 #, no-wrap
15346 msgid ""
15347 " int\n"
15348 " guestfs_part_init (guestfs_h *g,\n"
15349 "                    const char *device,\n"
15350 "                    const char *parttype);\n"
15351 "\n"
15352 msgstr ""
15353
15354 #. type: textblock
15355 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3537
15356 msgid ""
15357 "This creates an empty partition table on C<device> of one of the partition "
15358 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
15359 "(for large disks)."
15360 msgstr ""
15361
15362 #. type: textblock
15363 #: ../src/guestfs-actions.pod:5389
15364 msgid ""
15365 "Initially there are no partitions.  Following this, you should call "
15366 "C<guestfs_part_add> for each partition required."
15367 msgstr ""
15368
15369 #. type: textblock
15370 #: ../src/guestfs-actions.pod:5392 ../fish/guestfish-actions.pod:3544
15371 msgid "Possible values for C<parttype> are:"
15372 msgstr ""
15373
15374 #. type: =item
15375 #: ../src/guestfs-actions.pod:5396 ../fish/guestfish-actions.pod:3548
15376 msgid "B<efi> | B<gpt>"
15377 msgstr ""
15378
15379 #. type: textblock
15380 #: ../src/guestfs-actions.pod:5398 ../fish/guestfish-actions.pod:3550
15381 msgid "Intel EFI / GPT partition table."
15382 msgstr ""
15383
15384 #. type: textblock
15385 #: ../src/guestfs-actions.pod:5400 ../fish/guestfish-actions.pod:3552
15386 msgid ""
15387 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15388 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
15389 "the C<mbr> format."
15390 msgstr ""
15391
15392 #. type: =item
15393 #: ../src/guestfs-actions.pod:5404 ../fish/guestfish-actions.pod:3556
15394 msgid "B<mbr> | B<msdos>"
15395 msgstr ""
15396
15397 #. type: textblock
15398 #: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3558
15399 msgid ""
15400 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
15401 "Windows.  This partition type will B<only> work for device sizes up to 2 "
15402 "TB.  For large disks we recommend using C<gpt>."
15403 msgstr ""
15404
15405 #. type: textblock
15406 #: ../src/guestfs-actions.pod:5413 ../fish/guestfish-actions.pod:3565
15407 msgid ""
15408 "Other partition table types that may work but are not supported include:"
15409 msgstr ""
15410
15411 #. type: =item
15412 #: ../src/guestfs-actions.pod:5418 ../fish/guestfish-actions.pod:3570
15413 msgid "B<aix>"
15414 msgstr ""
15415
15416 #. type: textblock
15417 #: ../src/guestfs-actions.pod:5420 ../fish/guestfish-actions.pod:3572
15418 msgid "AIX disk labels."
15419 msgstr ""
15420
15421 #. type: =item
15422 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3574
15423 msgid "B<amiga> | B<rdb>"
15424 msgstr ""
15425
15426 #. type: textblock
15427 #: ../src/guestfs-actions.pod:5424 ../fish/guestfish-actions.pod:3576
15428 msgid "Amiga \"Rigid Disk Block\" format."
15429 msgstr ""
15430
15431 #. type: =item
15432 #: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3578
15433 msgid "B<bsd>"
15434 msgstr ""
15435
15436 #. type: textblock
15437 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3580
15438 msgid "BSD disk labels."
15439 msgstr ""
15440
15441 #. type: =item
15442 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3582
15443 msgid "B<dasd>"
15444 msgstr ""
15445
15446 #. type: textblock
15447 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3584
15448 msgid "DASD, used on IBM mainframes."
15449 msgstr ""
15450
15451 #. type: =item
15452 #: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3586
15453 msgid "B<dvh>"
15454 msgstr ""
15455
15456 #. type: textblock
15457 #: ../src/guestfs-actions.pod:5436 ../fish/guestfish-actions.pod:3588
15458 msgid "MIPS/SGI volumes."
15459 msgstr ""
15460
15461 #. type: =item
15462 #: ../src/guestfs-actions.pod:5438 ../fish/guestfish-actions.pod:3590
15463 msgid "B<mac>"
15464 msgstr ""
15465
15466 #. type: textblock
15467 #: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3592
15468 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15469 msgstr ""
15470
15471 #. type: =item
15472 #: ../src/guestfs-actions.pod:5442 ../fish/guestfish-actions.pod:3594
15473 msgid "B<pc98>"
15474 msgstr ""
15475
15476 #. type: textblock
15477 #: ../src/guestfs-actions.pod:5444 ../fish/guestfish-actions.pod:3596
15478 msgid "NEC PC-98 format, common in Japan apparently."
15479 msgstr ""
15480
15481 #. type: =item
15482 #: ../src/guestfs-actions.pod:5446 ../fish/guestfish-actions.pod:3598
15483 msgid "B<sun>"
15484 msgstr ""
15485
15486 #. type: textblock
15487 #: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3600
15488 msgid "Sun disk labels."
15489 msgstr ""
15490
15491 #. type: =head2
15492 #: ../src/guestfs-actions.pod:5456
15493 msgid "guestfs_part_list"
15494 msgstr ""
15495
15496 #. type: verbatim
15497 #: ../src/guestfs-actions.pod:5458
15498 #, no-wrap
15499 msgid ""
15500 " struct guestfs_partition_list *\n"
15501 " guestfs_part_list (guestfs_h *g,\n"
15502 "                    const char *device);\n"
15503 "\n"
15504 msgstr ""
15505
15506 #. type: textblock
15507 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3608
15508 msgid ""
15509 "This command parses the partition table on C<device> and returns the list of "
15510 "partitions found."
15511 msgstr ""
15512
15513 #. type: textblock
15514 #: ../src/guestfs-actions.pod:5465 ../fish/guestfish-actions.pod:3611
15515 msgid "The fields in the returned structure are:"
15516 msgstr ""
15517
15518 #. type: =item
15519 #: ../src/guestfs-actions.pod:5469 ../fish/guestfish-actions.pod:3615
15520 msgid "B<part_num>"
15521 msgstr ""
15522
15523 #. type: textblock
15524 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3617
15525 msgid "Partition number, counting from 1."
15526 msgstr ""
15527
15528 #. type: =item
15529 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3619
15530 msgid "B<part_start>"
15531 msgstr ""
15532
15533 #. type: textblock
15534 #: ../src/guestfs-actions.pod:5475
15535 msgid ""
15536 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15537 "the device's sector size, see C<guestfs_blockdev_getss>."
15538 msgstr ""
15539
15540 #. type: =item
15541 #: ../src/guestfs-actions.pod:5478 ../fish/guestfish-actions.pod:3624
15542 msgid "B<part_end>"
15543 msgstr ""
15544
15545 #. type: textblock
15546 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3626
15547 msgid "End of the partition in bytes."
15548 msgstr ""
15549
15550 #. type: =item
15551 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3628
15552 msgid "B<part_size>"
15553 msgstr ""
15554
15555 #. type: textblock
15556 #: ../src/guestfs-actions.pod:5484 ../fish/guestfish-actions.pod:3630
15557 msgid "Size of the partition in bytes."
15558 msgstr ""
15559
15560 #. type: textblock
15561 #: ../src/guestfs-actions.pod:5488
15562 msgid ""
15563 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
15564 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15565 "use>."
15566 msgstr ""
15567
15568 #. type: =head2
15569 #: ../src/guestfs-actions.pod:5494
15570 msgid "guestfs_part_set_bootable"
15571 msgstr ""
15572
15573 #. type: verbatim
15574 #: ../src/guestfs-actions.pod:5496
15575 #, no-wrap
15576 msgid ""
15577 " int\n"
15578 " guestfs_part_set_bootable (guestfs_h *g,\n"
15579 "                            const char *device,\n"
15580 "                            int partnum,\n"
15581 "                            int bootable);\n"
15582 "\n"
15583 msgstr ""
15584
15585 #. type: textblock
15586 #: ../src/guestfs-actions.pod:5502 ../fish/guestfish-actions.pod:3638
15587 msgid ""
15588 "This sets the bootable flag on partition numbered C<partnum> on device "
15589 "C<device>.  Note that partitions are numbered from 1."
15590 msgstr ""
15591
15592 #. type: textblock
15593 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3641
15594 msgid ""
15595 "The bootable flag is used by some operating systems (notably Windows) to "
15596 "determine which partition to boot from.  It is by no means universally "
15597 "recognized."
15598 msgstr ""
15599
15600 #. type: =head2
15601 #: ../src/guestfs-actions.pod:5513
15602 msgid "guestfs_part_set_mbr_id"
15603 msgstr ""
15604
15605 #. type: verbatim
15606 #: ../src/guestfs-actions.pod:5515
15607 #, no-wrap
15608 msgid ""
15609 " int\n"
15610 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15611 "                          const char *device,\n"
15612 "                          int partnum,\n"
15613 "                          int idbyte);\n"
15614 "\n"
15615 msgstr ""
15616
15617 #. type: textblock
15618 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3649
15619 msgid ""
15620 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
15621 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15622 "documentation are in fact hexadecimal numbers, but usually documented "
15623 "without any leading \"0x\" which might be confusing."
15624 msgstr ""
15625
15626 #. type: =head2
15627 #: ../src/guestfs-actions.pod:5535
15628 msgid "guestfs_part_set_name"
15629 msgstr ""
15630
15631 #. type: verbatim
15632 #: ../src/guestfs-actions.pod:5537
15633 #, no-wrap
15634 msgid ""
15635 " int\n"
15636 " guestfs_part_set_name (guestfs_h *g,\n"
15637 "                        const char *device,\n"
15638 "                        int partnum,\n"
15639 "                        const char *name);\n"
15640 "\n"
15641 msgstr ""
15642
15643 #. type: textblock
15644 #: ../src/guestfs-actions.pod:5543 ../fish/guestfish-actions.pod:3663
15645 msgid ""
15646 "This sets the partition name on partition numbered C<partnum> on device "
15647 "C<device>.  Note that partitions are numbered from 1."
15648 msgstr ""
15649
15650 #. type: textblock
15651 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3666
15652 msgid ""
15653 "The partition name can only be set on certain types of partition table.  "
15654 "This works on C<gpt> but not on C<mbr> partitions."
15655 msgstr ""
15656
15657 #. type: =head2
15658 #: ../src/guestfs-actions.pod:5553
15659 msgid "guestfs_part_to_dev"
15660 msgstr ""
15661
15662 #. type: verbatim
15663 #: ../src/guestfs-actions.pod:5555
15664 #, no-wrap
15665 msgid ""
15666 " char *\n"
15667 " guestfs_part_to_dev (guestfs_h *g,\n"
15668 "                      const char *partition);\n"
15669 "\n"
15670 msgstr ""
15671
15672 #. type: textblock
15673 #: ../src/guestfs-actions.pod:5559 ../fish/guestfish-actions.pod:3673
15674 msgid ""
15675 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15676 "partition number, returning the device name (eg. \"/dev/sdb\")."
15677 msgstr ""
15678
15679 #. type: textblock
15680 #: ../src/guestfs-actions.pod:5563
15681 msgid ""
15682 "The named partition must exist, for example as a string returned from "
15683 "C<guestfs_list_partitions>."
15684 msgstr ""
15685
15686 #. type: =head2
15687 #: ../src/guestfs-actions.pod:5571
15688 msgid "guestfs_ping_daemon"
15689 msgstr ""
15690
15691 #. type: verbatim
15692 #: ../src/guestfs-actions.pod:5573
15693 #, no-wrap
15694 msgid ""
15695 " int\n"
15696 " guestfs_ping_daemon (guestfs_h *g);\n"
15697 "\n"
15698 msgstr ""
15699
15700 #. type: textblock
15701 #: ../src/guestfs-actions.pod:5576 ../fish/guestfish-actions.pod:3684
15702 msgid ""
15703 "This is a test probe into the guestfs daemon running inside the qemu "
15704 "subprocess.  Calling this function checks that the daemon responds to the "
15705 "ping message, without affecting the daemon or attached block device(s) in "
15706 "any other way."
15707 msgstr ""
15708
15709 #. type: =head2
15710 #: ../src/guestfs-actions.pod:5585
15711 msgid "guestfs_pread"
15712 msgstr ""
15713
15714 #. type: verbatim
15715 #: ../src/guestfs-actions.pod:5587
15716 #, no-wrap
15717 msgid ""
15718 " char *\n"
15719 " guestfs_pread (guestfs_h *g,\n"
15720 "                const char *path,\n"
15721 "                int count,\n"
15722 "                int64_t offset,\n"
15723 "                size_t *size_r);\n"
15724 "\n"
15725 msgstr ""
15726
15727 #. type: textblock
15728 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3693
15729 msgid ""
15730 "This command lets you read part of a file.  It reads C<count> bytes of the "
15731 "file, starting at C<offset>, from file C<path>."
15732 msgstr ""
15733
15734 #. type: textblock
15735 #: ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:5623
15736 #: ../fish/guestfish-actions.pod:3696 ../fish/guestfish-actions.pod:3711
15737 msgid ""
15738 "This may read fewer bytes than requested.  For further details see the "
15739 "L<pread(2)> system call."
15740 msgstr ""
15741
15742 #. type: textblock
15743 #: ../src/guestfs-actions.pod:5600
15744 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15745 msgstr ""
15746
15747 #. type: =head2
15748 #: ../src/guestfs-actions.pod:5611
15749 msgid "guestfs_pread_device"
15750 msgstr ""
15751
15752 #. type: verbatim
15753 #: ../src/guestfs-actions.pod:5613
15754 #, no-wrap
15755 msgid ""
15756 " char *\n"
15757 " guestfs_pread_device (guestfs_h *g,\n"
15758 "                       const char *device,\n"
15759 "                       int count,\n"
15760 "                       int64_t offset,\n"
15761 "                       size_t *size_r);\n"
15762 "\n"
15763 msgstr ""
15764
15765 #. type: textblock
15766 #: ../src/guestfs-actions.pod:5620 ../fish/guestfish-actions.pod:3708
15767 msgid ""
15768 "This command lets you read part of a file.  It reads C<count> bytes of "
15769 "C<device>, starting at C<offset>."
15770 msgstr ""
15771
15772 #. type: textblock
15773 #: ../src/guestfs-actions.pod:5626
15774 msgid "See also C<guestfs_pread>."
15775 msgstr ""
15776
15777 #. type: textblock
15778 #: ../src/guestfs-actions.pod:5635
15779 msgid "(Added in 1.5.21)"
15780 msgstr ""
15781
15782 #. type: =head2
15783 #: ../src/guestfs-actions.pod:5637
15784 msgid "guestfs_pvcreate"
15785 msgstr ""
15786
15787 #. type: verbatim
15788 #: ../src/guestfs-actions.pod:5639
15789 #, no-wrap
15790 msgid ""
15791 " int\n"
15792 " guestfs_pvcreate (guestfs_h *g,\n"
15793 "                   const char *device);\n"
15794 "\n"
15795 msgstr ""
15796
15797 #. type: textblock
15798 #: ../src/guestfs-actions.pod:5643 ../fish/guestfish-actions.pod:3723
15799 msgid ""
15800 "This creates an LVM physical volume on the named C<device>, where C<device> "
15801 "should usually be a partition name such as C</dev/sda1>."
15802 msgstr ""
15803
15804 #. type: =head2
15805 #: ../src/guestfs-actions.pod:5651
15806 msgid "guestfs_pvremove"
15807 msgstr ""
15808
15809 #. type: verbatim
15810 #: ../src/guestfs-actions.pod:5653
15811 #, no-wrap
15812 msgid ""
15813 " int\n"
15814 " guestfs_pvremove (guestfs_h *g,\n"
15815 "                   const char *device);\n"
15816 "\n"
15817 msgstr ""
15818
15819 #. type: textblock
15820 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3731
15821 msgid ""
15822 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15823 "it."
15824 msgstr ""
15825
15826 #. type: textblock
15827 #: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3734
15828 msgid ""
15829 "The implementation uses the C<pvremove> command which refuses to wipe "
15830 "physical volumes that contain any volume groups, so you have to remove those "
15831 "first."
15832 msgstr ""
15833
15834 #. type: =head2
15835 #: ../src/guestfs-actions.pod:5668
15836 msgid "guestfs_pvresize"
15837 msgstr ""
15838
15839 #. type: verbatim
15840 #: ../src/guestfs-actions.pod:5670
15841 #, no-wrap
15842 msgid ""
15843 " int\n"
15844 " guestfs_pvresize (guestfs_h *g,\n"
15845 "                   const char *device);\n"
15846 "\n"
15847 msgstr ""
15848
15849 #. type: textblock
15850 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3742
15851 msgid ""
15852 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15853 "the new size of the underlying device."
15854 msgstr ""
15855
15856 #. type: =head2
15857 #: ../src/guestfs-actions.pod:5681
15858 msgid "guestfs_pvresize_size"
15859 msgstr ""
15860
15861 #. type: verbatim
15862 #: ../src/guestfs-actions.pod:5683
15863 #, no-wrap
15864 msgid ""
15865 " int\n"
15866 " guestfs_pvresize_size (guestfs_h *g,\n"
15867 "                        const char *device,\n"
15868 "                        int64_t size);\n"
15869 "\n"
15870 msgstr ""
15871
15872 #. type: textblock
15873 #: ../src/guestfs-actions.pod:5688
15874 msgid ""
15875 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15876 "specify the new size (in bytes) explicitly."
15877 msgstr ""
15878
15879 #. type: =head2
15880 #: ../src/guestfs-actions.pod:5695
15881 msgid "guestfs_pvs"
15882 msgstr ""
15883
15884 #. type: verbatim
15885 #: ../src/guestfs-actions.pod:5697
15886 #, no-wrap
15887 msgid ""
15888 " char **\n"
15889 " guestfs_pvs (guestfs_h *g);\n"
15890 "\n"
15891 msgstr ""
15892
15893 #. type: textblock
15894 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3756
15895 msgid ""
15896 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15897 "(8)> command."
15898 msgstr ""
15899
15900 #. type: textblock
15901 #: ../src/guestfs-actions.pod:5703 ../fish/guestfish-actions.pod:3759
15902 msgid ""
15903 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15904 "sda2>)."
15905 msgstr ""
15906
15907 #. type: textblock
15908 #: ../src/guestfs-actions.pod:5706
15909 msgid "See also C<guestfs_pvs_full>."
15910 msgstr ""
15911
15912 #. type: =head2
15913 #: ../src/guestfs-actions.pod:5714
15914 msgid "guestfs_pvs_full"
15915 msgstr ""
15916
15917 #. type: verbatim
15918 #: ../src/guestfs-actions.pod:5716
15919 #, no-wrap
15920 msgid ""
15921 " struct guestfs_lvm_pv_list *\n"
15922 " guestfs_pvs_full (guestfs_h *g);\n"
15923 "\n"
15924 msgstr ""
15925
15926 #. type: textblock
15927 #: ../src/guestfs-actions.pod:5719 ../fish/guestfish-actions.pod:3768
15928 msgid ""
15929 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15930 "(8)> command.  The \"full\" version includes all fields."
15931 msgstr ""
15932
15933 #. type: textblock
15934 #: ../src/guestfs-actions.pod:5722
15935 msgid ""
15936 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15937 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15938 msgstr ""
15939
15940 #. type: =head2
15941 #: ../src/guestfs-actions.pod:5728
15942 msgid "guestfs_pvuuid"
15943 msgstr ""
15944
15945 #. type: verbatim
15946 #: ../src/guestfs-actions.pod:5730
15947 #, no-wrap
15948 msgid ""
15949 " char *\n"
15950 " guestfs_pvuuid (guestfs_h *g,\n"
15951 "                 const char *device);\n"
15952 "\n"
15953 msgstr ""
15954
15955 #. type: textblock
15956 #: ../src/guestfs-actions.pod:5734 ../fish/guestfish-actions.pod:3775
15957 msgid "This command returns the UUID of the LVM PV C<device>."
15958 msgstr ""
15959
15960 #. type: =head2
15961 #: ../src/guestfs-actions.pod:5741
15962 msgid "guestfs_pwrite"
15963 msgstr ""
15964
15965 #. type: verbatim
15966 #: ../src/guestfs-actions.pod:5743
15967 #, no-wrap
15968 msgid ""
15969 " int\n"
15970 " guestfs_pwrite (guestfs_h *g,\n"
15971 "                 const char *path,\n"
15972 "                 const char *content,\n"
15973 "                 size_t content_size,\n"
15974 "                 int64_t offset);\n"
15975 "\n"
15976 msgstr ""
15977
15978 #. type: textblock
15979 #: ../src/guestfs-actions.pod:5750 ../fish/guestfish-actions.pod:3781
15980 msgid ""
15981 "This command writes to part of a file.  It writes the data buffer C<content> "
15982 "to the file C<path> starting at offset C<offset>."
15983 msgstr ""
15984
15985 #. type: textblock
15986 #: ../src/guestfs-actions.pod:5753 ../fish/guestfish-actions.pod:3784
15987 msgid ""
15988 "This command implements the L<pwrite(2)> system call, and like that system "
15989 "call it may not write the full data requested.  The return value is the "
15990 "number of bytes that were actually written to the file.  This could even be "
15991 "0, although short writes are unlikely for regular files in ordinary "
15992 "circumstances."
15993 msgstr ""
15994
15995 #. type: textblock
15996 #: ../src/guestfs-actions.pod:5759
15997 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15998 msgstr ""
15999
16000 #. type: =head2
16001 #: ../src/guestfs-actions.pod:5768
16002 msgid "guestfs_pwrite_device"
16003 msgstr ""
16004
16005 #. type: verbatim
16006 #: ../src/guestfs-actions.pod:5770
16007 #, no-wrap
16008 msgid ""
16009 " int\n"
16010 " guestfs_pwrite_device (guestfs_h *g,\n"
16011 "                        const char *device,\n"
16012 "                        const char *content,\n"
16013 "                        size_t content_size,\n"
16014 "                        int64_t offset);\n"
16015 "\n"
16016 msgstr ""
16017
16018 #. type: textblock
16019 #: ../src/guestfs-actions.pod:5777 ../fish/guestfish-actions.pod:3799
16020 msgid ""
16021 "This command writes to part of a device.  It writes the data buffer "
16022 "C<content> to C<device> starting at offset C<offset>."
16023 msgstr ""
16024
16025 #. type: textblock
16026 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3802
16027 msgid ""
16028 "This command implements the L<pwrite(2)> system call, and like that system "
16029 "call it may not write the full data requested (although short writes to disk "
16030 "devices and partitions are probably impossible with standard Linux kernels)."
16031 msgstr ""
16032
16033 #. type: textblock
16034 #: ../src/guestfs-actions.pod:5785
16035 msgid "See also C<guestfs_pwrite>."
16036 msgstr ""
16037
16038 #. type: textblock
16039 #: ../src/guestfs-actions.pod:5792
16040 msgid "(Added in 1.5.20)"
16041 msgstr ""
16042
16043 #. type: =head2
16044 #: ../src/guestfs-actions.pod:5794
16045 msgid "guestfs_read_file"
16046 msgstr ""
16047
16048 #. type: verbatim
16049 #: ../src/guestfs-actions.pod:5796
16050 #, no-wrap
16051 msgid ""
16052 " char *\n"
16053 " guestfs_read_file (guestfs_h *g,\n"
16054 "                    const char *path,\n"
16055 "                    size_t *size_r);\n"
16056 "\n"
16057 msgstr ""
16058
16059 #. type: textblock
16060 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3816
16061 msgid "This calls returns the contents of the file C<path> as a buffer."
16062 msgstr ""
16063
16064 #. type: textblock
16065 #: ../src/guestfs-actions.pod:5804
16066 msgid ""
16067 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
16068 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16069 "function is limited in the total size of file that can be handled."
16070 msgstr ""
16071
16072 #. type: textblock
16073 #: ../src/guestfs-actions.pod:5816
16074 msgid "(Added in 1.0.63)"
16075 msgstr ""
16076
16077 #. type: =head2
16078 #: ../src/guestfs-actions.pod:5818
16079 msgid "guestfs_read_lines"
16080 msgstr ""
16081
16082 #. type: verbatim
16083 #: ../src/guestfs-actions.pod:5820
16084 #, no-wrap
16085 msgid ""
16086 " char **\n"
16087 " guestfs_read_lines (guestfs_h *g,\n"
16088 "                     const char *path);\n"
16089 "\n"
16090 msgstr ""
16091
16092 #. type: textblock
16093 #: ../src/guestfs-actions.pod:5826 ../fish/guestfish-actions.pod:3833
16094 msgid ""
16095 "The file contents are returned as a list of lines.  Trailing C<LF> and "
16096 "C<CRLF> character sequences are I<not> returned."
16097 msgstr ""
16098
16099 #. type: textblock
16100 #: ../src/guestfs-actions.pod:5829
16101 msgid ""
16102 "Note that this function cannot correctly handle binary files (specifically, "
16103 "files containing C<\\0> character which is treated as end of line).  For "
16104 "those you need to use the C<guestfs_read_file> function which has a more "
16105 "complex interface."
16106 msgstr ""
16107
16108 #. type: =head2
16109 #: ../src/guestfs-actions.pod:5840
16110 msgid "guestfs_readdir"
16111 msgstr ""
16112
16113 #. type: verbatim
16114 #: ../src/guestfs-actions.pod:5842
16115 #, no-wrap
16116 msgid ""
16117 " struct guestfs_dirent_list *\n"
16118 " guestfs_readdir (guestfs_h *g,\n"
16119 "                  const char *dir);\n"
16120 "\n"
16121 msgstr ""
16122
16123 #. type: textblock
16124 #: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3845
16125 msgid "This returns the list of directory entries in directory C<dir>."
16126 msgstr ""
16127
16128 #. type: textblock
16129 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3847
16130 msgid ""
16131 "All entries in the directory are returned, including C<.> and C<..>.  The "
16132 "entries are I<not> sorted, but returned in the same order as the underlying "
16133 "filesystem."
16134 msgstr ""
16135
16136 #. type: textblock
16137 #: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3851
16138 msgid ""
16139 "Also this call returns basic file type information about each file.  The "
16140 "C<ftyp> field will contain one of the following characters:"
16141 msgstr ""
16142
16143 #. type: =item
16144 #: ../src/guestfs-actions.pod:5857 ../fish/guestfish-actions.pod:3856
16145 msgid "'b'"
16146 msgstr ""
16147
16148 #. type: textblock
16149 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3858
16150 msgid "Block special"
16151 msgstr ""
16152
16153 #. type: =item
16154 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3860
16155 msgid "'c'"
16156 msgstr ""
16157
16158 #. type: textblock
16159 #: ../src/guestfs-actions.pod:5863 ../fish/guestfish-actions.pod:3862
16160 msgid "Char special"
16161 msgstr ""
16162
16163 #. type: =item
16164 #: ../src/guestfs-actions.pod:5865 ../fish/guestfish-actions.pod:3864
16165 msgid "'d'"
16166 msgstr ""
16167
16168 #. type: textblock
16169 #: ../src/guestfs-actions.pod:5867 ../fish/guestfish-actions.pod:3866
16170 msgid "Directory"
16171 msgstr ""
16172
16173 #. type: =item
16174 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3868
16175 msgid "'f'"
16176 msgstr ""
16177
16178 #. type: textblock
16179 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3870
16180 msgid "FIFO (named pipe)"
16181 msgstr ""
16182
16183 #. type: =item
16184 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3872
16185 msgid "'l'"
16186 msgstr ""
16187
16188 #. type: textblock
16189 #: ../src/guestfs-actions.pod:5875 ../fish/guestfish-actions.pod:3874
16190 msgid "Symbolic link"
16191 msgstr ""
16192
16193 #. type: =item
16194 #: ../src/guestfs-actions.pod:5877 ../fish/guestfish-actions.pod:3876
16195 msgid "'r'"
16196 msgstr ""
16197
16198 #. type: textblock
16199 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3878
16200 msgid "Regular file"
16201 msgstr ""
16202
16203 #. type: =item
16204 #: ../src/guestfs-actions.pod:5881 ../fish/guestfish-actions.pod:3880
16205 msgid "'s'"
16206 msgstr ""
16207
16208 #. type: textblock
16209 #: ../src/guestfs-actions.pod:5883 ../fish/guestfish-actions.pod:3882
16210 msgid "Socket"
16211 msgstr ""
16212
16213 #. type: =item
16214 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3884
16215 msgid "'u'"
16216 msgstr ""
16217
16218 #. type: textblock
16219 #: ../src/guestfs-actions.pod:5887 ../fish/guestfish-actions.pod:3886
16220 msgid "Unknown file type"
16221 msgstr ""
16222
16223 #. type: =item
16224 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3888
16225 msgid "'?'"
16226 msgstr ""
16227
16228 #. type: textblock
16229 #: ../src/guestfs-actions.pod:5891 ../fish/guestfish-actions.pod:3890
16230 msgid ""
16231 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16232 msgstr ""
16233
16234 #. type: textblock
16235 #: ../src/guestfs-actions.pod:5896
16236 msgid ""
16237 "This function is primarily intended for use by programs.  To get a simple "
16238 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16239 "consumption, use C<guestfs_ll>."
16240 msgstr ""
16241
16242 #. type: textblock
16243 #: ../src/guestfs-actions.pod:5900
16244 msgid ""
16245 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16246 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
16247 msgstr ""
16248
16249 #. type: =head2
16250 #: ../src/guestfs-actions.pod:5906
16251 msgid "guestfs_readlink"
16252 msgstr ""
16253
16254 #. type: verbatim
16255 #: ../src/guestfs-actions.pod:5908
16256 #, no-wrap
16257 msgid ""
16258 " char *\n"
16259 " guestfs_readlink (guestfs_h *g,\n"
16260 "                   const char *path);\n"
16261 "\n"
16262 msgstr ""
16263
16264 #. type: textblock
16265 #: ../src/guestfs-actions.pod:5912 ../fish/guestfish-actions.pod:3903
16266 msgid "This command reads the target of a symbolic link."
16267 msgstr ""
16268
16269 #. type: =head2
16270 #: ../src/guestfs-actions.pod:5919
16271 msgid "guestfs_readlinklist"
16272 msgstr ""
16273
16274 #. type: verbatim
16275 #: ../src/guestfs-actions.pod:5921
16276 #, no-wrap
16277 msgid ""
16278 " char **\n"
16279 " guestfs_readlinklist (guestfs_h *g,\n"
16280 "                       const char *path,\n"
16281 "                       char *const *names);\n"
16282 "\n"
16283 msgstr ""
16284
16285 #. type: textblock
16286 #: ../src/guestfs-actions.pod:5926 ../fish/guestfish-actions.pod:3909
16287 msgid ""
16288 "This call allows you to do a C<readlink> operation on multiple files, where "
16289 "all files are in the directory C<path>.  C<names> is the list of files from "
16290 "this directory."
16291 msgstr ""
16292
16293 #. type: textblock
16294 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3913
16295 msgid ""
16296 "On return you get a list of strings, with a one-to-one correspondence to the "
16297 "C<names> list.  Each string is the value of the symbolic link."
16298 msgstr ""
16299
16300 #. type: textblock
16301 #: ../src/guestfs-actions.pod:5934 ../fish/guestfish-actions.pod:3917
16302 msgid ""
16303 "If the C<readlink(2)> operation fails on any name, then the corresponding "
16304 "result string is the empty string C<\"\">.  However the whole operation is "
16305 "completed even if there were C<readlink(2)> errors, and so you can call this "
16306 "function with names where you don't know if they are symbolic links already "
16307 "(albeit slightly less efficient)."
16308 msgstr ""
16309
16310 #. type: textblock
16311 #: ../src/guestfs-actions.pod:5941 ../fish/guestfish-actions.pod:3924
16312 msgid ""
16313 "This call is intended for programs that want to efficiently list a directory "
16314 "contents without making many round-trips.  Very long directory listings "
16315 "might cause the protocol message size to be exceeded, causing this call to "
16316 "fail.  The caller must split up such requests into smaller groups of names."
16317 msgstr ""
16318
16319 #. type: =head2
16320 #: ../src/guestfs-actions.pod:5954
16321 msgid "guestfs_realpath"
16322 msgstr ""
16323
16324 #. type: verbatim
16325 #: ../src/guestfs-actions.pod:5956
16326 #, no-wrap
16327 msgid ""
16328 " char *\n"
16329 " guestfs_realpath (guestfs_h *g,\n"
16330 "                   const char *path);\n"
16331 "\n"
16332 msgstr ""
16333
16334 #. type: textblock
16335 #: ../src/guestfs-actions.pod:5960 ../fish/guestfish-actions.pod:3935
16336 msgid ""
16337 "Return the canonicalized absolute pathname of C<path>.  The returned path "
16338 "has no C<.>, C<..> or symbolic link path elements."
16339 msgstr ""
16340
16341 #. type: =head2
16342 #: ../src/guestfs-actions.pod:5968
16343 msgid "guestfs_removexattr"
16344 msgstr ""
16345
16346 #. type: verbatim
16347 #: ../src/guestfs-actions.pod:5970
16348 #, no-wrap
16349 msgid ""
16350 " int\n"
16351 " guestfs_removexattr (guestfs_h *g,\n"
16352 "                      const char *xattr,\n"
16353 "                      const char *path);\n"
16354 "\n"
16355 msgstr ""
16356
16357 #. type: textblock
16358 #: ../src/guestfs-actions.pod:5975 ../fish/guestfish-actions.pod:3942
16359 msgid ""
16360 "This call removes the extended attribute named C<xattr> of the file C<path>."
16361 msgstr ""
16362
16363 #. type: textblock
16364 #: ../src/guestfs-actions.pod:5978
16365 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
16366 msgstr ""
16367
16368 #. type: =head2
16369 #: ../src/guestfs-actions.pod:5984
16370 msgid "guestfs_resize2fs"
16371 msgstr ""
16372
16373 #. type: verbatim
16374 #: ../src/guestfs-actions.pod:5986
16375 #, no-wrap
16376 msgid ""
16377 " int\n"
16378 " guestfs_resize2fs (guestfs_h *g,\n"
16379 "                    const char *device);\n"
16380 "\n"
16381 msgstr ""
16382
16383 #. type: textblock
16384 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:3951
16385 msgid ""
16386 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
16387 "underlying device."
16388 msgstr ""
16389
16390 #. type: textblock
16391 #: ../src/guestfs-actions.pod:5993
16392 msgid ""
16393 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
16394 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
16395 "sometimes gives an error about this and sometimes not.  In any case, it is "
16396 "always safe to call C<guestfs_e2fsck_f> before calling this function."
16397 msgstr ""
16398
16399 #. type: =head2
16400 #: ../src/guestfs-actions.pod:6003
16401 msgid "guestfs_resize2fs_M"
16402 msgstr ""
16403
16404 #. type: verbatim
16405 #: ../src/guestfs-actions.pod:6005
16406 #, no-wrap
16407 msgid ""
16408 " int\n"
16409 " guestfs_resize2fs_M (guestfs_h *g,\n"
16410 "                      const char *device);\n"
16411 "\n"
16412 msgstr ""
16413
16414 #. type: textblock
16415 #: ../src/guestfs-actions.pod:6009
16416 msgid ""
16417 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
16418 "resized to its minimum size.  This works like the I<-M> option to the "
16419 "C<resize2fs> command."
16420 msgstr ""
16421
16422 #. type: textblock
16423 #: ../src/guestfs-actions.pod:6013
16424 msgid ""
16425 "To get the resulting size of the filesystem you should call "
16426 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16427 "These two numbers, multiplied together, give the resulting size of the "
16428 "minimal filesystem in bytes."
16429 msgstr ""
16430
16431 #. type: =head2
16432 #: ../src/guestfs-actions.pod:6022
16433 msgid "guestfs_resize2fs_size"
16434 msgstr ""
16435
16436 #. type: verbatim
16437 #: ../src/guestfs-actions.pod:6024
16438 #, no-wrap
16439 msgid ""
16440 " int\n"
16441 " guestfs_resize2fs_size (guestfs_h *g,\n"
16442 "                         const char *device,\n"
16443 "                         int64_t size);\n"
16444 "\n"
16445 msgstr ""
16446
16447 #. type: textblock
16448 #: ../src/guestfs-actions.pod:6029
16449 msgid ""
16450 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16451 "to specify the new size (in bytes) explicitly."
16452 msgstr ""
16453
16454 #. type: =head2
16455 #: ../src/guestfs-actions.pod:6036
16456 msgid "guestfs_rm"
16457 msgstr ""
16458
16459 #. type: verbatim
16460 #: ../src/guestfs-actions.pod:6038
16461 #, no-wrap
16462 msgid ""
16463 " int\n"
16464 " guestfs_rm (guestfs_h *g,\n"
16465 "             const char *path);\n"
16466 "\n"
16467 msgstr ""
16468
16469 #. type: textblock
16470 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:3984
16471 msgid "Remove the single file C<path>."
16472 msgstr ""
16473
16474 #. type: =head2
16475 #: ../src/guestfs-actions.pod:6048
16476 msgid "guestfs_rm_rf"
16477 msgstr ""
16478
16479 #. type: verbatim
16480 #: ../src/guestfs-actions.pod:6050
16481 #, no-wrap
16482 msgid ""
16483 " int\n"
16484 " guestfs_rm_rf (guestfs_h *g,\n"
16485 "                const char *path);\n"
16486 "\n"
16487 msgstr ""
16488
16489 #. type: textblock
16490 #: ../src/guestfs-actions.pod:6054 ../fish/guestfish-actions.pod:3990
16491 msgid ""
16492 "Remove the file or directory C<path>, recursively removing the contents if "
16493 "its a directory.  This is like the C<rm -rf> shell command."
16494 msgstr ""
16495
16496 #. type: =head2
16497 #: ../src/guestfs-actions.pod:6062
16498 msgid "guestfs_rmdir"
16499 msgstr ""
16500
16501 #. type: verbatim
16502 #: ../src/guestfs-actions.pod:6064
16503 #, no-wrap
16504 msgid ""
16505 " int\n"
16506 " guestfs_rmdir (guestfs_h *g,\n"
16507 "                const char *path);\n"
16508 "\n"
16509 msgstr ""
16510
16511 #. type: textblock
16512 #: ../src/guestfs-actions.pod:6068 ../fish/guestfish-actions.pod:3998
16513 msgid "Remove the single directory C<path>."
16514 msgstr ""
16515
16516 #. type: =head2
16517 #: ../src/guestfs-actions.pod:6074
16518 msgid "guestfs_rmmountpoint"
16519 msgstr ""
16520
16521 #. type: verbatim
16522 #: ../src/guestfs-actions.pod:6076
16523 #, no-wrap
16524 msgid ""
16525 " int\n"
16526 " guestfs_rmmountpoint (guestfs_h *g,\n"
16527 "                       const char *exemptpath);\n"
16528 "\n"
16529 msgstr ""
16530
16531 #. type: textblock
16532 #: ../src/guestfs-actions.pod:6080
16533 msgid ""
16534 "This calls removes a mountpoint that was previously created with "
16535 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16536 msgstr ""
16537
16538 #. type: =head2
16539 #: ../src/guestfs-actions.pod:6088
16540 msgid "guestfs_scrub_device"
16541 msgstr ""
16542
16543 #. type: verbatim
16544 #: ../src/guestfs-actions.pod:6090
16545 #, no-wrap
16546 msgid ""
16547 " int\n"
16548 " guestfs_scrub_device (guestfs_h *g,\n"
16549 "                       const char *device);\n"
16550 "\n"
16551 msgstr ""
16552
16553 #. type: textblock
16554 #: ../src/guestfs-actions.pod:6094 ../fish/guestfish-actions.pod:4012
16555 msgid ""
16556 "This command writes patterns over C<device> to make data retrieval more "
16557 "difficult."
16558 msgstr ""
16559
16560 #. type: textblock
16561 #: ../src/guestfs-actions.pod:6097 ../src/guestfs-actions.pod:6118
16562 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4015
16563 #: ../fish/guestfish-actions.pod:4030 ../fish/guestfish-actions.pod:4043
16564 msgid ""
16565 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16566 "more details."
16567 msgstr ""
16568
16569 #. type: textblock
16570 #: ../src/guestfs-actions.pod:6105 ../src/guestfs-actions.pod:6123
16571 #: ../src/guestfs-actions.pod:6142
16572 msgid "(Added in 1.0.52)"
16573 msgstr ""
16574
16575 #. type: =head2
16576 #: ../src/guestfs-actions.pod:6107
16577 msgid "guestfs_scrub_file"
16578 msgstr ""
16579
16580 #. type: verbatim
16581 #: ../src/guestfs-actions.pod:6109
16582 #, no-wrap
16583 msgid ""
16584 " int\n"
16585 " guestfs_scrub_file (guestfs_h *g,\n"
16586 "                     const char *file);\n"
16587 "\n"
16588 msgstr ""
16589
16590 #. type: textblock
16591 #: ../src/guestfs-actions.pod:6113 ../fish/guestfish-actions.pod:4025
16592 msgid ""
16593 "This command writes patterns over a file to make data retrieval more "
16594 "difficult."
16595 msgstr ""
16596
16597 #. type: textblock
16598 #: ../src/guestfs-actions.pod:6116 ../fish/guestfish-actions.pod:4028
16599 msgid "The file is I<removed> after scrubbing."
16600 msgstr ""
16601
16602 #. type: =head2
16603 #: ../src/guestfs-actions.pod:6125
16604 msgid "guestfs_scrub_freespace"
16605 msgstr ""
16606
16607 #. type: verbatim
16608 #: ../src/guestfs-actions.pod:6127
16609 #, no-wrap
16610 msgid ""
16611 " int\n"
16612 " guestfs_scrub_freespace (guestfs_h *g,\n"
16613 "                          const char *dir);\n"
16614 "\n"
16615 msgstr ""
16616
16617 #. type: textblock
16618 #: ../src/guestfs-actions.pod:6131
16619 msgid ""
16620 "This command creates the directory C<dir> and then fills it with files until "
16621 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16622 "and deletes them.  The intention is to scrub any free space on the partition "
16623 "containing C<dir>."
16624 msgstr ""
16625
16626 #. type: =head2
16627 #: ../src/guestfs-actions.pod:6144
16628 msgid "guestfs_set_append"
16629 msgstr ""
16630
16631 #. type: verbatim
16632 #: ../src/guestfs-actions.pod:6146
16633 #, no-wrap
16634 msgid ""
16635 " int\n"
16636 " guestfs_set_append (guestfs_h *g,\n"
16637 "                     const char *append);\n"
16638 "\n"
16639 msgstr ""
16640
16641 #. type: textblock
16642 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4052
16643 msgid ""
16644 "This function is used to add additional options to the guest kernel command "
16645 "line."
16646 msgstr ""
16647
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4055
16650 msgid ""
16651 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16652 "environment variable."
16653 msgstr ""
16654
16655 #. type: textblock
16656 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4058
16657 msgid ""
16658 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16659 "(libguestfs always adds a few of its own)."
16660 msgstr ""
16661
16662 #. type: =head2
16663 #: ../src/guestfs-actions.pod:6163
16664 msgid "guestfs_set_attach_method"
16665 msgstr ""
16666
16667 #. type: verbatim
16668 #: ../src/guestfs-actions.pod:6165
16669 #, no-wrap
16670 msgid ""
16671 " int\n"
16672 " guestfs_set_attach_method (guestfs_h *g,\n"
16673 "                            const char *attachmethod);\n"
16674 "\n"
16675 msgstr ""
16676
16677 #. type: textblock
16678 #: ../src/guestfs-actions.pod:6169 ../fish/guestfish-actions.pod:4067
16679 msgid ""
16680 "Set the method that libguestfs uses to connect to the back end guestfsd "
16681 "daemon.  Possible methods are:"
16682 msgstr ""
16683
16684 #. type: textblock
16685 #: ../src/guestfs-actions.pod:6176 ../fish/guestfish-actions.pod:4074
16686 msgid ""
16687 "Launch an appliance and connect to it.  This is the ordinary method and the "
16688 "default."
16689 msgstr ""
16690
16691 #. type: =item
16692 #: ../src/guestfs-actions.pod:6179 ../fish/guestfish-actions.pod:4077
16693 msgid "C<unix:I<path>>"
16694 msgstr ""
16695
16696 #. type: textblock
16697 #: ../src/guestfs-actions.pod:6181 ../fish/guestfish-actions.pod:4079
16698 msgid "Connect to the Unix domain socket I<path>."
16699 msgstr ""
16700
16701 #. type: textblock
16702 #: ../src/guestfs-actions.pod:6183 ../fish/guestfish-actions.pod:4081
16703 msgid ""
16704 "This method lets you connect to an existing daemon or (using virtio-serial) "
16705 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16706 "RUNNING DAEMONS>."
16707 msgstr ""
16708
16709 #. type: =head2
16710 #: ../src/guestfs-actions.pod:6193
16711 msgid "guestfs_set_autosync"
16712 msgstr ""
16713
16714 #. type: verbatim
16715 #: ../src/guestfs-actions.pod:6195
16716 #, no-wrap
16717 msgid ""
16718 " int\n"
16719 " guestfs_set_autosync (guestfs_h *g,\n"
16720 "                       int autosync);\n"
16721 "\n"
16722 msgstr ""
16723
16724 #. type: textblock
16725 #: ../src/guestfs-actions.pod:6199 ../fish/guestfish-actions.pod:4093
16726 msgid ""
16727 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16728 "effort attempt to make filesystems consistent and synchronized when the "
16729 "handle is closed (also if the program exits without closing handles)."
16730 msgstr ""
16731
16732 #. type: textblock
16733 #: ../src/guestfs-actions.pod:6204 ../fish/guestfish-actions.pod:4098
16734 msgid ""
16735 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16736 "disabled by default)."
16737 msgstr ""
16738
16739 #. type: =head2
16740 #: ../src/guestfs-actions.pod:6211
16741 msgid "guestfs_set_direct"
16742 msgstr ""
16743
16744 #. type: verbatim
16745 #: ../src/guestfs-actions.pod:6213
16746 #, no-wrap
16747 msgid ""
16748 " int\n"
16749 " guestfs_set_direct (guestfs_h *g,\n"
16750 "                     int direct);\n"
16751 "\n"
16752 msgstr ""
16753
16754 #. type: textblock
16755 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4107
16756 msgid ""
16757 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16758 "passed directly through to the appliance once it is launched."
16759 msgstr ""
16760
16761 #. type: textblock
16762 #: ../src/guestfs-actions.pod:6221
16763 msgid ""
16764 "One consequence of this is that log messages aren't caught by the library "
16765 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16766 "stdout."
16767 msgstr ""
16768
16769 #. type: textblock
16770 #: ../src/guestfs-actions.pod:6225 ../fish/guestfish-actions.pod:4115
16771 msgid "You probably don't want to use this unless you know what you are doing."
16772 msgstr ""
16773
16774 #. type: textblock
16775 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4118
16776 msgid "The default is disabled."
16777 msgstr ""
16778
16779 #. type: =head2
16780 #: ../src/guestfs-actions.pod:6234
16781 msgid "guestfs_set_e2label"
16782 msgstr ""
16783
16784 #. type: verbatim
16785 #: ../src/guestfs-actions.pod:6236
16786 #, no-wrap
16787 msgid ""
16788 " int\n"
16789 " guestfs_set_e2label (guestfs_h *g,\n"
16790 "                      const char *device,\n"
16791 "                      const char *label);\n"
16792 "\n"
16793 msgstr ""
16794
16795 #. type: textblock
16796 #: ../src/guestfs-actions.pod:6241 ../fish/guestfish-actions.pod:4124
16797 msgid ""
16798 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16799 "C<label>.  Filesystem labels are limited to 16 characters."
16800 msgstr ""
16801
16802 #. type: textblock
16803 #: ../src/guestfs-actions.pod:6245
16804 msgid ""
16805 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16806 "the existing label on a filesystem."
16807 msgstr ""
16808
16809 #. type: =head2
16810 #: ../src/guestfs-actions.pod:6252
16811 msgid "guestfs_set_e2uuid"
16812 msgstr ""
16813
16814 #. type: verbatim
16815 #: ../src/guestfs-actions.pod:6254
16816 #, no-wrap
16817 msgid ""
16818 " int\n"
16819 " guestfs_set_e2uuid (guestfs_h *g,\n"
16820 "                     const char *device,\n"
16821 "                     const char *uuid);\n"
16822 "\n"
16823 msgstr ""
16824
16825 #. type: textblock
16826 #: ../src/guestfs-actions.pod:6259 ../fish/guestfish-actions.pod:4135
16827 msgid ""
16828 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16829 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16830 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16831 msgstr ""
16832
16833 #. type: textblock
16834 #: ../src/guestfs-actions.pod:6264
16835 msgid ""
16836 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16837 "the existing UUID of a filesystem."
16838 msgstr ""
16839
16840 #. type: =head2
16841 #: ../src/guestfs-actions.pod:6271
16842 msgid "guestfs_set_memsize"
16843 msgstr ""
16844
16845 #. type: verbatim
16846 #: ../src/guestfs-actions.pod:6273
16847 #, no-wrap
16848 msgid ""
16849 " int\n"
16850 " guestfs_set_memsize (guestfs_h *g,\n"
16851 "                      int memsize);\n"
16852 "\n"
16853 msgstr ""
16854
16855 #. type: textblock
16856 #: ../src/guestfs-actions.pod:6277
16857 msgid ""
16858 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16859 "This only has any effect if called before C<guestfs_launch>."
16860 msgstr ""
16861
16862 #. type: textblock
16863 #: ../src/guestfs-actions.pod:6281 ../fish/guestfish-actions.pod:4153
16864 msgid ""
16865 "You can also change this by setting the environment variable "
16866 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16867 msgstr ""
16868
16869 #. type: =head2
16870 #: ../src/guestfs-actions.pod:6292
16871 msgid "guestfs_set_network"
16872 msgstr ""
16873
16874 #. type: verbatim
16875 #: ../src/guestfs-actions.pod:6294
16876 #, no-wrap
16877 msgid ""
16878 " int\n"
16879 " guestfs_set_network (guestfs_h *g,\n"
16880 "                      int network);\n"
16881 "\n"
16882 msgstr ""
16883
16884 #. type: textblock
16885 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4166
16886 msgid ""
16887 "If C<network> is true, then the network is enabled in the libguestfs "
16888 "appliance.  The default is false."
16889 msgstr ""
16890
16891 #. type: textblock
16892 #: ../src/guestfs-actions.pod:6301 ../fish/guestfish-actions.pod:4169
16893 msgid ""
16894 "This affects whether commands are able to access the network (see L<guestfs"
16895 "(3)/RUNNING COMMANDS>)."
16896 msgstr ""
16897
16898 #. type: textblock
16899 #: ../src/guestfs-actions.pod:6304
16900 msgid ""
16901 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16902 "effect."
16903 msgstr ""
16904
16905 #. type: =head2
16906 #: ../src/guestfs-actions.pod:6311
16907 msgid "guestfs_set_path"
16908 msgstr ""
16909
16910 #. type: verbatim
16911 #: ../src/guestfs-actions.pod:6313
16912 #, no-wrap
16913 msgid ""
16914 " int\n"
16915 " guestfs_set_path (guestfs_h *g,\n"
16916 "                   const char *searchpath);\n"
16917 "\n"
16918 msgstr ""
16919
16920 #. type: textblock
16921 #: ../src/guestfs-actions.pod:6317 ../fish/guestfish-actions.pod:4181
16922 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16923 msgstr ""
16924
16925 #. type: textblock
16926 #: ../src/guestfs-actions.pod:6319 ../fish/guestfish-actions.pod:4183
16927 msgid ""
16928 "The default is C<$libdir/guestfs> unless overridden by setting "
16929 "C<LIBGUESTFS_PATH> environment variable."
16930 msgstr ""
16931
16932 #. type: textblock
16933 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4186
16934 msgid "Setting C<path> to C<NULL> restores the default path."
16935 msgstr ""
16936
16937 #. type: =head2
16938 #: ../src/guestfs-actions.pod:6328
16939 msgid "guestfs_set_pgroup"
16940 msgstr ""
16941
16942 #. type: verbatim
16943 #: ../src/guestfs-actions.pod:6330
16944 #, no-wrap
16945 msgid ""
16946 " int\n"
16947 " guestfs_set_pgroup (guestfs_h *g,\n"
16948 "                     int pgroup);\n"
16949 "\n"
16950 msgstr ""
16951
16952 #. type: textblock
16953 #: ../src/guestfs-actions.pod:6334 ../fish/guestfish-actions.pod:4194
16954 msgid ""
16955 "If C<pgroup> is true, child processes are placed into their own process "
16956 "group."
16957 msgstr ""
16958
16959 #. type: textblock
16960 #: ../src/guestfs-actions.pod:6337 ../fish/guestfish-actions.pod:4197
16961 msgid ""
16962 "The practical upshot of this is that signals like C<SIGINT> (from users "
16963 "pressing C<^C>) won't be received by the child process."
16964 msgstr ""
16965
16966 #. type: textblock
16967 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4200
16968 msgid ""
16969 "The default for this flag is false, because usually you want C<^C> to kill "
16970 "the subprocess."
16971 msgstr ""
16972
16973 #. type: =head2
16974 #: ../src/guestfs-actions.pod:6345
16975 msgid "guestfs_set_qemu"
16976 msgstr ""
16977
16978 #. type: verbatim
16979 #: ../src/guestfs-actions.pod:6347
16980 #, no-wrap
16981 msgid ""
16982 " int\n"
16983 " guestfs_set_qemu (guestfs_h *g,\n"
16984 "                   const char *qemu);\n"
16985 "\n"
16986 msgstr ""
16987
16988 #. type: textblock
16989 #: ../src/guestfs-actions.pod:6351 ../fish/guestfish-actions.pod:4209
16990 msgid "Set the qemu binary that we will use."
16991 msgstr ""
16992
16993 #. type: textblock
16994 #: ../src/guestfs-actions.pod:6353 ../fish/guestfish-actions.pod:4211
16995 msgid ""
16996 "The default is chosen when the library was compiled by the configure script."
16997 msgstr ""
16998
16999 #. type: textblock
17000 #: ../src/guestfs-actions.pod:6356 ../fish/guestfish-actions.pod:4214
17001 msgid ""
17002 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
17003 "variable."
17004 msgstr ""
17005
17006 #. type: textblock
17007 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4217
17008 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
17009 msgstr ""
17010
17011 #. type: textblock
17012 #: ../src/guestfs-actions.pod:6361 ../fish/guestfish-actions.pod:4219
17013 msgid ""
17014 "Note that you should call this function as early as possible after creating "
17015 "the handle.  This is because some pre-launch operations depend on testing "
17016 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
17017 "don't retest features, and so you might see inconsistent results.  Using the "
17018 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
17019 "the qemu binary at the same time as the handle is created."
17020 msgstr ""
17021
17022 #. type: =head2
17023 #: ../src/guestfs-actions.pod:6373
17024 msgid "guestfs_set_recovery_proc"
17025 msgstr ""
17026
17027 #. type: verbatim
17028 #: ../src/guestfs-actions.pod:6375
17029 #, no-wrap
17030 msgid ""
17031 " int\n"
17032 " guestfs_set_recovery_proc (guestfs_h *g,\n"
17033 "                            int recoveryproc);\n"
17034 "\n"
17035 msgstr ""
17036
17037 #. type: textblock
17038 #: ../src/guestfs-actions.pod:6379
17039 msgid ""
17040 "If this is called with the parameter C<false> then C<guestfs_launch> does "
17041 "not create a recovery process.  The purpose of the recovery process is to "
17042 "stop runaway qemu processes in the case where the main program aborts "
17043 "abruptly."
17044 msgstr ""
17045
17046 #. type: textblock
17047 #: ../src/guestfs-actions.pod:6384
17048 msgid ""
17049 "This only has any effect if called before C<guestfs_launch>, and the default "
17050 "is true."
17051 msgstr ""
17052
17053 #. type: textblock
17054 #: ../src/guestfs-actions.pod:6387 ../fish/guestfish-actions.pod:4241
17055 msgid ""
17056 "About the only time when you would want to disable this is if the main "
17057 "process will fork itself into the background (\"daemonize\" itself).  In "
17058 "this case the recovery process thinks that the main program has disappeared "
17059 "and so kills qemu, which is not very helpful."
17060 msgstr ""
17061
17062 #. type: =head2
17063 #: ../src/guestfs-actions.pod:6397
17064 msgid "guestfs_set_selinux"
17065 msgstr ""
17066
17067 #. type: verbatim
17068 #: ../src/guestfs-actions.pod:6399
17069 #, no-wrap
17070 msgid ""
17071 " int\n"
17072 " guestfs_set_selinux (guestfs_h *g,\n"
17073 "                      int selinux);\n"
17074 "\n"
17075 msgstr ""
17076
17077 #. type: textblock
17078 #: ../src/guestfs-actions.pod:6403 ../fish/guestfish-actions.pod:4253
17079 msgid ""
17080 "This sets the selinux flag that is passed to the appliance at boot time.  "
17081 "The default is C<selinux=0> (disabled)."
17082 msgstr ""
17083
17084 #. type: textblock
17085 #: ../src/guestfs-actions.pod:6406 ../fish/guestfish-actions.pod:4256
17086 msgid ""
17087 "Note that if SELinux is enabled, it is always in Permissive mode "
17088 "(C<enforcing=0>)."
17089 msgstr ""
17090
17091 #. type: =head2
17092 #: ../src/guestfs-actions.pod:6416
17093 msgid "guestfs_set_trace"
17094 msgstr ""
17095
17096 #. type: verbatim
17097 #: ../src/guestfs-actions.pod:6418
17098 #, no-wrap
17099 msgid ""
17100 " int\n"
17101 " guestfs_set_trace (guestfs_h *g,\n"
17102 "                    int trace);\n"
17103 "\n"
17104 msgstr ""
17105
17106 #. type: textblock
17107 #: ../src/guestfs-actions.pod:6422 ../fish/guestfish-actions.pod:4268
17108 msgid ""
17109 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
17110 "return values are traced."
17111 msgstr ""
17112
17113 #. type: textblock
17114 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4271
17115 msgid ""
17116 "If you want to trace C API calls into libguestfs (and other libraries) then "
17117 "possibly a better way is to use the external ltrace(1) command."
17118 msgstr ""
17119
17120 #. type: textblock
17121 #: ../src/guestfs-actions.pod:6429 ../fish/guestfish-actions.pod:4275
17122 msgid ""
17123 "Command traces are disabled unless the environment variable "
17124 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
17125 msgstr ""
17126
17127 #. type: textblock
17128 #: ../src/guestfs-actions.pod:6432
17129 msgid ""
17130 "Trace messages are normally sent to C<stderr>, unless you register a "
17131 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17132 msgstr ""
17133
17134 #. type: =head2
17135 #: ../src/guestfs-actions.pod:6440
17136 msgid "guestfs_set_verbose"
17137 msgstr ""
17138
17139 #. type: verbatim
17140 #: ../src/guestfs-actions.pod:6442
17141 #, no-wrap
17142 msgid ""
17143 " int\n"
17144 " guestfs_set_verbose (guestfs_h *g,\n"
17145 "                      int verbose);\n"
17146 "\n"
17147 msgstr ""
17148
17149 #. type: textblock
17150 #: ../src/guestfs-actions.pod:6446 ../fish/guestfish-actions.pod:4288
17151 msgid "If C<verbose> is true, this turns on verbose messages."
17152 msgstr ""
17153
17154 #. type: textblock
17155 #: ../src/guestfs-actions.pod:6448 ../fish/guestfish-actions.pod:4290
17156 msgid ""
17157 "Verbose messages are disabled unless the environment variable "
17158 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
17159 msgstr ""
17160
17161 #. type: textblock
17162 #: ../src/guestfs-actions.pod:6451
17163 msgid ""
17164 "Verbose messages are normally sent to C<stderr>, unless you register a "
17165 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17166 msgstr ""
17167
17168 #. type: =head2
17169 #: ../src/guestfs-actions.pod:6459
17170 msgid "guestfs_setcon"
17171 msgstr ""
17172
17173 #. type: verbatim
17174 #: ../src/guestfs-actions.pod:6461
17175 #, no-wrap
17176 msgid ""
17177 " int\n"
17178 " guestfs_setcon (guestfs_h *g,\n"
17179 "                 const char *context);\n"
17180 "\n"
17181 msgstr ""
17182
17183 #. type: textblock
17184 #: ../src/guestfs-actions.pod:6465 ../fish/guestfish-actions.pod:4301
17185 msgid ""
17186 "This sets the SELinux security context of the daemon to the string "
17187 "C<context>."
17188 msgstr ""
17189
17190 #. type: textblock
17191 #: ../src/guestfs-actions.pod:6468 ../fish/guestfish-actions.pod:4304
17192 msgid "See the documentation about SELINUX in L<guestfs(3)>."
17193 msgstr ""
17194
17195 #. type: =head2
17196 #: ../src/guestfs-actions.pod:6474
17197 msgid "guestfs_setxattr"
17198 msgstr ""
17199
17200 #. type: verbatim
17201 #: ../src/guestfs-actions.pod:6476
17202 #, no-wrap
17203 msgid ""
17204 " int\n"
17205 " guestfs_setxattr (guestfs_h *g,\n"
17206 "                   const char *xattr,\n"
17207 "                   const char *val,\n"
17208 "                   int vallen,\n"
17209 "                   const char *path);\n"
17210 "\n"
17211 msgstr ""
17212
17213 #. type: textblock
17214 #: ../src/guestfs-actions.pod:6483 ../fish/guestfish-actions.pod:4310
17215 msgid ""
17216 "This call sets the extended attribute named C<xattr> of the file C<path> to "
17217 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
17218 msgstr ""
17219
17220 #. type: textblock
17221 #: ../src/guestfs-actions.pod:6487
17222 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
17223 msgstr ""
17224
17225 #. type: =head2
17226 #: ../src/guestfs-actions.pod:6493
17227 msgid "guestfs_sfdisk"
17228 msgstr ""
17229
17230 #. type: verbatim
17231 #: ../src/guestfs-actions.pod:6495
17232 #, no-wrap
17233 msgid ""
17234 " int\n"
17235 " guestfs_sfdisk (guestfs_h *g,\n"
17236 "                 const char *device,\n"
17237 "                 int cyls,\n"
17238 "                 int heads,\n"
17239 "                 int sectors,\n"
17240 "                 char *const *lines);\n"
17241 "\n"
17242 msgstr ""
17243
17244 #. type: textblock
17245 #: ../src/guestfs-actions.pod:6503 ../fish/guestfish-actions.pod:4320
17246 msgid ""
17247 "This is a direct interface to the L<sfdisk(8)> program for creating "
17248 "partitions on block devices."
17249 msgstr ""
17250
17251 #. type: textblock
17252 #: ../src/guestfs-actions.pod:6506 ../fish/guestfish-actions.pod:4323
17253 msgid "C<device> should be a block device, for example C</dev/sda>."
17254 msgstr ""
17255
17256 #. type: textblock
17257 #: ../src/guestfs-actions.pod:6508 ../fish/guestfish-actions.pod:4325
17258 msgid ""
17259 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
17260 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
17261 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
17262 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
17263 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
17264 "the kernel) cannot work out the right geometry and you will need to tell it."
17265 msgstr ""
17266
17267 #. type: textblock
17268 #: ../src/guestfs-actions.pod:6516 ../fish/guestfish-actions.pod:4333
17269 msgid ""
17270 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
17271 "refer to the L<sfdisk(8)> manpage."
17272 msgstr ""
17273
17274 #. type: textblock
17275 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4336
17276 msgid ""
17277 "To create a single partition occupying the whole disk, you would pass "
17278 "C<lines> as a single element list, when the single element being the string "
17279 "C<,> (comma)."
17280 msgstr ""
17281
17282 #. type: textblock
17283 #: ../src/guestfs-actions.pod:6523
17284 msgid ""
17285 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
17286 msgstr ""
17287
17288 #. type: textblock
17289 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6561
17290 #: ../src/guestfs-actions.pod:6594 ../fish/guestfish-actions.pod:4346
17291 #: ../fish/guestfish-actions.pod:4369 ../fish/guestfish-actions.pod:4391
17292 msgid ""
17293 "This function is deprecated.  In new code, use the C<part_add> call instead."
17294 msgstr ""
17295
17296 #. type: =head2
17297 #: ../src/guestfs-actions.pod:6540
17298 msgid "guestfs_sfdiskM"
17299 msgstr ""
17300
17301 #. type: verbatim
17302 #: ../src/guestfs-actions.pod:6542
17303 #, no-wrap
17304 msgid ""
17305 " int\n"
17306 " guestfs_sfdiskM (guestfs_h *g,\n"
17307 "                  const char *device,\n"
17308 "                  char *const *lines);\n"
17309 "\n"
17310 msgstr ""
17311
17312 #. type: textblock
17313 #: ../src/guestfs-actions.pod:6547
17314 msgid ""
17315 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
17316 "partition sizes are specified in megabytes only (rounded to the nearest "
17317 "cylinder) and you don't need to specify the cyls, heads and sectors "
17318 "parameters which were rarely if ever used anyway."
17319 msgstr ""
17320
17321 #. type: textblock
17322 #: ../src/guestfs-actions.pod:6553
17323 msgid ""
17324 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
17325 "C<guestfs_part_disk>"
17326 msgstr ""
17327
17328 #. type: =head2
17329 #: ../src/guestfs-actions.pod:6570
17330 msgid "guestfs_sfdisk_N"
17331 msgstr ""
17332
17333 #. type: verbatim
17334 #: ../src/guestfs-actions.pod:6572
17335 #, no-wrap
17336 msgid ""
17337 " int\n"
17338 " guestfs_sfdisk_N (guestfs_h *g,\n"
17339 "                   const char *device,\n"
17340 "                   int partnum,\n"
17341 "                   int cyls,\n"
17342 "                   int heads,\n"
17343 "                   int sectors,\n"
17344 "                   const char *line);\n"
17345 "\n"
17346 msgstr ""
17347
17348 #. type: textblock
17349 #: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4380
17350 msgid ""
17351 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
17352 "(note: C<n> counts from 1)."
17353 msgstr ""
17354
17355 #. type: textblock
17356 #: ../src/guestfs-actions.pod:6584
17357 msgid ""
17358 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
17359 "for the cyls/heads/sectors parameters."
17360 msgstr ""
17361
17362 #. type: textblock
17363 #: ../src/guestfs-actions.pod:6587
17364 msgid "See also: C<guestfs_part_add>"
17365 msgstr ""
17366
17367 #. type: =head2
17368 #: ../src/guestfs-actions.pod:6603
17369 msgid "guestfs_sfdisk_disk_geometry"
17370 msgstr ""
17371
17372 #. type: verbatim
17373 #: ../src/guestfs-actions.pod:6605
17374 #, no-wrap
17375 msgid ""
17376 " char *\n"
17377 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
17378 "                               const char *device);\n"
17379 "\n"
17380 msgstr ""
17381
17382 #. type: textblock
17383 #: ../src/guestfs-actions.pod:6609
17384 msgid ""
17385 "This displays the disk geometry of C<device> read from the partition table.  "
17386 "Especially in the case where the underlying block device has been resized, "
17387 "this can be different from the kernel's idea of the geometry (see "
17388 "C<guestfs_sfdisk_kernel_geometry>)."
17389 msgstr ""
17390
17391 #. type: textblock
17392 #: ../src/guestfs-actions.pod:6614 ../src/guestfs-actions.pod:6630
17393 #: ../fish/guestfish-actions.pod:4407 ../fish/guestfish-actions.pod:4416
17394 msgid "The result is in human-readable format, and not designed to be parsed."
17395 msgstr ""
17396
17397 #. type: =head2
17398 #: ../src/guestfs-actions.pod:6622
17399 msgid "guestfs_sfdisk_kernel_geometry"
17400 msgstr ""
17401
17402 #. type: verbatim
17403 #: ../src/guestfs-actions.pod:6624
17404 #, no-wrap
17405 msgid ""
17406 " char *\n"
17407 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
17408 "                                 const char *device);\n"
17409 "\n"
17410 msgstr ""
17411
17412 #. type: textblock
17413 #: ../src/guestfs-actions.pod:6628 ../fish/guestfish-actions.pod:4414
17414 msgid "This displays the kernel's idea of the geometry of C<device>."
17415 msgstr ""
17416
17417 #. type: =head2
17418 #: ../src/guestfs-actions.pod:6638
17419 msgid "guestfs_sfdisk_l"
17420 msgstr ""
17421
17422 #. type: verbatim
17423 #: ../src/guestfs-actions.pod:6640
17424 #, no-wrap
17425 msgid ""
17426 " char *\n"
17427 " guestfs_sfdisk_l (guestfs_h *g,\n"
17428 "                   const char *device);\n"
17429 "\n"
17430 msgstr ""
17431
17432 #. type: textblock
17433 #: ../src/guestfs-actions.pod:6644 ../fish/guestfish-actions.pod:4423
17434 msgid ""
17435 "This displays the partition table on C<device>, in the human-readable output "
17436 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
17437 msgstr ""
17438
17439 #. type: textblock
17440 #: ../src/guestfs-actions.pod:6648
17441 msgid "See also: C<guestfs_part_list>"
17442 msgstr ""
17443
17444 #. type: textblock
17445 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4429
17446 msgid ""
17447 "This function is deprecated.  In new code, use the C<part_list> call instead."
17448 msgstr ""
17449
17450 #. type: =head2
17451 #: ../src/guestfs-actions.pod:6662
17452 msgid "guestfs_sh"
17453 msgstr ""
17454
17455 #. type: verbatim
17456 #: ../src/guestfs-actions.pod:6664
17457 #, no-wrap
17458 msgid ""
17459 " char *\n"
17460 " guestfs_sh (guestfs_h *g,\n"
17461 "             const char *command);\n"
17462 "\n"
17463 msgstr ""
17464
17465 #. type: textblock
17466 #: ../src/guestfs-actions.pod:6668 ../fish/guestfish-actions.pod:4440
17467 msgid ""
17468 "This call runs a command from the guest filesystem via the guest's C</bin/"
17469 "sh>."
17470 msgstr ""
17471
17472 #. type: textblock
17473 #: ../src/guestfs-actions.pod:6671
17474 msgid "This is like C<guestfs_command>, but passes the command to:"
17475 msgstr ""
17476
17477 #. type: verbatim
17478 #: ../src/guestfs-actions.pod:6673 ../fish/guestfish-actions.pod:4445
17479 #, no-wrap
17480 msgid ""
17481 " /bin/sh -c \"command\"\n"
17482 "\n"
17483 msgstr ""
17484
17485 #. type: textblock
17486 #: ../src/guestfs-actions.pod:6675 ../fish/guestfish-actions.pod:4447
17487 msgid ""
17488 "Depending on the guest's shell, this usually results in wildcards being "
17489 "expanded, shell expressions being interpolated and so on."
17490 msgstr ""
17491
17492 #. type: textblock
17493 #: ../src/guestfs-actions.pod:6679
17494 msgid "All the provisos about C<guestfs_command> apply to this call."
17495 msgstr ""
17496
17497 #. type: =head2
17498 #: ../src/guestfs-actions.pod:6686
17499 msgid "guestfs_sh_lines"
17500 msgstr ""
17501
17502 #. type: verbatim
17503 #: ../src/guestfs-actions.pod:6688
17504 #, no-wrap
17505 msgid ""
17506 " char **\n"
17507 " guestfs_sh_lines (guestfs_h *g,\n"
17508 "                   const char *command);\n"
17509 "\n"
17510 msgstr ""
17511
17512 #. type: textblock
17513 #: ../src/guestfs-actions.pod:6692
17514 msgid ""
17515 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17516 "lines."
17517 msgstr ""
17518
17519 #. type: textblock
17520 #: ../src/guestfs-actions.pod:6695
17521 msgid "See also: C<guestfs_command_lines>"
17522 msgstr ""
17523
17524 #. type: =head2
17525 #: ../src/guestfs-actions.pod:6703
17526 msgid "guestfs_sleep"
17527 msgstr ""
17528
17529 #. type: verbatim
17530 #: ../src/guestfs-actions.pod:6705
17531 #, no-wrap
17532 msgid ""
17533 " int\n"
17534 " guestfs_sleep (guestfs_h *g,\n"
17535 "                int secs);\n"
17536 "\n"
17537 msgstr ""
17538
17539 #. type: textblock
17540 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4466
17541 msgid "Sleep for C<secs> seconds."
17542 msgstr ""
17543
17544 #. type: textblock
17545 #: ../src/guestfs-actions.pod:6713
17546 msgid "(Added in 1.0.41)"
17547 msgstr ""
17548
17549 #. type: =head2
17550 #: ../src/guestfs-actions.pod:6715 ../src/guestfs-structs.pod:109
17551 msgid "guestfs_stat"
17552 msgstr ""
17553
17554 #. type: verbatim
17555 #: ../src/guestfs-actions.pod:6717
17556 #, no-wrap
17557 msgid ""
17558 " struct guestfs_stat *\n"
17559 " guestfs_stat (guestfs_h *g,\n"
17560 "               const char *path);\n"
17561 "\n"
17562 msgstr ""
17563
17564 #. type: textblock
17565 #: ../src/guestfs-actions.pod:6723 ../fish/guestfish-actions.pod:4474
17566 msgid "This is the same as the C<stat(2)> system call."
17567 msgstr ""
17568
17569 #. type: =head2
17570 #: ../src/guestfs-actions.pod:6731 ../src/guestfs-structs.pod:135
17571 msgid "guestfs_statvfs"
17572 msgstr ""
17573
17574 #. type: verbatim
17575 #: ../src/guestfs-actions.pod:6733
17576 #, no-wrap
17577 msgid ""
17578 " struct guestfs_statvfs *\n"
17579 " guestfs_statvfs (guestfs_h *g,\n"
17580 "                  const char *path);\n"
17581 "\n"
17582 msgstr ""
17583
17584 #. type: textblock
17585 #: ../src/guestfs-actions.pod:6737 ../fish/guestfish-actions.pod:4480
17586 msgid ""
17587 "Returns file system statistics for any mounted file system.  C<path> should "
17588 "be a file or directory in the mounted file system (typically it is the mount "
17589 "point itself, but it doesn't need to be)."
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:6741 ../fish/guestfish-actions.pod:4484
17594 msgid "This is the same as the C<statvfs(2)> system call."
17595 msgstr ""
17596
17597 #. type: textblock
17598 #: ../src/guestfs-actions.pod:6743
17599 msgid ""
17600 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
17601 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17602 msgstr ""
17603
17604 #. type: =head2
17605 #: ../src/guestfs-actions.pod:6749
17606 msgid "guestfs_strings"
17607 msgstr ""
17608
17609 #. type: verbatim
17610 #: ../src/guestfs-actions.pod:6751
17611 #, no-wrap
17612 msgid ""
17613 " char **\n"
17614 " guestfs_strings (guestfs_h *g,\n"
17615 "                  const char *path);\n"
17616 "\n"
17617 msgstr ""
17618
17619 #. type: textblock
17620 #: ../src/guestfs-actions.pod:6755 ../fish/guestfish-actions.pod:4490
17621 msgid ""
17622 "This runs the L<strings(1)> command on a file and returns the list of "
17623 "printable strings found."
17624 msgstr ""
17625
17626 #. type: =head2
17627 #: ../src/guestfs-actions.pod:6767
17628 msgid "guestfs_strings_e"
17629 msgstr ""
17630
17631 #. type: verbatim
17632 #: ../src/guestfs-actions.pod:6769
17633 #, no-wrap
17634 msgid ""
17635 " char **\n"
17636 " guestfs_strings_e (guestfs_h *g,\n"
17637 "                    const char *encoding,\n"
17638 "                    const char *path);\n"
17639 "\n"
17640 msgstr ""
17641
17642 #. type: textblock
17643 #: ../src/guestfs-actions.pod:6774
17644 msgid ""
17645 "This is like the C<guestfs_strings> command, but allows you to specify the "
17646 "encoding of strings that are looked for in the source file C<path>."
17647 msgstr ""
17648
17649 #. type: textblock
17650 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4504
17651 msgid "Allowed encodings are:"
17652 msgstr ""
17653
17654 #. type: =item
17655 #: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4508
17656 msgid "s"
17657 msgstr ""
17658
17659 #. type: textblock
17660 #: ../src/guestfs-actions.pod:6784
17661 msgid ""
17662 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17663 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17664 msgstr ""
17665
17666 #. type: =item
17667 #: ../src/guestfs-actions.pod:6787 ../fish/guestfish-actions.pod:4513
17668 msgid "S"
17669 msgstr ""
17670
17671 #. type: textblock
17672 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4515
17673 msgid "Single 8-bit-byte characters."
17674 msgstr ""
17675
17676 #. type: =item
17677 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4517
17678 msgid "b"
17679 msgstr ""
17680
17681 #. type: textblock
17682 #: ../src/guestfs-actions.pod:6793 ../fish/guestfish-actions.pod:4519
17683 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17684 msgstr ""
17685
17686 #. type: =item
17687 #: ../src/guestfs-actions.pod:6796 ../fish/guestfish-actions.pod:4522
17688 msgid "l (lower case letter L)"
17689 msgstr ""
17690
17691 #. type: textblock
17692 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4524
17693 msgid ""
17694 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17695 "examining binaries in Windows guests."
17696 msgstr ""
17697
17698 #. type: =item
17699 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4527
17700 msgid "B"
17701 msgstr ""
17702
17703 #. type: textblock
17704 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4529
17705 msgid "32-bit big endian such as UCS-4BE."
17706 msgstr ""
17707
17708 #. type: =item
17709 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4531
17710 msgid "L"
17711 msgstr ""
17712
17713 #. type: textblock
17714 #: ../src/guestfs-actions.pod:6807 ../fish/guestfish-actions.pod:4533
17715 msgid "32-bit little endian such as UCS-4LE."
17716 msgstr ""
17717
17718 #. type: textblock
17719 #: ../src/guestfs-actions.pod:6811 ../fish/guestfish-actions.pod:4537
17720 msgid "The returned strings are transcoded to UTF-8."
17721 msgstr ""
17722
17723 #. type: =head2
17724 #: ../src/guestfs-actions.pod:6822
17725 msgid "guestfs_swapoff_device"
17726 msgstr ""
17727
17728 #. type: verbatim
17729 #: ../src/guestfs-actions.pod:6824
17730 #, no-wrap
17731 msgid ""
17732 " int\n"
17733 " guestfs_swapoff_device (guestfs_h *g,\n"
17734 "                         const char *device);\n"
17735 "\n"
17736 msgstr ""
17737
17738 #. type: textblock
17739 #: ../src/guestfs-actions.pod:6828
17740 msgid ""
17741 "This command disables the libguestfs appliance swap device or partition "
17742 "named C<device>.  See C<guestfs_swapon_device>."
17743 msgstr ""
17744
17745 #. type: =head2
17746 #: ../src/guestfs-actions.pod:6836
17747 msgid "guestfs_swapoff_file"
17748 msgstr ""
17749
17750 #. type: verbatim
17751 #: ../src/guestfs-actions.pod:6838
17752 #, no-wrap
17753 msgid ""
17754 " int\n"
17755 " guestfs_swapoff_file (guestfs_h *g,\n"
17756 "                       const char *file);\n"
17757 "\n"
17758 msgstr ""
17759
17760 #. type: textblock
17761 #: ../src/guestfs-actions.pod:6842 ../fish/guestfish-actions.pod:4554
17762 msgid "This command disables the libguestfs appliance swap on file."
17763 msgstr ""
17764
17765 #. type: =head2
17766 #: ../src/guestfs-actions.pod:6848
17767 msgid "guestfs_swapoff_label"
17768 msgstr ""
17769
17770 #. type: verbatim
17771 #: ../src/guestfs-actions.pod:6850
17772 #, no-wrap
17773 msgid ""
17774 " int\n"
17775 " guestfs_swapoff_label (guestfs_h *g,\n"
17776 "                        const char *label);\n"
17777 "\n"
17778 msgstr ""
17779
17780 #. type: textblock
17781 #: ../src/guestfs-actions.pod:6854 ../fish/guestfish-actions.pod:4560
17782 msgid ""
17783 "This command disables the libguestfs appliance swap on labeled swap "
17784 "partition."
17785 msgstr ""
17786
17787 #. type: =head2
17788 #: ../src/guestfs-actions.pod:6861
17789 msgid "guestfs_swapoff_uuid"
17790 msgstr ""
17791
17792 #. type: verbatim
17793 #: ../src/guestfs-actions.pod:6863
17794 #, no-wrap
17795 msgid ""
17796 " int\n"
17797 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17798 "                       const char *uuid);\n"
17799 "\n"
17800 msgstr ""
17801
17802 #. type: textblock
17803 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4567
17804 msgid ""
17805 "This command disables the libguestfs appliance swap partition with the given "
17806 "UUID."
17807 msgstr ""
17808
17809 #. type: =head2
17810 #: ../src/guestfs-actions.pod:6874
17811 msgid "guestfs_swapon_device"
17812 msgstr ""
17813
17814 #. type: verbatim
17815 #: ../src/guestfs-actions.pod:6876
17816 #, no-wrap
17817 msgid ""
17818 " int\n"
17819 " guestfs_swapon_device (guestfs_h *g,\n"
17820 "                        const char *device);\n"
17821 "\n"
17822 msgstr ""
17823
17824 #. type: textblock
17825 #: ../src/guestfs-actions.pod:6880
17826 msgid ""
17827 "This command enables the libguestfs appliance to use the swap device or "
17828 "partition named C<device>.  The increased memory is made available for all "
17829 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17830 msgstr ""
17831
17832 #. type: textblock
17833 #: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4579
17834 msgid ""
17835 "Note that you should not swap to existing guest swap partitions unless you "
17836 "know what you are doing.  They may contain hibernation information, or other "
17837 "information that the guest doesn't want you to trash.  You also risk leaking "
17838 "information about the host to the guest this way.  Instead, attach a new "
17839 "host device to the guest and swap on that."
17840 msgstr ""
17841
17842 #. type: =head2
17843 #: ../src/guestfs-actions.pod:6896
17844 msgid "guestfs_swapon_file"
17845 msgstr ""
17846
17847 #. type: verbatim
17848 #: ../src/guestfs-actions.pod:6898
17849 #, no-wrap
17850 msgid ""
17851 " int\n"
17852 " guestfs_swapon_file (guestfs_h *g,\n"
17853 "                      const char *file);\n"
17854 "\n"
17855 msgstr ""
17856
17857 #. type: textblock
17858 #: ../src/guestfs-actions.pod:6902
17859 msgid ""
17860 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17861 "notes."
17862 msgstr ""
17863
17864 #. type: =head2
17865 #: ../src/guestfs-actions.pod:6909
17866 msgid "guestfs_swapon_label"
17867 msgstr ""
17868
17869 #. type: verbatim
17870 #: ../src/guestfs-actions.pod:6911
17871 #, no-wrap
17872 msgid ""
17873 " int\n"
17874 " guestfs_swapon_label (guestfs_h *g,\n"
17875 "                       const char *label);\n"
17876 "\n"
17877 msgstr ""
17878
17879 #. type: textblock
17880 #: ../src/guestfs-actions.pod:6915
17881 msgid ""
17882 "This command enables swap to a labeled swap partition.  See "
17883 "C<guestfs_swapon_device> for other notes."
17884 msgstr ""
17885
17886 #. type: =head2
17887 #: ../src/guestfs-actions.pod:6922
17888 msgid "guestfs_swapon_uuid"
17889 msgstr ""
17890
17891 #. type: verbatim
17892 #: ../src/guestfs-actions.pod:6924
17893 #, no-wrap
17894 msgid ""
17895 " int\n"
17896 " guestfs_swapon_uuid (guestfs_h *g,\n"
17897 "                      const char *uuid);\n"
17898 "\n"
17899 msgstr ""
17900
17901 #. type: textblock
17902 #: ../src/guestfs-actions.pod:6928
17903 msgid ""
17904 "This command enables swap to a swap partition with the given UUID.  See "
17905 "C<guestfs_swapon_device> for other notes."
17906 msgstr ""
17907
17908 #. type: =head2
17909 #: ../src/guestfs-actions.pod:6935
17910 msgid "guestfs_sync"
17911 msgstr ""
17912
17913 #. type: verbatim
17914 #: ../src/guestfs-actions.pod:6937
17915 #, no-wrap
17916 msgid ""
17917 " int\n"
17918 " guestfs_sync (guestfs_h *g);\n"
17919 "\n"
17920 msgstr ""
17921
17922 #. type: textblock
17923 #: ../src/guestfs-actions.pod:6940 ../fish/guestfish-actions.pod:4611
17924 msgid ""
17925 "This syncs the disk, so that any writes are flushed through to the "
17926 "underlying disk image."
17927 msgstr ""
17928
17929 #. type: textblock
17930 #: ../src/guestfs-actions.pod:6943 ../fish/guestfish-actions.pod:4614
17931 msgid ""
17932 "You should always call this if you have modified a disk image, before "
17933 "closing the handle."
17934 msgstr ""
17935
17936 #. type: =head2
17937 #: ../src/guestfs-actions.pod:6950
17938 msgid "guestfs_tail"
17939 msgstr ""
17940
17941 #. type: verbatim
17942 #: ../src/guestfs-actions.pod:6952
17943 #, no-wrap
17944 msgid ""
17945 " char **\n"
17946 " guestfs_tail (guestfs_h *g,\n"
17947 "               const char *path);\n"
17948 "\n"
17949 msgstr ""
17950
17951 #. type: textblock
17952 #: ../src/guestfs-actions.pod:6956 ../fish/guestfish-actions.pod:4621
17953 msgid ""
17954 "This command returns up to the last 10 lines of a file as a list of strings."
17955 msgstr ""
17956
17957 #. type: =head2
17958 #: ../src/guestfs-actions.pod:6968
17959 msgid "guestfs_tail_n"
17960 msgstr ""
17961
17962 #. type: verbatim
17963 #: ../src/guestfs-actions.pod:6970
17964 #, no-wrap
17965 msgid ""
17966 " char **\n"
17967 " guestfs_tail_n (guestfs_h *g,\n"
17968 "                 int nrlines,\n"
17969 "                 const char *path);\n"
17970 "\n"
17971 msgstr ""
17972
17973 #. type: textblock
17974 #: ../src/guestfs-actions.pod:6975 ../fish/guestfish-actions.pod:4631
17975 msgid ""
17976 "If the parameter C<nrlines> is a positive number, this returns the last "
17977 "C<nrlines> lines of the file C<path>."
17978 msgstr ""
17979
17980 #. type: textblock
17981 #: ../src/guestfs-actions.pod:6978 ../fish/guestfish-actions.pod:4634
17982 msgid ""
17983 "If the parameter C<nrlines> is a negative number, this returns lines from "
17984 "the file C<path>, starting with the C<-nrlines>th line."
17985 msgstr ""
17986
17987 #. type: =head2
17988 #: ../src/guestfs-actions.pod:6992
17989 msgid "guestfs_tar_in"
17990 msgstr ""
17991
17992 #. type: verbatim
17993 #: ../src/guestfs-actions.pod:6994
17994 #, no-wrap
17995 msgid ""
17996 " int\n"
17997 " guestfs_tar_in (guestfs_h *g,\n"
17998 "                 const char *tarfile,\n"
17999 "                 const char *directory);\n"
18000 "\n"
18001 msgstr ""
18002
18003 #. type: textblock
18004 #: ../src/guestfs-actions.pod:6999 ../fish/guestfish-actions.pod:4646
18005 msgid ""
18006 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
18007 "tar file) into C<directory>."
18008 msgstr ""
18009
18010 #. type: textblock
18011 #: ../src/guestfs-actions.pod:7002
18012 msgid ""
18013 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
18014 msgstr ""
18015
18016 #. type: textblock
18017 #: ../src/guestfs-actions.pod:7007 ../src/guestfs-actions.pod:7024
18018 #: ../src/guestfs-actions.pod:7040 ../src/guestfs-actions.pod:7056
18019 msgid "(Added in 1.0.3)"
18020 msgstr ""
18021
18022 #. type: =head2
18023 #: ../src/guestfs-actions.pod:7009
18024 msgid "guestfs_tar_out"
18025 msgstr ""
18026
18027 #. type: verbatim
18028 #: ../src/guestfs-actions.pod:7011
18029 #, no-wrap
18030 msgid ""
18031 " int\n"
18032 " guestfs_tar_out (guestfs_h *g,\n"
18033 "                  const char *directory,\n"
18034 "                  const char *tarfile);\n"
18035 "\n"
18036 msgstr ""
18037
18038 #. type: textblock
18039 #: ../src/guestfs-actions.pod:7016 ../fish/guestfish-actions.pod:4658
18040 msgid ""
18041 "This command packs the contents of C<directory> and downloads it to local "
18042 "file C<tarfile>."
18043 msgstr ""
18044
18045 #. type: textblock
18046 #: ../src/guestfs-actions.pod:7019
18047 msgid ""
18048 "To download a compressed tarball, use C<guestfs_tgz_out> or "
18049 "C<guestfs_txz_out>."
18050 msgstr ""
18051
18052 #. type: =head2
18053 #: ../src/guestfs-actions.pod:7026
18054 msgid "guestfs_tgz_in"
18055 msgstr ""
18056
18057 #. type: verbatim
18058 #: ../src/guestfs-actions.pod:7028
18059 #, no-wrap
18060 msgid ""
18061 " int\n"
18062 " guestfs_tgz_in (guestfs_h *g,\n"
18063 "                 const char *tarball,\n"
18064 "                 const char *directory);\n"
18065 "\n"
18066 msgstr ""
18067
18068 #. type: textblock
18069 #: ../src/guestfs-actions.pod:7033 ../fish/guestfish-actions.pod:4670
18070 msgid ""
18071 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
18072 "tar file) into C<directory>."
18073 msgstr ""
18074
18075 #. type: textblock
18076 #: ../src/guestfs-actions.pod:7036
18077 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
18078 msgstr ""
18079
18080 #. type: =head2
18081 #: ../src/guestfs-actions.pod:7042
18082 msgid "guestfs_tgz_out"
18083 msgstr ""
18084
18085 #. type: verbatim
18086 #: ../src/guestfs-actions.pod:7044
18087 #, no-wrap
18088 msgid ""
18089 " int\n"
18090 " guestfs_tgz_out (guestfs_h *g,\n"
18091 "                  const char *directory,\n"
18092 "                  const char *tarball);\n"
18093 "\n"
18094 msgstr ""
18095
18096 #. type: textblock
18097 #: ../src/guestfs-actions.pod:7049 ../fish/guestfish-actions.pod:4681
18098 msgid ""
18099 "This command packs the contents of C<directory> and downloads it to local "
18100 "file C<tarball>."
18101 msgstr ""
18102
18103 #. type: textblock
18104 #: ../src/guestfs-actions.pod:7052
18105 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
18106 msgstr ""
18107
18108 #. type: =head2
18109 #: ../src/guestfs-actions.pod:7058
18110 msgid "guestfs_touch"
18111 msgstr ""
18112
18113 #. type: verbatim
18114 #: ../src/guestfs-actions.pod:7060
18115 #, no-wrap
18116 msgid ""
18117 " int\n"
18118 " guestfs_touch (guestfs_h *g,\n"
18119 "                const char *path);\n"
18120 "\n"
18121 msgstr ""
18122
18123 #. type: textblock
18124 #: ../src/guestfs-actions.pod:7064 ../fish/guestfish-actions.pod:4692
18125 msgid ""
18126 "Touch acts like the L<touch(1)> command.  It can be used to update the "
18127 "timestamps on a file, or, if the file does not exist, to create a new zero-"
18128 "length file."
18129 msgstr ""
18130
18131 #. type: textblock
18132 #: ../src/guestfs-actions.pod:7068 ../fish/guestfish-actions.pod:4696
18133 msgid ""
18134 "This command only works on regular files, and will fail on other file types "
18135 "such as directories, symbolic links, block special etc."
18136 msgstr ""
18137
18138 #. type: =head2
18139 #: ../src/guestfs-actions.pod:7075
18140 msgid "guestfs_truncate"
18141 msgstr ""
18142
18143 #. type: verbatim
18144 #: ../src/guestfs-actions.pod:7077
18145 #, no-wrap
18146 msgid ""
18147 " int\n"
18148 " guestfs_truncate (guestfs_h *g,\n"
18149 "                   const char *path);\n"
18150 "\n"
18151 msgstr ""
18152
18153 #. type: textblock
18154 #: ../src/guestfs-actions.pod:7081 ../fish/guestfish-actions.pod:4703
18155 msgid ""
18156 "This command truncates C<path> to a zero-length file.  The file must exist "
18157 "already."
18158 msgstr ""
18159
18160 #. type: =head2
18161 #: ../src/guestfs-actions.pod:7088
18162 msgid "guestfs_truncate_size"
18163 msgstr ""
18164
18165 #. type: verbatim
18166 #: ../src/guestfs-actions.pod:7090
18167 #, no-wrap
18168 msgid ""
18169 " int\n"
18170 " guestfs_truncate_size (guestfs_h *g,\n"
18171 "                        const char *path,\n"
18172 "                        int64_t size);\n"
18173 "\n"
18174 msgstr ""
18175
18176 #. type: textblock
18177 #: ../src/guestfs-actions.pod:7095 ../fish/guestfish-actions.pod:4710
18178 msgid ""
18179 "This command truncates C<path> to size C<size> bytes.  The file must exist "
18180 "already."
18181 msgstr ""
18182
18183 #. type: textblock
18184 #: ../src/guestfs-actions.pod:7098
18185 msgid ""
18186 "If the current file size is less than C<size> then the file is extended to "
18187 "the required size with zero bytes.  This creates a sparse file (ie. disk "
18188 "blocks are not allocated for the file until you write to it).  To create a "
18189 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
18190 msgstr ""
18191
18192 #. type: =head2
18193 #: ../src/guestfs-actions.pod:7108
18194 msgid "guestfs_tune2fs_l"
18195 msgstr ""
18196
18197 #. type: verbatim
18198 #: ../src/guestfs-actions.pod:7110
18199 #, no-wrap
18200 msgid ""
18201 " char **\n"
18202 " guestfs_tune2fs_l (guestfs_h *g,\n"
18203 "                    const char *device);\n"
18204 "\n"
18205 msgstr ""
18206
18207 #. type: textblock
18208 #: ../src/guestfs-actions.pod:7114 ../fish/guestfish-actions.pod:4723
18209 msgid ""
18210 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
18211 "C<device>."
18212 msgstr ""
18213
18214 #. type: textblock
18215 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4726
18216 msgid ""
18217 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
18218 "for more details.  The list of fields returned isn't clearly defined, and "
18219 "depends on both the version of C<tune2fs> that libguestfs was built against, "
18220 "and the filesystem itself."
18221 msgstr ""
18222
18223 #. type: =head2
18224 #: ../src/guestfs-actions.pod:7130
18225 msgid "guestfs_txz_in"
18226 msgstr ""
18227
18228 #. type: verbatim
18229 #: ../src/guestfs-actions.pod:7132
18230 #, no-wrap
18231 msgid ""
18232 " int\n"
18233 " guestfs_txz_in (guestfs_h *g,\n"
18234 "                 const char *tarball,\n"
18235 "                 const char *directory);\n"
18236 "\n"
18237 msgstr ""
18238
18239 #. type: textblock
18240 #: ../src/guestfs-actions.pod:7137 ../fish/guestfish-actions.pod:4735
18241 msgid ""
18242 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
18243 "tar file) into C<directory>."
18244 msgstr ""
18245
18246 #. type: =head2
18247 #: ../src/guestfs-actions.pod:7144
18248 msgid "guestfs_txz_out"
18249 msgstr ""
18250
18251 #. type: verbatim
18252 #: ../src/guestfs-actions.pod:7146
18253 #, no-wrap
18254 msgid ""
18255 " int\n"
18256 " guestfs_txz_out (guestfs_h *g,\n"
18257 "                  const char *directory,\n"
18258 "                  const char *tarball);\n"
18259 "\n"
18260 msgstr ""
18261
18262 #. type: textblock
18263 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4744
18264 msgid ""
18265 "This command packs the contents of C<directory> and downloads it to local "
18266 "file C<tarball> (as an xz compressed tar archive)."
18267 msgstr ""
18268
18269 #. type: =head2
18270 #: ../src/guestfs-actions.pod:7158
18271 msgid "guestfs_umask"
18272 msgstr ""
18273
18274 #. type: verbatim
18275 #: ../src/guestfs-actions.pod:7160
18276 #, no-wrap
18277 msgid ""
18278 " int\n"
18279 " guestfs_umask (guestfs_h *g,\n"
18280 "                int mask);\n"
18281 "\n"
18282 msgstr ""
18283
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:7164 ../fish/guestfish-actions.pod:4753
18286 msgid ""
18287 "This function sets the mask used for creating new files and device nodes to "
18288 "C<mask & 0777>."
18289 msgstr ""
18290
18291 #. type: textblock
18292 #: ../src/guestfs-actions.pod:7167 ../fish/guestfish-actions.pod:4756
18293 msgid ""
18294 "Typical umask values would be C<022> which creates new files with "
18295 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
18296 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
18297 msgstr ""
18298
18299 #. type: textblock
18300 #: ../src/guestfs-actions.pod:7172 ../fish/guestfish-actions.pod:4761
18301 msgid ""
18302 "The default umask is C<022>.  This is important because it means that "
18303 "directories and device nodes will be created with C<0644> or C<0755> mode "
18304 "even if you specify C<0777>."
18305 msgstr ""
18306
18307 #. type: textblock
18308 #: ../src/guestfs-actions.pod:7176
18309 msgid ""
18310 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
18311 "C<guestfs_mkdir>."
18312 msgstr ""
18313
18314 #. type: textblock
18315 #: ../src/guestfs-actions.pod:7179 ../fish/guestfish-actions.pod:4768
18316 msgid "This call returns the previous umask."
18317 msgstr ""
18318
18319 #. type: =head2
18320 #: ../src/guestfs-actions.pod:7185
18321 msgid "guestfs_umount"
18322 msgstr ""
18323
18324 #. type: verbatim
18325 #: ../src/guestfs-actions.pod:7187
18326 #, no-wrap
18327 msgid ""
18328 " int\n"
18329 " guestfs_umount (guestfs_h *g,\n"
18330 "                 const char *pathordevice);\n"
18331 "\n"
18332 msgstr ""
18333
18334 #. type: textblock
18335 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4776
18336 msgid ""
18337 "This unmounts the given filesystem.  The filesystem may be specified either "
18338 "by its mountpoint (path) or the device which contains the filesystem."
18339 msgstr ""
18340
18341 #. type: =head2
18342 #: ../src/guestfs-actions.pod:7199
18343 msgid "guestfs_umount_all"
18344 msgstr ""
18345
18346 #. type: verbatim
18347 #: ../src/guestfs-actions.pod:7201
18348 #, no-wrap
18349 msgid ""
18350 " int\n"
18351 " guestfs_umount_all (guestfs_h *g);\n"
18352 "\n"
18353 msgstr ""
18354
18355 #. type: textblock
18356 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4786
18357 msgid "This unmounts all mounted filesystems."
18358 msgstr ""
18359
18360 #. type: textblock
18361 #: ../src/guestfs-actions.pod:7206 ../fish/guestfish-actions.pod:4788
18362 msgid "Some internal mounts are not unmounted by this call."
18363 msgstr ""
18364
18365 #. type: =head2
18366 #: ../src/guestfs-actions.pod:7212
18367 msgid "guestfs_upload"
18368 msgstr ""
18369
18370 #. type: verbatim
18371 #: ../src/guestfs-actions.pod:7214
18372 #, no-wrap
18373 msgid ""
18374 " int\n"
18375 " guestfs_upload (guestfs_h *g,\n"
18376 "                 const char *filename,\n"
18377 "                 const char *remotefilename);\n"
18378 "\n"
18379 msgstr ""
18380
18381 #. type: textblock
18382 #: ../src/guestfs-actions.pod:7219 ../src/guestfs-actions.pod:7243
18383 #: ../fish/guestfish-actions.pod:4794 ../fish/guestfish-actions.pod:4807
18384 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
18385 msgstr ""
18386
18387 #. type: textblock
18388 #: ../src/guestfs-actions.pod:7224
18389 msgid "See also C<guestfs_download>."
18390 msgstr ""
18391
18392 #. type: =head2
18393 #: ../src/guestfs-actions.pod:7235
18394 msgid "guestfs_upload_offset"
18395 msgstr ""
18396
18397 #. type: verbatim
18398 #: ../src/guestfs-actions.pod:7237
18399 #, no-wrap
18400 msgid ""
18401 " int\n"
18402 " guestfs_upload_offset (guestfs_h *g,\n"
18403 "                        const char *filename,\n"
18404 "                        const char *remotefilename,\n"
18405 "                        int64_t offset);\n"
18406 "\n"
18407 msgstr ""
18408
18409 #. type: textblock
18410 #: ../src/guestfs-actions.pod:7246 ../fish/guestfish-actions.pod:4810
18411 msgid ""
18412 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
18413 "The intention is to overwrite parts of existing files or devices, although "
18414 "if a non-existant file is specified then it is created with a \"hole\" "
18415 "before C<offset>.  The size of the data written is implicit in the size of "
18416 "the source C<filename>."
18417 msgstr ""
18418
18419 #. type: textblock
18420 #: ../src/guestfs-actions.pod:7253
18421 msgid ""
18422 "Note that there is no limit on the amount of data that can be uploaded with "
18423 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
18424 "full amount unless an error occurs."
18425 msgstr ""
18426
18427 #. type: textblock
18428 #: ../src/guestfs-actions.pod:7258
18429 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
18430 msgstr ""
18431
18432 #. type: =head2
18433 #: ../src/guestfs-actions.pod:7269
18434 msgid "guestfs_utimens"
18435 msgstr ""
18436
18437 #. type: verbatim
18438 #: ../src/guestfs-actions.pod:7271
18439 #, no-wrap
18440 msgid ""
18441 " int\n"
18442 " guestfs_utimens (guestfs_h *g,\n"
18443 "                  const char *path,\n"
18444 "                  int64_t atsecs,\n"
18445 "                  int64_t atnsecs,\n"
18446 "                  int64_t mtsecs,\n"
18447 "                  int64_t mtnsecs);\n"
18448 "\n"
18449 msgstr ""
18450
18451 #. type: textblock
18452 #: ../src/guestfs-actions.pod:7279 ../fish/guestfish-actions.pod:4830
18453 msgid "This command sets the timestamps of a file with nanosecond precision."
18454 msgstr ""
18455
18456 #. type: textblock
18457 #: ../src/guestfs-actions.pod:7282 ../fish/guestfish-actions.pod:4833
18458 msgid ""
18459 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
18460 "from the epoch."
18461 msgstr ""
18462
18463 #. type: textblock
18464 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4836
18465 msgid ""
18466 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18467 "nanoseconds from the epoch."
18468 msgstr ""
18469
18470 #. type: textblock
18471 #: ../src/guestfs-actions.pod:7288 ../fish/guestfish-actions.pod:4839
18472 msgid ""
18473 "If the C<*nsecs> field contains the special value C<-1> then the "
18474 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18475 "ignored in this case)."
18476 msgstr ""
18477
18478 #. type: textblock
18479 #: ../src/guestfs-actions.pod:7292 ../fish/guestfish-actions.pod:4843
18480 msgid ""
18481 "If the C<*nsecs> field contains the special value C<-2> then the "
18482 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18483 "in this case)."
18484 msgstr ""
18485
18486 #. type: =head2
18487 #: ../src/guestfs-actions.pod:7300 ../src/guestfs-structs.pod:175
18488 msgid "guestfs_version"
18489 msgstr ""
18490
18491 #. type: verbatim
18492 #: ../src/guestfs-actions.pod:7302
18493 #, no-wrap
18494 msgid ""
18495 " struct guestfs_version *\n"
18496 " guestfs_version (guestfs_h *g);\n"
18497 "\n"
18498 msgstr ""
18499
18500 #. type: textblock
18501 #: ../src/guestfs-actions.pod:7305 ../fish/guestfish-actions.pod:4851
18502 msgid ""
18503 "Return the libguestfs version number that the program is linked against."
18504 msgstr ""
18505
18506 #. type: textblock
18507 #: ../src/guestfs-actions.pod:7308 ../fish/guestfish-actions.pod:4854
18508 msgid ""
18509 "Note that because of dynamic linking this is not necessarily the version of "
18510 "libguestfs that you compiled against.  You can compile the program, and then "
18511 "at runtime dynamically link against a completely different C<libguestfs.so> "
18512 "library."
18513 msgstr ""
18514
18515 #. type: textblock
18516 #: ../src/guestfs-actions.pod:7313 ../fish/guestfish-actions.pod:4859
18517 msgid ""
18518 "This call was added in version C<1.0.58>.  In previous versions of "
18519 "libguestfs there was no way to get the version number.  From C code you can "
18520 "use dynamic linker functions to find out if this symbol exists (if it "
18521 "doesn't, then it's an earlier version)."
18522 msgstr ""
18523
18524 #. type: textblock
18525 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4865
18526 msgid ""
18527 "The call returns a structure with four elements.  The first three (C<major>, "
18528 "C<minor> and C<release>) are numbers and correspond to the usual version "
18529 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18530 "but may be used for distro-specific information."
18531 msgstr ""
18532
18533 #. type: textblock
18534 #: ../src/guestfs-actions.pod:7325 ../fish/guestfish-actions.pod:4871
18535 msgid ""
18536 "To construct the original version string: C<$major.$minor.$release$extra>"
18537 msgstr ""
18538
18539 #. type: textblock
18540 #: ../src/guestfs-actions.pod:7328 ../fish/guestfish-actions.pod:4874
18541 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18542 msgstr ""
18543
18544 #. type: textblock
18545 #: ../src/guestfs-actions.pod:7330
18546 msgid ""
18547 "I<Note:> Don't use this call to test for availability of features.  In "
18548 "enterprise distributions we backport features from later versions into "
18549 "earlier versions, making this an unreliable way to test for features.  Use "
18550 "C<guestfs_available> instead."
18551 msgstr ""
18552
18553 #. type: textblock
18554 #: ../src/guestfs-actions.pod:7336
18555 msgid ""
18556 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
18557 "error.  I<The caller must call C<guestfs_free_version> after use>."
18558 msgstr ""
18559
18560 #. type: textblock
18561 #: ../src/guestfs-actions.pod:7340
18562 msgid "(Added in 1.0.58)"
18563 msgstr ""
18564
18565 #. type: =head2
18566 #: ../src/guestfs-actions.pod:7342
18567 msgid "guestfs_vfs_label"
18568 msgstr ""
18569
18570 #. type: verbatim
18571 #: ../src/guestfs-actions.pod:7344
18572 #, no-wrap
18573 msgid ""
18574 " char *\n"
18575 " guestfs_vfs_label (guestfs_h *g,\n"
18576 "                    const char *device);\n"
18577 "\n"
18578 msgstr ""
18579
18580 #. type: textblock
18581 #: ../src/guestfs-actions.pod:7348 ../fish/guestfish-actions.pod:4886
18582 msgid "This returns the filesystem label of the filesystem on C<device>."
18583 msgstr ""
18584
18585 #. type: textblock
18586 #: ../src/guestfs-actions.pod:7351 ../fish/guestfish-actions.pod:4889
18587 msgid "If the filesystem is unlabeled, this returns the empty string."
18588 msgstr ""
18589
18590 #. type: textblock
18591 #: ../src/guestfs-actions.pod:7353
18592 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18593 msgstr ""
18594
18595 #. type: textblock
18596 #: ../src/guestfs-actions.pod:7358 ../src/guestfs-actions.pod:7395
18597 msgid "(Added in 1.3.18)"
18598 msgstr ""
18599
18600 #. type: =head2
18601 #: ../src/guestfs-actions.pod:7360
18602 msgid "guestfs_vfs_type"
18603 msgstr ""
18604
18605 #. type: verbatim
18606 #: ../src/guestfs-actions.pod:7362
18607 #, no-wrap
18608 msgid ""
18609 " char *\n"
18610 " guestfs_vfs_type (guestfs_h *g,\n"
18611 "                   const char *device);\n"
18612 "\n"
18613 msgstr ""
18614
18615 #. type: textblock
18616 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4897
18617 msgid ""
18618 "This command gets the filesystem type corresponding to the filesystem on "
18619 "C<device>."
18620 msgstr ""
18621
18622 #. type: textblock
18623 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4900
18624 msgid ""
18625 "For most filesystems, the result is the name of the Linux VFS module which "
18626 "would be used to mount this filesystem if you mounted it without specifying "
18627 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18628 msgstr ""
18629
18630 #. type: =head2
18631 #: ../src/guestfs-actions.pod:7379
18632 msgid "guestfs_vfs_uuid"
18633 msgstr ""
18634
18635 #. type: verbatim
18636 #: ../src/guestfs-actions.pod:7381
18637 #, no-wrap
18638 msgid ""
18639 " char *\n"
18640 " guestfs_vfs_uuid (guestfs_h *g,\n"
18641 "                   const char *device);\n"
18642 "\n"
18643 msgstr ""
18644
18645 #. type: textblock
18646 #: ../src/guestfs-actions.pod:7385 ../fish/guestfish-actions.pod:4909
18647 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18648 msgstr ""
18649
18650 #. type: textblock
18651 #: ../src/guestfs-actions.pod:7388 ../fish/guestfish-actions.pod:4912
18652 msgid "If the filesystem does not have a UUID, this returns the empty string."
18653 msgstr ""
18654
18655 #. type: textblock
18656 #: ../src/guestfs-actions.pod:7390
18657 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18658 msgstr ""
18659
18660 #. type: =head2
18661 #: ../src/guestfs-actions.pod:7397
18662 msgid "guestfs_vg_activate"
18663 msgstr ""
18664
18665 #. type: verbatim
18666 #: ../src/guestfs-actions.pod:7399
18667 #, no-wrap
18668 msgid ""
18669 " int\n"
18670 " guestfs_vg_activate (guestfs_h *g,\n"
18671 "                      int activate,\n"
18672 "                      char *const *volgroups);\n"
18673 "\n"
18674 msgstr ""
18675
18676 #. type: textblock
18677 #: ../src/guestfs-actions.pod:7404 ../fish/guestfish-actions.pod:4920
18678 msgid ""
18679 "This command activates or (if C<activate> is false) deactivates all logical "
18680 "volumes in the listed volume groups C<volgroups>."
18681 msgstr ""
18682
18683 #. type: textblock
18684 #: ../src/guestfs-actions.pod:7407 ../fish/guestfish-actions.pod:4923
18685 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18686 msgstr ""
18687
18688 #. type: textblock
18689 #: ../src/guestfs-actions.pod:7409 ../fish/guestfish-actions.pod:4925
18690 msgid ""
18691 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18692 "activated or deactivated."
18693 msgstr ""
18694
18695 #. type: =head2
18696 #: ../src/guestfs-actions.pod:7416
18697 msgid "guestfs_vg_activate_all"
18698 msgstr ""
18699
18700 #. type: verbatim
18701 #: ../src/guestfs-actions.pod:7418
18702 #, no-wrap
18703 msgid ""
18704 " int\n"
18705 " guestfs_vg_activate_all (guestfs_h *g,\n"
18706 "                          int activate);\n"
18707 "\n"
18708 msgstr ""
18709
18710 #. type: textblock
18711 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4932
18712 msgid ""
18713 "This command activates or (if C<activate> is false) deactivates all logical "
18714 "volumes in all volume groups."
18715 msgstr ""
18716
18717 #. type: textblock
18718 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4935
18719 msgid "This command is the same as running C<vgchange -a y|n>"
18720 msgstr ""
18721
18722 #. type: =head2
18723 #: ../src/guestfs-actions.pod:7431
18724 msgid "guestfs_vgcreate"
18725 msgstr ""
18726
18727 #. type: verbatim
18728 #: ../src/guestfs-actions.pod:7433
18729 #, no-wrap
18730 msgid ""
18731 " int\n"
18732 " guestfs_vgcreate (guestfs_h *g,\n"
18733 "                   const char *volgroup,\n"
18734 "                   char *const *physvols);\n"
18735 "\n"
18736 msgstr ""
18737
18738 #. type: textblock
18739 #: ../src/guestfs-actions.pod:7438 ../fish/guestfish-actions.pod:4941
18740 msgid ""
18741 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18742 "of physical volumes C<physvols>."
18743 msgstr ""
18744
18745 #. type: =head2
18746 #: ../src/guestfs-actions.pod:7445
18747 msgid "guestfs_vglvuuids"
18748 msgstr ""
18749
18750 #. type: verbatim
18751 #: ../src/guestfs-actions.pod:7447
18752 #, no-wrap
18753 msgid ""
18754 " char **\n"
18755 " guestfs_vglvuuids (guestfs_h *g,\n"
18756 "                    const char *vgname);\n"
18757 "\n"
18758 msgstr ""
18759
18760 #. type: textblock
18761 #: ../src/guestfs-actions.pod:7451 ../fish/guestfish-actions.pod:4948
18762 msgid ""
18763 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18764 "volumes created in this volume group."
18765 msgstr ""
18766
18767 #. type: textblock
18768 #: ../src/guestfs-actions.pod:7454
18769 msgid ""
18770 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18771 "associate logical volumes and volume groups."
18772 msgstr ""
18773
18774 #. type: textblock
18775 #: ../src/guestfs-actions.pod:7457
18776 msgid "See also C<guestfs_vgpvuuids>."
18777 msgstr ""
18778
18779 #. type: =head2
18780 #: ../src/guestfs-actions.pod:7465
18781 msgid "guestfs_vgpvuuids"
18782 msgstr ""
18783
18784 #. type: verbatim
18785 #: ../src/guestfs-actions.pod:7467
18786 #, no-wrap
18787 msgid ""
18788 " char **\n"
18789 " guestfs_vgpvuuids (guestfs_h *g,\n"
18790 "                    const char *vgname);\n"
18791 "\n"
18792 msgstr ""
18793
18794 #. type: textblock
18795 #: ../src/guestfs-actions.pod:7471 ../fish/guestfish-actions.pod:4960
18796 msgid ""
18797 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18798 "volumes that this volume group resides on."
18799 msgstr ""
18800
18801 #. type: textblock
18802 #: ../src/guestfs-actions.pod:7474
18803 msgid ""
18804 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18805 "associate physical volumes and volume groups."
18806 msgstr ""
18807
18808 #. type: textblock
18809 #: ../src/guestfs-actions.pod:7477
18810 msgid "See also C<guestfs_vglvuuids>."
18811 msgstr ""
18812
18813 #. type: =head2
18814 #: ../src/guestfs-actions.pod:7485
18815 msgid "guestfs_vgremove"
18816 msgstr ""
18817
18818 #. type: verbatim
18819 #: ../src/guestfs-actions.pod:7487
18820 #, no-wrap
18821 msgid ""
18822 " int\n"
18823 " guestfs_vgremove (guestfs_h *g,\n"
18824 "                   const char *vgname);\n"
18825 "\n"
18826 msgstr ""
18827
18828 #. type: textblock
18829 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:4972
18830 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18831 msgstr ""
18832
18833 #. type: textblock
18834 #: ../src/guestfs-actions.pod:7493 ../fish/guestfish-actions.pod:4974
18835 msgid ""
18836 "This also forcibly removes all logical volumes in the volume group (if any)."
18837 msgstr ""
18838
18839 #. type: =head2
18840 #: ../src/guestfs-actions.pod:7500
18841 msgid "guestfs_vgrename"
18842 msgstr ""
18843
18844 #. type: verbatim
18845 #: ../src/guestfs-actions.pod:7502
18846 #, no-wrap
18847 msgid ""
18848 " int\n"
18849 " guestfs_vgrename (guestfs_h *g,\n"
18850 "                   const char *volgroup,\n"
18851 "                   const char *newvolgroup);\n"
18852 "\n"
18853 msgstr ""
18854
18855 #. type: textblock
18856 #: ../src/guestfs-actions.pod:7507 ../fish/guestfish-actions.pod:4981
18857 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18858 msgstr ""
18859
18860 #. type: =head2
18861 #: ../src/guestfs-actions.pod:7513
18862 msgid "guestfs_vgs"
18863 msgstr ""
18864
18865 #. type: verbatim
18866 #: ../src/guestfs-actions.pod:7515
18867 #, no-wrap
18868 msgid ""
18869 " char **\n"
18870 " guestfs_vgs (guestfs_h *g);\n"
18871 "\n"
18872 msgstr ""
18873
18874 #. type: textblock
18875 #: ../src/guestfs-actions.pod:7518 ../fish/guestfish-actions.pod:4987
18876 msgid ""
18877 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18878 "> command."
18879 msgstr ""
18880
18881 #. type: textblock
18882 #: ../src/guestfs-actions.pod:7521 ../fish/guestfish-actions.pod:4990
18883 msgid ""
18884 "This returns a list of just the volume group names that were detected (eg. "
18885 "C<VolGroup00>)."
18886 msgstr ""
18887
18888 #. type: textblock
18889 #: ../src/guestfs-actions.pod:7524
18890 msgid "See also C<guestfs_vgs_full>."
18891 msgstr ""
18892
18893 #. type: =head2
18894 #: ../src/guestfs-actions.pod:7532
18895 msgid "guestfs_vgs_full"
18896 msgstr ""
18897
18898 #. type: verbatim
18899 #: ../src/guestfs-actions.pod:7534
18900 #, no-wrap
18901 msgid ""
18902 " struct guestfs_lvm_vg_list *\n"
18903 " guestfs_vgs_full (guestfs_h *g);\n"
18904 "\n"
18905 msgstr ""
18906
18907 #. type: textblock
18908 #: ../src/guestfs-actions.pod:7537 ../fish/guestfish-actions.pod:4999
18909 msgid ""
18910 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18911 "> command.  The \"full\" version includes all fields."
18912 msgstr ""
18913
18914 #. type: textblock
18915 #: ../src/guestfs-actions.pod:7540
18916 msgid ""
18917 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18918 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18919 msgstr ""
18920
18921 #. type: =head2
18922 #: ../src/guestfs-actions.pod:7546
18923 msgid "guestfs_vgscan"
18924 msgstr ""
18925
18926 #. type: verbatim
18927 #: ../src/guestfs-actions.pod:7548
18928 #, no-wrap
18929 msgid ""
18930 " int\n"
18931 " guestfs_vgscan (guestfs_h *g);\n"
18932 "\n"
18933 msgstr ""
18934
18935 #. type: textblock
18936 #: ../src/guestfs-actions.pod:7551 ../fish/guestfish-actions.pod:5006
18937 msgid ""
18938 "This rescans all block devices and rebuilds the list of LVM physical "
18939 "volumes, volume groups and logical volumes."
18940 msgstr ""
18941
18942 #. type: =head2
18943 #: ../src/guestfs-actions.pod:7558
18944 msgid "guestfs_vguuid"
18945 msgstr ""
18946
18947 #. type: verbatim
18948 #: ../src/guestfs-actions.pod:7560
18949 #, no-wrap
18950 msgid ""
18951 " char *\n"
18952 " guestfs_vguuid (guestfs_h *g,\n"
18953 "                 const char *vgname);\n"
18954 "\n"
18955 msgstr ""
18956
18957 #. type: textblock
18958 #: ../src/guestfs-actions.pod:7564 ../fish/guestfish-actions.pod:5013
18959 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18960 msgstr ""
18961
18962 #. type: =head2
18963 #: ../src/guestfs-actions.pod:7571
18964 msgid "guestfs_wait_ready"
18965 msgstr ""
18966
18967 #. type: verbatim
18968 #: ../src/guestfs-actions.pod:7573
18969 #, no-wrap
18970 msgid ""
18971 " int\n"
18972 " guestfs_wait_ready (guestfs_h *g);\n"
18973 "\n"
18974 msgstr ""
18975
18976 #. type: textblock
18977 #: ../src/guestfs-actions.pod:7576
18978 msgid "This function is a no op."
18979 msgstr ""
18980
18981 #. type: textblock
18982 #: ../src/guestfs-actions.pod:7578
18983 msgid ""
18984 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18985 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18986 "is no longer necessary because C<guestfs_launch> now does the waiting."
18987 msgstr ""
18988
18989 #. type: textblock
18990 #: ../src/guestfs-actions.pod:7583
18991 msgid ""
18992 "If you see any calls to this function in code then you can just remove them, "
18993 "unless you want to retain compatibility with older versions of the API."
18994 msgstr ""
18995
18996 #. type: textblock
18997 #: ../src/guestfs-actions.pod:7589
18998 msgid ""
18999 "This function is deprecated.  In new code, use the C<launch> call instead."
19000 msgstr ""
19001
19002 #. type: =head2
19003 #: ../src/guestfs-actions.pod:7598
19004 msgid "guestfs_wc_c"
19005 msgstr ""
19006
19007 #. type: verbatim
19008 #: ../src/guestfs-actions.pod:7600
19009 #, no-wrap
19010 msgid ""
19011 " int\n"
19012 " guestfs_wc_c (guestfs_h *g,\n"
19013 "               const char *path);\n"
19014 "\n"
19015 msgstr ""
19016
19017 #. type: textblock
19018 #: ../src/guestfs-actions.pod:7604 ../fish/guestfish-actions.pod:5019
19019 msgid ""
19020 "This command counts the characters in a file, using the C<wc -c> external "
19021 "command."
19022 msgstr ""
19023
19024 #. type: =head2
19025 #: ../src/guestfs-actions.pod:7611
19026 msgid "guestfs_wc_l"
19027 msgstr ""
19028
19029 #. type: verbatim
19030 #: ../src/guestfs-actions.pod:7613
19031 #, no-wrap
19032 msgid ""
19033 " int\n"
19034 " guestfs_wc_l (guestfs_h *g,\n"
19035 "               const char *path);\n"
19036 "\n"
19037 msgstr ""
19038
19039 #. type: textblock
19040 #: ../src/guestfs-actions.pod:7617 ../fish/guestfish-actions.pod:5026
19041 msgid ""
19042 "This command counts the lines in a file, using the C<wc -l> external command."
19043 msgstr ""
19044
19045 #. type: =head2
19046 #: ../src/guestfs-actions.pod:7624
19047 msgid "guestfs_wc_w"
19048 msgstr ""
19049
19050 #. type: verbatim
19051 #: ../src/guestfs-actions.pod:7626
19052 #, no-wrap
19053 msgid ""
19054 " int\n"
19055 " guestfs_wc_w (guestfs_h *g,\n"
19056 "               const char *path);\n"
19057 "\n"
19058 msgstr ""
19059
19060 #. type: textblock
19061 #: ../src/guestfs-actions.pod:7630 ../fish/guestfish-actions.pod:5033
19062 msgid ""
19063 "This command counts the words in a file, using the C<wc -w> external command."
19064 msgstr ""
19065
19066 #. type: =head2
19067 #: ../src/guestfs-actions.pod:7637
19068 msgid "guestfs_write"
19069 msgstr ""
19070
19071 #. type: verbatim
19072 #: ../src/guestfs-actions.pod:7639
19073 #, no-wrap
19074 msgid ""
19075 " int\n"
19076 " guestfs_write (guestfs_h *g,\n"
19077 "                const char *path,\n"
19078 "                const char *content,\n"
19079 "                size_t content_size);\n"
19080 "\n"
19081 msgstr ""
19082
19083 #. type: textblock
19084 #: ../src/guestfs-actions.pod:7645 ../fish/guestfish-actions.pod:5040
19085 msgid ""
19086 "This call creates a file called C<path>.  The content of the file is the "
19087 "string C<content> (which can contain any 8 bit data)."
19088 msgstr ""
19089
19090 #. type: textblock
19091 #: ../src/guestfs-actions.pod:7648
19092 #, fuzzy
19093 #| msgid "See L<guestfish(1)>."
19094 msgid "See also C<guestfs_write_append>."
19095 msgstr "Див. L<guestfish(1)>."
19096
19097 #. type: =head2
19098 #: ../src/guestfs-actions.pod:7657
19099 msgid "guestfs_write_append"
19100 msgstr ""
19101
19102 #. type: verbatim
19103 #: ../src/guestfs-actions.pod:7659
19104 #, no-wrap
19105 msgid ""
19106 " int\n"
19107 " guestfs_write_append (guestfs_h *g,\n"
19108 "                       const char *path,\n"
19109 "                       const char *content,\n"
19110 "                       size_t content_size);\n"
19111 "\n"
19112 msgstr ""
19113
19114 #. type: textblock
19115 #: ../src/guestfs-actions.pod:7665 ../fish/guestfish-actions.pod:5052
19116 msgid ""
19117 "This call appends C<content> to the end of file C<path>.  If C<path> does "
19118 "not exist, then a new file is created."
19119 msgstr ""
19120
19121 #. type: textblock
19122 #: ../src/guestfs-actions.pod:7668
19123 #, fuzzy
19124 #| msgid "See L<guestfish(1)>."
19125 msgid "See also C<guestfs_write>."
19126 msgstr "Див. L<guestfish(1)>."
19127
19128 #. type: =head2
19129 #: ../src/guestfs-actions.pod:7675
19130 msgid "guestfs_write_file"
19131 msgstr ""
19132
19133 #. type: verbatim
19134 #: ../src/guestfs-actions.pod:7677
19135 #, no-wrap
19136 msgid ""
19137 " int\n"
19138 " guestfs_write_file (guestfs_h *g,\n"
19139 "                     const char *path,\n"
19140 "                     const char *content,\n"
19141 "                     int size);\n"
19142 "\n"
19143 msgstr ""
19144
19145 #. type: textblock
19146 #: ../src/guestfs-actions.pod:7683 ../fish/guestfish-actions.pod:5064
19147 msgid ""
19148 "This call creates a file called C<path>.  The contents of the file is the "
19149 "string C<content> (which can contain any 8 bit data), with length C<size>."
19150 msgstr ""
19151
19152 #. type: textblock
19153 #: ../src/guestfs-actions.pod:7687 ../fish/guestfish-actions.pod:5068
19154 msgid ""
19155 "As a special case, if C<size> is C<0> then the length is calculated using "
19156 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
19157 msgstr ""
19158
19159 #. type: textblock
19160 #: ../src/guestfs-actions.pod:7691 ../fish/guestfish-actions.pod:5072
19161 msgid ""
19162 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
19163 "I<not> work, even if the length is specified."
19164 msgstr ""
19165
19166 #. type: textblock
19167 #: ../src/guestfs-actions.pod:7699 ../fish/guestfish-actions.pod:5078
19168 msgid ""
19169 "This function is deprecated.  In new code, use the C<write> call instead."
19170 msgstr ""
19171
19172 #. type: =head2
19173 #: ../src/guestfs-actions.pod:7708
19174 msgid "guestfs_zegrep"
19175 msgstr ""
19176
19177 #. type: verbatim
19178 #: ../src/guestfs-actions.pod:7710
19179 #, no-wrap
19180 msgid ""
19181 " char **\n"
19182 " guestfs_zegrep (guestfs_h *g,\n"
19183 "                 const char *regex,\n"
19184 "                 const char *path);\n"
19185 "\n"
19186 msgstr ""
19187
19188 #. type: textblock
19189 #: ../src/guestfs-actions.pod:7715 ../fish/guestfish-actions.pod:5089
19190 msgid ""
19191 "This calls the external C<zegrep> program and returns the matching lines."
19192 msgstr ""
19193
19194 #. type: =head2
19195 #: ../src/guestfs-actions.pod:7727
19196 msgid "guestfs_zegrepi"
19197 msgstr ""
19198
19199 #. type: verbatim
19200 #: ../src/guestfs-actions.pod:7729
19201 #, no-wrap
19202 msgid ""
19203 " char **\n"
19204 " guestfs_zegrepi (guestfs_h *g,\n"
19205 "                  const char *regex,\n"
19206 "                  const char *path);\n"
19207 "\n"
19208 msgstr ""
19209
19210 #. type: textblock
19211 #: ../src/guestfs-actions.pod:7734 ../fish/guestfish-actions.pod:5099
19212 msgid ""
19213 "This calls the external C<zegrep -i> program and returns the matching lines."
19214 msgstr ""
19215
19216 #. type: =head2
19217 #: ../src/guestfs-actions.pod:7746
19218 msgid "guestfs_zero"
19219 msgstr ""
19220
19221 #. type: verbatim
19222 #: ../src/guestfs-actions.pod:7748
19223 #, no-wrap
19224 msgid ""
19225 " int\n"
19226 " guestfs_zero (guestfs_h *g,\n"
19227 "               const char *device);\n"
19228 "\n"
19229 msgstr ""
19230
19231 #. type: textblock
19232 #: ../src/guestfs-actions.pod:7752 ../fish/guestfish-actions.pod:5109
19233 msgid "This command writes zeroes over the first few blocks of C<device>."
19234 msgstr ""
19235
19236 #. type: textblock
19237 #: ../src/guestfs-actions.pod:7754 ../fish/guestfish-actions.pod:5111
19238 msgid ""
19239 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
19240 "securely wipe the device).  It should be sufficient to remove any partition "
19241 "tables, filesystem superblocks and so on."
19242 msgstr ""
19243
19244 #. type: textblock
19245 #: ../src/guestfs-actions.pod:7758
19246 msgid ""
19247 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
19248 "C<guestfs_is_zero_device>"
19249 msgstr ""
19250
19251 #. type: =head2
19252 #: ../src/guestfs-actions.pod:7770
19253 msgid "guestfs_zero_device"
19254 msgstr ""
19255
19256 #. type: verbatim
19257 #: ../src/guestfs-actions.pod:7772
19258 #, no-wrap
19259 msgid ""
19260 " int\n"
19261 " guestfs_zero_device (guestfs_h *g,\n"
19262 "                      const char *device);\n"
19263 "\n"
19264 msgstr ""
19265
19266 #. type: textblock
19267 #: ../src/guestfs-actions.pod:7776
19268 msgid ""
19269 "This command writes zeroes over the entire C<device>.  Compare with "
19270 "C<guestfs_zero> which just zeroes the first few blocks of a device."
19271 msgstr ""
19272
19273 #. type: textblock
19274 #: ../src/guestfs-actions.pod:7790
19275 msgid "(Added in 1.3.1)"
19276 msgstr ""
19277
19278 #. type: =head2
19279 #: ../src/guestfs-actions.pod:7792
19280 msgid "guestfs_zerofree"
19281 msgstr ""
19282
19283 #. type: verbatim
19284 #: ../src/guestfs-actions.pod:7794
19285 #, no-wrap
19286 msgid ""
19287 " int\n"
19288 " guestfs_zerofree (guestfs_h *g,\n"
19289 "                   const char *device);\n"
19290 "\n"
19291 msgstr ""
19292
19293 #. type: textblock
19294 #: ../src/guestfs-actions.pod:7798 ../fish/guestfish-actions.pod:5133
19295 msgid ""
19296 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
19297 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
19298 "possible to compress the filesystem more effectively."
19299 msgstr ""
19300
19301 #. type: textblock
19302 #: ../src/guestfs-actions.pod:7803 ../fish/guestfish-actions.pod:5138
19303 msgid "You should B<not> run this program if the filesystem is mounted."
19304 msgstr ""
19305
19306 #. type: textblock
19307 #: ../src/guestfs-actions.pod:7806 ../fish/guestfish-actions.pod:5141
19308 msgid ""
19309 "It is possible that using this program can damage the filesystem or data on "
19310 "the filesystem."
19311 msgstr ""
19312
19313 #. type: =head2
19314 #: ../src/guestfs-actions.pod:7813
19315 msgid "guestfs_zfgrep"
19316 msgstr ""
19317
19318 #. type: verbatim
19319 #: ../src/guestfs-actions.pod:7815
19320 #, no-wrap
19321 msgid ""
19322 " char **\n"
19323 " guestfs_zfgrep (guestfs_h *g,\n"
19324 "                 const char *pattern,\n"
19325 "                 const char *path);\n"
19326 "\n"
19327 msgstr ""
19328
19329 #. type: textblock
19330 #: ../src/guestfs-actions.pod:7820 ../fish/guestfish-actions.pod:5148
19331 msgid ""
19332 "This calls the external C<zfgrep> program and returns the matching lines."
19333 msgstr ""
19334
19335 #. type: =head2
19336 #: ../src/guestfs-actions.pod:7832
19337 msgid "guestfs_zfgrepi"
19338 msgstr ""
19339
19340 #. type: verbatim
19341 #: ../src/guestfs-actions.pod:7834
19342 #, no-wrap
19343 msgid ""
19344 " char **\n"
19345 " guestfs_zfgrepi (guestfs_h *g,\n"
19346 "                  const char *pattern,\n"
19347 "                  const char *path);\n"
19348 "\n"
19349 msgstr ""
19350
19351 #. type: textblock
19352 #: ../src/guestfs-actions.pod:7839 ../fish/guestfish-actions.pod:5158
19353 msgid ""
19354 "This calls the external C<zfgrep -i> program and returns the matching lines."
19355 msgstr ""
19356
19357 #. type: =head2
19358 #: ../src/guestfs-actions.pod:7851
19359 msgid "guestfs_zfile"
19360 msgstr ""
19361
19362 #. type: verbatim
19363 #: ../src/guestfs-actions.pod:7853
19364 #, no-wrap
19365 msgid ""
19366 " char *\n"
19367 " guestfs_zfile (guestfs_h *g,\n"
19368 "                const char *meth,\n"
19369 "                const char *path);\n"
19370 "\n"
19371 msgstr ""
19372
19373 #. type: textblock
19374 #: ../src/guestfs-actions.pod:7858 ../fish/guestfish-actions.pod:5168
19375 msgid ""
19376 "This command runs C<file> after first decompressing C<path> using C<method>."
19377 msgstr ""
19378
19379 #. type: textblock
19380 #: ../src/guestfs-actions.pod:7861 ../fish/guestfish-actions.pod:5171
19381 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
19382 msgstr ""
19383
19384 #. type: textblock
19385 #: ../src/guestfs-actions.pod:7863
19386 msgid ""
19387 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
19388 "files."
19389 msgstr ""
19390
19391 #. type: textblock
19392 #: ../src/guestfs-actions.pod:7869 ../fish/guestfish-actions.pod:5176
19393 msgid ""
19394 "This function is deprecated.  In new code, use the C<file> call instead."
19395 msgstr ""
19396
19397 #. type: =head2
19398 #: ../src/guestfs-actions.pod:7878
19399 msgid "guestfs_zgrep"
19400 msgstr ""
19401
19402 #. type: verbatim
19403 #: ../src/guestfs-actions.pod:7880
19404 #, no-wrap
19405 msgid ""
19406 " char **\n"
19407 " guestfs_zgrep (guestfs_h *g,\n"
19408 "                const char *regex,\n"
19409 "                const char *path);\n"
19410 "\n"
19411 msgstr ""
19412
19413 #. type: textblock
19414 #: ../src/guestfs-actions.pod:7885 ../fish/guestfish-actions.pod:5187
19415 msgid ""
19416 "This calls the external C<zgrep> program and returns the matching lines."
19417 msgstr ""
19418
19419 #. type: =head2
19420 #: ../src/guestfs-actions.pod:7897
19421 msgid "guestfs_zgrepi"
19422 msgstr ""
19423
19424 #. type: verbatim
19425 #: ../src/guestfs-actions.pod:7899
19426 #, no-wrap
19427 msgid ""
19428 " char **\n"
19429 " guestfs_zgrepi (guestfs_h *g,\n"
19430 "                 const char *regex,\n"
19431 "                 const char *path);\n"
19432 "\n"
19433 msgstr ""
19434
19435 #. type: textblock
19436 #: ../src/guestfs-actions.pod:7904 ../fish/guestfish-actions.pod:5197
19437 msgid ""
19438 "This calls the external C<zgrep -i> program and returns the matching lines."
19439 msgstr ""
19440
19441 #. type: =item
19442 #: ../src/guestfs-availability.pod:3
19443 msgid "B<augeas>"
19444 msgstr ""
19445
19446 #. type: textblock
19447 #: ../src/guestfs-availability.pod:5
19448 msgid ""
19449 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
19450 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
19451 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
19452 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
19453 "L</guestfs_aug_save> L</guestfs_aug_set>"
19454 msgstr ""
19455
19456 #. type: =item
19457 #: ../src/guestfs-availability.pod:21
19458 msgid "B<btrfs>"
19459 msgstr ""
19460
19461 #. type: textblock
19462 #: ../src/guestfs-availability.pod:23
19463 msgid "The following functions: L</guestfs_btrfs_filesystem_resize>"
19464 msgstr ""
19465
19466 #. type: =item
19467 #: ../src/guestfs-availability.pod:26
19468 msgid "B<inotify>"
19469 msgstr ""
19470
19471 #. type: textblock
19472 #: ../src/guestfs-availability.pod:28
19473 msgid ""
19474 "The following functions: L</guestfs_inotify_add_watch> L</"
19475 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
19476 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
19477 msgstr ""
19478
19479 #. type: =item
19480 #: ../src/guestfs-availability.pod:36
19481 msgid "B<linuxfsuuid>"
19482 msgstr ""
19483
19484 #. type: textblock
19485 #: ../src/guestfs-availability.pod:38
19486 msgid ""
19487 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
19488 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
19489 msgstr ""
19490
19491 #. type: =item
19492 #: ../src/guestfs-availability.pod:45
19493 msgid "B<linuxmodules>"
19494 msgstr ""
19495
19496 #. type: textblock
19497 #: ../src/guestfs-availability.pod:47
19498 msgid "The following functions: L</guestfs_modprobe>"
19499 msgstr ""
19500
19501 #. type: =item
19502 #: ../src/guestfs-availability.pod:50
19503 msgid "B<linuxxattrs>"
19504 msgstr ""
19505
19506 #. type: textblock
19507 #: ../src/guestfs-availability.pod:52
19508 msgid ""
19509 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
19510 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
19511 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
19512 "guestfs_setxattr>"
19513 msgstr ""
19514
19515 #. type: =item
19516 #: ../src/guestfs-availability.pod:63
19517 msgid "B<luks>"
19518 msgstr ""
19519
19520 #. type: textblock
19521 #: ../src/guestfs-availability.pod:65
19522 msgid ""
19523 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
19524 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
19525 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19526 msgstr ""
19527
19528 #. type: =item
19529 #: ../src/guestfs-availability.pod:74
19530 msgid "B<lvm2>"
19531 msgstr ""
19532
19533 #. type: textblock
19534 #: ../src/guestfs-availability.pod:76
19535 msgid ""
19536 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
19537 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
19538 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
19539 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
19540 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
19541 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
19542 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
19543 msgstr ""
19544
19545 #. type: =item
19546 #: ../src/guestfs-availability.pod:99
19547 msgid "B<mknod>"
19548 msgstr ""
19549
19550 #. type: textblock
19551 #: ../src/guestfs-availability.pod:101
19552 msgid ""
19553 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
19554 "guestfs_mknod_b> L</guestfs_mknod_c>"
19555 msgstr ""
19556
19557 #. type: =item
19558 #: ../src/guestfs-availability.pod:107
19559 msgid "B<ntfs3g>"
19560 msgstr ""
19561
19562 #. type: textblock
19563 #: ../src/guestfs-availability.pod:109
19564 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19565 msgstr ""
19566
19567 #. type: =item
19568 #: ../src/guestfs-availability.pod:112
19569 msgid "B<ntfsprogs>"
19570 msgstr ""
19571
19572 #. type: textblock
19573 #: ../src/guestfs-availability.pod:114
19574 msgid ""
19575 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
19576 "L</guestfs_ntfsresize_size>"
19577 msgstr ""
19578
19579 #. type: =item
19580 #: ../src/guestfs-availability.pod:119
19581 msgid "B<realpath>"
19582 msgstr ""
19583
19584 #. type: textblock
19585 #: ../src/guestfs-availability.pod:121
19586 msgid "The following functions: L</guestfs_realpath>"
19587 msgstr ""
19588
19589 #. type: =item
19590 #: ../src/guestfs-availability.pod:124
19591 msgid "B<scrub>"
19592 msgstr ""
19593
19594 #. type: textblock
19595 #: ../src/guestfs-availability.pod:126
19596 msgid ""
19597 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
19598 "guestfs_scrub_freespace>"
19599 msgstr ""
19600
19601 #. type: =item
19602 #: ../src/guestfs-availability.pod:131
19603 msgid "B<selinux>"
19604 msgstr ""
19605
19606 #. type: textblock
19607 #: ../src/guestfs-availability.pod:133
19608 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19609 msgstr ""
19610
19611 #. type: =item
19612 #: ../src/guestfs-availability.pod:137
19613 msgid "B<xz>"
19614 msgstr ""
19615
19616 #. type: textblock
19617 #: ../src/guestfs-availability.pod:139
19618 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19619 msgstr ""
19620
19621 #. type: =item
19622 #: ../src/guestfs-availability.pod:143
19623 msgid "B<zerofree>"
19624 msgstr ""
19625
19626 #. type: textblock
19627 #: ../src/guestfs-availability.pod:145
19628 msgid "The following functions: L</guestfs_zerofree>"
19629 msgstr ""
19630
19631 #. type: =head2
19632 #: ../src/guestfs-structs.pod:1
19633 msgid "guestfs_int_bool"
19634 msgstr ""
19635
19636 #. type: verbatim
19637 #: ../src/guestfs-structs.pod:3
19638 #, no-wrap
19639 msgid ""
19640 " struct guestfs_int_bool {\n"
19641 "   int32_t i;\n"
19642 "   int32_t b;\n"
19643 " };\n"
19644 " \n"
19645 msgstr ""
19646
19647 #. type: verbatim
19648 #: ../src/guestfs-structs.pod:8
19649 #, no-wrap
19650 msgid ""
19651 " struct guestfs_int_bool_list {\n"
19652 "   uint32_t len; /* Number of elements in list. */\n"
19653 "   struct guestfs_int_bool *val; /* Elements. */\n"
19654 " };\n"
19655 " \n"
19656 msgstr ""
19657
19658 #. type: verbatim
19659 #: ../src/guestfs-structs.pod:13
19660 #, no-wrap
19661 msgid ""
19662 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19663 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19664 "\n"
19665 msgstr ""
19666
19667 #. type: =head2
19668 #: ../src/guestfs-structs.pod:16
19669 msgid "guestfs_lvm_pv"
19670 msgstr ""
19671
19672 #. type: verbatim
19673 #: ../src/guestfs-structs.pod:18
19674 #, no-wrap
19675 msgid ""
19676 " struct guestfs_lvm_pv {\n"
19677 "   char *pv_name;\n"
19678 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19679 "   char pv_uuid[32];\n"
19680 "   char *pv_fmt;\n"
19681 "   uint64_t pv_size;\n"
19682 "   uint64_t dev_size;\n"
19683 "   uint64_t pv_free;\n"
19684 "   uint64_t pv_used;\n"
19685 "   char *pv_attr;\n"
19686 "   int64_t pv_pe_count;\n"
19687 "   int64_t pv_pe_alloc_count;\n"
19688 "   char *pv_tags;\n"
19689 "   uint64_t pe_start;\n"
19690 "   int64_t pv_mda_count;\n"
19691 "   uint64_t pv_mda_free;\n"
19692 " };\n"
19693 " \n"
19694 msgstr ""
19695
19696 #. type: verbatim
19697 #: ../src/guestfs-structs.pod:36
19698 #, no-wrap
19699 msgid ""
19700 " struct guestfs_lvm_pv_list {\n"
19701 "   uint32_t len; /* Number of elements in list. */\n"
19702 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19703 " };\n"
19704 " \n"
19705 msgstr ""
19706
19707 #. type: verbatim
19708 #: ../src/guestfs-structs.pod:41
19709 #, no-wrap
19710 msgid ""
19711 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19712 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19713 "\n"
19714 msgstr ""
19715
19716 #. type: =head2
19717 #: ../src/guestfs-structs.pod:44
19718 msgid "guestfs_lvm_vg"
19719 msgstr ""
19720
19721 #. type: verbatim
19722 #: ../src/guestfs-structs.pod:46
19723 #, no-wrap
19724 msgid ""
19725 " struct guestfs_lvm_vg {\n"
19726 "   char *vg_name;\n"
19727 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19728 "   char vg_uuid[32];\n"
19729 "   char *vg_fmt;\n"
19730 "   char *vg_attr;\n"
19731 "   uint64_t vg_size;\n"
19732 "   uint64_t vg_free;\n"
19733 "   char *vg_sysid;\n"
19734 "   uint64_t vg_extent_size;\n"
19735 "   int64_t vg_extent_count;\n"
19736 "   int64_t vg_free_count;\n"
19737 "   int64_t max_lv;\n"
19738 "   int64_t max_pv;\n"
19739 "   int64_t pv_count;\n"
19740 "   int64_t lv_count;\n"
19741 "   int64_t snap_count;\n"
19742 "   int64_t vg_seqno;\n"
19743 "   char *vg_tags;\n"
19744 "   int64_t vg_mda_count;\n"
19745 "   uint64_t vg_mda_free;\n"
19746 " };\n"
19747 " \n"
19748 msgstr ""
19749
19750 #. type: verbatim
19751 #: ../src/guestfs-structs.pod:69
19752 #, no-wrap
19753 msgid ""
19754 " struct guestfs_lvm_vg_list {\n"
19755 "   uint32_t len; /* Number of elements in list. */\n"
19756 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19757 " };\n"
19758 " \n"
19759 msgstr ""
19760
19761 #. type: verbatim
19762 #: ../src/guestfs-structs.pod:74
19763 #, no-wrap
19764 msgid ""
19765 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19766 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19767 "\n"
19768 msgstr ""
19769
19770 #. type: =head2
19771 #: ../src/guestfs-structs.pod:77
19772 msgid "guestfs_lvm_lv"
19773 msgstr ""
19774
19775 #. type: verbatim
19776 #: ../src/guestfs-structs.pod:79
19777 #, no-wrap
19778 msgid ""
19779 " struct guestfs_lvm_lv {\n"
19780 "   char *lv_name;\n"
19781 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19782 "   char lv_uuid[32];\n"
19783 "   char *lv_attr;\n"
19784 "   int64_t lv_major;\n"
19785 "   int64_t lv_minor;\n"
19786 "   int64_t lv_kernel_major;\n"
19787 "   int64_t lv_kernel_minor;\n"
19788 "   uint64_t lv_size;\n"
19789 "   int64_t seg_count;\n"
19790 "   char *origin;\n"
19791 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19792 "   float snap_percent;\n"
19793 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19794 "   float copy_percent;\n"
19795 "   char *move_pv;\n"
19796 "   char *lv_tags;\n"
19797 "   char *mirror_log;\n"
19798 "   char *modules;\n"
19799 " };\n"
19800 " \n"
19801 msgstr ""
19802
19803 #. type: verbatim
19804 #: ../src/guestfs-structs.pod:101
19805 #, no-wrap
19806 msgid ""
19807 " struct guestfs_lvm_lv_list {\n"
19808 "   uint32_t len; /* Number of elements in list. */\n"
19809 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19810 " };\n"
19811 " \n"
19812 msgstr ""
19813
19814 #. type: verbatim
19815 #: ../src/guestfs-structs.pod:106
19816 #, no-wrap
19817 msgid ""
19818 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19819 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19820 "\n"
19821 msgstr ""
19822
19823 #. type: verbatim
19824 #: ../src/guestfs-structs.pod:111
19825 #, no-wrap
19826 msgid ""
19827 " struct guestfs_stat {\n"
19828 "   int64_t dev;\n"
19829 "   int64_t ino;\n"
19830 "   int64_t mode;\n"
19831 "   int64_t nlink;\n"
19832 "   int64_t uid;\n"
19833 "   int64_t gid;\n"
19834 "   int64_t rdev;\n"
19835 "   int64_t size;\n"
19836 "   int64_t blksize;\n"
19837 "   int64_t blocks;\n"
19838 "   int64_t atime;\n"
19839 "   int64_t mtime;\n"
19840 "   int64_t ctime;\n"
19841 " };\n"
19842 " \n"
19843 msgstr ""
19844
19845 #. type: verbatim
19846 #: ../src/guestfs-structs.pod:127
19847 #, no-wrap
19848 msgid ""
19849 " struct guestfs_stat_list {\n"
19850 "   uint32_t len; /* Number of elements in list. */\n"
19851 "   struct guestfs_stat *val; /* Elements. */\n"
19852 " };\n"
19853 " \n"
19854 msgstr ""
19855
19856 #. type: verbatim
19857 #: ../src/guestfs-structs.pod:132
19858 #, no-wrap
19859 msgid ""
19860 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19861 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19862 "\n"
19863 msgstr ""
19864
19865 #. type: verbatim
19866 #: ../src/guestfs-structs.pod:137
19867 #, no-wrap
19868 msgid ""
19869 " struct guestfs_statvfs {\n"
19870 "   int64_t bsize;\n"
19871 "   int64_t frsize;\n"
19872 "   int64_t blocks;\n"
19873 "   int64_t bfree;\n"
19874 "   int64_t bavail;\n"
19875 "   int64_t files;\n"
19876 "   int64_t ffree;\n"
19877 "   int64_t favail;\n"
19878 "   int64_t fsid;\n"
19879 "   int64_t flag;\n"
19880 "   int64_t namemax;\n"
19881 " };\n"
19882 " \n"
19883 msgstr ""
19884
19885 #. type: verbatim
19886 #: ../src/guestfs-structs.pod:151
19887 #, no-wrap
19888 msgid ""
19889 " struct guestfs_statvfs_list {\n"
19890 "   uint32_t len; /* Number of elements in list. */\n"
19891 "   struct guestfs_statvfs *val; /* Elements. */\n"
19892 " };\n"
19893 " \n"
19894 msgstr ""
19895
19896 #. type: verbatim
19897 #: ../src/guestfs-structs.pod:156
19898 #, no-wrap
19899 msgid ""
19900 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19901 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19902 "\n"
19903 msgstr ""
19904
19905 #. type: =head2
19906 #: ../src/guestfs-structs.pod:159
19907 msgid "guestfs_dirent"
19908 msgstr ""
19909
19910 #. type: verbatim
19911 #: ../src/guestfs-structs.pod:161
19912 #, no-wrap
19913 msgid ""
19914 " struct guestfs_dirent {\n"
19915 "   int64_t ino;\n"
19916 "   char ftyp;\n"
19917 "   char *name;\n"
19918 " };\n"
19919 " \n"
19920 msgstr ""
19921
19922 #. type: verbatim
19923 #: ../src/guestfs-structs.pod:167
19924 #, no-wrap
19925 msgid ""
19926 " struct guestfs_dirent_list {\n"
19927 "   uint32_t len; /* Number of elements in list. */\n"
19928 "   struct guestfs_dirent *val; /* Elements. */\n"
19929 " };\n"
19930 " \n"
19931 msgstr ""
19932
19933 #. type: verbatim
19934 #: ../src/guestfs-structs.pod:172
19935 #, no-wrap
19936 msgid ""
19937 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19938 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19939 "\n"
19940 msgstr ""
19941
19942 #. type: verbatim
19943 #: ../src/guestfs-structs.pod:177
19944 #, no-wrap
19945 msgid ""
19946 " struct guestfs_version {\n"
19947 "   int64_t major;\n"
19948 "   int64_t minor;\n"
19949 "   int64_t release;\n"
19950 "   char *extra;\n"
19951 " };\n"
19952 " \n"
19953 msgstr ""
19954
19955 #. type: verbatim
19956 #: ../src/guestfs-structs.pod:184
19957 #, no-wrap
19958 msgid ""
19959 " struct guestfs_version_list {\n"
19960 "   uint32_t len; /* Number of elements in list. */\n"
19961 "   struct guestfs_version *val; /* Elements. */\n"
19962 " };\n"
19963 " \n"
19964 msgstr ""
19965
19966 #. type: verbatim
19967 #: ../src/guestfs-structs.pod:189
19968 #, no-wrap
19969 msgid ""
19970 " void guestfs_free_version (struct guestfs_free_version *);\n"
19971 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19972 "\n"
19973 msgstr ""
19974
19975 #. type: =head2
19976 #: ../src/guestfs-structs.pod:192
19977 msgid "guestfs_xattr"
19978 msgstr ""
19979
19980 #. type: verbatim
19981 #: ../src/guestfs-structs.pod:194
19982 #, no-wrap
19983 msgid ""
19984 " struct guestfs_xattr {\n"
19985 "   char *attrname;\n"
19986 "   /* The next two fields describe a byte array. */\n"
19987 "   uint32_t attrval_len;\n"
19988 "   char *attrval;\n"
19989 " };\n"
19990 " \n"
19991 msgstr ""
19992
19993 #. type: verbatim
19994 #: ../src/guestfs-structs.pod:201
19995 #, no-wrap
19996 msgid ""
19997 " struct guestfs_xattr_list {\n"
19998 "   uint32_t len; /* Number of elements in list. */\n"
19999 "   struct guestfs_xattr *val; /* Elements. */\n"
20000 " };\n"
20001 " \n"
20002 msgstr ""
20003
20004 #. type: verbatim
20005 #: ../src/guestfs-structs.pod:206
20006 #, no-wrap
20007 msgid ""
20008 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
20009 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
20010 "\n"
20011 msgstr ""
20012
20013 #. type: =head2
20014 #: ../src/guestfs-structs.pod:209
20015 msgid "guestfs_inotify_event"
20016 msgstr ""
20017
20018 #. type: verbatim
20019 #: ../src/guestfs-structs.pod:211
20020 #, no-wrap
20021 msgid ""
20022 " struct guestfs_inotify_event {\n"
20023 "   int64_t in_wd;\n"
20024 "   uint32_t in_mask;\n"
20025 "   uint32_t in_cookie;\n"
20026 "   char *in_name;\n"
20027 " };\n"
20028 " \n"
20029 msgstr ""
20030
20031 #. type: verbatim
20032 #: ../src/guestfs-structs.pod:218
20033 #, no-wrap
20034 msgid ""
20035 " struct guestfs_inotify_event_list {\n"
20036 "   uint32_t len; /* Number of elements in list. */\n"
20037 "   struct guestfs_inotify_event *val; /* Elements. */\n"
20038 " };\n"
20039 " \n"
20040 msgstr ""
20041
20042 #. type: verbatim
20043 #: ../src/guestfs-structs.pod:223
20044 #, no-wrap
20045 msgid ""
20046 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
20047 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
20048 "\n"
20049 msgstr ""
20050
20051 #. type: =head2
20052 #: ../src/guestfs-structs.pod:226
20053 msgid "guestfs_partition"
20054 msgstr ""
20055
20056 #. type: verbatim
20057 #: ../src/guestfs-structs.pod:228
20058 #, no-wrap
20059 msgid ""
20060 " struct guestfs_partition {\n"
20061 "   int32_t part_num;\n"
20062 "   uint64_t part_start;\n"
20063 "   uint64_t part_end;\n"
20064 "   uint64_t part_size;\n"
20065 " };\n"
20066 " \n"
20067 msgstr ""
20068
20069 #. type: verbatim
20070 #: ../src/guestfs-structs.pod:235
20071 #, no-wrap
20072 msgid ""
20073 " struct guestfs_partition_list {\n"
20074 "   uint32_t len; /* Number of elements in list. */\n"
20075 "   struct guestfs_partition *val; /* Elements. */\n"
20076 " };\n"
20077 " \n"
20078 msgstr ""
20079
20080 #. type: verbatim
20081 #: ../src/guestfs-structs.pod:240
20082 #, no-wrap
20083 msgid ""
20084 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
20085 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
20086 "\n"
20087 msgstr ""
20088
20089 #. type: =head2
20090 #: ../src/guestfs-structs.pod:243
20091 msgid "guestfs_application"
20092 msgstr ""
20093
20094 #. type: verbatim
20095 #: ../src/guestfs-structs.pod:245
20096 #, no-wrap
20097 msgid ""
20098 " struct guestfs_application {\n"
20099 "   char *app_name;\n"
20100 "   char *app_display_name;\n"
20101 "   int32_t app_epoch;\n"
20102 "   char *app_version;\n"
20103 "   char *app_release;\n"
20104 "   char *app_install_path;\n"
20105 "   char *app_trans_path;\n"
20106 "   char *app_publisher;\n"
20107 "   char *app_url;\n"
20108 "   char *app_source_package;\n"
20109 "   char *app_summary;\n"
20110 "   char *app_description;\n"
20111 " };\n"
20112 " \n"
20113 msgstr ""
20114
20115 #. type: verbatim
20116 #: ../src/guestfs-structs.pod:260
20117 #, no-wrap
20118 msgid ""
20119 " struct guestfs_application_list {\n"
20120 "   uint32_t len; /* Number of elements in list. */\n"
20121 "   struct guestfs_application *val; /* Elements. */\n"
20122 " };\n"
20123 " \n"
20124 msgstr ""
20125
20126 #. type: verbatim
20127 #: ../src/guestfs-structs.pod:265
20128 #, no-wrap
20129 msgid ""
20130 " void guestfs_free_application (struct guestfs_free_application *);\n"
20131 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
20132 "\n"
20133 msgstr ""
20134
20135 #. type: textblock
20136 #: ../fish/guestfish.pod:5
20137 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
20138 msgstr ""
20139
20140 #. type: verbatim
20141 #: ../fish/guestfish.pod:9
20142 #, no-wrap
20143 msgid ""
20144 " guestfish [--options] [commands]\n"
20145 "\n"
20146 msgstr ""
20147
20148 #. type: verbatim
20149 #: ../fish/guestfish.pod:11
20150 #, no-wrap
20151 msgid ""
20152 " guestfish\n"
20153 "\n"
20154 msgstr ""
20155
20156 #. type: verbatim
20157 #: ../fish/guestfish.pod:13
20158 #, no-wrap
20159 msgid ""
20160 " guestfish [--ro|--rw] -a disk.img\n"
20161 "\n"
20162 msgstr ""
20163
20164 #. type: verbatim
20165 #: ../fish/guestfish.pod:15
20166 #, no-wrap
20167 msgid ""
20168 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
20169 "\n"
20170 msgstr ""
20171
20172 #. type: verbatim
20173 #: ../fish/guestfish.pod:17
20174 #, no-wrap
20175 msgid ""
20176 " guestfish -d libvirt-domain\n"
20177 "\n"
20178 msgstr ""
20179
20180 #. type: verbatim
20181 #: ../fish/guestfish.pod:19
20182 #, no-wrap
20183 msgid ""
20184 " guestfish [--ro|--rw] -a disk.img -i\n"
20185 "\n"
20186 msgstr ""
20187
20188 #. type: verbatim
20189 #: ../fish/guestfish.pod:21
20190 #, no-wrap
20191 msgid ""
20192 " guestfish -d libvirt-domain -i\n"
20193 "\n"
20194 msgstr ""
20195
20196 #. type: =head1
20197 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
20198 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
20199 msgid "WARNING"
20200 msgstr ""
20201
20202 #. type: textblock
20203 #: ../fish/guestfish.pod:25
20204 msgid ""
20205 "Using guestfish in read/write mode on live virtual machines can be "
20206 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
20207 "option to use guestfish safely if the disk image or virtual machine might be "
20208 "live."
20209 msgstr ""
20210
20211 #. type: textblock
20212 #: ../fish/guestfish.pod:32
20213 msgid ""
20214 "Guestfish is a shell and command-line tool for examining and modifying "
20215 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
20216 "functionality of the guestfs API, see L<guestfs(3)>."
20217 msgstr ""
20218
20219 #. type: textblock
20220 #: ../fish/guestfish.pod:36
20221 msgid ""
20222 "Guestfish gives you structured access to the libguestfs API, from shell "
20223 "scripts or the command line or interactively.  If you want to rescue a "
20224 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
20225 "command."
20226 msgstr ""
20227
20228 #. type: =head1
20229 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:1007
20230 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
20231 msgid "EXAMPLES"
20232 msgstr ""
20233
20234 #. type: =head2
20235 #: ../fish/guestfish.pod:43
20236 msgid "As an interactive shell"
20237 msgstr ""
20238
20239 #. type: verbatim
20240 #: ../fish/guestfish.pod:45
20241 #, no-wrap
20242 msgid ""
20243 " $ guestfish\n"
20244 " \n"
20245 msgstr ""
20246
20247 #. type: verbatim
20248 #: ../fish/guestfish.pod:47
20249 #, no-wrap
20250 msgid ""
20251 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
20252 " editing virtual machine filesystems.\n"
20253 " \n"
20254 msgstr ""
20255
20256 #. type: verbatim
20257 #: ../fish/guestfish.pod:50
20258 #, no-wrap
20259 msgid ""
20260 " Type: 'help' for a list of commands\n"
20261 "       'man' to read the manual\n"
20262 "       'quit' to quit the shell\n"
20263 " \n"
20264 msgstr ""
20265
20266 #. type: verbatim
20267 #: ../fish/guestfish.pod:54
20268 #, no-wrap
20269 msgid ""
20270 " ><fs> add-ro disk.img\n"
20271 " ><fs> run\n"
20272 " ><fs> list-filesystems\n"
20273 " /dev/sda1: ext4\n"
20274 " /dev/vg_guest/lv_root: ext4\n"
20275 " /dev/vg_guest/lv_swap: swap\n"
20276 " ><fs> mount /dev/vg_guest/lv_root /\n"
20277 " ><fs> cat /etc/fstab\n"
20278 " # /etc/fstab\n"
20279 " # Created by anaconda\n"
20280 " [...]\n"
20281 " ><fs> exit\n"
20282 "\n"
20283 msgstr ""
20284
20285 #. type: =head2
20286 #: ../fish/guestfish.pod:67
20287 msgid "From shell scripts"
20288 msgstr ""
20289
20290 #. type: textblock
20291 #: ../fish/guestfish.pod:69
20292 msgid "Create a new C</etc/motd> file in a guest or disk image:"
20293 msgstr ""
20294
20295 #. type: verbatim
20296 #: ../fish/guestfish.pod:71
20297 #, no-wrap
20298 msgid ""
20299 " guestfish <<_EOF_\n"
20300 " add disk.img\n"
20301 " run\n"
20302 " mount /dev/vg_guest/lv_root /\n"
20303 " write /etc/motd \"Welcome, new users\"\n"
20304 " _EOF_\n"
20305 "\n"
20306 msgstr ""
20307
20308 #. type: textblock
20309 #: ../fish/guestfish.pod:78
20310 msgid "List the LVM logical volumes in a disk image:"
20311 msgstr ""
20312
20313 #. type: verbatim
20314 #: ../fish/guestfish.pod:80
20315 #, no-wrap
20316 msgid ""
20317 " guestfish -a disk.img --ro <<_EOF_\n"
20318 " run\n"
20319 " lvs\n"
20320 " _EOF_\n"
20321 "\n"
20322 msgstr ""
20323
20324 #. type: textblock
20325 #: ../fish/guestfish.pod:85
20326 msgid "List all the filesystems in a disk image:"
20327 msgstr ""
20328
20329 #. type: verbatim
20330 #: ../fish/guestfish.pod:87
20331 #, no-wrap
20332 msgid ""
20333 " guestfish -a disk.img --ro <<_EOF_\n"
20334 " run\n"
20335 " list-filesystems\n"
20336 " _EOF_\n"
20337 "\n"
20338 msgstr ""
20339
20340 #. type: =head2
20341 #: ../fish/guestfish.pod:92
20342 msgid "On one command line"
20343 msgstr ""
20344
20345 #. type: textblock
20346 #: ../fish/guestfish.pod:94
20347 msgid "Update C</etc/resolv.conf> in a guest:"
20348 msgstr ""
20349
20350 #. type: verbatim
20351 #: ../fish/guestfish.pod:96
20352 #, no-wrap
20353 msgid ""
20354 " guestfish \\\n"
20355 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
20356 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
20357 "\n"
20358 msgstr ""
20359
20360 #. type: textblock
20361 #: ../fish/guestfish.pod:100
20362 msgid "Edit C</boot/grub/grub.conf> interactively:"
20363 msgstr ""
20364
20365 #. type: verbatim
20366 #: ../fish/guestfish.pod:102
20367 #, no-wrap
20368 msgid ""
20369 " guestfish --rw --add disk.img \\\n"
20370 "   --mount /dev/vg_guest/lv_root \\\n"
20371 "   --mount /dev/sda1:/boot \\\n"
20372 "   edit /boot/grub/grub.conf\n"
20373 "\n"
20374 msgstr ""
20375
20376 #. type: =head2
20377 #: ../fish/guestfish.pod:107
20378 msgid "Mount disks automatically"
20379 msgstr ""
20380
20381 #. type: textblock
20382 #: ../fish/guestfish.pod:109
20383 msgid ""
20384 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
20385 msgstr ""
20386
20387 #. type: verbatim
20388 #: ../fish/guestfish.pod:112
20389 #, no-wrap
20390 msgid ""
20391 " guestfish --ro -a disk.img -i cat /etc/group\n"
20392 "\n"
20393 msgstr ""
20394
20395 #. type: verbatim
20396 #: ../fish/guestfish.pod:114
20397 #, no-wrap
20398 msgid ""
20399 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
20400 "\n"
20401 msgstr ""
20402
20403 #. type: textblock
20404 #: ../fish/guestfish.pod:116
20405 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
20406 msgstr ""
20407
20408 #. type: verbatim
20409 #: ../fish/guestfish.pod:118
20410 #, no-wrap
20411 msgid ""
20412 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
20413 "\n"
20414 msgstr ""
20415
20416 #. type: =head2
20417 #: ../fish/guestfish.pod:120
20418 msgid "As a script interpreter"
20419 msgstr ""
20420
20421 #. type: textblock
20422 #: ../fish/guestfish.pod:122
20423 msgid "Create a 100MB disk containing an ext2-formatted partition:"
20424 msgstr ""
20425
20426 #. type: verbatim
20427 #: ../fish/guestfish.pod:124
20428 #, no-wrap
20429 msgid ""
20430 " #!/usr/bin/guestfish -f\n"
20431 " sparse test1.img 100M\n"
20432 " run\n"
20433 " part-disk /dev/sda mbr\n"
20434 " mkfs ext2 /dev/sda1\n"
20435 "\n"
20436 msgstr ""
20437
20438 #. type: =head2
20439 #: ../fish/guestfish.pod:130
20440 msgid "Start with a prepared disk"
20441 msgstr ""
20442
20443 #. type: textblock
20444 #: ../fish/guestfish.pod:132
20445 msgid ""
20446 "An alternate way to create a 100MB disk called C<test1.img> containing a "
20447 "single ext2-formatted partition:"
20448 msgstr ""
20449
20450 #. type: verbatim
20451 #: ../fish/guestfish.pod:135
20452 #, no-wrap
20453 msgid ""
20454 " guestfish -N fs\n"
20455 "\n"
20456 msgstr ""
20457
20458 #. type: textblock
20459 #: ../fish/guestfish.pod:137
20460 msgid "To list what is available do:"
20461 msgstr ""
20462
20463 #. type: verbatim
20464 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:998
20465 #, no-wrap
20466 msgid ""
20467 " guestfish -N help | less\n"
20468 "\n"
20469 msgstr ""
20470
20471 #. type: =head2
20472 #: ../fish/guestfish.pod:141
20473 msgid "Remote control"
20474 msgstr ""
20475
20476 #. type: verbatim
20477 #: ../fish/guestfish.pod:143
20478 #, no-wrap
20479 msgid ""
20480 " eval \"`guestfish --listen`\"\n"
20481 " guestfish --remote add-ro disk.img\n"
20482 " guestfish --remote run\n"
20483 " guestfish --remote lvs\n"
20484 "\n"
20485 msgstr ""
20486
20487 #. type: =head1
20488 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
20489 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
20490 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
20491 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
20492 msgid "OPTIONS"
20493 msgstr ""
20494
20495 #. type: =item
20496 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
20497 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
20498 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
20499 #: ../tools/virt-list-partitions.pl:62
20500 msgid "B<--help>"
20501 msgstr ""
20502
20503 #. type: textblock
20504 #: ../fish/guestfish.pod:154
20505 msgid "Displays general help on options."
20506 msgstr ""
20507
20508 #. type: =item
20509 #: ../fish/guestfish.pod:156
20510 msgid "B<-h>"
20511 msgstr ""
20512
20513 #. type: =item
20514 #: ../fish/guestfish.pod:158
20515 msgid "B<--cmd-help>"
20516 msgstr ""
20517
20518 #. type: textblock
20519 #: ../fish/guestfish.pod:160
20520 msgid "Lists all available guestfish commands."
20521 msgstr ""
20522
20523 #. type: =item
20524 #: ../fish/guestfish.pod:162
20525 msgid "B<-h cmd>"
20526 msgstr ""
20527
20528 #. type: =item
20529 #: ../fish/guestfish.pod:164
20530 msgid "B<--cmd-help cmd>"
20531 msgstr ""
20532
20533 #. type: textblock
20534 #: ../fish/guestfish.pod:166
20535 msgid "Displays detailed help on a single command C<cmd>."
20536 msgstr ""
20537
20538 #. type: =item
20539 #: ../fish/guestfish.pod:168
20540 msgid "B<-a image>"
20541 msgstr ""
20542
20543 #. type: =item
20544 #: ../fish/guestfish.pod:170
20545 msgid "B<--add image>"
20546 msgstr ""
20547
20548 #. type: textblock
20549 #: ../fish/guestfish.pod:172
20550 msgid "Add a block device or virtual machine image to the shell."
20551 msgstr ""
20552
20553 #. type: textblock
20554 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20555 msgid ""
20556 "The format of the disk image is auto-detected.  To override this and force a "
20557 "particular format use the I<--format=..> option."
20558 msgstr ""
20559
20560 #. type: textblock
20561 #: ../fish/guestfish.pod:177
20562 msgid ""
20563 "Using this flag is mostly equivalent to using the C<add> command, with "
20564 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20565 "the I<--format=...> flag was given."
20566 msgstr ""
20567
20568 #. type: =item
20569 #: ../fish/guestfish.pod:181
20570 msgid "B<-c URI>"
20571 msgstr ""
20572
20573 #. type: =item
20574 #: ../fish/guestfish.pod:183
20575 msgid "B<--connect URI>"
20576 msgstr ""
20577
20578 #. type: textblock
20579 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20580 msgid ""
20581 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20582 "URI to use.  The default is to use the default libvirt connection."
20583 msgstr ""
20584
20585 #. type: =item
20586 #: ../fish/guestfish.pod:189
20587 msgid "B<--csh>"
20588 msgstr ""
20589
20590 #. type: textblock
20591 #: ../fish/guestfish.pod:191
20592 msgid ""
20593 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20594 "section L</REMOTE CONTROL AND CSH> below."
20595 msgstr ""
20596
20597 #. type: =item
20598 #: ../fish/guestfish.pod:194
20599 msgid "B<-d libvirt-domain>"
20600 msgstr ""
20601
20602 #. type: =item
20603 #: ../fish/guestfish.pod:196
20604 msgid "B<--domain libvirt-domain>"
20605 msgstr ""
20606
20607 #. type: textblock
20608 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20609 msgid ""
20610 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20611 "used, then any libvirt domain can be used.  However in write mode, only "
20612 "libvirt domains which are shut down can be named here."
20613 msgstr ""
20614
20615 #. type: textblock
20616 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20617 msgid "Domain UUIDs can be used instead of names."
20618 msgstr ""
20619
20620 #. type: textblock
20621 #: ../fish/guestfish.pod:204
20622 msgid ""
20623 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20624 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20625 "if the I<--format:...> flag was given."
20626 msgstr ""
20627
20628 #. type: =item
20629 #: ../fish/guestfish.pod:208
20630 msgid "B<-D>"
20631 msgstr ""
20632
20633 #. type: =item
20634 #: ../fish/guestfish.pod:210
20635 msgid "B<--no-dest-paths>"
20636 msgstr ""
20637
20638 #. type: textblock
20639 #: ../fish/guestfish.pod:212
20640 msgid ""
20641 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20642 "to hit the tab key to complete paths on the guest filesystem, but this "
20643 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20644 "allow this feature to be disabled."
20645 msgstr ""
20646
20647 #. type: =item
20648 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20649 msgid "B<--echo-keys>"
20650 msgstr ""
20651
20652 #. type: textblock
20653 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20654 msgid ""
20655 "When prompting for keys and passphrases, guestfish normally turns echoing "
20656 "off so you cannot see what you are typing.  If you are not worried about "
20657 "Tempest attacks and there is no one else in the room you can specify this "
20658 "flag to see what you are typing."
20659 msgstr ""
20660
20661 #. type: =item
20662 #: ../fish/guestfish.pod:224
20663 msgid "B<-f file>"
20664 msgstr ""
20665
20666 #. type: =item
20667 #: ../fish/guestfish.pod:226
20668 msgid "B<--file file>"
20669 msgstr ""
20670
20671 #. type: textblock
20672 #: ../fish/guestfish.pod:228
20673 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20674 msgstr ""
20675
20676 #. type: verbatim
20677 #: ../fish/guestfish.pod:231
20678 #, no-wrap
20679 msgid ""
20680 " #!/usr/bin/guestfish -f\n"
20681 "\n"
20682 msgstr ""
20683
20684 #. type: =item
20685 #: ../fish/guestfish.pod:233
20686 msgid "B<--format=raw|qcow2|..>"
20687 msgstr ""
20688
20689 #. type: =item
20690 #: ../fish/guestfish.pod:235
20691 msgid "B<--format>"
20692 msgstr ""
20693
20694 #. type: textblock
20695 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20696 msgid ""
20697 "The default for the I<-a> option is to auto-detect the format of the disk "
20698 "image.  Using this forces the disk format for I<-a> options which follow on "
20699 "the command line.  Using I<--format> with no argument switches back to auto-"
20700 "detection for subsequent I<-a> options."
20701 msgstr ""
20702
20703 #. type: verbatim
20704 #: ../fish/guestfish.pod:244
20705 #, no-wrap
20706 msgid ""
20707 " guestfish --format=raw -a disk.img\n"
20708 "\n"
20709 msgstr ""
20710
20711 #. type: textblock
20712 #: ../fish/guestfish.pod:246
20713 msgid "forces raw format (no auto-detection) for C<disk.img>."
20714 msgstr ""
20715
20716 #. type: verbatim
20717 #: ../fish/guestfish.pod:248
20718 #, no-wrap
20719 msgid ""
20720 " guestfish --format=raw -a disk.img --format -a another.img\n"
20721 "\n"
20722 msgstr ""
20723
20724 #. type: textblock
20725 #: ../fish/guestfish.pod:250
20726 msgid ""
20727 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20728 "detection for C<another.img>."
20729 msgstr ""
20730
20731 #. type: textblock
20732 #: ../fish/guestfish.pod:253
20733 msgid ""
20734 "If you have untrusted raw-format guest disk images, you should use this "
20735 "option to specify the disk format.  This avoids a possible security problem "
20736 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20737 msgstr ""
20738
20739 #. type: =item
20740 #: ../fish/guestfish.pod:258
20741 msgid "B<-i>"
20742 msgstr ""
20743
20744 #. type: =item
20745 #: ../fish/guestfish.pod:260
20746 msgid "B<--inspector>"
20747 msgstr ""
20748
20749 #. type: textblock
20750 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20751 msgid ""
20752 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20753 "system and mount filesystems as they would be mounted on the real virtual "
20754 "machine."
20755 msgstr ""
20756
20757 #. type: textblock
20758 #: ../fish/guestfish.pod:266
20759 msgid "Typical usage is either:"
20760 msgstr ""
20761
20762 #. type: verbatim
20763 #: ../fish/guestfish.pod:268
20764 #, no-wrap
20765 msgid ""
20766 " guestfish -d myguest -i\n"
20767 "\n"
20768 msgstr ""
20769
20770 #. type: textblock
20771 #: ../fish/guestfish.pod:270
20772 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20773 msgstr ""
20774
20775 #. type: verbatim
20776 #: ../fish/guestfish.pod:272
20777 #, no-wrap
20778 msgid ""
20779 " guestfish --ro -d myguest -i\n"
20780 "\n"
20781 msgstr ""
20782
20783 #. type: textblock
20784 #: ../fish/guestfish.pod:274
20785 msgid "(for active domains, readonly), or specify the block device directly:"
20786 msgstr ""
20787
20788 #. type: verbatim
20789 #: ../fish/guestfish.pod:276
20790 #, no-wrap
20791 msgid ""
20792 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20793 "\n"
20794 msgstr ""
20795
20796 #. type: textblock
20797 #: ../fish/guestfish.pod:278
20798 msgid ""
20799 "Note that the command line syntax changed slightly over older versions of "
20800 "guestfish.  You can still use the old syntax:"
20801 msgstr ""
20802
20803 #. type: verbatim
20804 #: ../fish/guestfish.pod:281
20805 #, no-wrap
20806 msgid ""
20807 " guestfish [--ro] -i disk.img\n"
20808 "\n"
20809 msgstr ""
20810
20811 #. type: verbatim
20812 #: ../fish/guestfish.pod:283
20813 #, no-wrap
20814 msgid ""
20815 " guestfish [--ro] -i libvirt-domain\n"
20816 "\n"
20817 msgstr ""
20818
20819 #. type: textblock
20820 #: ../fish/guestfish.pod:285
20821 msgid ""
20822 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20823 "then using other commands to mount the filesystems that were found."
20824 msgstr ""
20825
20826 #. type: =item
20827 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20828 msgid "B<--keys-from-stdin>"
20829 msgstr ""
20830
20831 #. type: textblock
20832 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20833 msgid ""
20834 "Read key or passphrase parameters from stdin.  The default is to try to read "
20835 "passphrases from the user by opening C</dev/tty>."
20836 msgstr ""
20837
20838 #. type: =item
20839 #: ../fish/guestfish.pod:294
20840 msgid "B<--listen>"
20841 msgstr ""
20842
20843 #. type: textblock
20844 #: ../fish/guestfish.pod:296
20845 msgid ""
20846 "Fork into the background and listen for remote commands.  See section L</"
20847 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20848 msgstr ""
20849
20850 #. type: =item
20851 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20852 msgid "B<--live>"
20853 msgstr ""
20854
20855 #. type: textblock
20856 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20857 msgid ""
20858 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20859 "ATTACHING TO RUNNING DAEMONS>)."
20860 msgstr ""
20861
20862 #. type: =item
20863 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20864 msgid "B<-m dev[:mountpoint[:options]]>"
20865 msgstr ""
20866
20867 #. type: =item
20868 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20869 msgid "B<--mount dev[:mountpoint[:options]]>"
20870 msgstr ""
20871
20872 #. type: textblock
20873 #: ../fish/guestfish.pod:308
20874 msgid "Mount the named partition or logical volume on the given mountpoint."
20875 msgstr ""
20876
20877 #. type: textblock
20878 #: ../fish/guestfish.pod:310
20879 msgid "If the mountpoint is omitted, it defaults to C</>."
20880 msgstr ""
20881
20882 #. type: textblock
20883 #: ../fish/guestfish.pod:312
20884 msgid "You have to mount something on C</> before most commands will work."
20885 msgstr ""
20886
20887 #. type: textblock
20888 #: ../fish/guestfish.pod:314
20889 msgid ""
20890 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20891 "launched."
20892 msgstr ""
20893
20894 #. type: textblock
20895 #: ../fish/guestfish.pod:317
20896 msgid ""
20897 "If you don't know what filesystems a disk image contains, you can either run "
20898 "guestfish without this option, then list the partitions, filesystems and LVs "
20899 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20900 "commands), or you can use the L<virt-filesystems(1)> program."
20901 msgstr ""
20902
20903 #. type: textblock
20904 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20905 msgid ""
20906 "The third (and rarely used) part of the mount parameter is the list of mount "
20907 "options used to mount the underlying filesystem.  If this is not given, then "
20908 "the mount options are either the empty string or C<ro> (the latter if the "
20909 "I<--ro> flag is used).  By specifying the mount options, you override this "
20910 "default choice.  Probably the only time you would use this is to enable ACLs "
20911 "and/or extended attributes if the filesystem can support them:"
20912 msgstr ""
20913
20914 #. type: verbatim
20915 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20916 #, no-wrap
20917 msgid ""
20918 " -m /dev/sda1:/:acl,user_xattr\n"
20919 "\n"
20920 msgstr ""
20921
20922 #. type: textblock
20923 #: ../fish/guestfish.pod:333
20924 msgid "Using this flag is equivalent to using the C<mount-options> command."
20925 msgstr ""
20926
20927 #. type: =item
20928 #: ../fish/guestfish.pod:335
20929 msgid "B<-n>"
20930 msgstr ""
20931
20932 #. type: =item
20933 #: ../fish/guestfish.pod:337
20934 msgid "B<--no-sync>"
20935 msgstr ""
20936
20937 #. type: textblock
20938 #: ../fish/guestfish.pod:339
20939 msgid ""
20940 "Disable autosync.  This is enabled by default.  See the discussion of "
20941 "autosync in the L<guestfs(3)> manpage."
20942 msgstr ""
20943
20944 #. type: =item
20945 #: ../fish/guestfish.pod:342
20946 msgid "B<-N type>"
20947 msgstr ""
20948
20949 #. type: =item
20950 #: ../fish/guestfish.pod:344
20951 msgid "B<--new type>"
20952 msgstr ""
20953
20954 #. type: =item
20955 #: ../fish/guestfish.pod:346
20956 msgid "B<-N help>"
20957 msgstr ""
20958
20959 #. type: textblock
20960 #: ../fish/guestfish.pod:348
20961 msgid ""
20962 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20963 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20964 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20965 "IMAGES> below."
20966 msgstr ""
20967
20968 #. type: =item
20969 #: ../fish/guestfish.pod:353
20970 msgid "B<--progress-bars>"
20971 msgstr ""
20972
20973 #. type: textblock
20974 #: ../fish/guestfish.pod:355
20975 msgid "Enable progress bars, even when guestfish is used non-interactively."
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:357
20980 msgid ""
20981 "Progress bars are enabled by default when guestfish is used as an "
20982 "interactive shell."
20983 msgstr ""
20984
20985 #. type: =item
20986 #: ../fish/guestfish.pod:360
20987 msgid "B<--no-progress-bars>"
20988 msgstr ""
20989
20990 #. type: textblock
20991 #: ../fish/guestfish.pod:362
20992 msgid "Disable progress bars."
20993 msgstr ""
20994
20995 #. type: =item
20996 #: ../fish/guestfish.pod:364
20997 msgid "B<--remote[=pid]>"
20998 msgstr ""
20999
21000 #. type: textblock
21001 #: ../fish/guestfish.pod:366
21002 msgid ""
21003 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
21004 "CONTROL GUESTFISH OVER A SOCKET> below."
21005 msgstr ""
21006
21007 #. type: =item
21008 #: ../fish/guestfish.pod:369
21009 msgid "B<-r>"
21010 msgstr ""
21011
21012 #. type: =item
21013 #: ../fish/guestfish.pod:371
21014 msgid "B<--ro>"
21015 msgstr ""
21016
21017 #. type: textblock
21018 #: ../fish/guestfish.pod:373
21019 msgid ""
21020 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
21021 "mounts are done read-only."
21022 msgstr ""
21023
21024 #. type: textblock
21025 #: ../fish/guestfish.pod:376
21026 msgid ""
21027 "The option must always be used if the disk image or virtual machine might be "
21028 "running, and is generally recommended in cases where you don't need write "
21029 "access to the disk."
21030 msgstr ""
21031
21032 #. type: textblock
21033 #: ../fish/guestfish.pod:380
21034 msgid ""
21035 "Note that prepared disk images created with I<-N> are not affected by this "
21036 "option.  Also commands like C<add> are not affected - you have to specify "
21037 "the C<readonly:true> option explicitly if you need it."
21038 msgstr ""
21039
21040 #. type: textblock
21041 #: ../fish/guestfish.pod:384
21042 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
21043 msgstr ""
21044
21045 #. type: =item
21046 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
21047 msgid "B<--selinux>"
21048 msgstr ""
21049
21050 #. type: textblock
21051 #: ../fish/guestfish.pod:388
21052 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
21053 msgstr ""
21054
21055 #. type: =item
21056 #: ../fish/guestfish.pod:390
21057 msgid "B<-v>"
21058 msgstr ""
21059
21060 #. type: =item
21061 #: ../fish/guestfish.pod:392
21062 msgid "B<--verbose>"
21063 msgstr ""
21064
21065 #. type: textblock
21066 #: ../fish/guestfish.pod:394
21067 msgid ""
21068 "Enable very verbose messages.  This is particularly useful if you find a bug."
21069 msgstr ""
21070
21071 #. type: =item
21072 #: ../fish/guestfish.pod:397
21073 msgid "B<-V>"
21074 msgstr ""
21075
21076 #. type: =item
21077 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
21078 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
21079 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
21080 msgid "B<--version>"
21081 msgstr ""
21082
21083 #. type: textblock
21084 #: ../fish/guestfish.pod:401
21085 msgid "Display the guestfish / libguestfs version number and exit."
21086 msgstr ""
21087
21088 #. type: =item
21089 #: ../fish/guestfish.pod:403
21090 msgid "B<-w>"
21091 msgstr ""
21092
21093 #. type: =item
21094 #: ../fish/guestfish.pod:405
21095 msgid "B<--rw>"
21096 msgstr ""
21097
21098 #. type: textblock
21099 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
21100 msgid ""
21101 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
21102 "mounts are done read-write."
21103 msgstr ""
21104
21105 #. type: textblock
21106 #: ../fish/guestfish.pod:410
21107 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
21108 msgstr ""
21109
21110 #. type: =item
21111 #: ../fish/guestfish.pod:412
21112 msgid "B<-x>"
21113 msgstr ""
21114
21115 #. type: textblock
21116 #: ../fish/guestfish.pod:414
21117 msgid "Echo each command before executing it."
21118 msgstr ""
21119
21120 #. type: =head1
21121 #: ../fish/guestfish.pod:418
21122 msgid "COMMANDS ON COMMAND LINE"
21123 msgstr ""
21124
21125 #. type: textblock
21126 #: ../fish/guestfish.pod:420
21127 msgid ""
21128 "Any additional (non-option) arguments are treated as commands to execute."
21129 msgstr ""
21130
21131 #. type: textblock
21132 #: ../fish/guestfish.pod:423
21133 msgid ""
21134 "Commands to execute should be separated by a colon (C<:>), where the colon "
21135 "is a separate parameter.  Thus:"
21136 msgstr ""
21137
21138 #. type: verbatim
21139 #: ../fish/guestfish.pod:426
21140 #, no-wrap
21141 msgid ""
21142 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
21143 "\n"
21144 msgstr ""
21145
21146 #. type: textblock
21147 #: ../fish/guestfish.pod:428
21148 msgid ""
21149 "If there are no additional arguments, then we enter a shell, either an "
21150 "interactive shell with a prompt (if the input is a terminal) or a non-"
21151 "interactive shell."
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:432
21156 msgid ""
21157 "In either command line mode or non-interactive shell, the first command that "
21158 "gives an error causes the whole shell to exit.  In interactive mode (with a "
21159 "prompt) if a command fails, you can continue to enter commands."
21160 msgstr ""
21161
21162 #. type: =head1
21163 #: ../fish/guestfish.pod:437
21164 msgid "USING launch (OR run)"
21165 msgstr ""
21166
21167 #. type: textblock
21168 #: ../fish/guestfish.pod:439
21169 msgid ""
21170 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
21171 "then launch it, then mount any disks you need, and finally issue actions/"
21172 "commands.  So the general order of the day is:"
21173 msgstr ""
21174
21175 #. type: textblock
21176 #: ../fish/guestfish.pod:447
21177 msgid "add or -a/--add"
21178 msgstr ""
21179
21180 #. type: textblock
21181 #: ../fish/guestfish.pod:451
21182 msgid "launch (aka run)"
21183 msgstr ""
21184
21185 #. type: textblock
21186 #: ../fish/guestfish.pod:455
21187 msgid "mount or -m/--mount"
21188 msgstr ""
21189
21190 #. type: textblock
21191 #: ../fish/guestfish.pod:459
21192 msgid "any other commands"
21193 msgstr ""
21194
21195 #. type: textblock
21196 #: ../fish/guestfish.pod:463
21197 msgid ""
21198 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
21199 "guest before mounting or performing any other commands."
21200 msgstr ""
21201
21202 #. type: textblock
21203 #: ../fish/guestfish.pod:466
21204 msgid ""
21205 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
21206 "I<--new> options were given then C<run> is done automatically, simply "
21207 "because guestfish can't perform the action you asked for without doing this."
21208 msgstr ""
21209
21210 #. type: =head1
21211 #: ../fish/guestfish.pod:471
21212 msgid "OPENING DISKS FOR READ AND WRITE"
21213 msgstr ""
21214
21215 #. type: textblock
21216 #: ../fish/guestfish.pod:473
21217 msgid ""
21218 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
21219 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
21220 "I<-i> and I<-m> open disk images read-only or for writing."
21221 msgstr ""
21222
21223 #. type: textblock
21224 #: ../fish/guestfish.pod:478
21225 msgid ""
21226 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
21227 "opening disk images supplied on the command line for write.  To open a disk "
21228 "image read-only you have to do I<-a image --ro>."
21229 msgstr ""
21230
21231 #. type: textblock
21232 #: ../fish/guestfish.pod:482
21233 msgid ""
21234 "This matters: If you accidentally open a live VM disk image writable then "
21235 "you will cause irreversible disk corruption."
21236 msgstr ""
21237
21238 #. type: textblock
21239 #: ../fish/guestfish.pod:485
21240 msgid ""
21241 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
21242 "images will be opened read-only.  You will have to either specify "
21243 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
21244 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
21245 "access for disk images specified by those other command line options."
21246 msgstr ""
21247
21248 #. type: textblock
21249 #: ../fish/guestfish.pod:492
21250 msgid ""
21251 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
21252 "which does nothing (it is already the default).  However it is highly "
21253 "recommended that you use this option to indicate that you need write access, "
21254 "and prepare your scripts for the day when this option will be required for "
21255 "write access."
21256 msgstr ""
21257
21258 #. type: textblock
21259 #: ../fish/guestfish.pod:498
21260 msgid ""
21261 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
21262 "other libguestfs program apart from guestfish and guestmount."
21263 msgstr ""
21264
21265 #. type: =head1
21266 #: ../fish/guestfish.pod:501
21267 msgid "QUOTING"
21268 msgstr ""
21269
21270 #. type: textblock
21271 #: ../fish/guestfish.pod:503
21272 msgid ""
21273 "You can quote ordinary parameters using either single or double quotes.  For "
21274 "example:"
21275 msgstr ""
21276
21277 #. type: verbatim
21278 #: ../fish/guestfish.pod:506
21279 #, no-wrap
21280 msgid ""
21281 " add \"file with a space.img\"\n"
21282 "\n"
21283 msgstr ""
21284
21285 #. type: verbatim
21286 #: ../fish/guestfish.pod:508
21287 #, no-wrap
21288 msgid ""
21289 " rm '/file name'\n"
21290 "\n"
21291 msgstr ""
21292
21293 #. type: verbatim
21294 #: ../fish/guestfish.pod:510
21295 #, no-wrap
21296 msgid ""
21297 " rm '/\"'\n"
21298 "\n"
21299 msgstr ""
21300
21301 #. type: textblock
21302 #: ../fish/guestfish.pod:512
21303 msgid ""
21304 "A few commands require a list of strings to be passed.  For these, use a "
21305 "whitespace-separated list, enclosed in quotes.  Strings containing "
21306 "whitespace to be passed through must be enclosed in single quotes.  A "
21307 "literal single quote must be escaped with a backslash."
21308 msgstr ""
21309
21310 #. type: verbatim
21311 #: ../fish/guestfish.pod:517
21312 #, no-wrap
21313 msgid ""
21314 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
21315 " command \"/bin/echo 'foo      bar'\"\n"
21316 " command \"/bin/echo \\'foo\\'\"\n"
21317 "\n"
21318 msgstr ""
21319
21320 #. type: =head2
21321 #: ../fish/guestfish.pod:521
21322 msgid "ESCAPE SEQUENCES IN DOUBLE QUOTED ARGUMENTS"
21323 msgstr ""
21324
21325 #. type: textblock
21326 #: ../fish/guestfish.pod:523
21327 msgid ""
21328 "In double-quoted arguments (only) use backslash to insert special characters:"
21329 msgstr ""
21330
21331 #. type: =item
21332 #: ../fish/guestfish.pod:528
21333 msgid "C<\\a>"
21334 msgstr ""
21335
21336 #. type: textblock
21337 #: ../fish/guestfish.pod:530
21338 msgid "Alert (bell) character."
21339 msgstr ""
21340
21341 #. type: =item
21342 #: ../fish/guestfish.pod:532
21343 msgid "C<\\b>"
21344 msgstr ""
21345
21346 #. type: textblock
21347 #: ../fish/guestfish.pod:534
21348 msgid "Backspace character."
21349 msgstr ""
21350
21351 #. type: =item
21352 #: ../fish/guestfish.pod:536
21353 msgid "C<\\f>"
21354 msgstr ""
21355
21356 #. type: textblock
21357 #: ../fish/guestfish.pod:538
21358 msgid "Form feed character."
21359 msgstr ""
21360
21361 #. type: =item
21362 #: ../fish/guestfish.pod:540
21363 msgid "C<\\n>"
21364 msgstr ""
21365
21366 #. type: textblock
21367 #: ../fish/guestfish.pod:542
21368 msgid "Newline character."
21369 msgstr ""
21370
21371 #. type: =item
21372 #: ../fish/guestfish.pod:544
21373 msgid "C<\\r>"
21374 msgstr ""
21375
21376 #. type: textblock
21377 #: ../fish/guestfish.pod:546
21378 msgid "Carriage return character."
21379 msgstr ""
21380
21381 #. type: =item
21382 #: ../fish/guestfish.pod:548
21383 msgid "C<\\t>"
21384 msgstr ""
21385
21386 #. type: textblock
21387 #: ../fish/guestfish.pod:550
21388 msgid "Horizontal tab character."
21389 msgstr ""
21390
21391 #. type: =item
21392 #: ../fish/guestfish.pod:552
21393 msgid "C<\\v>"
21394 msgstr ""
21395
21396 #. type: textblock
21397 #: ../fish/guestfish.pod:554
21398 msgid "Vertical tab character."
21399 msgstr ""
21400
21401 #. type: =item
21402 #: ../fish/guestfish.pod:556
21403 msgid "C<\\\">"
21404 msgstr ""
21405
21406 #. type: textblock
21407 #: ../fish/guestfish.pod:558
21408 msgid "A literal double quote character."
21409 msgstr ""
21410
21411 #. type: =item
21412 #: ../fish/guestfish.pod:560
21413 msgid "C<\\ooo>"
21414 msgstr ""
21415
21416 #. type: textblock
21417 #: ../fish/guestfish.pod:562
21418 msgid ""
21419 "A character with octal value I<ooo>.  There must be precisely 3 octal digits "
21420 "(unlike C)."
21421 msgstr ""
21422
21423 #. type: =item
21424 #: ../fish/guestfish.pod:565
21425 msgid "C<\\xhh>"
21426 msgstr ""
21427
21428 #. type: textblock
21429 #: ../fish/guestfish.pod:567
21430 msgid ""
21431 "A character with hex value I<hh>.  There must be precisely 2 hex digits."
21432 msgstr ""
21433
21434 #. type: textblock
21435 #: ../fish/guestfish.pod:570
21436 msgid ""
21437 "In the current implementation C<\\000> and C<\\x00> cannot be used in "
21438 "strings."
21439 msgstr ""
21440
21441 #. type: =item
21442 #: ../fish/guestfish.pod:573
21443 msgid "C<\\\\>"
21444 msgstr ""
21445
21446 #. type: textblock
21447 #: ../fish/guestfish.pod:575
21448 msgid "A literal backslash character."
21449 msgstr ""
21450
21451 #. type: =head1
21452 #: ../fish/guestfish.pod:579
21453 msgid "OPTIONAL ARGUMENTS"
21454 msgstr ""
21455
21456 #. type: textblock
21457 #: ../fish/guestfish.pod:581
21458 msgid ""
21459 "Some commands take optional arguments.  These arguments appear in this "
21460 "documentation as C<[argname:..]>.  You can use them as in these examples:"
21461 msgstr ""
21462
21463 #. type: verbatim
21464 #: ../fish/guestfish.pod:585
21465 #, no-wrap
21466 msgid ""
21467 " add-drive-opts filename\n"
21468 "\n"
21469 msgstr ""
21470
21471 #. type: verbatim
21472 #: ../fish/guestfish.pod:587
21473 #, no-wrap
21474 msgid ""
21475 " add-drive-opts filename readonly:true\n"
21476 "\n"
21477 msgstr ""
21478
21479 #. type: verbatim
21480 #: ../fish/guestfish.pod:589
21481 #, no-wrap
21482 msgid ""
21483 " add-drive-opts filename format:qcow2 readonly:false\n"
21484 "\n"
21485 msgstr ""
21486
21487 #. type: textblock
21488 #: ../fish/guestfish.pod:591
21489 msgid ""
21490 "Each optional argument can appear at most once.  All optional arguments must "
21491 "appear after the required ones."
21492 msgstr ""
21493
21494 #. type: =head1
21495 #: ../fish/guestfish.pod:594
21496 msgid "NUMBERS"
21497 msgstr ""
21498
21499 #. type: textblock
21500 #: ../fish/guestfish.pod:596
21501 msgid ""
21502 "This section applies to all commands which can take integers as parameters."
21503 msgstr ""
21504
21505 #. type: =head2
21506 #: ../fish/guestfish.pod:599
21507 msgid "SIZE SUFFIX"
21508 msgstr ""
21509
21510 #. type: textblock
21511 #: ../fish/guestfish.pod:601
21512 msgid ""
21513 "When the command takes a parameter measured in bytes, you can use one of the "
21514 "following suffixes to specify kilobytes, megabytes and larger sizes:"
21515 msgstr ""
21516
21517 #. type: =item
21518 #: ../fish/guestfish.pod:607
21519 msgid "B<k> or B<K> or B<KiB>"
21520 msgstr ""
21521
21522 #. type: textblock
21523 #: ../fish/guestfish.pod:609
21524 msgid "The size in kilobytes (multiplied by 1024)."
21525 msgstr ""
21526
21527 #. type: =item
21528 #: ../fish/guestfish.pod:611
21529 msgid "B<KB>"
21530 msgstr ""
21531
21532 #. type: textblock
21533 #: ../fish/guestfish.pod:613
21534 msgid "The size in SI 1000 byte units."
21535 msgstr ""
21536
21537 #. type: =item
21538 #: ../fish/guestfish.pod:615
21539 msgid "B<M> or B<MiB>"
21540 msgstr ""
21541
21542 #. type: textblock
21543 #: ../fish/guestfish.pod:617
21544 msgid "The size in megabytes (multiplied by 1048576)."
21545 msgstr ""
21546
21547 #. type: =item
21548 #: ../fish/guestfish.pod:619
21549 msgid "B<MB>"
21550 msgstr ""
21551
21552 #. type: textblock
21553 #: ../fish/guestfish.pod:621
21554 msgid "The size in SI 1000000 byte units."
21555 msgstr ""
21556
21557 #. type: =item
21558 #: ../fish/guestfish.pod:623
21559 msgid "B<G> or B<GiB>"
21560 msgstr ""
21561
21562 #. type: textblock
21563 #: ../fish/guestfish.pod:625
21564 msgid "The size in gigabytes (multiplied by 2**30)."
21565 msgstr ""
21566
21567 #. type: =item
21568 #: ../fish/guestfish.pod:627
21569 msgid "B<GB>"
21570 msgstr ""
21571
21572 #. type: textblock
21573 #: ../fish/guestfish.pod:629
21574 msgid "The size in SI 10**9 byte units."
21575 msgstr ""
21576
21577 #. type: =item
21578 #: ../fish/guestfish.pod:631
21579 msgid "B<T> or B<TiB>"
21580 msgstr ""
21581
21582 #. type: textblock
21583 #: ../fish/guestfish.pod:633
21584 msgid "The size in terabytes (multiplied by 2**40)."
21585 msgstr ""
21586
21587 #. type: =item
21588 #: ../fish/guestfish.pod:635
21589 msgid "B<TB>"
21590 msgstr ""
21591
21592 #. type: textblock
21593 #: ../fish/guestfish.pod:637
21594 msgid "The size in SI 10**12 byte units."
21595 msgstr ""
21596
21597 #. type: =item
21598 #: ../fish/guestfish.pod:639
21599 msgid "B<P> or B<PiB>"
21600 msgstr ""
21601
21602 #. type: textblock
21603 #: ../fish/guestfish.pod:641
21604 msgid "The size in petabytes (multiplied by 2**50)."
21605 msgstr ""
21606
21607 #. type: =item
21608 #: ../fish/guestfish.pod:643
21609 msgid "B<PB>"
21610 msgstr ""
21611
21612 #. type: textblock
21613 #: ../fish/guestfish.pod:645
21614 msgid "The size in SI 10**15 byte units."
21615 msgstr ""
21616
21617 #. type: =item
21618 #: ../fish/guestfish.pod:647
21619 msgid "B<E> or B<EiB>"
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:649
21624 msgid "The size in exabytes (multiplied by 2**60)."
21625 msgstr ""
21626
21627 #. type: =item
21628 #: ../fish/guestfish.pod:651
21629 msgid "B<EB>"
21630 msgstr ""
21631
21632 #. type: textblock
21633 #: ../fish/guestfish.pod:653
21634 msgid "The size in SI 10**18 byte units."
21635 msgstr ""
21636
21637 #. type: =item
21638 #: ../fish/guestfish.pod:655
21639 msgid "B<Z> or B<ZiB>"
21640 msgstr ""
21641
21642 #. type: textblock
21643 #: ../fish/guestfish.pod:657
21644 msgid "The size in zettabytes (multiplied by 2**70)."
21645 msgstr ""
21646
21647 #. type: =item
21648 #: ../fish/guestfish.pod:659
21649 msgid "B<ZB>"
21650 msgstr ""
21651
21652 #. type: textblock
21653 #: ../fish/guestfish.pod:661
21654 msgid "The size in SI 10**21 byte units."
21655 msgstr ""
21656
21657 #. type: =item
21658 #: ../fish/guestfish.pod:663
21659 msgid "B<Y> or B<YiB>"
21660 msgstr ""
21661
21662 #. type: textblock
21663 #: ../fish/guestfish.pod:665
21664 msgid "The size in yottabytes (multiplied by 2**80)."
21665 msgstr ""
21666
21667 #. type: =item
21668 #: ../fish/guestfish.pod:667
21669 msgid "B<YB>"
21670 msgstr ""
21671
21672 #. type: textblock
21673 #: ../fish/guestfish.pod:669
21674 msgid "The size in SI 10**24 byte units."
21675 msgstr ""
21676
21677 #. type: verbatim
21678 #: ../fish/guestfish.pod:675
21679 #, no-wrap
21680 msgid ""
21681 " truncate-size /file 1G\n"
21682 "\n"
21683 msgstr ""
21684
21685 #. type: textblock
21686 #: ../fish/guestfish.pod:677
21687 msgid "would truncate the file to 1 gigabyte."
21688 msgstr ""
21689
21690 #. type: textblock
21691 #: ../fish/guestfish.pod:679
21692 msgid ""
21693 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21694 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21695 "suffix will probably not do what you expect."
21696 msgstr ""
21697
21698 #. type: =head2
21699 #: ../fish/guestfish.pod:683
21700 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21701 msgstr ""
21702
21703 #. type: textblock
21704 #: ../fish/guestfish.pod:685
21705 msgid ""
21706 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21707 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21708 msgstr ""
21709
21710 #. type: verbatim
21711 #: ../fish/guestfish.pod:688
21712 #, no-wrap
21713 msgid ""
21714 " 1234      decimal number 1234\n"
21715 " 02322     octal number, equivalent to decimal 1234\n"
21716 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21717 "\n"
21718 msgstr ""
21719
21720 #. type: textblock
21721 #: ../fish/guestfish.pod:692
21722 msgid ""
21723 "When using the C<chmod> command, you almost always want to specify an octal "
21724 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21725 "L<chmod(1)> program):"
21726 msgstr ""
21727
21728 #. type: verbatim
21729 #: ../fish/guestfish.pod:696
21730 #, no-wrap
21731 msgid ""
21732 " chmod 0777 /public  # OK\n"
21733 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21734 "\n"
21735 msgstr ""
21736
21737 #. type: textblock
21738 #: ../fish/guestfish.pod:699
21739 msgid ""
21740 "Commands that return numbers usually print them in decimal, but some "
21741 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21742 "octal, preceeded by C<0>)."
21743 msgstr ""
21744
21745 #. type: =head1
21746 #: ../fish/guestfish.pod:703
21747 msgid "WILDCARDS AND GLOBBING"
21748 msgstr ""
21749
21750 #. type: textblock
21751 #: ../fish/guestfish.pod:705
21752 msgid ""
21753 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
21754 "(globbing) by default.  So for example the following will not do what you "
21755 "expect:"
21756 msgstr ""
21757
21758 #. type: verbatim
21759 #: ../fish/guestfish.pod:709
21760 #, no-wrap
21761 msgid ""
21762 " rm-rf /home/*\n"
21763 "\n"
21764 msgstr ""
21765
21766 #. type: textblock
21767 #: ../fish/guestfish.pod:711
21768 msgid ""
21769 "Assuming you don't have a directory called literally C</home/*> then the "
21770 "above command will return an error."
21771 msgstr ""
21772
21773 #. type: textblock
21774 #: ../fish/guestfish.pod:714
21775 msgid "To perform wildcard expansion, use the C<glob> command."
21776 msgstr ""
21777
21778 #. type: verbatim
21779 #: ../fish/guestfish.pod:716
21780 #, no-wrap
21781 msgid ""
21782 " glob rm-rf /home/*\n"
21783 "\n"
21784 msgstr ""
21785
21786 #. type: textblock
21787 #: ../fish/guestfish.pod:718
21788 msgid ""
21789 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
21790 "many times), equivalent to:"
21791 msgstr ""
21792
21793 #. type: verbatim
21794 #: ../fish/guestfish.pod:721
21795 #, no-wrap
21796 msgid ""
21797 " rm-rf /home/jim\n"
21798 " rm-rf /home/joe\n"
21799 " rm-rf /home/mary\n"
21800 "\n"
21801 msgstr ""
21802
21803 #. type: textblock
21804 #: ../fish/guestfish.pod:725
21805 msgid "C<glob> only works on simple guest paths and not on device names."
21806 msgstr ""
21807
21808 #. type: textblock
21809 #: ../fish/guestfish.pod:727
21810 msgid ""
21811 "If you have several parameters, each containing a wildcard, then glob will "
21812 "perform a Cartesian product."
21813 msgstr ""
21814
21815 #. type: =head1
21816 #: ../fish/guestfish.pod:730
21817 msgid "COMMENTS"
21818 msgstr ""
21819
21820 #. type: textblock
21821 #: ../fish/guestfish.pod:732
21822 msgid ""
21823 "Any line which starts with a I<#> character is treated as a comment and "
21824 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21825 "a command.  For example:"
21826 msgstr ""
21827
21828 #. type: verbatim
21829 #: ../fish/guestfish.pod:736
21830 #, no-wrap
21831 msgid ""
21832 " # this is a comment\n"
21833 "         # this is a comment\n"
21834 " foo # NOT a comment\n"
21835 "\n"
21836 msgstr ""
21837
21838 #. type: textblock
21839 #: ../fish/guestfish.pod:740
21840 msgid "Blank lines are also ignored."
21841 msgstr ""
21842
21843 #. type: =head1
21844 #: ../fish/guestfish.pod:742
21845 msgid "RUNNING COMMANDS LOCALLY"
21846 msgstr ""
21847
21848 #. type: textblock
21849 #: ../fish/guestfish.pod:744
21850 msgid ""
21851 "Any line which starts with a I<!> character is treated as a command sent to "
21852 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21853 msgstr ""
21854
21855 #. type: verbatim
21856 #: ../fish/guestfish.pod:748
21857 #, no-wrap
21858 msgid ""
21859 " !mkdir local\n"
21860 " tgz-out /remote local/remote-data.tar.gz\n"
21861 "\n"
21862 msgstr ""
21863
21864 #. type: textblock
21865 #: ../fish/guestfish.pod:751
21866 msgid ""
21867 "will create a directory C<local> on the host, and then export the contents "
21868 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21869 "(See C<tgz-out>)."
21870 msgstr ""
21871
21872 #. type: textblock
21873 #: ../fish/guestfish.pod:755
21874 msgid ""
21875 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21876 "effect, due to the way that subprocesses work in Unix."
21877 msgstr ""
21878
21879 #. type: =head2
21880 #: ../fish/guestfish.pod:758
21881 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21882 msgstr ""
21883
21884 #. type: textblock
21885 #: ../fish/guestfish.pod:760
21886 msgid ""
21887 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21888 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21889 "and executed as guestfish commands."
21890 msgstr ""
21891
21892 #. type: textblock
21893 #: ../fish/guestfish.pod:764
21894 msgid ""
21895 "Thus you can use shell script to construct arbitrary guestfish commands "
21896 "which are then parsed by guestfish."
21897 msgstr ""
21898
21899 #. type: textblock
21900 #: ../fish/guestfish.pod:767
21901 msgid ""
21902 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21903 "through C</foo.100>) using guestfish commands alone.  However this is simple "
21904 "if we use a shell script to create the guestfish commands for us:"
21905 msgstr ""
21906
21907 #. type: verbatim
21908 #: ../fish/guestfish.pod:772
21909 #, no-wrap
21910 msgid ""
21911 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21912 "\n"
21913 msgstr ""
21914
21915 #. type: textblock
21916 #: ../fish/guestfish.pod:774
21917 msgid "or with names like C</foo.001>:"
21918 msgstr ""
21919
21920 #. type: verbatim
21921 #: ../fish/guestfish.pod:776
21922 #, no-wrap
21923 msgid ""
21924 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21925 "\n"
21926 msgstr ""
21927
21928 #. type: textblock
21929 #: ../fish/guestfish.pod:778
21930 msgid ""
21931 "When using guestfish interactively it can be helpful to just run the shell "
21932 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21933 "ordinary I<!> local command), see what guestfish commands it would run, and "
21934 "when you are happy with those prepend the C<E<lt>> character to run the "
21935 "guestfish commands for real."
21936 msgstr ""
21937
21938 #. type: =head1
21939 #: ../fish/guestfish.pod:784
21940 msgid "PIPES"
21941 msgstr ""
21942
21943 #. type: textblock
21944 #: ../fish/guestfish.pod:786
21945 msgid ""
21946 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21947 "command (a guestfish command) to the second command (any host command).  For "
21948 "example:"
21949 msgstr ""
21950
21951 #. type: verbatim
21952 #: ../fish/guestfish.pod:790
21953 #, no-wrap
21954 msgid ""
21955 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21956 "\n"
21957 msgstr ""
21958
21959 #. type: textblock
21960 #: ../fish/guestfish.pod:792
21961 msgid ""
21962 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21963 "program).  The above command would list all accounts in the guest filesystem "
21964 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21965 msgstr ""
21966
21967 #. type: verbatim
21968 #: ../fish/guestfish.pod:797
21969 #, no-wrap
21970 msgid ""
21971 " hexdump /bin/ls | head\n"
21972 " list-devices | tail -1\n"
21973 " tgz-out / - | tar ztf -\n"
21974 "\n"
21975 msgstr ""
21976
21977 #. type: textblock
21978 #: ../fish/guestfish.pod:801
21979 msgid ""
21980 "The space before the pipe symbol is required, any space after the pipe "
21981 "symbol is optional.  Everything after the pipe symbol is just passed "
21982 "straight to the host shell, so it can contain redirections, globs and "
21983 "anything else that makes sense on the host side."
21984 msgstr ""
21985
21986 #. type: textblock
21987 #: ../fish/guestfish.pod:806
21988 msgid ""
21989 "To use a literal argument which begins with a pipe symbol, you have to quote "
21990 "it, eg:"
21991 msgstr ""
21992
21993 #. type: verbatim
21994 #: ../fish/guestfish.pod:809
21995 #, no-wrap
21996 msgid ""
21997 " echo \"|\"\n"
21998 "\n"
21999 msgstr ""
22000
22001 #. type: =head1
22002 #: ../fish/guestfish.pod:811
22003 msgid "HOME DIRECTORIES"
22004 msgstr ""
22005
22006 #. type: textblock
22007 #: ../fish/guestfish.pod:813
22008 msgid ""
22009 "If a parameter starts with the character C<~> then the tilde may be expanded "
22010 "as a home directory path (either C<~> for the current user's home directory, "
22011 "or C<~user> for another user)."
22012 msgstr ""
22013
22014 #. type: textblock
22015 #: ../fish/guestfish.pod:817
22016 msgid ""
22017 "Note that home directory expansion happens for users known I<on the host>, "
22018 "not in the guest filesystem."
22019 msgstr ""
22020
22021 #. type: textblock
22022 #: ../fish/guestfish.pod:820
22023 msgid ""
22024 "To use a literal argument which begins with a tilde, you have to quote it, "
22025 "eg:"
22026 msgstr ""
22027
22028 #. type: verbatim
22029 #: ../fish/guestfish.pod:823
22030 #, no-wrap
22031 msgid ""
22032 " echo \"~\"\n"
22033 "\n"
22034 msgstr ""
22035
22036 #. type: textblock
22037 #: ../fish/guestfish.pod:827
22038 msgid ""
22039 "Libguestfs has some support for Linux guests encrypted according to the "
22040 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
22041 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
22042 "LUKS is supported."
22043 msgstr ""
22044
22045 #. type: textblock
22046 #: ../fish/guestfish.pod:832
22047 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
22048 msgstr ""
22049
22050 #. type: verbatim
22051 #: ../fish/guestfish.pod:834
22052 #, no-wrap
22053 msgid ""
22054 " ><fs> vfs-type /dev/sda2\n"
22055 " crypto_LUKS\n"
22056 "\n"
22057 msgstr ""
22058
22059 #. type: textblock
22060 #: ../fish/guestfish.pod:837
22061 msgid ""
22062 "Then open those devices using L</luks-open>.  This creates a device-mapper "
22063 "device called C</dev/mapper/luksdev>."
22064 msgstr ""
22065
22066 #. type: verbatim
22067 #: ../fish/guestfish.pod:840
22068 #, no-wrap
22069 msgid ""
22070 " ><fs> luks-open /dev/sda2 luksdev\n"
22071 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
22072 "\n"
22073 msgstr ""
22074
22075 #. type: textblock
22076 #: ../fish/guestfish.pod:843
22077 msgid ""
22078 "Finally you have to tell LVM to scan for volume groups on the newly created "
22079 "mapper device:"
22080 msgstr ""
22081
22082 #. type: verbatim
22083 #: ../fish/guestfish.pod:846
22084 #, no-wrap
22085 msgid ""
22086 " vgscan\n"
22087 " vg-activate-all true\n"
22088 "\n"
22089 msgstr ""
22090
22091 #. type: textblock
22092 #: ../fish/guestfish.pod:849
22093 msgid "The logical volume(s) can now be mounted in the usual way."
22094 msgstr ""
22095
22096 #. type: textblock
22097 #: ../fish/guestfish.pod:851
22098 msgid ""
22099 "Before closing a LUKS device you must unmount any logical volumes on it and "
22100 "deactivate the volume groups by calling C<vg-activate false VG> on each "
22101 "one.  Then you can close the mapper device:"
22102 msgstr ""
22103
22104 #. type: verbatim
22105 #: ../fish/guestfish.pod:855
22106 #, no-wrap
22107 msgid ""
22108 " vg-activate false /dev/VG\n"
22109 " luks-close /dev/mapper/luksdev\n"
22110 "\n"
22111 msgstr ""
22112
22113 #. type: =head1
22114 #: ../fish/guestfish.pod:858
22115 msgid "WINDOWS PATHS"
22116 msgstr ""
22117
22118 #. type: textblock
22119 #: ../fish/guestfish.pod:860
22120 msgid ""
22121 "If a path is prefixed with C<win:> then you can use Windows-style drive "
22122 "letters and paths (with some limitations).  The following commands are "
22123 "equivalent:"
22124 msgstr ""
22125
22126 #. type: verbatim
22127 #: ../fish/guestfish.pod:864
22128 #, no-wrap
22129 msgid ""
22130 " file /WINDOWS/system32/config/system.LOG\n"
22131 "\n"
22132 msgstr ""
22133
22134 #. type: verbatim
22135 #: ../fish/guestfish.pod:866
22136 #, no-wrap
22137 msgid ""
22138 " file win:\\windows\\system32\\config\\system.log\n"
22139 "\n"
22140 msgstr ""
22141
22142 #. type: verbatim
22143 #: ../fish/guestfish.pod:868
22144 #, no-wrap
22145 msgid ""
22146 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
22147 "\n"
22148 msgstr ""
22149
22150 #. type: textblock
22151 #: ../fish/guestfish.pod:870
22152 msgid ""
22153 "The parameter is rewritten \"behind the scenes\" by looking up the position "
22154 "where the drive is mounted, prepending that to the path, changing all "
22155 "backslash characters to forward slash, then resolving the result using L</"
22156 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
22157 "the parameter might be rewritten like this:"
22158 msgstr ""
22159
22160 #. type: verbatim
22161 #: ../fish/guestfish.pod:876
22162 #, no-wrap
22163 msgid ""
22164 " win:e:\\foo\\bar => /e/FOO/bar\n"
22165 "\n"
22166 msgstr ""
22167
22168 #. type: textblock
22169 #: ../fish/guestfish.pod:878
22170 msgid "This only works in argument positions that expect a path."
22171 msgstr ""
22172
22173 #. type: =head1
22174 #: ../fish/guestfish.pod:880
22175 msgid "UPLOADING AND DOWNLOADING FILES"
22176 msgstr ""
22177
22178 #. type: textblock
22179 #: ../fish/guestfish.pod:882
22180 msgid ""
22181 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
22182 "others which upload from or download to a local file, you can use the "
22183 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
22184 msgstr ""
22185
22186 #. type: verbatim
22187 #: ../fish/guestfish.pod:886
22188 #, no-wrap
22189 msgid ""
22190 " upload - /foo\n"
22191 "\n"
22192 msgstr ""
22193
22194 #. type: textblock
22195 #: ../fish/guestfish.pod:888
22196 msgid ""
22197 "reads stdin and creates from that a file C</foo> in the disk image, and:"
22198 msgstr ""
22199
22200 #. type: verbatim
22201 #: ../fish/guestfish.pod:891
22202 #, no-wrap
22203 msgid ""
22204 " tar-out /etc - | tar tf -\n"
22205 "\n"
22206 msgstr ""
22207
22208 #. type: textblock
22209 #: ../fish/guestfish.pod:893
22210 msgid ""
22211 "writes the tarball to stdout and then pipes that into the external \"tar\" "
22212 "command (see L</PIPES>)."
22213 msgstr ""
22214
22215 #. type: textblock
22216 #: ../fish/guestfish.pod:896
22217 msgid ""
22218 "When using C<-> to read from stdin, the input is read up to the end of "
22219 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
22220 "some arbitrary end marker:"
22221 msgstr ""
22222
22223 #. type: verbatim
22224 #: ../fish/guestfish.pod:900
22225 #, no-wrap
22226 msgid ""
22227 " upload -<<END /foo\n"
22228 " input line 1\n"
22229 " input line 2\n"
22230 " input line 3\n"
22231 " END\n"
22232 "\n"
22233 msgstr ""
22234
22235 #. type: textblock
22236 #: ../fish/guestfish.pod:906
22237 msgid ""
22238 "Any string of characters can be used instead of C<END>.  The end marker must "
22239 "appear on a line of its own, without any preceeding or following characters "
22240 "(not even spaces)."
22241 msgstr ""
22242
22243 #. type: textblock
22244 #: ../fish/guestfish.pod:910
22245 msgid ""
22246 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
22247 "upload local files (so-called \"FileIn\" parameters in the generator)."
22248 msgstr ""
22249
22250 #. type: =head1
22251 #: ../fish/guestfish.pod:913
22252 msgid "EXIT ON ERROR BEHAVIOUR"
22253 msgstr ""
22254
22255 #. type: textblock
22256 #: ../fish/guestfish.pod:915
22257 msgid ""
22258 "By default, guestfish will ignore any errors when in interactive mode (ie. "
22259 "taking commands from a human over a tty), and will exit on the first error "
22260 "in non-interactive mode (scripts, commands given on the command line)."
22261 msgstr ""
22262
22263 #. type: textblock
22264 #: ../fish/guestfish.pod:920
22265 msgid ""
22266 "If you prefix a command with a I<-> character, then that command will not "
22267 "cause guestfish to exit, even if that (one) command returns an error."
22268 msgstr ""
22269
22270 #. type: =head1
22271 #: ../fish/guestfish.pod:924
22272 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
22273 msgstr ""
22274
22275 #. type: textblock
22276 #: ../fish/guestfish.pod:926
22277 msgid ""
22278 "Guestfish can be remote-controlled over a socket.  This is useful "
22279 "particularly in shell scripts where you want to make several different "
22280 "changes to a filesystem, but you don't want the overhead of starting up a "
22281 "guestfish process each time."
22282 msgstr ""
22283
22284 #. type: textblock
22285 #: ../fish/guestfish.pod:931
22286 msgid "Start a guestfish server process using:"
22287 msgstr ""
22288
22289 #. type: verbatim
22290 #: ../fish/guestfish.pod:933
22291 #, no-wrap
22292 msgid ""
22293 " eval \"`guestfish --listen`\"\n"
22294 "\n"
22295 msgstr ""
22296
22297 #. type: textblock
22298 #: ../fish/guestfish.pod:935
22299 msgid "and then send it commands by doing:"
22300 msgstr ""
22301
22302 #. type: verbatim
22303 #: ../fish/guestfish.pod:937
22304 #, no-wrap
22305 msgid ""
22306 " guestfish --remote cmd [...]\n"
22307 "\n"
22308 msgstr ""
22309
22310 #. type: textblock
22311 #: ../fish/guestfish.pod:939
22312 msgid "To cause the server to exit, send it the exit command:"
22313 msgstr ""
22314
22315 #. type: verbatim
22316 #: ../fish/guestfish.pod:941
22317 #, no-wrap
22318 msgid ""
22319 " guestfish --remote exit\n"
22320 "\n"
22321 msgstr ""
22322
22323 #. type: textblock
22324 #: ../fish/guestfish.pod:943
22325 msgid ""
22326 "Note that the server will normally exit if there is an error in a command.  "
22327 "You can change this in the usual way.  See section L</EXIT ON ERROR "
22328 "BEHAVIOUR>."
22329 msgstr ""
22330
22331 #. type: =head2
22332 #: ../fish/guestfish.pod:947
22333 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
22334 msgstr ""
22335
22336 #. type: textblock
22337 #: ../fish/guestfish.pod:949
22338 msgid ""
22339 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
22340 "is how the I<--remote> option knows where to send the commands.  You can "
22341 "have several guestfish listener processes running using:"
22342 msgstr ""
22343
22344 #. type: verbatim
22345 #: ../fish/guestfish.pod:953
22346 #, no-wrap
22347 msgid ""
22348 " eval \"`guestfish --listen`\"\n"
22349 " pid1=$GUESTFISH_PID\n"
22350 " eval \"`guestfish --listen`\"\n"
22351 " pid2=$GUESTFISH_PID\n"
22352 " ...\n"
22353 " guestfish --remote=$pid1 cmd\n"
22354 " guestfish --remote=$pid2 cmd\n"
22355 "\n"
22356 msgstr ""
22357
22358 #. type: =head2
22359 #: ../fish/guestfish.pod:961
22360 msgid "REMOTE CONTROL AND CSH"
22361 msgstr ""
22362
22363 #. type: textblock
22364 #: ../fish/guestfish.pod:963
22365 msgid ""
22366 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
22367 "option:"
22368 msgstr ""
22369
22370 #. type: verbatim
22371 #: ../fish/guestfish.pod:966
22372 #, no-wrap
22373 msgid ""
22374 " eval \"`guestfish --listen --csh`\"\n"
22375 "\n"
22376 msgstr ""
22377
22378 #. type: =head2
22379 #: ../fish/guestfish.pod:968
22380 msgid "REMOTE CONTROL DETAILS"
22381 msgstr ""
22382
22383 #. type: textblock
22384 #: ../fish/guestfish.pod:970
22385 msgid ""
22386 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
22387 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
22388 "and C<$PID> is the process ID of the server."
22389 msgstr ""
22390
22391 #. type: textblock
22392 #: ../fish/guestfish.pod:974
22393 msgid "Guestfish client and server versions must match exactly."
22394 msgstr ""
22395
22396 #. type: =head1
22397 #: ../fish/guestfish.pod:976
22398 msgid "PREPARED DISK IMAGES"
22399 msgstr ""
22400
22401 #. type: textblock
22402 #: ../fish/guestfish.pod:978
22403 msgid ""
22404 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
22405 "preformatted disk images that guestfish can make for you to save typing.  "
22406 "This is particularly useful for testing purposes.  This option is used "
22407 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
22408 "can be mixed with I<-a>)."
22409 msgstr ""
22410
22411 #. type: textblock
22412 #: ../fish/guestfish.pod:984
22413 msgid ""
22414 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
22415 "the second and so on.  Existing files in the current directory are "
22416 "I<overwritten>."
22417 msgstr ""
22418
22419 #. type: textblock
22420 #: ../fish/guestfish.pod:988
22421 msgid ""
22422 "The type briefly describes how the disk should be sized, partitioned, how "
22423 "filesystem(s) should be created, and how content should be added.  "
22424 "Optionally the type can be followed by extra parameters, separated by C<:> "
22425 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
22426 "allocated disk, containing a single partition, with the partition formatted "
22427 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
22428 "disk instead."
22429 msgstr ""
22430
22431 #. type: textblock
22432 #: ../fish/guestfish.pod:996
22433 msgid "To list the available types and any extra parameters they take, run:"
22434 msgstr ""
22435
22436 #. type: textblock
22437 #: ../fish/guestfish.pod:1000
22438 msgid ""
22439 "Note that the prepared filesystem is not mounted.  You would usually have to "
22440 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
22441 msgstr ""
22442
22443 #. type: textblock
22444 #: ../fish/guestfish.pod:1004
22445 msgid ""
22446 "If any I<-N> or I<--new> options are given, the guest is automatically "
22447 "launched."
22448 msgstr ""
22449
22450 #. type: textblock
22451 #: ../fish/guestfish.pod:1009
22452 msgid "Create a 100MB disk with an ext4-formatted partition:"
22453 msgstr ""
22454
22455 #. type: verbatim
22456 #: ../fish/guestfish.pod:1011
22457 #, no-wrap
22458 msgid ""
22459 " guestfish -N fs:ext4\n"
22460 "\n"
22461 msgstr ""
22462
22463 #. type: textblock
22464 #: ../fish/guestfish.pod:1013
22465 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
22466 msgstr ""
22467
22468 #. type: verbatim
22469 #: ../fish/guestfish.pod:1015
22470 #, no-wrap
22471 msgid ""
22472 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
22473 "\n"
22474 msgstr ""
22475
22476 #. type: textblock
22477 #: ../fish/guestfish.pod:1017
22478 msgid "Create a blank 200MB disk:"
22479 msgstr ""
22480
22481 #. type: verbatim
22482 #: ../fish/guestfish.pod:1019
22483 #, no-wrap
22484 msgid ""
22485 " guestfish -N disk:200M\n"
22486 "\n"
22487 msgstr ""
22488
22489 #. type: =head1
22490 #: ../fish/guestfish.pod:1021
22491 msgid "PROGRESS BARS"
22492 msgstr ""
22493
22494 #. type: textblock
22495 #: ../fish/guestfish.pod:1023
22496 msgid ""
22497 "Some (not all) long-running commands send progress notification messages as "
22498 "they are running.  Guestfish turns these messages into progress bars."
22499 msgstr ""
22500
22501 #. type: textblock
22502 #: ../fish/guestfish.pod:1027
22503 msgid ""
22504 "When a command that supports progress bars takes longer than two seconds to "
22505 "run, and if progress bars are enabled, then you will see one appearing below "
22506 "the command:"
22507 msgstr ""
22508
22509 #. type: verbatim
22510 #: ../fish/guestfish.pod:1031
22511 #, no-wrap
22512 msgid ""
22513 " ><fs> copy-size /large-file /another-file 2048M\n"
22514 " / 10% [#####-----------------------------------------] 00:30\n"
22515 "\n"
22516 msgstr ""
22517
22518 #. type: textblock
22519 #: ../fish/guestfish.pod:1034
22520 msgid ""
22521 "The spinner on the left hand side moves round once for every progress "
22522 "notification received from the backend.  This is a (reasonably) golden "
22523 "assurance that the command is \"doing something\" even if the progress bar "
22524 "is not moving, because the command is able to send the progress "
22525 "notifications.  When the bar reaches 100% and the command finishes, the "
22526 "spinner disappears."
22527 msgstr ""
22528
22529 #. type: textblock
22530 #: ../fish/guestfish.pod:1041
22531 msgid ""
22532 "Progress bars are enabled by default when guestfish is used interactively.  "
22533 "You can enable them even for non-interactive modes using I<--progress-bars>, "
22534 "and you can disable them completely using I<--no-progress-bars>."
22535 msgstr ""
22536
22537 #. type: =head1
22538 #: ../fish/guestfish.pod:1046
22539 msgid "GUESTFISH COMMANDS"
22540 msgstr ""
22541
22542 #. type: textblock
22543 #: ../fish/guestfish.pod:1048
22544 msgid ""
22545 "The commands in this section are guestfish convenience commands, in other "
22546 "words, they are not part of the L<guestfs(3)> API."
22547 msgstr ""
22548
22549 #. type: =head2
22550 #: ../fish/guestfish.pod:1051
22551 msgid "help"
22552 msgstr ""
22553
22554 #. type: verbatim
22555 #: ../fish/guestfish.pod:1053
22556 #, no-wrap
22557 msgid ""
22558 " help\n"
22559 " help cmd\n"
22560 "\n"
22561 msgstr ""
22562
22563 #. type: textblock
22564 #: ../fish/guestfish.pod:1056
22565 msgid "Without any parameter, this provides general help."
22566 msgstr ""
22567
22568 #. type: textblock
22569 #: ../fish/guestfish.pod:1058
22570 msgid "With a C<cmd> parameter, this displays detailed help for that command."
22571 msgstr ""
22572
22573 #. type: =head2
22574 #: ../fish/guestfish.pod:1060
22575 msgid "quit | exit"
22576 msgstr ""
22577
22578 #. type: textblock
22579 #: ../fish/guestfish.pod:1062
22580 msgid "This exits guestfish.  You can also use C<^D> key."
22581 msgstr ""
22582
22583 #. type: textblock
22584 #: ../fish/guestfish.pod:1064
22585 msgid "@FISH_COMMANDS@"
22586 msgstr ""
22587
22588 #. type: =head1
22589 #: ../fish/guestfish.pod:1066
22590 msgid "COMMANDS"
22591 msgstr ""
22592
22593 #. type: =head1
22594 #: ../fish/guestfish.pod:1070 ../test-tool/libguestfs-test-tool.pod:77
22595 msgid "EXIT CODE"
22596 msgstr ""
22597
22598 #. type: textblock
22599 #: ../fish/guestfish.pod:1072
22600 msgid ""
22601 "guestfish returns 0 if the commands completed without error, or 1 if there "
22602 "was an error."
22603 msgstr ""
22604
22605 #. type: =item
22606 #: ../fish/guestfish.pod:1079
22607 msgid "EDITOR"
22608 msgstr ""
22609
22610 #. type: textblock
22611 #: ../fish/guestfish.pod:1081
22612 msgid ""
22613 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
22614 "C<vi>."
22615 msgstr ""
22616
22617 #. type: =item
22618 #: ../fish/guestfish.pod:1084
22619 msgid "GUESTFISH_DISPLAY_IMAGE"
22620 msgstr ""
22621
22622 #. type: textblock
22623 #: ../fish/guestfish.pod:1086
22624 msgid ""
22625 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
22626 "If not set, it uses L<display(1)>."
22627 msgstr ""
22628
22629 #. type: =item
22630 #: ../fish/guestfish.pod:1089
22631 msgid "GUESTFISH_PID"
22632 msgstr ""
22633
22634 #. type: textblock
22635 #: ../fish/guestfish.pod:1091
22636 msgid ""
22637 "Used with the I<--remote> option to specify the remote guestfish process to "
22638 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22639 msgstr ""
22640
22641 #. type: =item
22642 #: ../fish/guestfish.pod:1095
22643 msgid "HEXEDITOR"
22644 msgstr ""
22645
22646 #. type: textblock
22647 #: ../fish/guestfish.pod:1097
22648 msgid ""
22649 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22650 "not specified, the external L<hexedit(1)> program is used."
22651 msgstr ""
22652
22653 #. type: =item
22654 #: ../fish/guestfish.pod:1101
22655 msgid "HOME"
22656 msgstr ""
22657
22658 #. type: textblock
22659 #: ../fish/guestfish.pod:1103
22660 msgid ""
22661 "If compiled with GNU readline support, various files in the home directory "
22662 "can be used.  See L</FILES>."
22663 msgstr ""
22664
22665 #. type: textblock
22666 #: ../fish/guestfish.pod:1112
22667 msgid ""
22668 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22669 "effect as using the B<-v> option."
22670 msgstr ""
22671
22672 #. type: textblock
22673 #: ../fish/guestfish.pod:1124
22674 msgid ""
22675 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22676 "the discussion of paths in L<guestfs(3)>."
22677 msgstr ""
22678
22679 #. type: textblock
22680 #: ../fish/guestfish.pod:1135
22681 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22682 msgstr ""
22683
22684 #. type: =item
22685 #: ../fish/guestfish.pod:1137
22686 msgid "PAGER"
22687 msgstr ""
22688
22689 #. type: textblock
22690 #: ../fish/guestfish.pod:1139
22691 msgid ""
22692 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22693 "C<more>."
22694 msgstr ""
22695
22696 #. type: =head1
22697 #: ../fish/guestfish.pod:1155 ../fuse/guestmount.pod:264
22698 msgid "FILES"
22699 msgstr ""
22700
22701 #. type: =item
22702 #: ../fish/guestfish.pod:1159 ../fuse/guestmount.pod:268
22703 msgid "$HOME/.libguestfs-tools.rc"
22704 msgstr ""
22705
22706 #. type: =item
22707 #: ../fish/guestfish.pod:1161 ../fuse/guestmount.pod:270
22708 msgid "/etc/libguestfs-tools.conf"
22709 msgstr ""
22710
22711 #. type: textblock
22712 #: ../fish/guestfish.pod:1163 ../fuse/guestmount.pod:272
22713 msgid ""
22714 "This configuration file controls the default read-only or read-write mode "
22715 "(I<--ro> or I<--rw>)."
22716 msgstr ""
22717
22718 #. type: textblock
22719 #: ../fish/guestfish.pod:1166
22720 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22721 msgstr ""
22722
22723 #. type: =item
22724 #: ../fish/guestfish.pod:1168
22725 msgid "$HOME/.guestfish"
22726 msgstr ""
22727
22728 #. type: textblock
22729 #: ../fish/guestfish.pod:1170
22730 msgid ""
22731 "If compiled with GNU readline support, then the command history is saved in "
22732 "this file."
22733 msgstr ""
22734
22735 #. type: =item
22736 #: ../fish/guestfish.pod:1173
22737 msgid "$HOME/.inputrc"
22738 msgstr ""
22739
22740 #. type: =item
22741 #: ../fish/guestfish.pod:1175
22742 msgid "/etc/inputrc"
22743 msgstr ""
22744
22745 #. type: textblock
22746 #: ../fish/guestfish.pod:1177
22747 msgid ""
22748 "If compiled with GNU readline support, then these files can be used to "
22749 "configure readline.  For further information, please see L<readline(3)/"
22750 "INITIALIZATION FILE>."
22751 msgstr ""
22752
22753 #. type: textblock
22754 #: ../fish/guestfish.pod:1181
22755 msgid "To write rules which only apply to guestfish, use:"
22756 msgstr ""
22757
22758 #. type: verbatim
22759 #: ../fish/guestfish.pod:1183
22760 #, no-wrap
22761 msgid ""
22762 " $if guestfish\n"
22763 " ...\n"
22764 " $endif\n"
22765 "\n"
22766 msgstr ""
22767
22768 #. type: textblock
22769 #: ../fish/guestfish.pod:1187
22770 msgid ""
22771 "Variables that you can set in inputrc that change the behaviour of guestfish "
22772 "in useful ways include:"
22773 msgstr ""
22774
22775 #. type: =item
22776 #: ../fish/guestfish.pod:1192
22777 msgid "completion-ignore-case (default: on)"
22778 msgstr ""
22779
22780 #. type: textblock
22781 #: ../fish/guestfish.pod:1194
22782 msgid ""
22783 "By default, guestfish will ignore case when tab-completing paths on the "
22784 "disk.  Use:"
22785 msgstr ""
22786
22787 #. type: verbatim
22788 #: ../fish/guestfish.pod:1197
22789 #, no-wrap
22790 msgid ""
22791 " set completion-ignore-case off\n"
22792 "\n"
22793 msgstr ""
22794
22795 #. type: textblock
22796 #: ../fish/guestfish.pod:1199
22797 msgid "to make guestfish case sensitive."
22798 msgstr ""
22799
22800 #. type: =item
22801 #: ../fish/guestfish.pod:1203
22802 msgid "test1.img"
22803 msgstr ""
22804
22805 #. type: =item
22806 #: ../fish/guestfish.pod:1205
22807 msgid "test2.img (etc)"
22808 msgstr ""
22809
22810 #. type: textblock
22811 #: ../fish/guestfish.pod:1207
22812 msgid ""
22813 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22814 "will be created in the file C<test1.img> in the current directory.  The "
22815 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
22816 "the same name will be overwritten."
22817 msgstr ""
22818
22819 #. type: textblock
22820 #: ../fish/guestfish.pod:1216
22821 msgid ""
22822 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
22823 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
22824 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
22825 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
22826 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
22827 ">, L<display(1)>, L<hexedit(1)>."
22828 msgstr ""
22829
22830 #. type: textblock
22831 #: ../fish/guestfish.pod:1247 ../test-tool/libguestfs-test-tool.pod:102
22832 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22833 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22834 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22835 msgid ""
22836 "This program is free software; you can redistribute it and/or modify it "
22837 "under the terms of the GNU General Public License as published by the Free "
22838 "Software Foundation; either version 2 of the License, or (at your option) "
22839 "any later version."
22840 msgstr ""
22841
22842 #. type: textblock
22843 #: ../fish/guestfish.pod:1252 ../test-tool/libguestfs-test-tool.pod:107
22844 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22845 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22846 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22847 msgid ""
22848 "This program is distributed in the hope that it will be useful, but WITHOUT "
22849 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22850 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22851 "more details."
22852 msgstr ""
22853
22854 #. type: textblock
22855 #: ../fish/guestfish.pod:1257 ../test-tool/libguestfs-test-tool.pod:112
22856 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22857 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22858 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22859 msgid ""
22860 "You should have received a copy of the GNU General Public License along with "
22861 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
22862 "Ave, Cambridge, MA 02139, USA."
22863 msgstr ""
22864
22865 #. type: =head2
22866 #: ../fish/guestfish-actions.pod:1
22867 msgid "add-cdrom"
22868 msgstr ""
22869
22870 #. type: verbatim
22871 #: ../fish/guestfish-actions.pod:3
22872 #, no-wrap
22873 msgid ""
22874 " add-cdrom filename\n"
22875 "\n"
22876 msgstr ""
22877
22878 #. type: textblock
22879 #: ../fish/guestfish-actions.pod:15
22880 msgid ""
22881 "This call checks for the existence of C<filename>.  This stops you from "
22882 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22883 "and C<http:> URLs.  To specify those, use the general L</config> call "
22884 "instead."
22885 msgstr ""
22886
22887 #. type: textblock
22888 #: ../fish/guestfish-actions.pod:22
22889 msgid ""
22890 "If you just want to add an ISO file (often you use this as an efficient way "
22891 "to transfer large files into the guest), then you should probably use L</add-"
22892 "drive-ro> instead."
22893 msgstr ""
22894
22895 #. type: =head2
22896 #: ../fish/guestfish-actions.pod:35
22897 msgid "add-domain"
22898 msgstr ""
22899
22900 #. type: =head2
22901 #: ../fish/guestfish-actions.pod:37
22902 msgid "domain"
22903 msgstr ""
22904
22905 #. type: verbatim
22906 #: ../fish/guestfish-actions.pod:39
22907 #, no-wrap
22908 msgid ""
22909 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22910 "\n"
22911 msgstr ""
22912
22913 #. type: textblock
22914 #: ../fish/guestfish-actions.pod:41
22915 msgid ""
22916 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
22917 "It works by connecting to libvirt, requesting the domain and domain XML from "
22918 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
22919 msgstr ""
22920
22921 #. type: textblock
22922 #: ../fish/guestfish-actions.pod:76
22923 msgid ""
22924 "The other optional parameters are passed directly through to L</add-drive-"
22925 "opts>."
22926 msgstr ""
22927
22928 #. type: textblock
22929 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22930 #: ../fish/guestfish-actions.pod:568 ../fish/guestfish-actions.pod:1968
22931 #: ../fish/guestfish-actions.pod:3134 ../fish/guestfish-actions.pod:3307
22932 #: ../fish/guestfish-actions.pod:3442
22933 msgid ""
22934 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
22935 msgstr ""
22936
22937 #. type: =head2
22938 #: ../fish/guestfish-actions.pod:81
22939 msgid "add-drive"
22940 msgstr ""
22941
22942 #. type: verbatim
22943 #: ../fish/guestfish-actions.pod:83
22944 #, no-wrap
22945 msgid ""
22946 " add-drive filename\n"
22947 "\n"
22948 msgstr ""
22949
22950 #. type: textblock
22951 #: ../fish/guestfish-actions.pod:85
22952 msgid ""
22953 "This function is the equivalent of calling L</add-drive-opts> with no "
22954 "optional parameters, so the disk is added writable, with the format being "
22955 "detected automatically."
22956 msgstr ""
22957
22958 #. type: textblock
22959 #: ../fish/guestfish-actions.pod:89
22960 msgid ""
22961 "Automatic detection of the format opens you up to a potential security hole "
22962 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22963 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22964 "you should think about replacing calls to this function with calls to L</add-"
22965 "drive-opts>, and specifying the format."
22966 msgstr ""
22967
22968 #. type: =head2
22969 #: ../fish/guestfish-actions.pod:96
22970 msgid "add-drive-opts"
22971 msgstr ""
22972
22973 #. type: =head2
22974 #: ../fish/guestfish-actions.pod:98
22975 msgid "add"
22976 msgstr ""
22977
22978 #. type: verbatim
22979 #: ../fish/guestfish-actions.pod:100
22980 #, no-wrap
22981 msgid ""
22982 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22983 "\n"
22984 msgstr ""
22985
22986 #. type: textblock
22987 #: ../fish/guestfish-actions.pod:127
22988 msgid ""
22989 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22990 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22991 "include C<raw> and C<qcow2>."
22992 msgstr ""
22993
22994 #. type: textblock
22995 #: ../fish/guestfish-actions.pod:138
22996 msgid ""
22997 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22998 "add-drive-with-if> call (q.v.)"
22999 msgstr ""
23000
23001 #. type: =head2
23002 #: ../fish/guestfish-actions.pod:145
23003 msgid "add-drive-ro"
23004 msgstr ""
23005
23006 #. type: =head2
23007 #: ../fish/guestfish-actions.pod:147
23008 msgid "add-ro"
23009 msgstr ""
23010
23011 #. type: verbatim
23012 #: ../fish/guestfish-actions.pod:149
23013 #, no-wrap
23014 msgid ""
23015 " add-drive-ro filename\n"
23016 "\n"
23017 msgstr ""
23018
23019 #. type: textblock
23020 #: ../fish/guestfish-actions.pod:151
23021 msgid ""
23022 "This function is the equivalent of calling L</add-drive-opts> with the "
23023 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
23024 "is added read-only, with the format being detected automatically."
23025 msgstr ""
23026
23027 #. type: =head2
23028 #: ../fish/guestfish-actions.pod:156
23029 msgid "add-drive-ro-with-if"
23030 msgstr ""
23031
23032 #. type: verbatim
23033 #: ../fish/guestfish-actions.pod:158
23034 #, no-wrap
23035 msgid ""
23036 " add-drive-ro-with-if filename iface\n"
23037 "\n"
23038 msgstr ""
23039
23040 #. type: textblock
23041 #: ../fish/guestfish-actions.pod:160
23042 msgid ""
23043 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
23044 "interface emulation to use at run time."
23045 msgstr ""
23046
23047 #. type: =head2
23048 #: ../fish/guestfish-actions.pod:170
23049 msgid "add-drive-with-if"
23050 msgstr ""
23051
23052 #. type: verbatim
23053 #: ../fish/guestfish-actions.pod:172
23054 #, no-wrap
23055 msgid ""
23056 " add-drive-with-if filename iface\n"
23057 "\n"
23058 msgstr ""
23059
23060 #. type: textblock
23061 #: ../fish/guestfish-actions.pod:174
23062 msgid ""
23063 "This is the same as L</add-drive> but it allows you to specify the QEMU "
23064 "interface emulation to use at run time."
23065 msgstr ""
23066
23067 #. type: =head2
23068 #: ../fish/guestfish-actions.pod:184
23069 msgid "aug-clear"
23070 msgstr ""
23071
23072 #. type: verbatim
23073 #: ../fish/guestfish-actions.pod:186
23074 #, no-wrap
23075 msgid ""
23076 " aug-clear augpath\n"
23077 "\n"
23078 msgstr ""
23079
23080 #. type: =head2
23081 #: ../fish/guestfish-actions.pod:191
23082 msgid "aug-close"
23083 msgstr ""
23084
23085 #. type: verbatim
23086 #: ../fish/guestfish-actions.pod:193
23087 #, no-wrap
23088 msgid ""
23089 " aug-close\n"
23090 "\n"
23091 msgstr ""
23092
23093 #. type: textblock
23094 #: ../fish/guestfish-actions.pod:195
23095 msgid ""
23096 "Close the current Augeas handle and free up any resources used by it.  After "
23097 "calling this, you have to call L</aug-init> again before you can use any "
23098 "other Augeas functions."
23099 msgstr ""
23100
23101 #. type: =head2
23102 #: ../fish/guestfish-actions.pod:200
23103 msgid "aug-defnode"
23104 msgstr ""
23105
23106 #. type: verbatim
23107 #: ../fish/guestfish-actions.pod:202
23108 #, no-wrap
23109 msgid ""
23110 " aug-defnode name expr val\n"
23111 "\n"
23112 msgstr ""
23113
23114 #. type: textblock
23115 #: ../fish/guestfish-actions.pod:207
23116 msgid ""
23117 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
23118 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
23119 "containing that single node."
23120 msgstr ""
23121
23122 #. type: =head2
23123 #: ../fish/guestfish-actions.pod:215
23124 msgid "aug-defvar"
23125 msgstr ""
23126
23127 #. type: verbatim
23128 #: ../fish/guestfish-actions.pod:217
23129 #, no-wrap
23130 msgid ""
23131 " aug-defvar name expr\n"
23132 "\n"
23133 msgstr ""
23134
23135 #. type: =head2
23136 #: ../fish/guestfish-actions.pod:226
23137 msgid "aug-get"
23138 msgstr ""
23139
23140 #. type: verbatim
23141 #: ../fish/guestfish-actions.pod:228
23142 #, no-wrap
23143 msgid ""
23144 " aug-get augpath\n"
23145 "\n"
23146 msgstr ""
23147
23148 #. type: =head2
23149 #: ../fish/guestfish-actions.pod:233
23150 msgid "aug-init"
23151 msgstr ""
23152
23153 #. type: verbatim
23154 #: ../fish/guestfish-actions.pod:235
23155 #, no-wrap
23156 msgid ""
23157 " aug-init root flags\n"
23158 "\n"
23159 msgstr ""
23160
23161 #. type: textblock
23162 #: ../fish/guestfish-actions.pod:241
23163 msgid "You must call this before using any other L</aug-*> commands."
23164 msgstr ""
23165
23166 #. type: textblock
23167 #: ../fish/guestfish-actions.pod:276
23168 msgid "Do not load the tree in L</aug-init>."
23169 msgstr ""
23170
23171 #. type: textblock
23172 #: ../fish/guestfish-actions.pod:280
23173 msgid "To close the handle, you can call L</aug-close>."
23174 msgstr ""
23175
23176 #. type: =head2
23177 #: ../fish/guestfish-actions.pod:284
23178 msgid "aug-insert"
23179 msgstr ""
23180
23181 #. type: verbatim
23182 #: ../fish/guestfish-actions.pod:286
23183 #, no-wrap
23184 msgid ""
23185 " aug-insert augpath label true|false\n"
23186 "\n"
23187 msgstr ""
23188
23189 #. type: =head2
23190 #: ../fish/guestfish-actions.pod:296
23191 msgid "aug-load"
23192 msgstr ""
23193
23194 #. type: verbatim
23195 #: ../fish/guestfish-actions.pod:298
23196 #, no-wrap
23197 msgid ""
23198 " aug-load\n"
23199 "\n"
23200 msgstr ""
23201
23202 #. type: =head2
23203 #: ../fish/guestfish-actions.pod:305
23204 msgid "aug-ls"
23205 msgstr ""
23206
23207 #. type: verbatim
23208 #: ../fish/guestfish-actions.pod:307
23209 #, no-wrap
23210 msgid ""
23211 " aug-ls augpath\n"
23212 "\n"
23213 msgstr ""
23214
23215 #. type: textblock
23216 #: ../fish/guestfish-actions.pod:309
23217 msgid ""
23218 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
23219 "resulting nodes into alphabetical order."
23220 msgstr ""
23221
23222 #. type: =head2
23223 #: ../fish/guestfish-actions.pod:312
23224 msgid "aug-match"
23225 msgstr ""
23226
23227 #. type: verbatim
23228 #: ../fish/guestfish-actions.pod:314
23229 #, no-wrap
23230 msgid ""
23231 " aug-match augpath\n"
23232 "\n"
23233 msgstr ""
23234
23235 #. type: =head2
23236 #: ../fish/guestfish-actions.pod:320
23237 msgid "aug-mv"
23238 msgstr ""
23239
23240 #. type: verbatim
23241 #: ../fish/guestfish-actions.pod:322
23242 #, no-wrap
23243 msgid ""
23244 " aug-mv src dest\n"
23245 "\n"
23246 msgstr ""
23247
23248 #. type: =head2
23249 #: ../fish/guestfish-actions.pod:327
23250 msgid "aug-rm"
23251 msgstr ""
23252
23253 #. type: verbatim
23254 #: ../fish/guestfish-actions.pod:329
23255 #, no-wrap
23256 msgid ""
23257 " aug-rm augpath\n"
23258 "\n"
23259 msgstr ""
23260
23261 #. type: =head2
23262 #: ../fish/guestfish-actions.pod:335
23263 msgid "aug-save"
23264 msgstr ""
23265
23266 #. type: verbatim
23267 #: ../fish/guestfish-actions.pod:337
23268 #, no-wrap
23269 msgid ""
23270 " aug-save\n"
23271 "\n"
23272 msgstr ""
23273
23274 #. type: textblock
23275 #: ../fish/guestfish-actions.pod:341
23276 msgid ""
23277 "The flags which were passed to L</aug-init> affect exactly how files are "
23278 "saved."
23279 msgstr ""
23280
23281 #. type: =head2
23282 #: ../fish/guestfish-actions.pod:344
23283 msgid "aug-set"
23284 msgstr ""
23285
23286 #. type: verbatim
23287 #: ../fish/guestfish-actions.pod:346
23288 #, no-wrap
23289 msgid ""
23290 " aug-set augpath val\n"
23291 "\n"
23292 msgstr ""
23293
23294 #. type: textblock
23295 #: ../fish/guestfish-actions.pod:350
23296 msgid ""
23297 "In the Augeas API, it is possible to clear a node by setting the value to "
23298 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
23299 "this call.  Instead you must use the L</aug-clear> call."
23300 msgstr ""
23301
23302 #. type: =head2
23303 #: ../fish/guestfish-actions.pod:355
23304 msgid "available"
23305 msgstr ""
23306
23307 #. type: verbatim
23308 #: ../fish/guestfish-actions.pod:357
23309 #, no-wrap
23310 msgid ""
23311 " available 'groups ...'\n"
23312 "\n"
23313 msgstr ""
23314
23315 #. type: textblock
23316 #: ../fish/guestfish-actions.pod:363
23317 msgid ""
23318 "The libguestfs groups, and the functions that those groups correspond to, "
23319 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
23320 "runtime by calling L</available-all-groups>."
23321 msgstr ""
23322
23323 #. type: textblock
23324 #: ../fish/guestfish-actions.pod:387
23325 msgid "You must call L</launch> before calling this function."
23326 msgstr ""
23327
23328 #. type: textblock
23329 #: ../fish/guestfish-actions.pod:409
23330 msgid ""
23331 "This call was added in version C<1.0.80>.  In previous versions of "
23332 "libguestfs all you could do would be to speculatively execute a command to "
23333 "find out if the daemon implemented it.  See also L</version>."
23334 msgstr ""
23335
23336 #. type: =head2
23337 #: ../fish/guestfish-actions.pod:416
23338 msgid "available-all-groups"
23339 msgstr ""
23340
23341 #. type: verbatim
23342 #: ../fish/guestfish-actions.pod:418
23343 #, no-wrap
23344 msgid ""
23345 " available-all-groups\n"
23346 "\n"
23347 msgstr ""
23348
23349 #. type: textblock
23350 #: ../fish/guestfish-actions.pod:420
23351 msgid ""
23352 "This command returns a list of all optional groups that this daemon knows "
23353 "about.  Note this returns both supported and unsupported groups.  To find "
23354 "out which ones the daemon can actually support you have to call L</"
23355 "available> on each member of the returned list."
23356 msgstr ""
23357
23358 #. type: textblock
23359 #: ../fish/guestfish-actions.pod:426
23360 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
23361 msgstr ""
23362
23363 #. type: =head2
23364 #: ../fish/guestfish-actions.pod:428
23365 msgid "base64-in"
23366 msgstr ""
23367
23368 #. type: verbatim
23369 #: ../fish/guestfish-actions.pod:430
23370 #, no-wrap
23371 msgid ""
23372 " base64-in (base64file|-) filename\n"
23373 "\n"
23374 msgstr ""
23375
23376 #. type: textblock
23377 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
23378 #: ../fish/guestfish-actions.pod:693 ../fish/guestfish-actions.pod:862
23379 #: ../fish/guestfish-actions.pod:881 ../fish/guestfish-actions.pod:1255
23380 #: ../fish/guestfish-actions.pod:4652 ../fish/guestfish-actions.pod:4664
23381 #: ../fish/guestfish-actions.pod:4675 ../fish/guestfish-actions.pod:4686
23382 #: ../fish/guestfish-actions.pod:4738 ../fish/guestfish-actions.pod:4747
23383 #: ../fish/guestfish-actions.pod:4801 ../fish/guestfish-actions.pod:4824
23384 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
23385 msgstr ""
23386
23387 #. type: =head2
23388 #: ../fish/guestfish-actions.pod:437
23389 msgid "base64-out"
23390 msgstr ""
23391
23392 #. type: verbatim
23393 #: ../fish/guestfish-actions.pod:439
23394 #, no-wrap
23395 msgid ""
23396 " base64-out filename (base64file|-)\n"
23397 "\n"
23398 msgstr ""
23399
23400 #. type: =head2
23401 #: ../fish/guestfish-actions.pod:446
23402 msgid "blockdev-flushbufs"
23403 msgstr ""
23404
23405 #. type: verbatim
23406 #: ../fish/guestfish-actions.pod:448
23407 #, no-wrap
23408 msgid ""
23409 " blockdev-flushbufs device\n"
23410 "\n"
23411 msgstr ""
23412
23413 #. type: =head2
23414 #: ../fish/guestfish-actions.pod:455
23415 msgid "blockdev-getbsz"
23416 msgstr ""
23417
23418 #. type: verbatim
23419 #: ../fish/guestfish-actions.pod:457
23420 #, no-wrap
23421 msgid ""
23422 " blockdev-getbsz device\n"
23423 "\n"
23424 msgstr ""
23425
23426 #. type: =head2
23427 #: ../fish/guestfish-actions.pod:466
23428 msgid "blockdev-getro"
23429 msgstr ""
23430
23431 #. type: verbatim
23432 #: ../fish/guestfish-actions.pod:468
23433 #, no-wrap
23434 msgid ""
23435 " blockdev-getro device\n"
23436 "\n"
23437 msgstr ""
23438
23439 #. type: =head2
23440 #: ../fish/guestfish-actions.pod:475
23441 msgid "blockdev-getsize64"
23442 msgstr ""
23443
23444 #. type: verbatim
23445 #: ../fish/guestfish-actions.pod:477
23446 #, no-wrap
23447 msgid ""
23448 " blockdev-getsize64 device\n"
23449 "\n"
23450 msgstr ""
23451
23452 #. type: textblock
23453 #: ../fish/guestfish-actions.pod:481
23454 msgid "See also L</blockdev-getsz>."
23455 msgstr ""
23456
23457 #. type: =head2
23458 #: ../fish/guestfish-actions.pod:485
23459 msgid "blockdev-getss"
23460 msgstr ""
23461
23462 #. type: verbatim
23463 #: ../fish/guestfish-actions.pod:487
23464 #, no-wrap
23465 msgid ""
23466 " blockdev-getss device\n"
23467 "\n"
23468 msgstr ""
23469
23470 #. type: textblock
23471 #: ../fish/guestfish-actions.pod:492
23472 msgid ""
23473 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
23474 msgstr ""
23475
23476 #. type: =head2
23477 #: ../fish/guestfish-actions.pod:497
23478 msgid "blockdev-getsz"
23479 msgstr ""
23480
23481 #. type: verbatim
23482 #: ../fish/guestfish-actions.pod:499
23483 #, no-wrap
23484 msgid ""
23485 " blockdev-getsz device\n"
23486 "\n"
23487 msgstr ""
23488
23489 #. type: textblock
23490 #: ../fish/guestfish-actions.pod:504
23491 msgid ""
23492 "See also L</blockdev-getss> for the real sector size of the device, and L</"
23493 "blockdev-getsize64> for the more useful I<size in bytes>."
23494 msgstr ""
23495
23496 #. type: =head2
23497 #: ../fish/guestfish-actions.pod:510
23498 msgid "blockdev-rereadpt"
23499 msgstr ""
23500
23501 #. type: verbatim
23502 #: ../fish/guestfish-actions.pod:512
23503 #, no-wrap
23504 msgid ""
23505 " blockdev-rereadpt device\n"
23506 "\n"
23507 msgstr ""
23508
23509 #. type: =head2
23510 #: ../fish/guestfish-actions.pod:518
23511 msgid "blockdev-setbsz"
23512 msgstr ""
23513
23514 #. type: verbatim
23515 #: ../fish/guestfish-actions.pod:520
23516 #, no-wrap
23517 msgid ""
23518 " blockdev-setbsz device blocksize\n"
23519 "\n"
23520 msgstr ""
23521
23522 #. type: =head2
23523 #: ../fish/guestfish-actions.pod:529
23524 msgid "blockdev-setro"
23525 msgstr ""
23526
23527 #. type: verbatim
23528 #: ../fish/guestfish-actions.pod:531
23529 #, no-wrap
23530 msgid ""
23531 " blockdev-setro device\n"
23532 "\n"
23533 msgstr ""
23534
23535 #. type: =head2
23536 #: ../fish/guestfish-actions.pod:537
23537 msgid "blockdev-setrw"
23538 msgstr ""
23539
23540 #. type: verbatim
23541 #: ../fish/guestfish-actions.pod:539
23542 #, no-wrap
23543 msgid ""
23544 " blockdev-setrw device\n"
23545 "\n"
23546 msgstr ""
23547
23548 #. type: =head2
23549 #: ../fish/guestfish-actions.pod:545
23550 msgid "btrfs-filesystem-resize"
23551 msgstr ""
23552
23553 #. type: verbatim
23554 #: ../fish/guestfish-actions.pod:547
23555 #, no-wrap
23556 msgid ""
23557 " btrfs-filesystem-resize mountpoint [size:..]\n"
23558 "\n"
23559 msgstr ""
23560
23561 #. type: =head2
23562 #: ../fish/guestfish-actions.pod:570
23563 msgid "case-sensitive-path"
23564 msgstr ""
23565
23566 #. type: verbatim
23567 #: ../fish/guestfish-actions.pod:572
23568 #, no-wrap
23569 msgid ""
23570 " case-sensitive-path path\n"
23571 "\n"
23572 msgstr ""
23573
23574 #. type: textblock
23575 #: ../fish/guestfish-actions.pod:596
23576 msgid ""
23577 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
23578 "WINDOWS/system32\"> (the exact return value would depend on details of how "
23579 "the directories were originally created under Windows)."
23580 msgstr ""
23581
23582 #. type: textblock
23583 #: ../fish/guestfish-actions.pod:604
23584 msgid "See also L</realpath>."
23585 msgstr ""
23586
23587 #. type: =head2
23588 #: ../fish/guestfish-actions.pod:606
23589 msgid "cat"
23590 msgstr ""
23591
23592 #. type: verbatim
23593 #: ../fish/guestfish-actions.pod:608
23594 #, no-wrap
23595 msgid ""
23596 " cat path\n"
23597 "\n"
23598 msgstr ""
23599
23600 #. type: textblock
23601 #: ../fish/guestfish-actions.pod:612
23602 msgid ""
23603 "Note that this function cannot correctly handle binary files (specifically, "
23604 "files containing C<\\0> character which is treated as end of string).  For "
23605 "those you need to use the L</read-file> or L</download> functions which have "
23606 "a more complex interface."
23607 msgstr ""
23608
23609 #. type: =head2
23610 #: ../fish/guestfish-actions.pod:620
23611 msgid "checksum"
23612 msgstr ""
23613
23614 #. type: verbatim
23615 #: ../fish/guestfish-actions.pod:622
23616 #, no-wrap
23617 msgid ""
23618 " checksum csumtype path\n"
23619 "\n"
23620 msgstr ""
23621
23622 #. type: textblock
23623 #: ../fish/guestfish-actions.pod:665
23624 msgid "To get the checksum for a device, use L</checksum-device>."
23625 msgstr ""
23626
23627 #. type: textblock
23628 #: ../fish/guestfish-actions.pod:667
23629 msgid "To get the checksums for many files, use L</checksums-out>."
23630 msgstr ""
23631
23632 #. type: =head2
23633 #: ../fish/guestfish-actions.pod:669
23634 msgid "checksum-device"
23635 msgstr ""
23636
23637 #. type: verbatim
23638 #: ../fish/guestfish-actions.pod:671
23639 #, no-wrap
23640 msgid ""
23641 " checksum-device csumtype device\n"
23642 "\n"
23643 msgstr ""
23644
23645 #. type: textblock
23646 #: ../fish/guestfish-actions.pod:673
23647 msgid ""
23648 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
23649 "device named C<device>.  For the types of checksums supported see the L</"
23650 "checksum> command."
23651 msgstr ""
23652
23653 #. type: =head2
23654 #: ../fish/guestfish-actions.pod:677
23655 msgid "checksums-out"
23656 msgstr ""
23657
23658 #. type: verbatim
23659 #: ../fish/guestfish-actions.pod:679
23660 #, no-wrap
23661 msgid ""
23662 " checksums-out csumtype directory (sumsfile|-)\n"
23663 "\n"
23664 msgstr ""
23665
23666 #. type: =head2
23667 #: ../fish/guestfish-actions.pod:695
23668 msgid "chmod"
23669 msgstr ""
23670
23671 #. type: verbatim
23672 #: ../fish/guestfish-actions.pod:697
23673 #, no-wrap
23674 msgid ""
23675 " chmod mode path\n"
23676 "\n"
23677 msgstr ""
23678
23679 #. type: =head2
23680 #: ../fish/guestfish-actions.pod:708
23681 msgid "chown"
23682 msgstr ""
23683
23684 #. type: verbatim
23685 #: ../fish/guestfish-actions.pod:710
23686 #, no-wrap
23687 msgid ""
23688 " chown owner group path\n"
23689 "\n"
23690 msgstr ""
23691
23692 #. type: =head2
23693 #: ../fish/guestfish-actions.pod:718
23694 msgid "command"
23695 msgstr ""
23696
23697 #. type: verbatim
23698 #: ../fish/guestfish-actions.pod:720
23699 #, no-wrap
23700 msgid ""
23701 " command 'arguments ...'\n"
23702 "\n"
23703 msgstr ""
23704
23705 #. type: textblock
23706 #: ../fish/guestfish-actions.pod:727
23707 msgid ""
23708 "The single parameter is an argv-style list of arguments.  The first element "
23709 "is the name of the program to run.  Subsequent elements are parameters.  The "
23710 "list must be non-empty (ie. must contain a program name).  Note that the "
23711 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23712 msgstr ""
23713
23714 #. type: =head2
23715 #: ../fish/guestfish-actions.pod:755
23716 msgid "command-lines"
23717 msgstr ""
23718
23719 #. type: verbatim
23720 #: ../fish/guestfish-actions.pod:757
23721 #, no-wrap
23722 msgid ""
23723 " command-lines 'arguments ...'\n"
23724 "\n"
23725 msgstr ""
23726
23727 #. type: textblock
23728 #: ../fish/guestfish-actions.pod:759
23729 msgid ""
23730 "This is the same as L</command>, but splits the result into a list of lines."
23731 msgstr ""
23732
23733 #. type: textblock
23734 #: ../fish/guestfish-actions.pod:762
23735 msgid "See also: L</sh-lines>"
23736 msgstr ""
23737
23738 #. type: =head2
23739 #: ../fish/guestfish-actions.pod:767
23740 msgid "config"
23741 msgstr ""
23742
23743 #. type: verbatim
23744 #: ../fish/guestfish-actions.pod:769
23745 #, no-wrap
23746 msgid ""
23747 " config qemuparam qemuvalue\n"
23748 "\n"
23749 msgstr ""
23750
23751 #. type: =head2
23752 #: ../fish/guestfish-actions.pod:780
23753 msgid "copy-size"
23754 msgstr ""
23755
23756 #. type: verbatim
23757 #: ../fish/guestfish-actions.pod:782
23758 #, no-wrap
23759 msgid ""
23760 " copy-size src dest size\n"
23761 "\n"
23762 msgstr ""
23763
23764 #. type: =head2
23765 #: ../fish/guestfish-actions.pod:790
23766 msgid "cp"
23767 msgstr ""
23768
23769 #. type: verbatim
23770 #: ../fish/guestfish-actions.pod:792
23771 #, no-wrap
23772 msgid ""
23773 " cp src dest\n"
23774 "\n"
23775 msgstr ""
23776
23777 #. type: =head2
23778 #: ../fish/guestfish-actions.pod:797
23779 msgid "cp-a"
23780 msgstr ""
23781
23782 #. type: verbatim
23783 #: ../fish/guestfish-actions.pod:799
23784 #, no-wrap
23785 msgid ""
23786 " cp-a src dest\n"
23787 "\n"
23788 msgstr ""
23789
23790 #. type: =head2
23791 #: ../fish/guestfish-actions.pod:804
23792 msgid "dd"
23793 msgstr ""
23794
23795 #. type: verbatim
23796 #: ../fish/guestfish-actions.pod:806
23797 #, no-wrap
23798 msgid ""
23799 " dd src dest\n"
23800 "\n"
23801 msgstr ""
23802
23803 #. type: textblock
23804 #: ../fish/guestfish-actions.pod:813
23805 msgid ""
23806 "If the destination is a device, it must be as large or larger than the "
23807 "source file or device, otherwise the copy will fail.  This command cannot do "
23808 "partial copies (see L</copy-size>)."
23809 msgstr ""
23810
23811 #. type: =head2
23812 #: ../fish/guestfish-actions.pod:817
23813 msgid "df"
23814 msgstr ""
23815
23816 #. type: verbatim
23817 #: ../fish/guestfish-actions.pod:819
23818 #, no-wrap
23819 msgid ""
23820 " df\n"
23821 "\n"
23822 msgstr ""
23823
23824 #. type: textblock
23825 #: ../fish/guestfish-actions.pod:823 ../fish/guestfish-actions.pod:834
23826 msgid ""
23827 "This command is mostly useful for interactive sessions.  It is I<not> "
23828 "intended that you try to parse the output string.  Use L</statvfs> from "
23829 "programs."
23830 msgstr ""
23831
23832 #. type: =head2
23833 #: ../fish/guestfish-actions.pod:827
23834 msgid "df-h"
23835 msgstr ""
23836
23837 #. type: verbatim
23838 #: ../fish/guestfish-actions.pod:829
23839 #, no-wrap
23840 msgid ""
23841 " df-h\n"
23842 "\n"
23843 msgstr ""
23844
23845 #. type: =head2
23846 #: ../fish/guestfish-actions.pod:838
23847 msgid "dmesg"
23848 msgstr ""
23849
23850 #. type: verbatim
23851 #: ../fish/guestfish-actions.pod:840
23852 #, no-wrap
23853 msgid ""
23854 " dmesg\n"
23855 "\n"
23856 msgstr ""
23857
23858 #. type: textblock
23859 #: ../fish/guestfish-actions.pod:846
23860 msgid ""
23861 "Another way to get the same information is to enable verbose messages with "
23862 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23863 "before running the program."
23864 msgstr ""
23865
23866 #. type: =head2
23867 #: ../fish/guestfish-actions.pod:851
23868 msgid "download"
23869 msgstr ""
23870
23871 #. type: verbatim
23872 #: ../fish/guestfish-actions.pod:853
23873 #, no-wrap
23874 msgid ""
23875 " download remotefilename (filename|-)\n"
23876 "\n"
23877 msgstr ""
23878
23879 #. type: textblock
23880 #: ../fish/guestfish-actions.pod:860
23881 msgid "See also L</upload>, L</cat>."
23882 msgstr ""
23883
23884 #. type: =head2
23885 #: ../fish/guestfish-actions.pod:864
23886 msgid "download-offset"
23887 msgstr ""
23888
23889 #. type: verbatim
23890 #: ../fish/guestfish-actions.pod:866
23891 #, no-wrap
23892 msgid ""
23893 " download-offset remotefilename (filename|-) offset size\n"
23894 "\n"
23895 msgstr ""
23896
23897 #. type: textblock
23898 #: ../fish/guestfish-actions.pod:874
23899 msgid ""
23900 "Note that there is no limit on the amount of data that can be downloaded "
23901 "with this call, unlike with L</pread>, and this call always reads the full "
23902 "amount unless an error occurs."
23903 msgstr ""
23904
23905 #. type: textblock
23906 #: ../fish/guestfish-actions.pod:879
23907 msgid "See also L</download>, L</pread>."
23908 msgstr ""
23909
23910 #. type: =head2
23911 #: ../fish/guestfish-actions.pod:883
23912 msgid "drop-caches"
23913 msgstr ""
23914
23915 #. type: verbatim
23916 #: ../fish/guestfish-actions.pod:885
23917 #, no-wrap
23918 msgid ""
23919 " drop-caches whattodrop\n"
23920 "\n"
23921 msgstr ""
23922
23923 #. type: =head2
23924 #: ../fish/guestfish-actions.pod:897
23925 msgid "du"
23926 msgstr ""
23927
23928 #. type: verbatim
23929 #: ../fish/guestfish-actions.pod:899
23930 #, no-wrap
23931 msgid ""
23932 " du path\n"
23933 "\n"
23934 msgstr ""
23935
23936 #. type: =head2
23937 #: ../fish/guestfish-actions.pod:911
23938 msgid "e2fsck-f"
23939 msgstr ""
23940
23941 #. type: verbatim
23942 #: ../fish/guestfish-actions.pod:913
23943 #, no-wrap
23944 msgid ""
23945 " e2fsck-f device\n"
23946 "\n"
23947 msgstr ""
23948
23949 #. type: textblock
23950 #: ../fish/guestfish-actions.pod:919
23951 msgid ""
23952 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23953 "should use L</fsck>."
23954 msgstr ""
23955
23956 #. type: =head2
23957 #: ../fish/guestfish-actions.pod:922
23958 msgid "echo-daemon"
23959 msgstr ""
23960
23961 #. type: verbatim
23962 #: ../fish/guestfish-actions.pod:924
23963 #, no-wrap
23964 msgid ""
23965 " echo-daemon 'words ...'\n"
23966 "\n"
23967 msgstr ""
23968
23969 #. type: textblock
23970 #: ../fish/guestfish-actions.pod:931
23971 msgid "See also L</ping-daemon>."
23972 msgstr ""
23973
23974 #. type: =head2
23975 #: ../fish/guestfish-actions.pod:933
23976 msgid "egrep"
23977 msgstr ""
23978
23979 #. type: verbatim
23980 #: ../fish/guestfish-actions.pod:935
23981 #, no-wrap
23982 msgid ""
23983 " egrep regex path\n"
23984 "\n"
23985 msgstr ""
23986
23987 #. type: =head2
23988 #: ../fish/guestfish-actions.pod:943
23989 msgid "egrepi"
23990 msgstr ""
23991
23992 #. type: verbatim
23993 #: ../fish/guestfish-actions.pod:945
23994 #, no-wrap
23995 msgid ""
23996 " egrepi regex path\n"
23997 "\n"
23998 msgstr ""
23999
24000 #. type: =head2
24001 #: ../fish/guestfish-actions.pod:953
24002 msgid "equal"
24003 msgstr ""
24004
24005 #. type: verbatim
24006 #: ../fish/guestfish-actions.pod:955
24007 #, no-wrap
24008 msgid ""
24009 " equal file1 file2\n"
24010 "\n"
24011 msgstr ""
24012
24013 #. type: =head2
24014 #: ../fish/guestfish-actions.pod:962
24015 msgid "exists"
24016 msgstr ""
24017
24018 #. type: verbatim
24019 #: ../fish/guestfish-actions.pod:964
24020 #, no-wrap
24021 msgid ""
24022 " exists path\n"
24023 "\n"
24024 msgstr ""
24025
24026 #. type: textblock
24027 #: ../fish/guestfish-actions.pod:969
24028 msgid "See also L</is-file>, L</is-dir>, L</stat>."
24029 msgstr ""
24030
24031 #. type: =head2
24032 #: ../fish/guestfish-actions.pod:971
24033 msgid "fallocate"
24034 msgstr ""
24035
24036 #. type: verbatim
24037 #: ../fish/guestfish-actions.pod:973
24038 #, no-wrap
24039 msgid ""
24040 " fallocate path len\n"
24041 "\n"
24042 msgstr ""
24043
24044 #. type: =head2
24045 #: ../fish/guestfish-actions.pod:990
24046 msgid "fallocate64"
24047 msgstr ""
24048
24049 #. type: verbatim
24050 #: ../fish/guestfish-actions.pod:992
24051 #, no-wrap
24052 msgid ""
24053 " fallocate64 path len\n"
24054 "\n"
24055 msgstr ""
24056
24057 #. type: textblock
24058 #: ../fish/guestfish-actions.pod:998
24059 msgid ""
24060 "Note that this call allocates disk blocks for the file.  To create a sparse "
24061 "file use L</truncate-size> instead."
24062 msgstr ""
24063
24064 #. type: textblock
24065 #: ../fish/guestfish-actions.pod:1001
24066 msgid ""
24067 "The deprecated call L</fallocate> does the same, but owing to an oversight "
24068 "it only allowed 30 bit lengths to be specified, effectively limiting the "
24069 "maximum size of files created through that call to 1GB."
24070 msgstr ""
24071
24072 #. type: =head2
24073 #: ../fish/guestfish-actions.pod:1010
24074 msgid "fgrep"
24075 msgstr ""
24076
24077 #. type: verbatim
24078 #: ../fish/guestfish-actions.pod:1012
24079 #, no-wrap
24080 msgid ""
24081 " fgrep pattern path\n"
24082 "\n"
24083 msgstr ""
24084
24085 #. type: =head2
24086 #: ../fish/guestfish-actions.pod:1020
24087 msgid "fgrepi"
24088 msgstr ""
24089
24090 #. type: verbatim
24091 #: ../fish/guestfish-actions.pod:1022
24092 #, no-wrap
24093 msgid ""
24094 " fgrepi pattern path\n"
24095 "\n"
24096 msgstr ""
24097
24098 #. type: =head2
24099 #: ../fish/guestfish-actions.pod:1030
24100 msgid "file"
24101 msgstr ""
24102
24103 #. type: verbatim
24104 #: ../fish/guestfish-actions.pod:1032
24105 #, no-wrap
24106 msgid ""
24107 " file path\n"
24108 "\n"
24109 msgstr ""
24110
24111 #. type: textblock
24112 #: ../fish/guestfish-actions.pod:1048
24113 msgid ""
24114 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
24115 "(etc), L</is-zero>."
24116 msgstr ""
24117
24118 #. type: =head2
24119 #: ../fish/guestfish-actions.pod:1051
24120 msgid "file-architecture"
24121 msgstr ""
24122
24123 #. type: verbatim
24124 #: ../fish/guestfish-actions.pod:1053
24125 #, no-wrap
24126 msgid ""
24127 " file-architecture filename\n"
24128 "\n"
24129 msgstr ""
24130
24131 #. type: =head2
24132 #: ../fish/guestfish-actions.pod:1156
24133 msgid "filesize"
24134 msgstr ""
24135
24136 #. type: verbatim
24137 #: ../fish/guestfish-actions.pod:1158
24138 #, no-wrap
24139 msgid ""
24140 " filesize file\n"
24141 "\n"
24142 msgstr ""
24143
24144 #. type: textblock
24145 #: ../fish/guestfish-actions.pod:1162
24146 msgid ""
24147 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
24148 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
24149 msgstr ""
24150
24151 #. type: =head2
24152 #: ../fish/guestfish-actions.pod:1166
24153 msgid "fill"
24154 msgstr ""
24155
24156 #. type: verbatim
24157 #: ../fish/guestfish-actions.pod:1168
24158 #, no-wrap
24159 msgid ""
24160 " fill c len path\n"
24161 "\n"
24162 msgstr ""
24163
24164 #. type: textblock
24165 #: ../fish/guestfish-actions.pod:1174
24166 msgid ""
24167 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
24168 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
24169 "L</fill-pattern>."
24170 msgstr ""
24171
24172 #. type: =head2
24173 #: ../fish/guestfish-actions.pod:1179
24174 msgid "fill-pattern"
24175 msgstr ""
24176
24177 #. type: verbatim
24178 #: ../fish/guestfish-actions.pod:1181
24179 #, no-wrap
24180 msgid ""
24181 " fill-pattern pattern len path\n"
24182 "\n"
24183 msgstr ""
24184
24185 #. type: textblock
24186 #: ../fish/guestfish-actions.pod:1183
24187 msgid ""
24188 "This function is like L</fill> except that it creates a new file of length "
24189 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
24190 "is truncated if necessary to ensure the length of the file is exactly C<len> "
24191 "bytes."
24192 msgstr ""
24193
24194 #. type: =head2
24195 #: ../fish/guestfish-actions.pod:1188
24196 msgid "find"
24197 msgstr ""
24198
24199 #. type: verbatim
24200 #: ../fish/guestfish-actions.pod:1190
24201 #, no-wrap
24202 msgid ""
24203 " find directory\n"
24204 "\n"
24205 msgstr ""
24206
24207 #. type: textblock
24208 #: ../fish/guestfish-actions.pod:1204
24209 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
24210 msgstr ""
24211
24212 #. type: textblock
24213 #: ../fish/guestfish-actions.pod:1217
24214 msgid "See also L</find0>."
24215 msgstr ""
24216
24217 #. type: =head2
24218 #: ../fish/guestfish-actions.pod:1222
24219 msgid "find0"
24220 msgstr ""
24221
24222 #. type: verbatim
24223 #: ../fish/guestfish-actions.pod:1224
24224 #, no-wrap
24225 msgid ""
24226 " find0 directory (files|-)\n"
24227 "\n"
24228 msgstr ""
24229
24230 #. type: textblock
24231 #: ../fish/guestfish-actions.pod:1230
24232 msgid ""
24233 "This command works the same way as L</find> with the following exceptions:"
24234 msgstr ""
24235
24236 #. type: =head2
24237 #: ../fish/guestfish-actions.pod:1257
24238 msgid "findfs-label"
24239 msgstr ""
24240
24241 #. type: verbatim
24242 #: ../fish/guestfish-actions.pod:1259
24243 #, no-wrap
24244 msgid ""
24245 " findfs-label label\n"
24246 "\n"
24247 msgstr ""
24248
24249 #. type: textblock
24250 #: ../fish/guestfish-actions.pod:1265
24251 msgid "To find the label of a filesystem, use L</vfs-label>."
24252 msgstr ""
24253
24254 #. type: =head2
24255 #: ../fish/guestfish-actions.pod:1267
24256 msgid "findfs-uuid"
24257 msgstr ""
24258
24259 #. type: verbatim
24260 #: ../fish/guestfish-actions.pod:1269
24261 #, no-wrap
24262 msgid ""
24263 " findfs-uuid uuid\n"
24264 "\n"
24265 msgstr ""
24266
24267 #. type: textblock
24268 #: ../fish/guestfish-actions.pod:1275
24269 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
24270 msgstr ""
24271
24272 #. type: =head2
24273 #: ../fish/guestfish-actions.pod:1277
24274 msgid "fsck"
24275 msgstr ""
24276
24277 #. type: verbatim
24278 #: ../fish/guestfish-actions.pod:1279
24279 #, no-wrap
24280 msgid ""
24281 " fsck fstype device\n"
24282 "\n"
24283 msgstr ""
24284
24285 #. type: =head2
24286 #: ../fish/guestfish-actions.pod:1309
24287 msgid "get-append"
24288 msgstr ""
24289
24290 #. type: verbatim
24291 #: ../fish/guestfish-actions.pod:1311
24292 #, no-wrap
24293 msgid ""
24294 " get-append\n"
24295 "\n"
24296 msgstr ""
24297
24298 #. type: =head2
24299 #: ../fish/guestfish-actions.pod:1318
24300 msgid "get-attach-method"
24301 msgstr ""
24302
24303 #. type: verbatim
24304 #: ../fish/guestfish-actions.pod:1320
24305 #, no-wrap
24306 msgid ""
24307 " get-attach-method\n"
24308 "\n"
24309 msgstr ""
24310
24311 #. type: textblock
24312 #: ../fish/guestfish-actions.pod:1322
24313 msgid "Return the current attach method.  See L</set-attach-method>."
24314 msgstr ""
24315
24316 #. type: =head2
24317 #: ../fish/guestfish-actions.pod:1324
24318 msgid "get-autosync"
24319 msgstr ""
24320
24321 #. type: verbatim
24322 #: ../fish/guestfish-actions.pod:1326
24323 #, no-wrap
24324 msgid ""
24325 " get-autosync\n"
24326 "\n"
24327 msgstr ""
24328
24329 #. type: =head2
24330 #: ../fish/guestfish-actions.pod:1330
24331 msgid "get-direct"
24332 msgstr ""
24333
24334 #. type: verbatim
24335 #: ../fish/guestfish-actions.pod:1332
24336 #, no-wrap
24337 msgid ""
24338 " get-direct\n"
24339 "\n"
24340 msgstr ""
24341
24342 #. type: =head2
24343 #: ../fish/guestfish-actions.pod:1336
24344 msgid "get-e2label"
24345 msgstr ""
24346
24347 #. type: verbatim
24348 #: ../fish/guestfish-actions.pod:1338
24349 #, no-wrap
24350 msgid ""
24351 " get-e2label device\n"
24352 "\n"
24353 msgstr ""
24354
24355 #. type: =head2
24356 #: ../fish/guestfish-actions.pod:1350
24357 msgid "get-e2uuid"
24358 msgstr ""
24359
24360 #. type: verbatim
24361 #: ../fish/guestfish-actions.pod:1352
24362 #, no-wrap
24363 msgid ""
24364 " get-e2uuid device\n"
24365 "\n"
24366 msgstr ""
24367
24368 #. type: =head2
24369 #: ../fish/guestfish-actions.pod:1364
24370 msgid "get-memsize"
24371 msgstr ""
24372
24373 #. type: verbatim
24374 #: ../fish/guestfish-actions.pod:1366
24375 #, no-wrap
24376 msgid ""
24377 " get-memsize\n"
24378 "\n"
24379 msgstr ""
24380
24381 #. type: textblock
24382 #: ../fish/guestfish-actions.pod:1371
24383 msgid ""
24384 "If L</set-memsize> was not called on this handle, and if "
24385 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
24386 "value for memsize."
24387 msgstr ""
24388
24389 #. type: =head2
24390 #: ../fish/guestfish-actions.pod:1378
24391 msgid "get-network"
24392 msgstr ""
24393
24394 #. type: verbatim
24395 #: ../fish/guestfish-actions.pod:1380
24396 #, no-wrap
24397 msgid ""
24398 " get-network\n"
24399 "\n"
24400 msgstr ""
24401
24402 #. type: =head2
24403 #: ../fish/guestfish-actions.pod:1384
24404 msgid "get-path"
24405 msgstr ""
24406
24407 #. type: verbatim
24408 #: ../fish/guestfish-actions.pod:1386
24409 #, no-wrap
24410 msgid ""
24411 " get-path\n"
24412 "\n"
24413 msgstr ""
24414
24415 #. type: =head2
24416 #: ../fish/guestfish-actions.pod:1393
24417 msgid "get-pgroup"
24418 msgstr ""
24419
24420 #. type: verbatim
24421 #: ../fish/guestfish-actions.pod:1395
24422 #, no-wrap
24423 msgid ""
24424 " get-pgroup\n"
24425 "\n"
24426 msgstr ""
24427
24428 #. type: =head2
24429 #: ../fish/guestfish-actions.pod:1399
24430 msgid "get-pid"
24431 msgstr ""
24432
24433 #. type: =head2
24434 #: ../fish/guestfish-actions.pod:1401
24435 msgid "pid"
24436 msgstr ""
24437
24438 #. type: verbatim
24439 #: ../fish/guestfish-actions.pod:1403
24440 #, no-wrap
24441 msgid ""
24442 " get-pid\n"
24443 "\n"
24444 msgstr ""
24445
24446 #. type: =head2
24447 #: ../fish/guestfish-actions.pod:1410
24448 msgid "get-qemu"
24449 msgstr ""
24450
24451 #. type: verbatim
24452 #: ../fish/guestfish-actions.pod:1412
24453 #, no-wrap
24454 msgid ""
24455 " get-qemu\n"
24456 "\n"
24457 msgstr ""
24458
24459 #. type: =head2
24460 #: ../fish/guestfish-actions.pod:1419
24461 msgid "get-recovery-proc"
24462 msgstr ""
24463
24464 #. type: verbatim
24465 #: ../fish/guestfish-actions.pod:1421
24466 #, no-wrap
24467 msgid ""
24468 " get-recovery-proc\n"
24469 "\n"
24470 msgstr ""
24471
24472 #. type: =head2
24473 #: ../fish/guestfish-actions.pod:1425
24474 msgid "get-selinux"
24475 msgstr ""
24476
24477 #. type: verbatim
24478 #: ../fish/guestfish-actions.pod:1427
24479 #, no-wrap
24480 msgid ""
24481 " get-selinux\n"
24482 "\n"
24483 msgstr ""
24484
24485 #. type: textblock
24486 #: ../fish/guestfish-actions.pod:1429
24487 msgid ""
24488 "This returns the current setting of the selinux flag which is passed to the "
24489 "appliance at boot time.  See L</set-selinux>."
24490 msgstr ""
24491
24492 #. type: =head2
24493 #: ../fish/guestfish-actions.pod:1435
24494 msgid "get-state"
24495 msgstr ""
24496
24497 #. type: verbatim
24498 #: ../fish/guestfish-actions.pod:1437
24499 #, no-wrap
24500 msgid ""
24501 " get-state\n"
24502 "\n"
24503 msgstr ""
24504
24505 #. type: =head2
24506 #: ../fish/guestfish-actions.pod:1444
24507 msgid "get-trace"
24508 msgstr ""
24509
24510 #. type: verbatim
24511 #: ../fish/guestfish-actions.pod:1446
24512 #, no-wrap
24513 msgid ""
24514 " get-trace\n"
24515 "\n"
24516 msgstr ""
24517
24518 #. type: =head2
24519 #: ../fish/guestfish-actions.pod:1450
24520 msgid "get-umask"
24521 msgstr ""
24522
24523 #. type: verbatim
24524 #: ../fish/guestfish-actions.pod:1452
24525 #, no-wrap
24526 msgid ""
24527 " get-umask\n"
24528 "\n"
24529 msgstr ""
24530
24531 #. type: textblock
24532 #: ../fish/guestfish-actions.pod:1454
24533 msgid ""
24534 "Return the current umask.  By default the umask is C<022> unless it has been "
24535 "set by calling L</umask>."
24536 msgstr ""
24537
24538 #. type: =head2
24539 #: ../fish/guestfish-actions.pod:1457
24540 msgid "get-verbose"
24541 msgstr ""
24542
24543 #. type: verbatim
24544 #: ../fish/guestfish-actions.pod:1459
24545 #, no-wrap
24546 msgid ""
24547 " get-verbose\n"
24548 "\n"
24549 msgstr ""
24550
24551 #. type: =head2
24552 #: ../fish/guestfish-actions.pod:1463
24553 msgid "getcon"
24554 msgstr ""
24555
24556 #. type: verbatim
24557 #: ../fish/guestfish-actions.pod:1465
24558 #, no-wrap
24559 msgid ""
24560 " getcon\n"
24561 "\n"
24562 msgstr ""
24563
24564 #. type: textblock
24565 #: ../fish/guestfish-actions.pod:1469
24566 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
24567 msgstr ""
24568
24569 #. type: =head2
24570 #: ../fish/guestfish-actions.pod:1472
24571 msgid "getxattr"
24572 msgstr ""
24573
24574 #. type: verbatim
24575 #: ../fish/guestfish-actions.pod:1474
24576 #, no-wrap
24577 msgid ""
24578 " getxattr path name\n"
24579 "\n"
24580 msgstr ""
24581
24582 #. type: textblock
24583 #: ../fish/guestfish-actions.pod:1476
24584 msgid ""
24585 "Get a single extended attribute from file C<path> named C<name>.  This call "
24586 "follows symlinks.  If you want to lookup an extended attribute for the "
24587 "symlink itself, use L</lgetxattr>."
24588 msgstr ""
24589
24590 #. type: textblock
24591 #: ../fish/guestfish-actions.pod:1480 ../fish/guestfish-actions.pod:2507
24592 msgid ""
24593 "Normally it is better to get all extended attributes from a file in one go "
24594 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
24595 "buggy and do not provide a way to list out attributes.  For these "
24596 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
24597 "attributes you want in advance and call this function."
24598 msgstr ""
24599
24600 #. type: textblock
24601 #: ../fish/guestfish-actions.pod:1490
24602 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
24603 msgstr ""
24604
24605 #. type: =head2
24606 #: ../fish/guestfish-actions.pod:1492
24607 msgid "getxattrs"
24608 msgstr ""
24609
24610 #. type: verbatim
24611 #: ../fish/guestfish-actions.pod:1494
24612 #, no-wrap
24613 msgid ""
24614 " getxattrs path\n"
24615 "\n"
24616 msgstr ""
24617
24618 #. type: textblock
24619 #: ../fish/guestfish-actions.pod:1502
24620 msgid "See also: L</lgetxattrs>, L<attr(5)>."
24621 msgstr ""
24622
24623 #. type: =head2
24624 #: ../fish/guestfish-actions.pod:1504
24625 msgid "glob-expand"
24626 msgstr ""
24627
24628 #. type: verbatim
24629 #: ../fish/guestfish-actions.pod:1506
24630 #, no-wrap
24631 msgid ""
24632 " glob-expand pattern\n"
24633 "\n"
24634 msgstr ""
24635
24636 #. type: =head2
24637 #: ../fish/guestfish-actions.pod:1519
24638 msgid "grep"
24639 msgstr ""
24640
24641 #. type: verbatim
24642 #: ../fish/guestfish-actions.pod:1521
24643 #, no-wrap
24644 msgid ""
24645 " grep regex path\n"
24646 "\n"
24647 msgstr ""
24648
24649 #. type: =head2
24650 #: ../fish/guestfish-actions.pod:1529
24651 msgid "grepi"
24652 msgstr ""
24653
24654 #. type: verbatim
24655 #: ../fish/guestfish-actions.pod:1531
24656 #, no-wrap
24657 msgid ""
24658 " grepi regex path\n"
24659 "\n"
24660 msgstr ""
24661
24662 #. type: =head2
24663 #: ../fish/guestfish-actions.pod:1539
24664 msgid "grub-install"
24665 msgstr ""
24666
24667 #. type: verbatim
24668 #: ../fish/guestfish-actions.pod:1541
24669 #, no-wrap
24670 msgid ""
24671 " grub-install root device\n"
24672 "\n"
24673 msgstr ""
24674
24675 #. type: =head2
24676 #: ../fish/guestfish-actions.pod:1557
24677 msgid "head"
24678 msgstr ""
24679
24680 #. type: verbatim
24681 #: ../fish/guestfish-actions.pod:1559
24682 #, no-wrap
24683 msgid ""
24684 " head path\n"
24685 "\n"
24686 msgstr ""
24687
24688 #. type: =head2
24689 #: ../fish/guestfish-actions.pod:1567
24690 msgid "head-n"
24691 msgstr ""
24692
24693 #. type: verbatim
24694 #: ../fish/guestfish-actions.pod:1569
24695 #, no-wrap
24696 msgid ""
24697 " head-n nrlines path\n"
24698 "\n"
24699 msgstr ""
24700
24701 #. type: =head2
24702 #: ../fish/guestfish-actions.pod:1582
24703 msgid "hexdump"
24704 msgstr ""
24705
24706 #. type: verbatim
24707 #: ../fish/guestfish-actions.pod:1584
24708 #, no-wrap
24709 msgid ""
24710 " hexdump path\n"
24711 "\n"
24712 msgstr ""
24713
24714 #. type: =head2
24715 #: ../fish/guestfish-actions.pod:1592
24716 msgid "initrd-cat"
24717 msgstr ""
24718
24719 #. type: verbatim
24720 #: ../fish/guestfish-actions.pod:1594
24721 #, no-wrap
24722 msgid ""
24723 " initrd-cat initrdpath filename\n"
24724 "\n"
24725 msgstr ""
24726
24727 #. type: textblock
24728 #: ../fish/guestfish-actions.pod:1606
24729 msgid "See also L</initrd-list>."
24730 msgstr ""
24731
24732 #. type: =head2
24733 #: ../fish/guestfish-actions.pod:1611
24734 msgid "initrd-list"
24735 msgstr ""
24736
24737 #. type: verbatim
24738 #: ../fish/guestfish-actions.pod:1613
24739 #, no-wrap
24740 msgid ""
24741 " initrd-list path\n"
24742 "\n"
24743 msgstr ""
24744
24745 #. type: =head2
24746 #: ../fish/guestfish-actions.pod:1625
24747 msgid "inotify-add-watch"
24748 msgstr ""
24749
24750 #. type: verbatim
24751 #: ../fish/guestfish-actions.pod:1627
24752 #, no-wrap
24753 msgid ""
24754 " inotify-add-watch path mask\n"
24755 "\n"
24756 msgstr ""
24757
24758 #. type: =head2
24759 #: ../fish/guestfish-actions.pod:1639
24760 msgid "inotify-close"
24761 msgstr ""
24762
24763 #. type: verbatim
24764 #: ../fish/guestfish-actions.pod:1641
24765 #, no-wrap
24766 msgid ""
24767 " inotify-close\n"
24768 "\n"
24769 msgstr ""
24770
24771 #. type: =head2
24772 #: ../fish/guestfish-actions.pod:1647
24773 msgid "inotify-files"
24774 msgstr ""
24775
24776 #. type: verbatim
24777 #: ../fish/guestfish-actions.pod:1649
24778 #, no-wrap
24779 msgid ""
24780 " inotify-files\n"
24781 "\n"
24782 msgstr ""
24783
24784 #. type: textblock
24785 #: ../fish/guestfish-actions.pod:1651
24786 msgid ""
24787 "This function is a helpful wrapper around L</inotify-read> which just "
24788 "returns a list of pathnames of objects that were touched.  The returned "
24789 "pathnames are sorted and deduplicated."
24790 msgstr ""
24791
24792 #. type: =head2
24793 #: ../fish/guestfish-actions.pod:1655
24794 msgid "inotify-init"
24795 msgstr ""
24796
24797 #. type: verbatim
24798 #: ../fish/guestfish-actions.pod:1657
24799 #, no-wrap
24800 msgid ""
24801 " inotify-init maxevents\n"
24802 "\n"
24803 msgstr ""
24804
24805 #. type: textblock
24806 #: ../fish/guestfish-actions.pod:1663
24807 msgid ""
24808 "C<maxevents> is the maximum number of events which will be queued up between "
24809 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
24810 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
24811 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
24812 "but records the fact that it threw them away by setting a flag "
24813 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24814 msgstr ""
24815
24816 #. type: textblock
24817 #: ../fish/guestfish-actions.pod:1673
24818 msgid ""
24819 "Before any events are generated, you have to add some watches to the "
24820 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
24821 "L</inotify-watch-all>."
24822 msgstr ""
24823
24824 #. type: textblock
24825 #: ../fish/guestfish-actions.pod:1679
24826 msgid ""
24827 "Queued up events should be read periodically by calling L</inotify-read> (or "
24828 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
24829 "If you don't read the events out often enough then you risk the internal "
24830 "queue overflowing."
24831 msgstr ""
24832
24833 #. type: textblock
24834 #: ../fish/guestfish-actions.pod:1686
24835 msgid ""
24836 "The handle should be closed after use by calling L</inotify-close>.  This "
24837 "also removes any watches automatically."
24838 msgstr ""
24839
24840 #. type: =head2
24841 #: ../fish/guestfish-actions.pod:1695
24842 msgid "inotify-read"
24843 msgstr ""
24844
24845 #. type: verbatim
24846 #: ../fish/guestfish-actions.pod:1697
24847 #, no-wrap
24848 msgid ""
24849 " inotify-read\n"
24850 "\n"
24851 msgstr ""
24852
24853 #. type: =head2
24854 #: ../fish/guestfish-actions.pod:1710
24855 msgid "inotify-rm-watch"
24856 msgstr ""
24857
24858 #. type: verbatim
24859 #: ../fish/guestfish-actions.pod:1712
24860 #, no-wrap
24861 msgid ""
24862 " inotify-rm-watch wd\n"
24863 "\n"
24864 msgstr ""
24865
24866 #. type: textblock
24867 #: ../fish/guestfish-actions.pod:1714
24868 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24869 msgstr ""
24870
24871 #. type: =head2
24872 #: ../fish/guestfish-actions.pod:1717
24873 msgid "inspect-get-arch"
24874 msgstr ""
24875
24876 #. type: verbatim
24877 #: ../fish/guestfish-actions.pod:1719
24878 #, no-wrap
24879 msgid ""
24880 " inspect-get-arch root\n"
24881 "\n"
24882 msgstr ""
24883
24884 #. type: textblock
24885 #: ../fish/guestfish-actions.pod:1721
24886 msgid ""
24887 "This returns the architecture of the inspected operating system.  The "
24888 "possible return values are listed under L</file-architecture>."
24889 msgstr ""
24890
24891 #. type: =head2
24892 #: ../fish/guestfish-actions.pod:1730
24893 msgid "inspect-get-distro"
24894 msgstr ""
24895
24896 #. type: verbatim
24897 #: ../fish/guestfish-actions.pod:1732
24898 #, no-wrap
24899 msgid ""
24900 " inspect-get-distro root\n"
24901 "\n"
24902 msgstr ""
24903
24904 #. type: =head2
24905 #: ../fish/guestfish-actions.pod:1813
24906 msgid "inspect-get-drive-mappings"
24907 msgstr ""
24908
24909 #. type: verbatim
24910 #: ../fish/guestfish-actions.pod:1815
24911 #, no-wrap
24912 msgid ""
24913 " inspect-get-drive-mappings root\n"
24914 "\n"
24915 msgstr ""
24916
24917 #. type: textblock
24918 #: ../fish/guestfish-actions.pod:1842
24919 msgid ""
24920 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24921 "get-mountpoints>, L</inspect-get-filesystems>."
24922 msgstr ""
24923
24924 #. type: =head2
24925 #: ../fish/guestfish-actions.pod:1846
24926 msgid "inspect-get-filesystems"
24927 msgstr ""
24928
24929 #. type: verbatim
24930 #: ../fish/guestfish-actions.pod:1848
24931 #, no-wrap
24932 msgid ""
24933 " inspect-get-filesystems root\n"
24934 "\n"
24935 msgstr ""
24936
24937 #. type: textblock
24938 #: ../fish/guestfish-actions.pod:1858
24939 msgid ""
24940 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24941 "get-mountpoints>."
24942 msgstr ""
24943
24944 #. type: =head2
24945 #: ../fish/guestfish-actions.pod:1861
24946 msgid "inspect-get-format"
24947 msgstr ""
24948
24949 #. type: verbatim
24950 #: ../fish/guestfish-actions.pod:1863
24951 #, no-wrap
24952 msgid ""
24953 " inspect-get-format root\n"
24954 "\n"
24955 msgstr ""
24956
24957 #. type: =head2
24958 #: ../fish/guestfish-actions.pod:1892
24959 msgid "inspect-get-hostname"
24960 msgstr ""
24961
24962 #. type: verbatim
24963 #: ../fish/guestfish-actions.pod:1894
24964 #, no-wrap
24965 msgid ""
24966 " inspect-get-hostname root\n"
24967 "\n"
24968 msgstr ""
24969
24970 #. type: =head2
24971 #: ../fish/guestfish-actions.pod:1904
24972 msgid "inspect-get-icon"
24973 msgstr ""
24974
24975 #. type: verbatim
24976 #: ../fish/guestfish-actions.pod:1906
24977 #, no-wrap
24978 msgid ""
24979 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24980 "\n"
24981 msgstr ""
24982
24983 #. type: =head2
24984 #: ../fish/guestfish-actions.pod:1970
24985 msgid "inspect-get-major-version"
24986 msgstr ""
24987
24988 #. type: verbatim
24989 #: ../fish/guestfish-actions.pod:1972
24990 #, no-wrap
24991 msgid ""
24992 " inspect-get-major-version root\n"
24993 "\n"
24994 msgstr ""
24995
24996 #. type: =head2
24997 #: ../fish/guestfish-actions.pod:1988
24998 msgid "inspect-get-minor-version"
24999 msgstr ""
25000
25001 #. type: verbatim
25002 #: ../fish/guestfish-actions.pod:1990
25003 #, no-wrap
25004 msgid ""
25005 " inspect-get-minor-version root\n"
25006 "\n"
25007 msgstr ""
25008
25009 #. type: textblock
25010 #: ../fish/guestfish-actions.pod:1997
25011 msgid ""
25012 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25013 "get-major-version>."
25014 msgstr ""
25015
25016 #. type: =head2
25017 #: ../fish/guestfish-actions.pod:2000
25018 msgid "inspect-get-mountpoints"
25019 msgstr ""
25020
25021 #. type: verbatim
25022 #: ../fish/guestfish-actions.pod:2002
25023 #, no-wrap
25024 msgid ""
25025 " inspect-get-mountpoints root\n"
25026 "\n"
25027 msgstr ""
25028
25029 #. type: textblock
25030 #: ../fish/guestfish-actions.pod:2021
25031 msgid ""
25032 "For operating systems like Windows which still use drive letters, this call "
25033 "will only return an entry for the first drive \"mounted on\" C</>.  For "
25034 "information about the mapping of drive letters to partitions, see L</inspect-"
25035 "get-drive-mappings>."
25036 msgstr ""
25037
25038 #. type: textblock
25039 #: ../fish/guestfish-actions.pod:2027
25040 msgid ""
25041 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25042 "get-filesystems>."
25043 msgstr ""
25044
25045 #. type: =head2
25046 #: ../fish/guestfish-actions.pod:2030
25047 msgid "inspect-get-package-format"
25048 msgstr ""
25049
25050 #. type: verbatim
25051 #: ../fish/guestfish-actions.pod:2032
25052 #, no-wrap
25053 msgid ""
25054 " inspect-get-package-format root\n"
25055 "\n"
25056 msgstr ""
25057
25058 #. type: textblock
25059 #: ../fish/guestfish-actions.pod:2034
25060 msgid ""
25061 "This function and L</inspect-get-package-management> return the package "
25062 "format and package management tool used by the inspected operating system.  "
25063 "For example for Fedora these functions would return C<rpm> (package format) "
25064 "and C<yum> (package management)."
25065 msgstr ""
25066
25067 #. type: =head2
25068 #: ../fish/guestfish-actions.pod:2049
25069 msgid "inspect-get-package-management"
25070 msgstr ""
25071
25072 #. type: verbatim
25073 #: ../fish/guestfish-actions.pod:2051
25074 #, no-wrap
25075 msgid ""
25076 " inspect-get-package-management root\n"
25077 "\n"
25078 msgstr ""
25079
25080 #. type: textblock
25081 #: ../fish/guestfish-actions.pod:2053
25082 msgid ""
25083 "L</inspect-get-package-format> and this function return the package format "
25084 "and package management tool used by the inspected operating system.  For "
25085 "example for Fedora these functions would return C<rpm> (package format) and "
25086 "C<yum> (package management)."
25087 msgstr ""
25088
25089 #. type: =head2
25090 #: ../fish/guestfish-actions.pod:2070
25091 msgid "inspect-get-product-name"
25092 msgstr ""
25093
25094 #. type: verbatim
25095 #: ../fish/guestfish-actions.pod:2072
25096 #, no-wrap
25097 msgid ""
25098 " inspect-get-product-name root\n"
25099 "\n"
25100 msgstr ""
25101
25102 #. type: =head2
25103 #: ../fish/guestfish-actions.pod:2084
25104 msgid "inspect-get-product-variant"
25105 msgstr ""
25106
25107 #. type: verbatim
25108 #: ../fish/guestfish-actions.pod:2086
25109 #, no-wrap
25110 msgid ""
25111 " inspect-get-product-variant root\n"
25112 "\n"
25113 msgstr ""
25114
25115 #. type: textblock
25116 #: ../fish/guestfish-actions.pod:2107
25117 msgid ""
25118 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25119 "get-product-name>, L</inspect-get-major-version>."
25120 msgstr ""
25121
25122 #. type: =head2
25123 #: ../fish/guestfish-actions.pod:2111
25124 msgid "inspect-get-roots"
25125 msgstr ""
25126
25127 #. type: verbatim
25128 #: ../fish/guestfish-actions.pod:2113
25129 #, no-wrap
25130 msgid ""
25131 " inspect-get-roots\n"
25132 "\n"
25133 msgstr ""
25134
25135 #. type: textblock
25136 #: ../fish/guestfish-actions.pod:2115
25137 msgid ""
25138 "This function is a convenient way to get the list of root devices, as "
25139 "returned from a previous call to L</inspect-os>, but without redoing the "
25140 "whole inspection process."
25141 msgstr ""
25142
25143 #. type: textblock
25144 #: ../fish/guestfish-actions.pod:2119
25145 msgid ""
25146 "This returns an empty list if either no root devices were found or the "
25147 "caller has not called L</inspect-os>."
25148 msgstr ""
25149
25150 #. type: =head2
25151 #: ../fish/guestfish-actions.pod:2124
25152 msgid "inspect-get-type"
25153 msgstr ""
25154
25155 #. type: verbatim
25156 #: ../fish/guestfish-actions.pod:2126
25157 #, no-wrap
25158 msgid ""
25159 " inspect-get-type root\n"
25160 "\n"
25161 msgstr ""
25162
25163 #. type: =head2
25164 #: ../fish/guestfish-actions.pod:2156
25165 msgid "inspect-get-windows-current-control-set"
25166 msgstr ""
25167
25168 #. type: verbatim
25169 #: ../fish/guestfish-actions.pod:2158
25170 #, no-wrap
25171 msgid ""
25172 " inspect-get-windows-current-control-set root\n"
25173 "\n"
25174 msgstr ""
25175
25176 #. type: =head2
25177 #: ../fish/guestfish-actions.pod:2169
25178 msgid "inspect-get-windows-systemroot"
25179 msgstr ""
25180
25181 #. type: verbatim
25182 #: ../fish/guestfish-actions.pod:2171
25183 #, no-wrap
25184 msgid ""
25185 " inspect-get-windows-systemroot root\n"
25186 "\n"
25187 msgstr ""
25188
25189 #. type: =head2
25190 #: ../fish/guestfish-actions.pod:2182
25191 msgid "inspect-is-live"
25192 msgstr ""
25193
25194 #. type: verbatim
25195 #: ../fish/guestfish-actions.pod:2184
25196 #, no-wrap
25197 msgid ""
25198 " inspect-is-live root\n"
25199 "\n"
25200 msgstr ""
25201
25202 #. type: textblock
25203 #: ../fish/guestfish-actions.pod:2186
25204 msgid ""
25205 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25206 "then this returns true if a live image was detected on the disk."
25207 msgstr ""
25208
25209 #. type: =head2
25210 #: ../fish/guestfish-actions.pod:2192
25211 msgid "inspect-is-multipart"
25212 msgstr ""
25213
25214 #. type: verbatim
25215 #: ../fish/guestfish-actions.pod:2194
25216 #, no-wrap
25217 msgid ""
25218 " inspect-is-multipart root\n"
25219 "\n"
25220 msgstr ""
25221
25222 #. type: textblock
25223 #: ../fish/guestfish-actions.pod:2196
25224 msgid ""
25225 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25226 "then this returns true if the disk is part of a set."
25227 msgstr ""
25228
25229 #. type: =head2
25230 #: ../fish/guestfish-actions.pod:2202
25231 msgid "inspect-is-netinst"
25232 msgstr ""
25233
25234 #. type: verbatim
25235 #: ../fish/guestfish-actions.pod:2204
25236 #, no-wrap
25237 msgid ""
25238 " inspect-is-netinst root\n"
25239 "\n"
25240 msgstr ""
25241
25242 #. type: textblock
25243 #: ../fish/guestfish-actions.pod:2206
25244 msgid ""
25245 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25246 "then this returns true if the disk is a network installer, ie. not a self-"
25247 "contained install CD but one which is likely to require network access to "
25248 "complete the install."
25249 msgstr ""
25250
25251 #. type: =head2
25252 #: ../fish/guestfish-actions.pod:2214
25253 msgid "inspect-list-applications"
25254 msgstr ""
25255
25256 #. type: verbatim
25257 #: ../fish/guestfish-actions.pod:2216
25258 #, no-wrap
25259 msgid ""
25260 " inspect-list-applications root\n"
25261 "\n"
25262 msgstr ""
25263
25264 #. type: textblock
25265 #: ../fish/guestfish-actions.pod:2220
25266 msgid ""
25267 "I<Note:> This call works differently from other parts of the inspection "
25268 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
25269 "then mount up the disks, before calling this.  Listing applications is a "
25270 "significantly more difficult operation which requires access to the full "
25271 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
25272 "are just returning data cached in the libguestfs handle, this call actually "
25273 "reads parts of the mounted filesystems during the call."
25274 msgstr ""
25275
25276 #. type: =head2
25277 #: ../fish/guestfish-actions.pod:2310
25278 msgid "inspect-os"
25279 msgstr ""
25280
25281 #. type: verbatim
25282 #: ../fish/guestfish-actions.pod:2312
25283 #, no-wrap
25284 msgid ""
25285 " inspect-os\n"
25286 "\n"
25287 msgstr ""
25288
25289 #. type: textblock
25290 #: ../fish/guestfish-actions.pod:2327
25291 msgid ""
25292 "You can pass the root string(s) returned to other L</inspect-get-*> "
25293 "functions in order to query further information about each operating system, "
25294 "such as the name and version."
25295 msgstr ""
25296
25297 #. type: textblock
25298 #: ../fish/guestfish-actions.pod:2332
25299 msgid ""
25300 "This function uses other libguestfs features such as L</mount-ro> and L</"
25301 "umount-all> in order to mount and unmount filesystems and look at the "
25302 "contents.  This should be called with no disks currently mounted.  The "
25303 "function may also use Augeas, so any existing Augeas handle will be closed."
25304 msgstr ""
25305
25306 #. type: textblock
25307 #: ../fish/guestfish-actions.pod:2344 ../fish/guestfish-actions.pod:2542
25308 #: ../fish/guestfish-actions.pod:2601
25309 msgid "See also L</list-filesystems>."
25310 msgstr ""
25311
25312 #. type: =head2
25313 #: ../fish/guestfish-actions.pod:2346
25314 msgid "is-blockdev"
25315 msgstr ""
25316
25317 #. type: verbatim
25318 #: ../fish/guestfish-actions.pod:2348
25319 #, no-wrap
25320 msgid ""
25321 " is-blockdev path\n"
25322 "\n"
25323 msgstr ""
25324
25325 #. type: textblock
25326 #: ../fish/guestfish-actions.pod:2353 ../fish/guestfish-actions.pod:2371
25327 #: ../fish/guestfish-actions.pod:2390 ../fish/guestfish-actions.pod:2399
25328 #: ../fish/guestfish-actions.pod:2409 ../fish/guestfish-actions.pod:2443
25329 #: ../fish/guestfish-actions.pod:2452
25330 msgid "See also L</stat>."
25331 msgstr ""
25332
25333 #. type: =head2
25334 #: ../fish/guestfish-actions.pod:2355
25335 msgid "is-busy"
25336 msgstr ""
25337
25338 #. type: verbatim
25339 #: ../fish/guestfish-actions.pod:2357
25340 #, no-wrap
25341 msgid ""
25342 " is-busy\n"
25343 "\n"
25344 msgstr ""
25345
25346 #. type: =head2
25347 #: ../fish/guestfish-actions.pod:2364
25348 msgid "is-chardev"
25349 msgstr ""
25350
25351 #. type: verbatim
25352 #: ../fish/guestfish-actions.pod:2366
25353 #, no-wrap
25354 msgid ""
25355 " is-chardev path\n"
25356 "\n"
25357 msgstr ""
25358
25359 #. type: =head2
25360 #: ../fish/guestfish-actions.pod:2373
25361 msgid "is-config"
25362 msgstr ""
25363
25364 #. type: verbatim
25365 #: ../fish/guestfish-actions.pod:2375
25366 #, no-wrap
25367 msgid ""
25368 " is-config\n"
25369 "\n"
25370 msgstr ""
25371
25372 #. type: =head2
25373 #: ../fish/guestfish-actions.pod:2382
25374 msgid "is-dir"
25375 msgstr ""
25376
25377 #. type: verbatim
25378 #: ../fish/guestfish-actions.pod:2384
25379 #, no-wrap
25380 msgid ""
25381 " is-dir path\n"
25382 "\n"
25383 msgstr ""
25384
25385 #. type: =head2
25386 #: ../fish/guestfish-actions.pod:2392
25387 msgid "is-fifo"
25388 msgstr ""
25389
25390 #. type: verbatim
25391 #: ../fish/guestfish-actions.pod:2394
25392 #, no-wrap
25393 msgid ""
25394 " is-fifo path\n"
25395 "\n"
25396 msgstr ""
25397
25398 #. type: =head2
25399 #: ../fish/guestfish-actions.pod:2401
25400 msgid "is-file"
25401 msgstr ""
25402
25403 #. type: verbatim
25404 #: ../fish/guestfish-actions.pod:2403
25405 #, no-wrap
25406 msgid ""
25407 " is-file path\n"
25408 "\n"
25409 msgstr ""
25410
25411 #. type: =head2
25412 #: ../fish/guestfish-actions.pod:2411
25413 msgid "is-launching"
25414 msgstr ""
25415
25416 #. type: verbatim
25417 #: ../fish/guestfish-actions.pod:2413
25418 #, no-wrap
25419 msgid ""
25420 " is-launching\n"
25421 "\n"
25422 msgstr ""
25423
25424 #. type: =head2
25425 #: ../fish/guestfish-actions.pod:2420
25426 msgid "is-lv"
25427 msgstr ""
25428
25429 #. type: verbatim
25430 #: ../fish/guestfish-actions.pod:2422
25431 #, no-wrap
25432 msgid ""
25433 " is-lv device\n"
25434 "\n"
25435 msgstr ""
25436
25437 #. type: =head2
25438 #: ../fish/guestfish-actions.pod:2427
25439 msgid "is-ready"
25440 msgstr ""
25441
25442 #. type: verbatim
25443 #: ../fish/guestfish-actions.pod:2429
25444 #, no-wrap
25445 msgid ""
25446 " is-ready\n"
25447 "\n"
25448 msgstr ""
25449
25450 #. type: =head2
25451 #: ../fish/guestfish-actions.pod:2436
25452 msgid "is-socket"
25453 msgstr ""
25454
25455 #. type: verbatim
25456 #: ../fish/guestfish-actions.pod:2438
25457 #, no-wrap
25458 msgid ""
25459 " is-socket path\n"
25460 "\n"
25461 msgstr ""
25462
25463 #. type: =head2
25464 #: ../fish/guestfish-actions.pod:2445
25465 msgid "is-symlink"
25466 msgstr ""
25467
25468 #. type: verbatim
25469 #: ../fish/guestfish-actions.pod:2447
25470 #, no-wrap
25471 msgid ""
25472 " is-symlink path\n"
25473 "\n"
25474 msgstr ""
25475
25476 #. type: =head2
25477 #: ../fish/guestfish-actions.pod:2454
25478 msgid "is-zero"
25479 msgstr ""
25480
25481 #. type: verbatim
25482 #: ../fish/guestfish-actions.pod:2456
25483 #, no-wrap
25484 msgid ""
25485 " is-zero path\n"
25486 "\n"
25487 msgstr ""
25488
25489 #. type: =head2
25490 #: ../fish/guestfish-actions.pod:2461
25491 msgid "is-zero-device"
25492 msgstr ""
25493
25494 #. type: verbatim
25495 #: ../fish/guestfish-actions.pod:2463
25496 #, no-wrap
25497 msgid ""
25498 " is-zero-device device\n"
25499 "\n"
25500 msgstr ""
25501
25502 #. type: =head2
25503 #: ../fish/guestfish-actions.pod:2469
25504 msgid "kill-subprocess"
25505 msgstr ""
25506
25507 #. type: verbatim
25508 #: ../fish/guestfish-actions.pod:2471
25509 #, no-wrap
25510 msgid ""
25511 " kill-subprocess\n"
25512 "\n"
25513 msgstr ""
25514
25515 #. type: =head2
25516 #: ../fish/guestfish-actions.pod:2475
25517 msgid "launch"
25518 msgstr ""
25519
25520 #. type: =head2
25521 #: ../fish/guestfish-actions.pod:2477
25522 msgid "run"
25523 msgstr ""
25524
25525 #. type: verbatim
25526 #: ../fish/guestfish-actions.pod:2479
25527 #, no-wrap
25528 msgid ""
25529 " launch\n"
25530 "\n"
25531 msgstr ""
25532
25533 #. type: =head2
25534 #: ../fish/guestfish-actions.pod:2487
25535 msgid "lchown"
25536 msgstr ""
25537
25538 #. type: verbatim
25539 #: ../fish/guestfish-actions.pod:2489
25540 #, no-wrap
25541 msgid ""
25542 " lchown owner group path\n"
25543 "\n"
25544 msgstr ""
25545
25546 #. type: textblock
25547 #: ../fish/guestfish-actions.pod:2491
25548 msgid ""
25549 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
25550 "chown> but if C<path> is a symlink then the link itself is changed, not the "
25551 "target."
25552 msgstr ""
25553
25554 #. type: =head2
25555 #: ../fish/guestfish-actions.pod:2499
25556 msgid "lgetxattr"
25557 msgstr ""
25558
25559 #. type: verbatim
25560 #: ../fish/guestfish-actions.pod:2501
25561 #, no-wrap
25562 msgid ""
25563 " lgetxattr path name\n"
25564 "\n"
25565 msgstr ""
25566
25567 #. type: textblock
25568 #: ../fish/guestfish-actions.pod:2517
25569 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
25570 msgstr ""
25571
25572 #. type: =head2
25573 #: ../fish/guestfish-actions.pod:2519
25574 msgid "lgetxattrs"
25575 msgstr ""
25576
25577 #. type: verbatim
25578 #: ../fish/guestfish-actions.pod:2521
25579 #, no-wrap
25580 msgid ""
25581 " lgetxattrs path\n"
25582 "\n"
25583 msgstr ""
25584
25585 #. type: textblock
25586 #: ../fish/guestfish-actions.pod:2523
25587 msgid ""
25588 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
25589 "it returns the extended attributes of the link itself."
25590 msgstr ""
25591
25592 #. type: =head2
25593 #: ../fish/guestfish-actions.pod:2527
25594 msgid "list-9p"
25595 msgstr ""
25596
25597 #. type: verbatim
25598 #: ../fish/guestfish-actions.pod:2529
25599 #, no-wrap
25600 msgid ""
25601 " list-9p\n"
25602 "\n"
25603 msgstr ""
25604
25605 #. type: =head2
25606 #: ../fish/guestfish-actions.pod:2534
25607 msgid "list-devices"
25608 msgstr ""
25609
25610 #. type: verbatim
25611 #: ../fish/guestfish-actions.pod:2536
25612 #, no-wrap
25613 msgid ""
25614 " list-devices\n"
25615 "\n"
25616 msgstr ""
25617
25618 #. type: =head2
25619 #: ../fish/guestfish-actions.pod:2544
25620 msgid "list-dm-devices"
25621 msgstr ""
25622
25623 #. type: verbatim
25624 #: ../fish/guestfish-actions.pod:2546
25625 #, no-wrap
25626 msgid ""
25627 " list-dm-devices\n"
25628 "\n"
25629 msgstr ""
25630
25631 #. type: textblock
25632 #: ../fish/guestfish-actions.pod:2550
25633 msgid ""
25634 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
25635 "previous call to L</luks-open>."
25636 msgstr ""
25637
25638 #. type: textblock
25639 #: ../fish/guestfish-actions.pod:2553
25640 msgid ""
25641 "Device mapper devices which correspond to logical volumes are I<not> "
25642 "returned in this list.  Call L</lvs> if you want to list logical volumes."
25643 msgstr ""
25644
25645 #. type: =head2
25646 #: ../fish/guestfish-actions.pod:2557
25647 msgid "list-filesystems"
25648 msgstr ""
25649
25650 #. type: verbatim
25651 #: ../fish/guestfish-actions.pod:2559
25652 #, no-wrap
25653 msgid ""
25654 " list-filesystems\n"
25655 "\n"
25656 msgstr ""
25657
25658 #. type: textblock
25659 #: ../fish/guestfish-actions.pod:2578
25660 msgid ""
25661 "This command runs other libguestfs commands, which might include L</mount> "
25662 "and L</umount>, and therefore you should use this soon after launch and only "
25663 "when nothing is mounted."
25664 msgstr ""
25665
25666 #. type: textblock
25667 #: ../fish/guestfish-actions.pod:2582
25668 msgid ""
25669 "Not all of the filesystems returned will be mountable.  In particular, swap "
25670 "partitions are returned in the list.  Also this command does not check that "
25671 "each filesystem found is valid and mountable, and some filesystems might be "
25672 "mountable but require special options.  Filesystems may not all belong to a "
25673 "single logical operating system (use L</inspect-os> to look for OSes)."
25674 msgstr ""
25675
25676 #. type: =head2
25677 #: ../fish/guestfish-actions.pod:2590
25678 msgid "list-partitions"
25679 msgstr ""
25680
25681 #. type: verbatim
25682 #: ../fish/guestfish-actions.pod:2592
25683 #, no-wrap
25684 msgid ""
25685 " list-partitions\n"
25686 "\n"
25687 msgstr ""
25688
25689 #. type: textblock
25690 #: ../fish/guestfish-actions.pod:2598
25691 msgid ""
25692 "This does not return logical volumes.  For that you will need to call L</"
25693 "lvs>."
25694 msgstr ""
25695
25696 #. type: =head2
25697 #: ../fish/guestfish-actions.pod:2603
25698 msgid "ll"
25699 msgstr ""
25700
25701 #. type: verbatim
25702 #: ../fish/guestfish-actions.pod:2605
25703 #, no-wrap
25704 msgid ""
25705 " ll directory\n"
25706 "\n"
25707 msgstr ""
25708
25709 #. type: =head2
25710 #: ../fish/guestfish-actions.pod:2613
25711 msgid "ln"
25712 msgstr ""
25713
25714 #. type: verbatim
25715 #: ../fish/guestfish-actions.pod:2615
25716 #, no-wrap
25717 msgid ""
25718 " ln target linkname\n"
25719 "\n"
25720 msgstr ""
25721
25722 #. type: =head2
25723 #: ../fish/guestfish-actions.pod:2619
25724 msgid "ln-f"
25725 msgstr ""
25726
25727 #. type: verbatim
25728 #: ../fish/guestfish-actions.pod:2621
25729 #, no-wrap
25730 msgid ""
25731 " ln-f target linkname\n"
25732 "\n"
25733 msgstr ""
25734
25735 #. type: =head2
25736 #: ../fish/guestfish-actions.pod:2626
25737 msgid "ln-s"
25738 msgstr ""
25739
25740 #. type: verbatim
25741 #: ../fish/guestfish-actions.pod:2628
25742 #, no-wrap
25743 msgid ""
25744 " ln-s target linkname\n"
25745 "\n"
25746 msgstr ""
25747
25748 #. type: =head2
25749 #: ../fish/guestfish-actions.pod:2632
25750 msgid "ln-sf"
25751 msgstr ""
25752
25753 #. type: verbatim
25754 #: ../fish/guestfish-actions.pod:2634
25755 #, no-wrap
25756 msgid ""
25757 " ln-sf target linkname\n"
25758 "\n"
25759 msgstr ""
25760
25761 #. type: =head2
25762 #: ../fish/guestfish-actions.pod:2639
25763 msgid "lremovexattr"
25764 msgstr ""
25765
25766 #. type: verbatim
25767 #: ../fish/guestfish-actions.pod:2641
25768 #, no-wrap
25769 msgid ""
25770 " lremovexattr xattr path\n"
25771 "\n"
25772 msgstr ""
25773
25774 #. type: textblock
25775 #: ../fish/guestfish-actions.pod:2643
25776 msgid ""
25777 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
25778 "it removes an extended attribute of the link itself."
25779 msgstr ""
25780
25781 #. type: =head2
25782 #: ../fish/guestfish-actions.pod:2647
25783 msgid "ls"
25784 msgstr ""
25785
25786 #. type: verbatim
25787 #: ../fish/guestfish-actions.pod:2649
25788 #, no-wrap
25789 msgid ""
25790 " ls directory\n"
25791 "\n"
25792 msgstr ""
25793
25794 #. type: textblock
25795 #: ../fish/guestfish-actions.pod:2655
25796 msgid ""
25797 "This command is mostly useful for interactive sessions.  Programs should "
25798 "probably use L</readdir> instead."
25799 msgstr ""
25800
25801 #. type: =head2
25802 #: ../fish/guestfish-actions.pod:2658
25803 msgid "lsetxattr"
25804 msgstr ""
25805
25806 #. type: verbatim
25807 #: ../fish/guestfish-actions.pod:2660
25808 #, no-wrap
25809 msgid ""
25810 " lsetxattr xattr val vallen path\n"
25811 "\n"
25812 msgstr ""
25813
25814 #. type: textblock
25815 #: ../fish/guestfish-actions.pod:2662
25816 msgid ""
25817 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
25818 "sets an extended attribute of the link itself."
25819 msgstr ""
25820
25821 #. type: =head2
25822 #: ../fish/guestfish-actions.pod:2666
25823 msgid "lstat"
25824 msgstr ""
25825
25826 #. type: verbatim
25827 #: ../fish/guestfish-actions.pod:2668
25828 #, no-wrap
25829 msgid ""
25830 " lstat path\n"
25831 "\n"
25832 msgstr ""
25833
25834 #. type: textblock
25835 #: ../fish/guestfish-actions.pod:2672
25836 msgid ""
25837 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
25838 "the link is stat-ed, not the file it refers to."
25839 msgstr ""
25840
25841 #. type: =head2
25842 #: ../fish/guestfish-actions.pod:2678
25843 msgid "lstatlist"
25844 msgstr ""
25845
25846 #. type: verbatim
25847 #: ../fish/guestfish-actions.pod:2680
25848 #, no-wrap
25849 msgid ""
25850 " lstatlist path 'names ...'\n"
25851 "\n"
25852 msgstr ""
25853
25854 #. type: textblock
25855 #: ../fish/guestfish-actions.pod:2682
25856 msgid ""
25857 "This call allows you to perform the L</lstat> operation on multiple files, "
25858 "where all files are in the directory C<path>.  C<names> is the list of files "
25859 "from this directory."
25860 msgstr ""
25861
25862 #. type: textblock
25863 #: ../fish/guestfish-actions.pod:2691
25864 msgid ""
25865 "This call is intended for programs that want to efficiently list a directory "
25866 "contents without making many round-trips.  See also L</lxattrlist> for a "
25867 "similarly efficient call for getting extended attributes.  Very long "
25868 "directory listings might cause the protocol message size to be exceeded, "
25869 "causing this call to fail.  The caller must split up such requests into "
25870 "smaller groups of names."
25871 msgstr ""
25872
25873 #. type: =head2
25874 #: ../fish/guestfish-actions.pod:2699
25875 msgid "luks-add-key"
25876 msgstr ""
25877
25878 #. type: verbatim
25879 #: ../fish/guestfish-actions.pod:2701
25880 #, no-wrap
25881 msgid ""
25882 " luks-add-key device keyslot\n"
25883 "\n"
25884 msgstr ""
25885
25886 #. type: textblock
25887 #: ../fish/guestfish-actions.pod:2708
25888 msgid ""
25889 "Note that if C<keyslot> already contains a key, then this command will "
25890 "fail.  You have to use L</luks-kill-slot> first to remove that key."
25891 msgstr ""
25892
25893 #. type: textblock
25894 #: ../fish/guestfish-actions.pod:2712 ../fish/guestfish-actions.pod:2734
25895 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2761
25896 #: ../fish/guestfish-actions.pod:2787 ../fish/guestfish-actions.pod:2797
25897 msgid ""
25898 "This command has one or more key or passphrase parameters.  Guestfish will "
25899 "prompt for these separately."
25900 msgstr ""
25901
25902 #. type: =head2
25903 #: ../fish/guestfish-actions.pod:2715
25904 msgid "luks-close"
25905 msgstr ""
25906
25907 #. type: verbatim
25908 #: ../fish/guestfish-actions.pod:2717
25909 #, no-wrap
25910 msgid ""
25911 " luks-close device\n"
25912 "\n"
25913 msgstr ""
25914
25915 #. type: textblock
25916 #: ../fish/guestfish-actions.pod:2719
25917 msgid ""
25918 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
25919 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
25920 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
25921 "block device."
25922 msgstr ""
25923
25924 #. type: =head2
25925 #: ../fish/guestfish-actions.pod:2725
25926 msgid "luks-format"
25927 msgstr ""
25928
25929 #. type: verbatim
25930 #: ../fish/guestfish-actions.pod:2727
25931 #, no-wrap
25932 msgid ""
25933 " luks-format device keyslot\n"
25934 "\n"
25935 msgstr ""
25936
25937 #. type: =head2
25938 #: ../fish/guestfish-actions.pod:2740
25939 msgid "luks-format-cipher"
25940 msgstr ""
25941
25942 #. type: verbatim
25943 #: ../fish/guestfish-actions.pod:2742
25944 #, no-wrap
25945 msgid ""
25946 " luks-format-cipher device keyslot cipher\n"
25947 "\n"
25948 msgstr ""
25949
25950 #. type: textblock
25951 #: ../fish/guestfish-actions.pod:2744
25952 msgid ""
25953 "This command is the same as L</luks-format> but it also allows you to set "
25954 "the C<cipher> used."
25955 msgstr ""
25956
25957 #. type: =head2
25958 #: ../fish/guestfish-actions.pod:2753
25959 msgid "luks-kill-slot"
25960 msgstr ""
25961
25962 #. type: verbatim
25963 #: ../fish/guestfish-actions.pod:2755
25964 #, no-wrap
25965 msgid ""
25966 " luks-kill-slot device keyslot\n"
25967 "\n"
25968 msgstr ""
25969
25970 #. type: =head2
25971 #: ../fish/guestfish-actions.pod:2764
25972 msgid "luks-open"
25973 msgstr ""
25974
25975 #. type: verbatim
25976 #: ../fish/guestfish-actions.pod:2766
25977 #, no-wrap
25978 msgid ""
25979 " luks-open device mapname\n"
25980 "\n"
25981 msgstr ""
25982
25983 #. type: textblock
25984 #: ../fish/guestfish-actions.pod:2780
25985 msgid ""
25986 "If this block device contains LVM volume groups, then calling L</vgscan> "
25987 "followed by L</vg-activate-all> will make them visible."
25988 msgstr ""
25989
25990 #. type: textblock
25991 #: ../fish/guestfish-actions.pod:2784
25992 msgid "Use L</list-dm-devices> to list all device mapper devices."
25993 msgstr ""
25994
25995 #. type: =head2
25996 #: ../fish/guestfish-actions.pod:2790
25997 msgid "luks-open-ro"
25998 msgstr ""
25999
26000 #. type: verbatim
26001 #: ../fish/guestfish-actions.pod:2792
26002 #, no-wrap
26003 msgid ""
26004 " luks-open-ro device mapname\n"
26005 "\n"
26006 msgstr ""
26007
26008 #. type: textblock
26009 #: ../fish/guestfish-actions.pod:2794
26010 msgid ""
26011 "This is the same as L</luks-open> except that a read-only mapping is created."
26012 msgstr ""
26013
26014 #. type: =head2
26015 #: ../fish/guestfish-actions.pod:2800
26016 msgid "lvcreate"
26017 msgstr ""
26018
26019 #. type: verbatim
26020 #: ../fish/guestfish-actions.pod:2802
26021 #, no-wrap
26022 msgid ""
26023 " lvcreate logvol volgroup mbytes\n"
26024 "\n"
26025 msgstr ""
26026
26027 #. type: =head2
26028 #: ../fish/guestfish-actions.pod:2807
26029 msgid "lvm-canonical-lv-name"
26030 msgstr ""
26031
26032 #. type: verbatim
26033 #: ../fish/guestfish-actions.pod:2809
26034 #, no-wrap
26035 msgid ""
26036 " lvm-canonical-lv-name lvname\n"
26037 "\n"
26038 msgstr ""
26039
26040 #. type: textblock
26041 #: ../fish/guestfish-actions.pod:2818
26042 msgid "See also L</is-lv>."
26043 msgstr ""
26044
26045 #. type: =head2
26046 #: ../fish/guestfish-actions.pod:2820
26047 msgid "lvm-clear-filter"
26048 msgstr ""
26049
26050 #. type: verbatim
26051 #: ../fish/guestfish-actions.pod:2822
26052 #, no-wrap
26053 msgid ""
26054 " lvm-clear-filter\n"
26055 "\n"
26056 msgstr ""
26057
26058 #. type: textblock
26059 #: ../fish/guestfish-actions.pod:2824
26060 msgid ""
26061 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
26062 "block device."
26063 msgstr ""
26064
26065 #. type: =head2
26066 #: ../fish/guestfish-actions.pod:2830
26067 msgid "lvm-remove-all"
26068 msgstr ""
26069
26070 #. type: verbatim
26071 #: ../fish/guestfish-actions.pod:2832
26072 #, no-wrap
26073 msgid ""
26074 " lvm-remove-all\n"
26075 "\n"
26076 msgstr ""
26077
26078 #. type: =head2
26079 #: ../fish/guestfish-actions.pod:2840
26080 msgid "lvm-set-filter"
26081 msgstr ""
26082
26083 #. type: verbatim
26084 #: ../fish/guestfish-actions.pod:2842
26085 #, no-wrap
26086 msgid ""
26087 " lvm-set-filter 'devices ...'\n"
26088 "\n"
26089 msgstr ""
26090
26091 #. type: =head2
26092 #: ../fish/guestfish-actions.pod:2867
26093 msgid "lvremove"
26094 msgstr ""
26095
26096 #. type: verbatim
26097 #: ../fish/guestfish-actions.pod:2869
26098 #, no-wrap
26099 msgid ""
26100 " lvremove device\n"
26101 "\n"
26102 msgstr ""
26103
26104 #. type: =head2
26105 #: ../fish/guestfish-actions.pod:2877
26106 msgid "lvrename"
26107 msgstr ""
26108
26109 #. type: verbatim
26110 #: ../fish/guestfish-actions.pod:2879
26111 #, no-wrap
26112 msgid ""
26113 " lvrename logvol newlogvol\n"
26114 "\n"
26115 msgstr ""
26116
26117 #. type: =head2
26118 #: ../fish/guestfish-actions.pod:2883
26119 msgid "lvresize"
26120 msgstr ""
26121
26122 #. type: verbatim
26123 #: ../fish/guestfish-actions.pod:2885
26124 #, no-wrap
26125 msgid ""
26126 " lvresize device mbytes\n"
26127 "\n"
26128 msgstr ""
26129
26130 #. type: =head2
26131 #: ../fish/guestfish-actions.pod:2891
26132 msgid "lvresize-free"
26133 msgstr ""
26134
26135 #. type: verbatim
26136 #: ../fish/guestfish-actions.pod:2893
26137 #, no-wrap
26138 msgid ""
26139 " lvresize-free lv percent\n"
26140 "\n"
26141 msgstr ""
26142
26143 #. type: =head2
26144 #: ../fish/guestfish-actions.pod:2901
26145 msgid "lvs"
26146 msgstr ""
26147
26148 #. type: verbatim
26149 #: ../fish/guestfish-actions.pod:2903
26150 #, no-wrap
26151 msgid ""
26152 " lvs\n"
26153 "\n"
26154 msgstr ""
26155
26156 #. type: textblock
26157 #: ../fish/guestfish-actions.pod:2911
26158 msgid "See also L</lvs-full>, L</list-filesystems>."
26159 msgstr ""
26160
26161 #. type: =head2
26162 #: ../fish/guestfish-actions.pod:2913
26163 msgid "lvs-full"
26164 msgstr ""
26165
26166 #. type: verbatim
26167 #: ../fish/guestfish-actions.pod:2915
26168 #, no-wrap
26169 msgid ""
26170 " lvs-full\n"
26171 "\n"
26172 msgstr ""
26173
26174 #. type: =head2
26175 #: ../fish/guestfish-actions.pod:2920
26176 msgid "lvuuid"
26177 msgstr ""
26178
26179 #. type: verbatim
26180 #: ../fish/guestfish-actions.pod:2922
26181 #, no-wrap
26182 msgid ""
26183 " lvuuid device\n"
26184 "\n"
26185 msgstr ""
26186
26187 #. type: =head2
26188 #: ../fish/guestfish-actions.pod:2926
26189 msgid "lxattrlist"
26190 msgstr ""
26191
26192 #. type: verbatim
26193 #: ../fish/guestfish-actions.pod:2928
26194 #, no-wrap
26195 msgid ""
26196 " lxattrlist path 'names ...'\n"
26197 "\n"
26198 msgstr ""
26199
26200 #. type: textblock
26201 #: ../fish/guestfish-actions.pod:2944
26202 msgid ""
26203 "This call is intended for programs that want to efficiently list a directory "
26204 "contents without making many round-trips.  See also L</lstatlist> for a "
26205 "similarly efficient call for getting standard stats.  Very long directory "
26206 "listings might cause the protocol message size to be exceeded, causing this "
26207 "call to fail.  The caller must split up such requests into smaller groups of "
26208 "names."
26209 msgstr ""
26210
26211 #. type: =head2
26212 #: ../fish/guestfish-actions.pod:2952
26213 msgid "mkdir"
26214 msgstr ""
26215
26216 #. type: verbatim
26217 #: ../fish/guestfish-actions.pod:2954
26218 #, no-wrap
26219 msgid ""
26220 " mkdir path\n"
26221 "\n"
26222 msgstr ""
26223
26224 #. type: =head2
26225 #: ../fish/guestfish-actions.pod:2958
26226 msgid "mkdir-mode"
26227 msgstr ""
26228
26229 #. type: verbatim
26230 #: ../fish/guestfish-actions.pod:2960
26231 #, no-wrap
26232 msgid ""
26233 " mkdir-mode path mode\n"
26234 "\n"
26235 msgstr ""
26236
26237 #. type: textblock
26238 #: ../fish/guestfish-actions.pod:2969
26239 msgid "See also L</mkdir>, L</umask>"
26240 msgstr ""
26241
26242 #. type: =head2
26243 #: ../fish/guestfish-actions.pod:2971
26244 msgid "mkdir-p"
26245 msgstr ""
26246
26247 #. type: verbatim
26248 #: ../fish/guestfish-actions.pod:2973
26249 #, no-wrap
26250 msgid ""
26251 " mkdir-p path\n"
26252 "\n"
26253 msgstr ""
26254
26255 #. type: =head2
26256 #: ../fish/guestfish-actions.pod:2978
26257 msgid "mkdtemp"
26258 msgstr ""
26259
26260 #. type: verbatim
26261 #: ../fish/guestfish-actions.pod:2980
26262 #, no-wrap
26263 msgid ""
26264 " mkdtemp template\n"
26265 "\n"
26266 msgstr ""
26267
26268 #. type: =head2
26269 #: ../fish/guestfish-actions.pod:3001
26270 msgid "mke2fs-J"
26271 msgstr ""
26272
26273 #. type: verbatim
26274 #: ../fish/guestfish-actions.pod:3003
26275 #, no-wrap
26276 msgid ""
26277 " mke2fs-J fstype blocksize device journal\n"
26278 "\n"
26279 msgstr ""
26280
26281 #. type: textblock
26282 #: ../fish/guestfish-actions.pod:3011
26283 msgid "See also L</mke2journal>."
26284 msgstr ""
26285
26286 #. type: =head2
26287 #: ../fish/guestfish-actions.pod:3013
26288 msgid "mke2fs-JL"
26289 msgstr ""
26290
26291 #. type: verbatim
26292 #: ../fish/guestfish-actions.pod:3015
26293 #, no-wrap
26294 msgid ""
26295 " mke2fs-JL fstype blocksize device label\n"
26296 "\n"
26297 msgstr ""
26298
26299 #. type: textblock
26300 #: ../fish/guestfish-actions.pod:3020
26301 msgid "See also L</mke2journal-L>."
26302 msgstr ""
26303
26304 #. type: =head2
26305 #: ../fish/guestfish-actions.pod:3022
26306 msgid "mke2fs-JU"
26307 msgstr ""
26308
26309 #. type: verbatim
26310 #: ../fish/guestfish-actions.pod:3024
26311 #, no-wrap
26312 msgid ""
26313 " mke2fs-JU fstype blocksize device uuid\n"
26314 "\n"
26315 msgstr ""
26316
26317 #. type: textblock
26318 #: ../fish/guestfish-actions.pod:3029
26319 msgid "See also L</mke2journal-U>."
26320 msgstr ""
26321
26322 #. type: =head2
26323 #: ../fish/guestfish-actions.pod:3031
26324 msgid "mke2journal"
26325 msgstr ""
26326
26327 #. type: verbatim
26328 #: ../fish/guestfish-actions.pod:3033
26329 #, no-wrap
26330 msgid ""
26331 " mke2journal blocksize device\n"
26332 "\n"
26333 msgstr ""
26334
26335 #. type: =head2
26336 #: ../fish/guestfish-actions.pod:3040
26337 msgid "mke2journal-L"
26338 msgstr ""
26339
26340 #. type: verbatim
26341 #: ../fish/guestfish-actions.pod:3042
26342 #, no-wrap
26343 msgid ""
26344 " mke2journal-L blocksize label device\n"
26345 "\n"
26346 msgstr ""
26347
26348 #. type: =head2
26349 #: ../fish/guestfish-actions.pod:3046
26350 msgid "mke2journal-U"
26351 msgstr ""
26352
26353 #. type: verbatim
26354 #: ../fish/guestfish-actions.pod:3048
26355 #, no-wrap
26356 msgid ""
26357 " mke2journal-U blocksize uuid device\n"
26358 "\n"
26359 msgstr ""
26360
26361 #. type: =head2
26362 #: ../fish/guestfish-actions.pod:3052
26363 msgid "mkfifo"
26364 msgstr ""
26365
26366 #. type: verbatim
26367 #: ../fish/guestfish-actions.pod:3054
26368 #, no-wrap
26369 msgid ""
26370 " mkfifo mode path\n"
26371 "\n"
26372 msgstr ""
26373
26374 #. type: textblock
26375 #: ../fish/guestfish-actions.pod:3056
26376 msgid ""
26377 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
26378 "is just a convenient wrapper around L</mknod>."
26379 msgstr ""
26380
26381 #. type: =head2
26382 #: ../fish/guestfish-actions.pod:3062
26383 msgid "mkfs"
26384 msgstr ""
26385
26386 #. type: verbatim
26387 #: ../fish/guestfish-actions.pod:3064
26388 #, no-wrap
26389 msgid ""
26390 " mkfs fstype device\n"
26391 "\n"
26392 msgstr ""
26393
26394 #. type: =head2
26395 #: ../fish/guestfish-actions.pod:3070
26396 msgid "mkfs-b"
26397 msgstr ""
26398
26399 #. type: verbatim
26400 #: ../fish/guestfish-actions.pod:3072
26401 #, no-wrap
26402 msgid ""
26403 " mkfs-b fstype blocksize device\n"
26404 "\n"
26405 msgstr ""
26406
26407 #. type: textblock
26408 #: ../fish/guestfish-actions.pod:3074
26409 msgid ""
26410 "This call is similar to L</mkfs>, but it allows you to control the block "
26411 "size of the resulting filesystem.  Supported block sizes depend on the "
26412 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
26413 msgstr ""
26414
26415 #. type: =head2
26416 #: ../fish/guestfish-actions.pod:3089
26417 msgid "mkfs-opts"
26418 msgstr ""
26419
26420 #. type: verbatim
26421 #: ../fish/guestfish-actions.pod:3091
26422 #, no-wrap
26423 msgid ""
26424 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] [sectorsize:..]\n"
26425 "\n"
26426 msgstr ""
26427
26428 #. type: =head2
26429 #: ../fish/guestfish-actions.pod:3136
26430 msgid "mkmountpoint"
26431 msgstr ""
26432
26433 #. type: verbatim
26434 #: ../fish/guestfish-actions.pod:3138
26435 #, no-wrap
26436 msgid ""
26437 " mkmountpoint exemptpath\n"
26438 "\n"
26439 msgstr ""
26440
26441 #. type: textblock
26442 #: ../fish/guestfish-actions.pod:3140
26443 msgid ""
26444 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
26445 "to create extra mountpoints before mounting the first filesystem."
26446 msgstr ""
26447
26448 #. type: textblock
26449 #: ../fish/guestfish-actions.pod:3164
26450 msgid ""
26451 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
26452 "unexpected errors if you try to mix these calls.  It is safest to manually "
26453 "unmount filesystems and remove mountpoints after use."
26454 msgstr ""
26455
26456 #. type: textblock
26457 #: ../fish/guestfish-actions.pod:3168
26458 msgid ""
26459 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
26460 "for this to work for manual mountpoints, you must ensure that the innermost "
26461 "mountpoints have the longest pathnames, as in the example code above."
26462 msgstr ""
26463
26464 #. type: textblock
26465 #: ../fish/guestfish-actions.pod:3175
26466 msgid ""
26467 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
26468 "L</umount-all> to be called when the handle is closed which can also trigger "
26469 "these issues."
26470 msgstr ""
26471
26472 #. type: =head2
26473 #: ../fish/guestfish-actions.pod:3179
26474 msgid "mknod"
26475 msgstr ""
26476
26477 #. type: verbatim
26478 #: ../fish/guestfish-actions.pod:3181
26479 #, no-wrap
26480 msgid ""
26481 " mknod mode devmajor devminor path\n"
26482 "\n"
26483 msgstr ""
26484
26485 #. type: textblock
26486 #: ../fish/guestfish-actions.pod:3191
26487 msgid ""
26488 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
26489 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
26490 "regular file).  These constants are available in the standard Linux header "
26491 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
26492 "wrappers around this command which bitwise OR in the appropriate constant "
26493 "for you."
26494 msgstr ""
26495
26496 #. type: =head2
26497 #: ../fish/guestfish-actions.pod:3201
26498 msgid "mknod-b"
26499 msgstr ""
26500
26501 #. type: verbatim
26502 #: ../fish/guestfish-actions.pod:3203
26503 #, no-wrap
26504 msgid ""
26505 " mknod-b mode devmajor devminor path\n"
26506 "\n"
26507 msgstr ""
26508
26509 #. type: textblock
26510 #: ../fish/guestfish-actions.pod:3205
26511 msgid ""
26512 "This call creates a block device node called C<path> with mode C<mode> and "
26513 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26514 "wrapper around L</mknod>."
26515 msgstr ""
26516
26517 #. type: =head2
26518 #: ../fish/guestfish-actions.pod:3211
26519 msgid "mknod-c"
26520 msgstr ""
26521
26522 #. type: verbatim
26523 #: ../fish/guestfish-actions.pod:3213
26524 #, no-wrap
26525 msgid ""
26526 " mknod-c mode devmajor devminor path\n"
26527 "\n"
26528 msgstr ""
26529
26530 #. type: textblock
26531 #: ../fish/guestfish-actions.pod:3215
26532 msgid ""
26533 "This call creates a char device node called C<path> with mode C<mode> and "
26534 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26535 "wrapper around L</mknod>."
26536 msgstr ""
26537
26538 #. type: =head2
26539 #: ../fish/guestfish-actions.pod:3221
26540 msgid "mkswap"
26541 msgstr ""
26542
26543 #. type: verbatim
26544 #: ../fish/guestfish-actions.pod:3223
26545 #, no-wrap
26546 msgid ""
26547 " mkswap device\n"
26548 "\n"
26549 msgstr ""
26550
26551 #. type: =head2
26552 #: ../fish/guestfish-actions.pod:3227
26553 msgid "mkswap-L"
26554 msgstr ""
26555
26556 #. type: verbatim
26557 #: ../fish/guestfish-actions.pod:3229
26558 #, no-wrap
26559 msgid ""
26560 " mkswap-L label device\n"
26561 "\n"
26562 msgstr ""
26563
26564 #. type: =head2
26565 #: ../fish/guestfish-actions.pod:3237
26566 msgid "mkswap-U"
26567 msgstr ""
26568
26569 #. type: verbatim
26570 #: ../fish/guestfish-actions.pod:3239
26571 #, no-wrap
26572 msgid ""
26573 " mkswap-U uuid device\n"
26574 "\n"
26575 msgstr ""
26576
26577 #. type: =head2
26578 #: ../fish/guestfish-actions.pod:3243
26579 msgid "mkswap-file"
26580 msgstr ""
26581
26582 #. type: verbatim
26583 #: ../fish/guestfish-actions.pod:3245
26584 #, no-wrap
26585 msgid ""
26586 " mkswap-file path\n"
26587 "\n"
26588 msgstr ""
26589
26590 #. type: textblock
26591 #: ../fish/guestfish-actions.pod:3249
26592 msgid ""
26593 "This command just writes a swap file signature to an existing file.  To "
26594 "create the file itself, use something like L</fallocate>."
26595 msgstr ""
26596
26597 #. type: =head2
26598 #: ../fish/guestfish-actions.pod:3252
26599 msgid "modprobe"
26600 msgstr ""
26601
26602 #. type: verbatim
26603 #: ../fish/guestfish-actions.pod:3254
26604 #, no-wrap
26605 msgid ""
26606 " modprobe modulename\n"
26607 "\n"
26608 msgstr ""
26609
26610 #. type: =head2
26611 #: ../fish/guestfish-actions.pod:3261
26612 msgid "mount"
26613 msgstr ""
26614
26615 #. type: verbatim
26616 #: ../fish/guestfish-actions.pod:3263
26617 #, no-wrap
26618 msgid ""
26619 " mount device mountpoint\n"
26620 "\n"
26621 msgstr ""
26622
26623 #. type: textblock
26624 #: ../fish/guestfish-actions.pod:3279
26625 msgid ""
26626 "B<Important note:> When you use this call, the filesystem options C<sync> "
26627 "and C<noatime> are set implicitly.  This was originally done because we "
26628 "thought it would improve reliability, but it turns out that I<-o sync> has a "
26629 "very large negative performance impact and negligible effect on "
26630 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
26631 "code that needs performance, and instead use L</mount-options> (use an empty "
26632 "string for the first parameter if you don't want any options)."
26633 msgstr ""
26634
26635 #. type: =head2
26636 #: ../fish/guestfish-actions.pod:3296
26637 msgid "mount-9p"
26638 msgstr ""
26639
26640 #. type: verbatim
26641 #: ../fish/guestfish-actions.pod:3298
26642 #, no-wrap
26643 msgid ""
26644 " mount-9p mounttag mountpoint [options:..]\n"
26645 "\n"
26646 msgstr ""
26647
26648 #. type: =head2
26649 #: ../fish/guestfish-actions.pod:3309
26650 msgid "mount-loop"
26651 msgstr ""
26652
26653 #. type: verbatim
26654 #: ../fish/guestfish-actions.pod:3311
26655 #, no-wrap
26656 msgid ""
26657 " mount-loop file mountpoint\n"
26658 "\n"
26659 msgstr ""
26660
26661 #. type: =head2
26662 #: ../fish/guestfish-actions.pod:3317
26663 msgid "mount-options"
26664 msgstr ""
26665
26666 #. type: verbatim
26667 #: ../fish/guestfish-actions.pod:3319
26668 #, no-wrap
26669 msgid ""
26670 " mount-options options device mountpoint\n"
26671 "\n"
26672 msgstr ""
26673
26674 #. type: textblock
26675 #: ../fish/guestfish-actions.pod:3321
26676 msgid ""
26677 "This is the same as the L</mount> command, but it allows you to set the "
26678 "mount options as for the L<mount(8)> I<-o> flag."
26679 msgstr ""
26680
26681 #. type: =head2
26682 #: ../fish/guestfish-actions.pod:3329
26683 msgid "mount-ro"
26684 msgstr ""
26685
26686 #. type: verbatim
26687 #: ../fish/guestfish-actions.pod:3331
26688 #, no-wrap
26689 msgid ""
26690 " mount-ro device mountpoint\n"
26691 "\n"
26692 msgstr ""
26693
26694 #. type: textblock
26695 #: ../fish/guestfish-actions.pod:3333
26696 msgid ""
26697 "This is the same as the L</mount> command, but it mounts the filesystem with "
26698 "the read-only (I<-o ro>) flag."
26699 msgstr ""
26700
26701 #. type: =head2
26702 #: ../fish/guestfish-actions.pod:3336
26703 msgid "mount-vfs"
26704 msgstr ""
26705
26706 #. type: verbatim
26707 #: ../fish/guestfish-actions.pod:3338
26708 #, no-wrap
26709 msgid ""
26710 " mount-vfs options vfstype device mountpoint\n"
26711 "\n"
26712 msgstr ""
26713
26714 #. type: textblock
26715 #: ../fish/guestfish-actions.pod:3340
26716 msgid ""
26717 "This is the same as the L</mount> command, but it allows you to set both the "
26718 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26719 msgstr ""
26720
26721 #. type: =head2
26722 #: ../fish/guestfish-actions.pod:3344
26723 msgid "mountpoints"
26724 msgstr ""
26725
26726 #. type: verbatim
26727 #: ../fish/guestfish-actions.pod:3346
26728 #, no-wrap
26729 msgid ""
26730 " mountpoints\n"
26731 "\n"
26732 msgstr ""
26733
26734 #. type: textblock
26735 #: ../fish/guestfish-actions.pod:3348
26736 msgid ""
26737 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26738 "This one returns a hash table (map) of device name to directory where the "
26739 "device is mounted."
26740 msgstr ""
26741
26742 #. type: =head2
26743 #: ../fish/guestfish-actions.pod:3352
26744 msgid "mounts"
26745 msgstr ""
26746
26747 #. type: verbatim
26748 #: ../fish/guestfish-actions.pod:3354
26749 #, no-wrap
26750 msgid ""
26751 " mounts\n"
26752 "\n"
26753 msgstr ""
26754
26755 #. type: textblock
26756 #: ../fish/guestfish-actions.pod:3361
26757 msgid "See also: L</mountpoints>"
26758 msgstr ""
26759
26760 #. type: =head2
26761 #: ../fish/guestfish-actions.pod:3363
26762 msgid "mv"
26763 msgstr ""
26764
26765 #. type: verbatim
26766 #: ../fish/guestfish-actions.pod:3365
26767 #, no-wrap
26768 msgid ""
26769 " mv src dest\n"
26770 "\n"
26771 msgstr ""
26772
26773 #. type: =head2
26774 #: ../fish/guestfish-actions.pod:3370
26775 msgid "ntfs-3g-probe"
26776 msgstr ""
26777
26778 #. type: verbatim
26779 #: ../fish/guestfish-actions.pod:3372
26780 #, no-wrap
26781 msgid ""
26782 " ntfs-3g-probe true|false device\n"
26783 "\n"
26784 msgstr ""
26785
26786 #. type: =head2
26787 #: ../fish/guestfish-actions.pod:3386
26788 msgid "ntfsresize"
26789 msgstr ""
26790
26791 #. type: verbatim
26792 #: ../fish/guestfish-actions.pod:3388
26793 #, no-wrap
26794 msgid ""
26795 " ntfsresize device\n"
26796 "\n"
26797 msgstr ""
26798
26799 #. type: =head2
26800 #: ../fish/guestfish-actions.pod:3410
26801 msgid "ntfsresize-opts"
26802 msgstr ""
26803
26804 #. type: verbatim
26805 #: ../fish/guestfish-actions.pod:3412
26806 #, no-wrap
26807 msgid ""
26808 " ntfsresize-opts device [size:..] [force:..]\n"
26809 "\n"
26810 msgstr ""
26811
26812 #. type: textblock
26813 #: ../fish/guestfish-actions.pod:3431
26814 msgid ""
26815 "After the resize operation, the filesystem is always marked as requiring a "
26816 "consistency check (for safety).  You have to boot into Windows to perform "
26817 "this check and clear this condition.  If you I<don't> set the C<force> "
26818 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
26819 "a single filesystem without booting into Windows between each resize."
26820 msgstr ""
26821
26822 #. type: =head2
26823 #: ../fish/guestfish-actions.pod:3444
26824 msgid "ntfsresize-size"
26825 msgstr ""
26826
26827 #. type: verbatim
26828 #: ../fish/guestfish-actions.pod:3446
26829 #, no-wrap
26830 msgid ""
26831 " ntfsresize-size device size\n"
26832 "\n"
26833 msgstr ""
26834
26835 #. type: textblock
26836 #: ../fish/guestfish-actions.pod:3448
26837 msgid ""
26838 "This command is the same as L</ntfsresize> except that it allows you to "
26839 "specify the new size (in bytes) explicitly."
26840 msgstr ""
26841
26842 #. type: =head2
26843 #: ../fish/guestfish-actions.pod:3458
26844 msgid "part-add"
26845 msgstr ""
26846
26847 #. type: verbatim
26848 #: ../fish/guestfish-actions.pod:3460
26849 #, no-wrap
26850 msgid ""
26851 " part-add device prlogex startsect endsect\n"
26852 "\n"
26853 msgstr ""
26854
26855 #. type: textblock
26856 #: ../fish/guestfish-actions.pod:3462
26857 msgid ""
26858 "This command adds a partition to C<device>.  If there is no partition table "
26859 "on the device, call L</part-init> first."
26860 msgstr ""
26861
26862 #. type: textblock
26863 #: ../fish/guestfish-actions.pod:3474
26864 msgid ""
26865 "Creating a partition which covers the whole disk is not so easy.  Use L</"
26866 "part-disk> to do that."
26867 msgstr ""
26868
26869 #. type: =head2
26870 #: ../fish/guestfish-actions.pod:3477
26871 msgid "part-del"
26872 msgstr ""
26873
26874 #. type: verbatim
26875 #: ../fish/guestfish-actions.pod:3479
26876 #, no-wrap
26877 msgid ""
26878 " part-del device partnum\n"
26879 "\n"
26880 msgstr ""
26881
26882 #. type: =head2
26883 #: ../fish/guestfish-actions.pod:3487
26884 msgid "part-disk"
26885 msgstr ""
26886
26887 #. type: verbatim
26888 #: ../fish/guestfish-actions.pod:3489
26889 #, no-wrap
26890 msgid ""
26891 " part-disk device parttype\n"
26892 "\n"
26893 msgstr ""
26894
26895 #. type: textblock
26896 #: ../fish/guestfish-actions.pod:3491
26897 msgid ""
26898 "This command is simply a combination of L</part-init> followed by L</part-"
26899 "add> to create a single primary partition covering the whole disk."
26900 msgstr ""
26901
26902 #. type: textblock
26903 #: ../fish/guestfish-actions.pod:3495
26904 msgid ""
26905 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
26906 "possible values are described in L</part-init>."
26907 msgstr ""
26908
26909 #. type: =head2
26910 #: ../fish/guestfish-actions.pod:3501
26911 msgid "part-get-bootable"
26912 msgstr ""
26913
26914 #. type: verbatim
26915 #: ../fish/guestfish-actions.pod:3503
26916 #, no-wrap
26917 msgid ""
26918 " part-get-bootable device partnum\n"
26919 "\n"
26920 msgstr ""
26921
26922 #. type: textblock
26923 #: ../fish/guestfish-actions.pod:3508
26924 msgid "See also L</part-set-bootable>."
26925 msgstr ""
26926
26927 #. type: =head2
26928 #: ../fish/guestfish-actions.pod:3510
26929 msgid "part-get-mbr-id"
26930 msgstr ""
26931
26932 #. type: verbatim
26933 #: ../fish/guestfish-actions.pod:3512
26934 #, no-wrap
26935 msgid ""
26936 " part-get-mbr-id device partnum\n"
26937 "\n"
26938 msgstr ""
26939
26940 #. type: textblock
26941 #: ../fish/guestfish-actions.pod:3517 ../fish/guestfish-actions.pod:3655
26942 msgid ""
26943 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
26944 "undefined results for other partition table types (see L</part-get-"
26945 "parttype>)."
26946 msgstr ""
26947
26948 #. type: =head2
26949 #: ../fish/guestfish-actions.pod:3521
26950 msgid "part-get-parttype"
26951 msgstr ""
26952
26953 #. type: verbatim
26954 #: ../fish/guestfish-actions.pod:3523
26955 #, no-wrap
26956 msgid ""
26957 " part-get-parttype device\n"
26958 "\n"
26959 msgstr ""
26960
26961 #. type: textblock
26962 #: ../fish/guestfish-actions.pod:3528
26963 msgid ""
26964 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26965 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26966 "possible, although unusual.  See L</part-init> for a full list."
26967 msgstr ""
26968
26969 #. type: =head2
26970 #: ../fish/guestfish-actions.pod:3533
26971 msgid "part-init"
26972 msgstr ""
26973
26974 #. type: verbatim
26975 #: ../fish/guestfish-actions.pod:3535
26976 #, no-wrap
26977 msgid ""
26978 " part-init device parttype\n"
26979 "\n"
26980 msgstr ""
26981
26982 #. type: textblock
26983 #: ../fish/guestfish-actions.pod:3541
26984 msgid ""
26985 "Initially there are no partitions.  Following this, you should call L</part-"
26986 "add> for each partition required."
26987 msgstr ""
26988
26989 #. type: =head2
26990 #: ../fish/guestfish-actions.pod:3604
26991 msgid "part-list"
26992 msgstr ""
26993
26994 #. type: verbatim
26995 #: ../fish/guestfish-actions.pod:3606
26996 #, no-wrap
26997 msgid ""
26998 " part-list device\n"
26999 "\n"
27000 msgstr ""
27001
27002 #. type: textblock
27003 #: ../fish/guestfish-actions.pod:3621
27004 msgid ""
27005 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
27006 "the device's sector size, see L</blockdev-getss>."
27007 msgstr ""
27008
27009 #. type: =head2
27010 #: ../fish/guestfish-actions.pod:3634
27011 msgid "part-set-bootable"
27012 msgstr ""
27013
27014 #. type: verbatim
27015 #: ../fish/guestfish-actions.pod:3636
27016 #, no-wrap
27017 msgid ""
27018 " part-set-bootable device partnum true|false\n"
27019 "\n"
27020 msgstr ""
27021
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:3645
27024 msgid "part-set-mbr-id"
27025 msgstr ""
27026
27027 #. type: verbatim
27028 #: ../fish/guestfish-actions.pod:3647
27029 #, no-wrap
27030 msgid ""
27031 " part-set-mbr-id device partnum idbyte\n"
27032 "\n"
27033 msgstr ""
27034
27035 #. type: =head2
27036 #: ../fish/guestfish-actions.pod:3659
27037 msgid "part-set-name"
27038 msgstr ""
27039
27040 #. type: verbatim
27041 #: ../fish/guestfish-actions.pod:3661
27042 #, no-wrap
27043 msgid ""
27044 " part-set-name device partnum name\n"
27045 "\n"
27046 msgstr ""
27047
27048 #. type: =head2
27049 #: ../fish/guestfish-actions.pod:3669
27050 msgid "part-to-dev"
27051 msgstr ""
27052
27053 #. type: verbatim
27054 #: ../fish/guestfish-actions.pod:3671
27055 #, no-wrap
27056 msgid ""
27057 " part-to-dev partition\n"
27058 "\n"
27059 msgstr ""
27060
27061 #. type: textblock
27062 #: ../fish/guestfish-actions.pod:3677
27063 msgid ""
27064 "The named partition must exist, for example as a string returned from L</"
27065 "list-partitions>."
27066 msgstr ""
27067
27068 #. type: =head2
27069 #: ../fish/guestfish-actions.pod:3680
27070 msgid "ping-daemon"
27071 msgstr ""
27072
27073 #. type: verbatim
27074 #: ../fish/guestfish-actions.pod:3682
27075 #, no-wrap
27076 msgid ""
27077 " ping-daemon\n"
27078 "\n"
27079 msgstr ""
27080
27081 #. type: =head2
27082 #: ../fish/guestfish-actions.pod:3689
27083 msgid "pread"
27084 msgstr ""
27085
27086 #. type: verbatim
27087 #: ../fish/guestfish-actions.pod:3691
27088 #, no-wrap
27089 msgid ""
27090 " pread path count offset\n"
27091 "\n"
27092 msgstr ""
27093
27094 #. type: textblock
27095 #: ../fish/guestfish-actions.pod:3699
27096 msgid "See also L</pwrite>, L</pread-device>."
27097 msgstr ""
27098
27099 #. type: =head2
27100 #: ../fish/guestfish-actions.pod:3704
27101 msgid "pread-device"
27102 msgstr ""
27103
27104 #. type: verbatim
27105 #: ../fish/guestfish-actions.pod:3706
27106 #, no-wrap
27107 msgid ""
27108 " pread-device device count offset\n"
27109 "\n"
27110 msgstr ""
27111
27112 #. type: textblock
27113 #: ../fish/guestfish-actions.pod:3714
27114 msgid "See also L</pread>."
27115 msgstr ""
27116
27117 #. type: =head2
27118 #: ../fish/guestfish-actions.pod:3719
27119 msgid "pvcreate"
27120 msgstr ""
27121
27122 #. type: verbatim
27123 #: ../fish/guestfish-actions.pod:3721
27124 #, no-wrap
27125 msgid ""
27126 " pvcreate device\n"
27127 "\n"
27128 msgstr ""
27129
27130 #. type: =head2
27131 #: ../fish/guestfish-actions.pod:3727
27132 msgid "pvremove"
27133 msgstr ""
27134
27135 #. type: verbatim
27136 #: ../fish/guestfish-actions.pod:3729
27137 #, no-wrap
27138 msgid ""
27139 " pvremove device\n"
27140 "\n"
27141 msgstr ""
27142
27143 #. type: =head2
27144 #: ../fish/guestfish-actions.pod:3738
27145 msgid "pvresize"
27146 msgstr ""
27147
27148 #. type: verbatim
27149 #: ../fish/guestfish-actions.pod:3740
27150 #, no-wrap
27151 msgid ""
27152 " pvresize device\n"
27153 "\n"
27154 msgstr ""
27155
27156 #. type: =head2
27157 #: ../fish/guestfish-actions.pod:3745
27158 msgid "pvresize-size"
27159 msgstr ""
27160
27161 #. type: verbatim
27162 #: ../fish/guestfish-actions.pod:3747
27163 #, no-wrap
27164 msgid ""
27165 " pvresize-size device size\n"
27166 "\n"
27167 msgstr ""
27168
27169 #. type: textblock
27170 #: ../fish/guestfish-actions.pod:3749
27171 msgid ""
27172 "This command is the same as L</pvresize> except that it allows you to "
27173 "specify the new size (in bytes) explicitly."
27174 msgstr ""
27175
27176 #. type: =head2
27177 #: ../fish/guestfish-actions.pod:3752
27178 msgid "pvs"
27179 msgstr ""
27180
27181 #. type: verbatim
27182 #: ../fish/guestfish-actions.pod:3754
27183 #, no-wrap
27184 msgid ""
27185 " pvs\n"
27186 "\n"
27187 msgstr ""
27188
27189 #. type: textblock
27190 #: ../fish/guestfish-actions.pod:3762
27191 msgid "See also L</pvs-full>."
27192 msgstr ""
27193
27194 #. type: =head2
27195 #: ../fish/guestfish-actions.pod:3764
27196 msgid "pvs-full"
27197 msgstr ""
27198
27199 #. type: verbatim
27200 #: ../fish/guestfish-actions.pod:3766
27201 #, no-wrap
27202 msgid ""
27203 " pvs-full\n"
27204 "\n"
27205 msgstr ""
27206
27207 #. type: =head2
27208 #: ../fish/guestfish-actions.pod:3771
27209 msgid "pvuuid"
27210 msgstr ""
27211
27212 #. type: verbatim
27213 #: ../fish/guestfish-actions.pod:3773
27214 #, no-wrap
27215 msgid ""
27216 " pvuuid device\n"
27217 "\n"
27218 msgstr ""
27219
27220 #. type: =head2
27221 #: ../fish/guestfish-actions.pod:3777
27222 msgid "pwrite"
27223 msgstr ""
27224
27225 #. type: verbatim
27226 #: ../fish/guestfish-actions.pod:3779
27227 #, no-wrap
27228 msgid ""
27229 " pwrite path content offset\n"
27230 "\n"
27231 msgstr ""
27232
27233 #. type: textblock
27234 #: ../fish/guestfish-actions.pod:3790
27235 msgid "See also L</pread>, L</pwrite-device>."
27236 msgstr ""
27237
27238 #. type: =head2
27239 #: ../fish/guestfish-actions.pod:3795
27240 msgid "pwrite-device"
27241 msgstr ""
27242
27243 #. type: verbatim
27244 #: ../fish/guestfish-actions.pod:3797
27245 #, no-wrap
27246 msgid ""
27247 " pwrite-device device content offset\n"
27248 "\n"
27249 msgstr ""
27250
27251 #. type: textblock
27252 #: ../fish/guestfish-actions.pod:3807
27253 msgid "See also L</pwrite>."
27254 msgstr ""
27255
27256 #. type: =head2
27257 #: ../fish/guestfish-actions.pod:3812
27258 msgid "read-file"
27259 msgstr ""
27260
27261 #. type: verbatim
27262 #: ../fish/guestfish-actions.pod:3814
27263 #, no-wrap
27264 msgid ""
27265 " read-file path\n"
27266 "\n"
27267 msgstr ""
27268
27269 #. type: textblock
27270 #: ../fish/guestfish-actions.pod:3819
27271 msgid ""
27272 "Unlike L</cat>, this function can correctly handle files that contain "
27273 "embedded ASCII NUL characters.  However unlike L</download>, this function "
27274 "is limited in the total size of file that can be handled."
27275 msgstr ""
27276
27277 #. type: =head2
27278 #: ../fish/guestfish-actions.pod:3827
27279 msgid "read-lines"
27280 msgstr ""
27281
27282 #. type: verbatim
27283 #: ../fish/guestfish-actions.pod:3829
27284 #, no-wrap
27285 msgid ""
27286 " read-lines path\n"
27287 "\n"
27288 msgstr ""
27289
27290 #. type: textblock
27291 #: ../fish/guestfish-actions.pod:3836
27292 msgid ""
27293 "Note that this function cannot correctly handle binary files (specifically, "
27294 "files containing C<\\0> character which is treated as end of line).  For "
27295 "those you need to use the L</read-file> function which has a more complex "
27296 "interface."
27297 msgstr ""
27298
27299 #. type: =head2
27300 #: ../fish/guestfish-actions.pod:3841
27301 msgid "readdir"
27302 msgstr ""
27303
27304 #. type: verbatim
27305 #: ../fish/guestfish-actions.pod:3843
27306 #, no-wrap
27307 msgid ""
27308 " readdir dir\n"
27309 "\n"
27310 msgstr ""
27311
27312 #. type: textblock
27313 #: ../fish/guestfish-actions.pod:3895
27314 msgid ""
27315 "This function is primarily intended for use by programs.  To get a simple "
27316 "list of names, use L</ls>.  To get a printable directory for human "
27317 "consumption, use L</ll>."
27318 msgstr ""
27319
27320 #. type: =head2
27321 #: ../fish/guestfish-actions.pod:3899
27322 msgid "readlink"
27323 msgstr ""
27324
27325 #. type: verbatim
27326 #: ../fish/guestfish-actions.pod:3901
27327 #, no-wrap
27328 msgid ""
27329 " readlink path\n"
27330 "\n"
27331 msgstr ""
27332
27333 #. type: =head2
27334 #: ../fish/guestfish-actions.pod:3905
27335 msgid "readlinklist"
27336 msgstr ""
27337
27338 #. type: verbatim
27339 #: ../fish/guestfish-actions.pod:3907
27340 #, no-wrap
27341 msgid ""
27342 " readlinklist path 'names ...'\n"
27343 "\n"
27344 msgstr ""
27345
27346 #. type: =head2
27347 #: ../fish/guestfish-actions.pod:3931
27348 msgid "realpath"
27349 msgstr ""
27350
27351 #. type: verbatim
27352 #: ../fish/guestfish-actions.pod:3933
27353 #, no-wrap
27354 msgid ""
27355 " realpath path\n"
27356 "\n"
27357 msgstr ""
27358
27359 #. type: =head2
27360 #: ../fish/guestfish-actions.pod:3938
27361 msgid "removexattr"
27362 msgstr ""
27363
27364 #. type: verbatim
27365 #: ../fish/guestfish-actions.pod:3940
27366 #, no-wrap
27367 msgid ""
27368 " removexattr xattr path\n"
27369 "\n"
27370 msgstr ""
27371
27372 #. type: textblock
27373 #: ../fish/guestfish-actions.pod:3945
27374 msgid "See also: L</lremovexattr>, L<attr(5)>."
27375 msgstr ""
27376
27377 #. type: =head2
27378 #: ../fish/guestfish-actions.pod:3947
27379 msgid "resize2fs"
27380 msgstr ""
27381
27382 #. type: verbatim
27383 #: ../fish/guestfish-actions.pod:3949
27384 #, no-wrap
27385 msgid ""
27386 " resize2fs device\n"
27387 "\n"
27388 msgstr ""
27389
27390 #. type: textblock
27391 #: ../fish/guestfish-actions.pod:3954
27392 msgid ""
27393 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
27394 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
27395 "gives an error about this and sometimes not.  In any case, it is always safe "
27396 "to call L</e2fsck-f> before calling this function."
27397 msgstr ""
27398
27399 #. type: =head2
27400 #: ../fish/guestfish-actions.pod:3960
27401 msgid "resize2fs-M"
27402 msgstr ""
27403
27404 #. type: verbatim
27405 #: ../fish/guestfish-actions.pod:3962
27406 #, no-wrap
27407 msgid ""
27408 " resize2fs-M device\n"
27409 "\n"
27410 msgstr ""
27411
27412 #. type: textblock
27413 #: ../fish/guestfish-actions.pod:3964
27414 msgid ""
27415 "This command is the same as L</resize2fs>, but the filesystem is resized to "
27416 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
27417 "command."
27418 msgstr ""
27419
27420 #. type: textblock
27421 #: ../fish/guestfish-actions.pod:3968
27422 msgid ""
27423 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
27424 "and read the C<Block size> and C<Block count> values.  These two numbers, "
27425 "multiplied together, give the resulting size of the minimal filesystem in "
27426 "bytes."
27427 msgstr ""
27428
27429 #. type: =head2
27430 #: ../fish/guestfish-actions.pod:3973
27431 msgid "resize2fs-size"
27432 msgstr ""
27433
27434 #. type: verbatim
27435 #: ../fish/guestfish-actions.pod:3975
27436 #, no-wrap
27437 msgid ""
27438 " resize2fs-size device size\n"
27439 "\n"
27440 msgstr ""
27441
27442 #. type: textblock
27443 #: ../fish/guestfish-actions.pod:3977
27444 msgid ""
27445 "This command is the same as L</resize2fs> except that it allows you to "
27446 "specify the new size (in bytes) explicitly."
27447 msgstr ""
27448
27449 #. type: =head2
27450 #: ../fish/guestfish-actions.pod:3980
27451 msgid "rm"
27452 msgstr ""
27453
27454 #. type: verbatim
27455 #: ../fish/guestfish-actions.pod:3982
27456 #, no-wrap
27457 msgid ""
27458 " rm path\n"
27459 "\n"
27460 msgstr ""
27461
27462 #. type: =head2
27463 #: ../fish/guestfish-actions.pod:3986
27464 msgid "rm-rf"
27465 msgstr ""
27466
27467 #. type: verbatim
27468 #: ../fish/guestfish-actions.pod:3988
27469 #, no-wrap
27470 msgid ""
27471 " rm-rf path\n"
27472 "\n"
27473 msgstr ""
27474
27475 #. type: =head2
27476 #: ../fish/guestfish-actions.pod:3994
27477 msgid "rmdir"
27478 msgstr ""
27479
27480 #. type: verbatim
27481 #: ../fish/guestfish-actions.pod:3996
27482 #, no-wrap
27483 msgid ""
27484 " rmdir path\n"
27485 "\n"
27486 msgstr ""
27487
27488 #. type: =head2
27489 #: ../fish/guestfish-actions.pod:4000
27490 msgid "rmmountpoint"
27491 msgstr ""
27492
27493 #. type: verbatim
27494 #: ../fish/guestfish-actions.pod:4002
27495 #, no-wrap
27496 msgid ""
27497 " rmmountpoint exemptpath\n"
27498 "\n"
27499 msgstr ""
27500
27501 #. type: textblock
27502 #: ../fish/guestfish-actions.pod:4004
27503 msgid ""
27504 "This calls removes a mountpoint that was previously created with L</"
27505 "mkmountpoint>.  See L</mkmountpoint> for full details."
27506 msgstr ""
27507
27508 #. type: =head2
27509 #: ../fish/guestfish-actions.pod:4008
27510 msgid "scrub-device"
27511 msgstr ""
27512
27513 #. type: verbatim
27514 #: ../fish/guestfish-actions.pod:4010
27515 #, no-wrap
27516 msgid ""
27517 " scrub-device device\n"
27518 "\n"
27519 msgstr ""
27520
27521 #. type: =head2
27522 #: ../fish/guestfish-actions.pod:4021
27523 msgid "scrub-file"
27524 msgstr ""
27525
27526 #. type: verbatim
27527 #: ../fish/guestfish-actions.pod:4023
27528 #, no-wrap
27529 msgid ""
27530 " scrub-file file\n"
27531 "\n"
27532 msgstr ""
27533
27534 #. type: =head2
27535 #: ../fish/guestfish-actions.pod:4033
27536 msgid "scrub-freespace"
27537 msgstr ""
27538
27539 #. type: verbatim
27540 #: ../fish/guestfish-actions.pod:4035
27541 #, no-wrap
27542 msgid ""
27543 " scrub-freespace dir\n"
27544 "\n"
27545 msgstr ""
27546
27547 #. type: textblock
27548 #: ../fish/guestfish-actions.pod:4037
27549 msgid ""
27550 "This command creates the directory C<dir> and then fills it with files until "
27551 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
27552 "deletes them.  The intention is to scrub any free space on the partition "
27553 "containing C<dir>."
27554 msgstr ""
27555
27556 #. type: =head2
27557 #: ../fish/guestfish-actions.pod:4046
27558 msgid "set-append"
27559 msgstr ""
27560
27561 #. type: =head2
27562 #: ../fish/guestfish-actions.pod:4048
27563 msgid "append"
27564 msgstr ""
27565
27566 #. type: verbatim
27567 #: ../fish/guestfish-actions.pod:4050
27568 #, no-wrap
27569 msgid ""
27570 " set-append append\n"
27571 "\n"
27572 msgstr ""
27573
27574 #. type: =head2
27575 #: ../fish/guestfish-actions.pod:4061
27576 msgid "set-attach-method"
27577 msgstr ""
27578
27579 #. type: =head2
27580 #: ../fish/guestfish-actions.pod:4063
27581 msgid "attach-method"
27582 msgstr ""
27583
27584 #. type: verbatim
27585 #: ../fish/guestfish-actions.pod:4065
27586 #, no-wrap
27587 msgid ""
27588 " set-attach-method attachmethod\n"
27589 "\n"
27590 msgstr ""
27591
27592 #. type: =head2
27593 #: ../fish/guestfish-actions.pod:4087
27594 msgid "set-autosync"
27595 msgstr ""
27596
27597 #. type: =head2
27598 #: ../fish/guestfish-actions.pod:4089
27599 msgid "autosync"
27600 msgstr ""
27601
27602 #. type: verbatim
27603 #: ../fish/guestfish-actions.pod:4091
27604 #, no-wrap
27605 msgid ""
27606 " set-autosync true|false\n"
27607 "\n"
27608 msgstr ""
27609
27610 #. type: =head2
27611 #: ../fish/guestfish-actions.pod:4101
27612 msgid "set-direct"
27613 msgstr ""
27614
27615 #. type: =head2
27616 #: ../fish/guestfish-actions.pod:4103
27617 msgid "direct"
27618 msgstr ""
27619
27620 #. type: verbatim
27621 #: ../fish/guestfish-actions.pod:4105
27622 #, no-wrap
27623 msgid ""
27624 " set-direct true|false\n"
27625 "\n"
27626 msgstr ""
27627
27628 #. type: textblock
27629 #: ../fish/guestfish-actions.pod:4111
27630 msgid ""
27631 "One consequence of this is that log messages aren't caught by the library "
27632 "and handled by L</set-log-message-callback>, but go straight to stdout."
27633 msgstr ""
27634
27635 #. type: =head2
27636 #: ../fish/guestfish-actions.pod:4120
27637 msgid "set-e2label"
27638 msgstr ""
27639
27640 #. type: verbatim
27641 #: ../fish/guestfish-actions.pod:4122
27642 #, no-wrap
27643 msgid ""
27644 " set-e2label device label\n"
27645 "\n"
27646 msgstr ""
27647
27648 #. type: textblock
27649 #: ../fish/guestfish-actions.pod:4128
27650 msgid ""
27651 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
27652 "label on a filesystem."
27653 msgstr ""
27654
27655 #. type: =head2
27656 #: ../fish/guestfish-actions.pod:4131
27657 msgid "set-e2uuid"
27658 msgstr ""
27659
27660 #. type: verbatim
27661 #: ../fish/guestfish-actions.pod:4133
27662 #, no-wrap
27663 msgid ""
27664 " set-e2uuid device uuid\n"
27665 "\n"
27666 msgstr ""
27667
27668 #. type: textblock
27669 #: ../fish/guestfish-actions.pod:4140
27670 msgid ""
27671 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
27672 "UUID of a filesystem."
27673 msgstr ""
27674
27675 #. type: =head2
27676 #: ../fish/guestfish-actions.pod:4143
27677 msgid "set-memsize"
27678 msgstr ""
27679
27680 #. type: =head2
27681 #: ../fish/guestfish-actions.pod:4145
27682 msgid "memsize"
27683 msgstr ""
27684
27685 #. type: verbatim
27686 #: ../fish/guestfish-actions.pod:4147
27687 #, no-wrap
27688 msgid ""
27689 " set-memsize memsize\n"
27690 "\n"
27691 msgstr ""
27692
27693 #. type: textblock
27694 #: ../fish/guestfish-actions.pod:4149
27695 msgid ""
27696 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
27697 "This only has any effect if called before L</launch>."
27698 msgstr ""
27699
27700 #. type: =head2
27701 #: ../fish/guestfish-actions.pod:4160
27702 msgid "set-network"
27703 msgstr ""
27704
27705 #. type: =head2
27706 #: ../fish/guestfish-actions.pod:4162
27707 msgid "network"
27708 msgstr ""
27709
27710 #. type: verbatim
27711 #: ../fish/guestfish-actions.pod:4164
27712 #, no-wrap
27713 msgid ""
27714 " set-network true|false\n"
27715 "\n"
27716 msgstr ""
27717
27718 #. type: textblock
27719 #: ../fish/guestfish-actions.pod:4172
27720 msgid ""
27721 "You must call this before calling L</launch>, otherwise it has no effect."
27722 msgstr ""
27723
27724 #. type: =head2
27725 #: ../fish/guestfish-actions.pod:4175
27726 msgid "set-path"
27727 msgstr ""
27728
27729 #. type: =head2
27730 #: ../fish/guestfish-actions.pod:4177
27731 msgid "path"
27732 msgstr ""
27733
27734 #. type: verbatim
27735 #: ../fish/guestfish-actions.pod:4179
27736 #, no-wrap
27737 msgid ""
27738 " set-path searchpath\n"
27739 "\n"
27740 msgstr ""
27741
27742 #. type: =head2
27743 #: ../fish/guestfish-actions.pod:4188
27744 msgid "set-pgroup"
27745 msgstr ""
27746
27747 #. type: =head2
27748 #: ../fish/guestfish-actions.pod:4190
27749 msgid "pgroup"
27750 msgstr ""
27751
27752 #. type: verbatim
27753 #: ../fish/guestfish-actions.pod:4192
27754 #, no-wrap
27755 msgid ""
27756 " set-pgroup true|false\n"
27757 "\n"
27758 msgstr ""
27759
27760 #. type: =head2
27761 #: ../fish/guestfish-actions.pod:4203
27762 msgid "set-qemu"
27763 msgstr ""
27764
27765 #. type: =head2
27766 #: ../fish/guestfish-actions.pod:4205
27767 msgid "qemu"
27768 msgstr ""
27769
27770 #. type: verbatim
27771 #: ../fish/guestfish-actions.pod:4207
27772 #, no-wrap
27773 msgid ""
27774 " set-qemu qemu\n"
27775 "\n"
27776 msgstr ""
27777
27778 #. type: =head2
27779 #: ../fish/guestfish-actions.pod:4227
27780 msgid "set-recovery-proc"
27781 msgstr ""
27782
27783 #. type: =head2
27784 #: ../fish/guestfish-actions.pod:4229
27785 msgid "recovery-proc"
27786 msgstr ""
27787
27788 #. type: verbatim
27789 #: ../fish/guestfish-actions.pod:4231
27790 #, no-wrap
27791 msgid ""
27792 " set-recovery-proc true|false\n"
27793 "\n"
27794 msgstr ""
27795
27796 #. type: textblock
27797 #: ../fish/guestfish-actions.pod:4233
27798 msgid ""
27799 "If this is called with the parameter C<false> then L</launch> does not "
27800 "create a recovery process.  The purpose of the recovery process is to stop "
27801 "runaway qemu processes in the case where the main program aborts abruptly."
27802 msgstr ""
27803
27804 #. type: textblock
27805 #: ../fish/guestfish-actions.pod:4238
27806 msgid ""
27807 "This only has any effect if called before L</launch>, and the default is "
27808 "true."
27809 msgstr ""
27810
27811 #. type: =head2
27812 #: ../fish/guestfish-actions.pod:4247
27813 msgid "set-selinux"
27814 msgstr ""
27815
27816 #. type: =head2
27817 #: ../fish/guestfish-actions.pod:4249
27818 msgid "selinux"
27819 msgstr ""
27820
27821 #. type: verbatim
27822 #: ../fish/guestfish-actions.pod:4251
27823 #, no-wrap
27824 msgid ""
27825 " set-selinux true|false\n"
27826 "\n"
27827 msgstr ""
27828
27829 #. type: =head2
27830 #: ../fish/guestfish-actions.pod:4262
27831 msgid "set-trace"
27832 msgstr ""
27833
27834 #. type: =head2
27835 #: ../fish/guestfish-actions.pod:4264
27836 msgid "trace"
27837 msgstr ""
27838
27839 #. type: verbatim
27840 #: ../fish/guestfish-actions.pod:4266
27841 #, no-wrap
27842 msgid ""
27843 " set-trace true|false\n"
27844 "\n"
27845 msgstr ""
27846
27847 #. type: textblock
27848 #: ../fish/guestfish-actions.pod:4278
27849 msgid ""
27850 "Trace messages are normally sent to C<stderr>, unless you register a "
27851 "callback to send them somewhere else (see L</set-event-callback>)."
27852 msgstr ""
27853
27854 #. type: =head2
27855 #: ../fish/guestfish-actions.pod:4282
27856 msgid "set-verbose"
27857 msgstr ""
27858
27859 #. type: =head2
27860 #: ../fish/guestfish-actions.pod:4284
27861 msgid "verbose"
27862 msgstr ""
27863
27864 #. type: verbatim
27865 #: ../fish/guestfish-actions.pod:4286
27866 #, no-wrap
27867 msgid ""
27868 " set-verbose true|false\n"
27869 "\n"
27870 msgstr ""
27871
27872 #. type: textblock
27873 #: ../fish/guestfish-actions.pod:4293
27874 msgid ""
27875 "Verbose messages are normally sent to C<stderr>, unless you register a "
27876 "callback to send them somewhere else (see L</set-event-callback>)."
27877 msgstr ""
27878
27879 #. type: =head2
27880 #: ../fish/guestfish-actions.pod:4297
27881 msgid "setcon"
27882 msgstr ""
27883
27884 #. type: verbatim
27885 #: ../fish/guestfish-actions.pod:4299
27886 #, no-wrap
27887 msgid ""
27888 " setcon context\n"
27889 "\n"
27890 msgstr ""
27891
27892 #. type: =head2
27893 #: ../fish/guestfish-actions.pod:4306
27894 msgid "setxattr"
27895 msgstr ""
27896
27897 #. type: verbatim
27898 #: ../fish/guestfish-actions.pod:4308
27899 #, no-wrap
27900 msgid ""
27901 " setxattr xattr val vallen path\n"
27902 "\n"
27903 msgstr ""
27904
27905 #. type: textblock
27906 #: ../fish/guestfish-actions.pod:4314
27907 msgid "See also: L</lsetxattr>, L<attr(5)>."
27908 msgstr ""
27909
27910 #. type: =head2
27911 #: ../fish/guestfish-actions.pod:4316
27912 msgid "sfdisk"
27913 msgstr ""
27914
27915 #. type: verbatim
27916 #: ../fish/guestfish-actions.pod:4318
27917 #, no-wrap
27918 msgid ""
27919 " sfdisk device cyls heads sectors 'lines ...'\n"
27920 "\n"
27921 msgstr ""
27922
27923 #. type: textblock
27924 #: ../fish/guestfish-actions.pod:4340
27925 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27926 msgstr ""
27927
27928 #. type: =head2
27929 #: ../fish/guestfish-actions.pod:4353
27930 msgid "sfdiskM"
27931 msgstr ""
27932
27933 #. type: verbatim
27934 #: ../fish/guestfish-actions.pod:4355
27935 #, no-wrap
27936 msgid ""
27937 " sfdiskM device 'lines ...'\n"
27938 "\n"
27939 msgstr ""
27940
27941 #. type: textblock
27942 #: ../fish/guestfish-actions.pod:4357
27943 msgid ""
27944 "This is a simplified interface to the L</sfdisk> command, where partition "
27945 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27946 "you don't need to specify the cyls, heads and sectors parameters which were "
27947 "rarely if ever used anyway."
27948 msgstr ""
27949
27950 #. type: textblock
27951 #: ../fish/guestfish-actions.pod:4363
27952 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27953 msgstr ""
27954
27955 #. type: =head2
27956 #: ../fish/guestfish-actions.pod:4376
27957 msgid "sfdisk-N"
27958 msgstr ""
27959
27960 #. type: verbatim
27961 #: ../fish/guestfish-actions.pod:4378
27962 #, no-wrap
27963 msgid ""
27964 " sfdisk-N device partnum cyls heads sectors line\n"
27965 "\n"
27966 msgstr ""
27967
27968 #. type: textblock
27969 #: ../fish/guestfish-actions.pod:4383
27970 msgid ""
27971 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27972 "cyls/heads/sectors parameters."
27973 msgstr ""
27974
27975 #. type: textblock
27976 #: ../fish/guestfish-actions.pod:4386
27977 msgid "See also: L</part-add>"
27978 msgstr ""
27979
27980 #. type: =head2
27981 #: ../fish/guestfish-actions.pod:4398
27982 msgid "sfdisk-disk-geometry"
27983 msgstr ""
27984
27985 #. type: verbatim
27986 #: ../fish/guestfish-actions.pod:4400
27987 #, no-wrap
27988 msgid ""
27989 " sfdisk-disk-geometry device\n"
27990 "\n"
27991 msgstr ""
27992
27993 #. type: textblock
27994 #: ../fish/guestfish-actions.pod:4402
27995 msgid ""
27996 "This displays the disk geometry of C<device> read from the partition table.  "
27997 "Especially in the case where the underlying block device has been resized, "
27998 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
27999 "kernel-geometry>)."
28000 msgstr ""
28001
28002 #. type: =head2
28003 #: ../fish/guestfish-actions.pod:4410
28004 msgid "sfdisk-kernel-geometry"
28005 msgstr ""
28006
28007 #. type: verbatim
28008 #: ../fish/guestfish-actions.pod:4412
28009 #, no-wrap
28010 msgid ""
28011 " sfdisk-kernel-geometry device\n"
28012 "\n"
28013 msgstr ""
28014
28015 #. type: =head2
28016 #: ../fish/guestfish-actions.pod:4419
28017 msgid "sfdisk-l"
28018 msgstr ""
28019
28020 #. type: verbatim
28021 #: ../fish/guestfish-actions.pod:4421
28022 #, no-wrap
28023 msgid ""
28024 " sfdisk-l device\n"
28025 "\n"
28026 msgstr ""
28027
28028 #. type: textblock
28029 #: ../fish/guestfish-actions.pod:4427
28030 msgid "See also: L</part-list>"
28031 msgstr ""
28032
28033 #. type: =head2
28034 #: ../fish/guestfish-actions.pod:4436
28035 msgid "sh"
28036 msgstr ""
28037
28038 #. type: verbatim
28039 #: ../fish/guestfish-actions.pod:4438
28040 #, no-wrap
28041 msgid ""
28042 " sh command\n"
28043 "\n"
28044 msgstr ""
28045
28046 #. type: textblock
28047 #: ../fish/guestfish-actions.pod:4443
28048 msgid "This is like L</command>, but passes the command to:"
28049 msgstr ""
28050
28051 #. type: textblock
28052 #: ../fish/guestfish-actions.pod:4451
28053 msgid "All the provisos about L</command> apply to this call."
28054 msgstr ""
28055
28056 #. type: =head2
28057 #: ../fish/guestfish-actions.pod:4453
28058 msgid "sh-lines"
28059 msgstr ""
28060
28061 #. type: verbatim
28062 #: ../fish/guestfish-actions.pod:4455
28063 #, no-wrap
28064 msgid ""
28065 " sh-lines command\n"
28066 "\n"
28067 msgstr ""
28068
28069 #. type: textblock
28070 #: ../fish/guestfish-actions.pod:4457
28071 msgid "This is the same as L</sh>, but splits the result into a list of lines."
28072 msgstr ""
28073
28074 #. type: textblock
28075 #: ../fish/guestfish-actions.pod:4460
28076 msgid "See also: L</command-lines>"
28077 msgstr ""
28078
28079 #. type: =head2
28080 #: ../fish/guestfish-actions.pod:4462
28081 msgid "sleep"
28082 msgstr ""
28083
28084 #. type: verbatim
28085 #: ../fish/guestfish-actions.pod:4464
28086 #, no-wrap
28087 msgid ""
28088 " sleep secs\n"
28089 "\n"
28090 msgstr ""
28091
28092 #. type: =head2
28093 #: ../fish/guestfish-actions.pod:4468
28094 msgid "stat"
28095 msgstr ""
28096
28097 #. type: verbatim
28098 #: ../fish/guestfish-actions.pod:4470
28099 #, no-wrap
28100 msgid ""
28101 " stat path\n"
28102 "\n"
28103 msgstr ""
28104
28105 #. type: =head2
28106 #: ../fish/guestfish-actions.pod:4476
28107 msgid "statvfs"
28108 msgstr ""
28109
28110 #. type: verbatim
28111 #: ../fish/guestfish-actions.pod:4478
28112 #, no-wrap
28113 msgid ""
28114 " statvfs path\n"
28115 "\n"
28116 msgstr ""
28117
28118 #. type: =head2
28119 #: ../fish/guestfish-actions.pod:4486
28120 msgid "strings"
28121 msgstr ""
28122
28123 #. type: verbatim
28124 #: ../fish/guestfish-actions.pod:4488
28125 #, no-wrap
28126 msgid ""
28127 " strings path\n"
28128 "\n"
28129 msgstr ""
28130
28131 #. type: =head2
28132 #: ../fish/guestfish-actions.pod:4496
28133 msgid "strings-e"
28134 msgstr ""
28135
28136 #. type: verbatim
28137 #: ../fish/guestfish-actions.pod:4498
28138 #, no-wrap
28139 msgid ""
28140 " strings-e encoding path\n"
28141 "\n"
28142 msgstr ""
28143
28144 #. type: textblock
28145 #: ../fish/guestfish-actions.pod:4500
28146 msgid ""
28147 "This is like the L</strings> command, but allows you to specify the encoding "
28148 "of strings that are looked for in the source file C<path>."
28149 msgstr ""
28150
28151 #. type: textblock
28152 #: ../fish/guestfish-actions.pod:4510
28153 msgid ""
28154 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
28155 "ISO-8859-X (this is what L</strings> uses)."
28156 msgstr ""
28157
28158 #. type: =head2
28159 #: ../fish/guestfish-actions.pod:4542
28160 msgid "swapoff-device"
28161 msgstr ""
28162
28163 #. type: verbatim
28164 #: ../fish/guestfish-actions.pod:4544
28165 #, no-wrap
28166 msgid ""
28167 " swapoff-device device\n"
28168 "\n"
28169 msgstr ""
28170
28171 #. type: textblock
28172 #: ../fish/guestfish-actions.pod:4546
28173 msgid ""
28174 "This command disables the libguestfs appliance swap device or partition "
28175 "named C<device>.  See L</swapon-device>."
28176 msgstr ""
28177
28178 #. type: =head2
28179 #: ../fish/guestfish-actions.pod:4550
28180 msgid "swapoff-file"
28181 msgstr ""
28182
28183 #. type: verbatim
28184 #: ../fish/guestfish-actions.pod:4552
28185 #, no-wrap
28186 msgid ""
28187 " swapoff-file file\n"
28188 "\n"
28189 msgstr ""
28190
28191 #. type: =head2
28192 #: ../fish/guestfish-actions.pod:4556
28193 msgid "swapoff-label"
28194 msgstr ""
28195
28196 #. type: verbatim
28197 #: ../fish/guestfish-actions.pod:4558
28198 #, no-wrap
28199 msgid ""
28200 " swapoff-label label\n"
28201 "\n"
28202 msgstr ""
28203
28204 #. type: =head2
28205 #: ../fish/guestfish-actions.pod:4563
28206 msgid "swapoff-uuid"
28207 msgstr ""
28208
28209 #. type: verbatim
28210 #: ../fish/guestfish-actions.pod:4565
28211 #, no-wrap
28212 msgid ""
28213 " swapoff-uuid uuid\n"
28214 "\n"
28215 msgstr ""
28216
28217 #. type: =head2
28218 #: ../fish/guestfish-actions.pod:4570
28219 msgid "swapon-device"
28220 msgstr ""
28221
28222 #. type: verbatim
28223 #: ../fish/guestfish-actions.pod:4572
28224 #, no-wrap
28225 msgid ""
28226 " swapon-device device\n"
28227 "\n"
28228 msgstr ""
28229
28230 #. type: textblock
28231 #: ../fish/guestfish-actions.pod:4574
28232 msgid ""
28233 "This command enables the libguestfs appliance to use the swap device or "
28234 "partition named C<device>.  The increased memory is made available for all "
28235 "commands, for example those run using L</command> or L</sh>."
28236 msgstr ""
28237
28238 #. type: =head2
28239 #: ../fish/guestfish-actions.pod:4586
28240 msgid "swapon-file"
28241 msgstr ""
28242
28243 #. type: verbatim
28244 #: ../fish/guestfish-actions.pod:4588
28245 #, no-wrap
28246 msgid ""
28247 " swapon-file file\n"
28248 "\n"
28249 msgstr ""
28250
28251 #. type: textblock
28252 #: ../fish/guestfish-actions.pod:4590
28253 msgid ""
28254 "This command enables swap to a file.  See L</swapon-device> for other notes."
28255 msgstr ""
28256
28257 #. type: =head2
28258 #: ../fish/guestfish-actions.pod:4593
28259 msgid "swapon-label"
28260 msgstr ""
28261
28262 #. type: verbatim
28263 #: ../fish/guestfish-actions.pod:4595
28264 #, no-wrap
28265 msgid ""
28266 " swapon-label label\n"
28267 "\n"
28268 msgstr ""
28269
28270 #. type: textblock
28271 #: ../fish/guestfish-actions.pod:4597
28272 msgid ""
28273 "This command enables swap to a labeled swap partition.  See L</swapon-"
28274 "device> for other notes."
28275 msgstr ""
28276
28277 #. type: =head2
28278 #: ../fish/guestfish-actions.pod:4600
28279 msgid "swapon-uuid"
28280 msgstr ""
28281
28282 #. type: verbatim
28283 #: ../fish/guestfish-actions.pod:4602
28284 #, no-wrap
28285 msgid ""
28286 " swapon-uuid uuid\n"
28287 "\n"
28288 msgstr ""
28289
28290 #. type: textblock
28291 #: ../fish/guestfish-actions.pod:4604
28292 msgid ""
28293 "This command enables swap to a swap partition with the given UUID.  See L</"
28294 "swapon-device> for other notes."
28295 msgstr ""
28296
28297 #. type: =head2
28298 #: ../fish/guestfish-actions.pod:4607
28299 msgid "sync"
28300 msgstr ""
28301
28302 #. type: verbatim
28303 #: ../fish/guestfish-actions.pod:4609
28304 #, no-wrap
28305 msgid ""
28306 " sync\n"
28307 "\n"
28308 msgstr ""
28309
28310 #. type: =head2
28311 #: ../fish/guestfish-actions.pod:4617
28312 msgid "tail"
28313 msgstr ""
28314
28315 #. type: verbatim
28316 #: ../fish/guestfish-actions.pod:4619
28317 #, no-wrap
28318 msgid ""
28319 " tail path\n"
28320 "\n"
28321 msgstr ""
28322
28323 #. type: =head2
28324 #: ../fish/guestfish-actions.pod:4627
28325 msgid "tail-n"
28326 msgstr ""
28327
28328 #. type: verbatim
28329 #: ../fish/guestfish-actions.pod:4629
28330 #, no-wrap
28331 msgid ""
28332 " tail-n nrlines path\n"
28333 "\n"
28334 msgstr ""
28335
28336 #. type: =head2
28337 #: ../fish/guestfish-actions.pod:4642
28338 msgid "tar-in"
28339 msgstr ""
28340
28341 #. type: verbatim
28342 #: ../fish/guestfish-actions.pod:4644
28343 #, no-wrap
28344 msgid ""
28345 " tar-in (tarfile|-) directory\n"
28346 "\n"
28347 msgstr ""
28348
28349 #. type: textblock
28350 #: ../fish/guestfish-actions.pod:4649
28351 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
28352 msgstr ""
28353
28354 #. type: =head2
28355 #: ../fish/guestfish-actions.pod:4654
28356 msgid "tar-out"
28357 msgstr ""
28358
28359 #. type: verbatim
28360 #: ../fish/guestfish-actions.pod:4656
28361 #, no-wrap
28362 msgid ""
28363 " tar-out directory (tarfile|-)\n"
28364 "\n"
28365 msgstr ""
28366
28367 #. type: textblock
28368 #: ../fish/guestfish-actions.pod:4661
28369 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
28370 msgstr ""
28371
28372 #. type: =head2
28373 #: ../fish/guestfish-actions.pod:4666
28374 msgid "tgz-in"
28375 msgstr ""
28376
28377 #. type: verbatim
28378 #: ../fish/guestfish-actions.pod:4668
28379 #, no-wrap
28380 msgid ""
28381 " tgz-in (tarball|-) directory\n"
28382 "\n"
28383 msgstr ""
28384
28385 #. type: textblock
28386 #: ../fish/guestfish-actions.pod:4673
28387 msgid "To upload an uncompressed tarball, use L</tar-in>."
28388 msgstr ""
28389
28390 #. type: =head2
28391 #: ../fish/guestfish-actions.pod:4677
28392 msgid "tgz-out"
28393 msgstr ""
28394
28395 #. type: verbatim
28396 #: ../fish/guestfish-actions.pod:4679
28397 #, no-wrap
28398 msgid ""
28399 " tgz-out directory (tarball|-)\n"
28400 "\n"
28401 msgstr ""
28402
28403 #. type: textblock
28404 #: ../fish/guestfish-actions.pod:4684
28405 msgid "To download an uncompressed tarball, use L</tar-out>."
28406 msgstr ""
28407
28408 #. type: =head2
28409 #: ../fish/guestfish-actions.pod:4688
28410 msgid "touch"
28411 msgstr ""
28412
28413 #. type: verbatim
28414 #: ../fish/guestfish-actions.pod:4690
28415 #, no-wrap
28416 msgid ""
28417 " touch path\n"
28418 "\n"
28419 msgstr ""
28420
28421 #. type: =head2
28422 #: ../fish/guestfish-actions.pod:4699
28423 msgid "truncate"
28424 msgstr ""
28425
28426 #. type: verbatim
28427 #: ../fish/guestfish-actions.pod:4701
28428 #, no-wrap
28429 msgid ""
28430 " truncate path\n"
28431 "\n"
28432 msgstr ""
28433
28434 #. type: =head2
28435 #: ../fish/guestfish-actions.pod:4706
28436 msgid "truncate-size"
28437 msgstr ""
28438
28439 #. type: verbatim
28440 #: ../fish/guestfish-actions.pod:4708
28441 #, no-wrap
28442 msgid ""
28443 " truncate-size path size\n"
28444 "\n"
28445 msgstr ""
28446
28447 #. type: textblock
28448 #: ../fish/guestfish-actions.pod:4713
28449 msgid ""
28450 "If the current file size is less than C<size> then the file is extended to "
28451 "the required size with zero bytes.  This creates a sparse file (ie. disk "
28452 "blocks are not allocated for the file until you write to it).  To create a "
28453 "non-sparse file of zeroes, use L</fallocate64> instead."
28454 msgstr ""
28455
28456 #. type: =head2
28457 #: ../fish/guestfish-actions.pod:4719
28458 msgid "tune2fs-l"
28459 msgstr ""
28460
28461 #. type: verbatim
28462 #: ../fish/guestfish-actions.pod:4721
28463 #, no-wrap
28464 msgid ""
28465 " tune2fs-l device\n"
28466 "\n"
28467 msgstr ""
28468
28469 #. type: =head2
28470 #: ../fish/guestfish-actions.pod:4731
28471 msgid "txz-in"
28472 msgstr ""
28473
28474 #. type: verbatim
28475 #: ../fish/guestfish-actions.pod:4733
28476 #, no-wrap
28477 msgid ""
28478 " txz-in (tarball|-) directory\n"
28479 "\n"
28480 msgstr ""
28481
28482 #. type: =head2
28483 #: ../fish/guestfish-actions.pod:4740
28484 msgid "txz-out"
28485 msgstr ""
28486
28487 #. type: verbatim
28488 #: ../fish/guestfish-actions.pod:4742
28489 #, no-wrap
28490 msgid ""
28491 " txz-out directory (tarball|-)\n"
28492 "\n"
28493 msgstr ""
28494
28495 #. type: =head2
28496 #: ../fish/guestfish-actions.pod:4749
28497 msgid "umask"
28498 msgstr ""
28499
28500 #. type: verbatim
28501 #: ../fish/guestfish-actions.pod:4751
28502 #, no-wrap
28503 msgid ""
28504 " umask mask\n"
28505 "\n"
28506 msgstr ""
28507
28508 #. type: textblock
28509 #: ../fish/guestfish-actions.pod:4765
28510 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
28511 msgstr ""
28512
28513 #. type: =head2
28514 #: ../fish/guestfish-actions.pod:4770
28515 msgid "umount"
28516 msgstr ""
28517
28518 #. type: =head2
28519 #: ../fish/guestfish-actions.pod:4772
28520 msgid "unmount"
28521 msgstr ""
28522
28523 #. type: verbatim
28524 #: ../fish/guestfish-actions.pod:4774
28525 #, no-wrap
28526 msgid ""
28527 " umount pathordevice\n"
28528 "\n"
28529 msgstr ""
28530
28531 #. type: =head2
28532 #: ../fish/guestfish-actions.pod:4780
28533 msgid "umount-all"
28534 msgstr ""
28535
28536 #. type: =head2
28537 #: ../fish/guestfish-actions.pod:4782
28538 msgid "unmount-all"
28539 msgstr ""
28540
28541 #. type: verbatim
28542 #: ../fish/guestfish-actions.pod:4784
28543 #, no-wrap
28544 msgid ""
28545 " umount-all\n"
28546 "\n"
28547 msgstr ""
28548
28549 #. type: =head2
28550 #: ../fish/guestfish-actions.pod:4790
28551 msgid "upload"
28552 msgstr ""
28553
28554 #. type: verbatim
28555 #: ../fish/guestfish-actions.pod:4792
28556 #, no-wrap
28557 msgid ""
28558 " upload (filename|-) remotefilename\n"
28559 "\n"
28560 msgstr ""
28561
28562 #. type: textblock
28563 #: ../fish/guestfish-actions.pod:4799
28564 msgid "See also L</download>."
28565 msgstr ""
28566
28567 #. type: =head2
28568 #: ../fish/guestfish-actions.pod:4803
28569 msgid "upload-offset"
28570 msgstr ""
28571
28572 #. type: verbatim
28573 #: ../fish/guestfish-actions.pod:4805
28574 #, no-wrap
28575 msgid ""
28576 " upload-offset (filename|-) remotefilename offset\n"
28577 "\n"
28578 msgstr ""
28579
28580 #. type: textblock
28581 #: ../fish/guestfish-actions.pod:4817
28582 msgid ""
28583 "Note that there is no limit on the amount of data that can be uploaded with "
28584 "this call, unlike with L</pwrite>, and this call always writes the full "
28585 "amount unless an error occurs."
28586 msgstr ""
28587
28588 #. type: textblock
28589 #: ../fish/guestfish-actions.pod:4822
28590 msgid "See also L</upload>, L</pwrite>."
28591 msgstr ""
28592
28593 #. type: =head2
28594 #: ../fish/guestfish-actions.pod:4826
28595 msgid "utimens"
28596 msgstr ""
28597
28598 #. type: verbatim
28599 #: ../fish/guestfish-actions.pod:4828
28600 #, no-wrap
28601 msgid ""
28602 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
28603 "\n"
28604 msgstr ""
28605
28606 #. type: =head2
28607 #: ../fish/guestfish-actions.pod:4847
28608 msgid "version"
28609 msgstr ""
28610
28611 #. type: verbatim
28612 #: ../fish/guestfish-actions.pod:4849
28613 #, no-wrap
28614 msgid ""
28615 " version\n"
28616 "\n"
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../fish/guestfish-actions.pod:4876
28621 msgid ""
28622 "I<Note:> Don't use this call to test for availability of features.  In "
28623 "enterprise distributions we backport features from later versions into "
28624 "earlier versions, making this an unreliable way to test for features.  Use "
28625 "L</available> instead."
28626 msgstr ""
28627
28628 #. type: =head2
28629 #: ../fish/guestfish-actions.pod:4882
28630 msgid "vfs-label"
28631 msgstr ""
28632
28633 #. type: verbatim
28634 #: ../fish/guestfish-actions.pod:4884
28635 #, no-wrap
28636 msgid ""
28637 " vfs-label device\n"
28638 "\n"
28639 msgstr ""
28640
28641 #. type: textblock
28642 #: ../fish/guestfish-actions.pod:4891
28643 msgid "To find a filesystem from the label, use L</findfs-label>."
28644 msgstr ""
28645
28646 #. type: =head2
28647 #: ../fish/guestfish-actions.pod:4893
28648 msgid "vfs-type"
28649 msgstr ""
28650
28651 #. type: verbatim
28652 #: ../fish/guestfish-actions.pod:4895
28653 #, no-wrap
28654 msgid ""
28655 " vfs-type device\n"
28656 "\n"
28657 msgstr ""
28658
28659 #. type: =head2
28660 #: ../fish/guestfish-actions.pod:4905
28661 msgid "vfs-uuid"
28662 msgstr ""
28663
28664 #. type: verbatim
28665 #: ../fish/guestfish-actions.pod:4907
28666 #, no-wrap
28667 msgid ""
28668 " vfs-uuid device\n"
28669 "\n"
28670 msgstr ""
28671
28672 #. type: textblock
28673 #: ../fish/guestfish-actions.pod:4914
28674 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
28675 msgstr ""
28676
28677 #. type: =head2
28678 #: ../fish/guestfish-actions.pod:4916
28679 msgid "vg-activate"
28680 msgstr ""
28681
28682 #. type: verbatim
28683 #: ../fish/guestfish-actions.pod:4918
28684 #, no-wrap
28685 msgid ""
28686 " vg-activate true|false 'volgroups ...'\n"
28687 "\n"
28688 msgstr ""
28689
28690 #. type: =head2
28691 #: ../fish/guestfish-actions.pod:4928
28692 msgid "vg-activate-all"
28693 msgstr ""
28694
28695 #. type: verbatim
28696 #: ../fish/guestfish-actions.pod:4930
28697 #, no-wrap
28698 msgid ""
28699 " vg-activate-all true|false\n"
28700 "\n"
28701 msgstr ""
28702
28703 #. type: =head2
28704 #: ../fish/guestfish-actions.pod:4937
28705 msgid "vgcreate"
28706 msgstr ""
28707
28708 #. type: verbatim
28709 #: ../fish/guestfish-actions.pod:4939
28710 #, no-wrap
28711 msgid ""
28712 " vgcreate volgroup 'physvols ...'\n"
28713 "\n"
28714 msgstr ""
28715
28716 #. type: =head2
28717 #: ../fish/guestfish-actions.pod:4944
28718 msgid "vglvuuids"
28719 msgstr ""
28720
28721 #. type: verbatim
28722 #: ../fish/guestfish-actions.pod:4946
28723 #, no-wrap
28724 msgid ""
28725 " vglvuuids vgname\n"
28726 "\n"
28727 msgstr ""
28728
28729 #. type: textblock
28730 #: ../fish/guestfish-actions.pod:4951
28731 msgid ""
28732 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
28733 "logical volumes and volume groups."
28734 msgstr ""
28735
28736 #. type: textblock
28737 #: ../fish/guestfish-actions.pod:4954
28738 msgid "See also L</vgpvuuids>."
28739 msgstr ""
28740
28741 #. type: =head2
28742 #: ../fish/guestfish-actions.pod:4956
28743 msgid "vgpvuuids"
28744 msgstr ""
28745
28746 #. type: verbatim
28747 #: ../fish/guestfish-actions.pod:4958
28748 #, no-wrap
28749 msgid ""
28750 " vgpvuuids vgname\n"
28751 "\n"
28752 msgstr ""
28753
28754 #. type: textblock
28755 #: ../fish/guestfish-actions.pod:4963
28756 msgid ""
28757 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28758 "physical volumes and volume groups."
28759 msgstr ""
28760
28761 #. type: textblock
28762 #: ../fish/guestfish-actions.pod:4966
28763 msgid "See also L</vglvuuids>."
28764 msgstr ""
28765
28766 #. type: =head2
28767 #: ../fish/guestfish-actions.pod:4968
28768 msgid "vgremove"
28769 msgstr ""
28770
28771 #. type: verbatim
28772 #: ../fish/guestfish-actions.pod:4970
28773 #, no-wrap
28774 msgid ""
28775 " vgremove vgname\n"
28776 "\n"
28777 msgstr ""
28778
28779 #. type: =head2
28780 #: ../fish/guestfish-actions.pod:4977
28781 msgid "vgrename"
28782 msgstr ""
28783
28784 #. type: verbatim
28785 #: ../fish/guestfish-actions.pod:4979
28786 #, no-wrap
28787 msgid ""
28788 " vgrename volgroup newvolgroup\n"
28789 "\n"
28790 msgstr ""
28791
28792 #. type: =head2
28793 #: ../fish/guestfish-actions.pod:4983
28794 msgid "vgs"
28795 msgstr ""
28796
28797 #. type: verbatim
28798 #: ../fish/guestfish-actions.pod:4985
28799 #, no-wrap
28800 msgid ""
28801 " vgs\n"
28802 "\n"
28803 msgstr ""
28804
28805 #. type: textblock
28806 #: ../fish/guestfish-actions.pod:4993
28807 msgid "See also L</vgs-full>."
28808 msgstr ""
28809
28810 #. type: =head2
28811 #: ../fish/guestfish-actions.pod:4995
28812 msgid "vgs-full"
28813 msgstr ""
28814
28815 #. type: verbatim
28816 #: ../fish/guestfish-actions.pod:4997
28817 #, no-wrap
28818 msgid ""
28819 " vgs-full\n"
28820 "\n"
28821 msgstr ""
28822
28823 #. type: =head2
28824 #: ../fish/guestfish-actions.pod:5002
28825 msgid "vgscan"
28826 msgstr ""
28827
28828 #. type: verbatim
28829 #: ../fish/guestfish-actions.pod:5004
28830 #, no-wrap
28831 msgid ""
28832 " vgscan\n"
28833 "\n"
28834 msgstr ""
28835
28836 #. type: =head2
28837 #: ../fish/guestfish-actions.pod:5009
28838 msgid "vguuid"
28839 msgstr ""
28840
28841 #. type: verbatim
28842 #: ../fish/guestfish-actions.pod:5011
28843 #, no-wrap
28844 msgid ""
28845 " vguuid vgname\n"
28846 "\n"
28847 msgstr ""
28848
28849 #. type: =head2
28850 #: ../fish/guestfish-actions.pod:5015
28851 msgid "wc-c"
28852 msgstr ""
28853
28854 #. type: verbatim
28855 #: ../fish/guestfish-actions.pod:5017
28856 #, no-wrap
28857 msgid ""
28858 " wc-c path\n"
28859 "\n"
28860 msgstr ""
28861
28862 #. type: =head2
28863 #: ../fish/guestfish-actions.pod:5022
28864 msgid "wc-l"
28865 msgstr ""
28866
28867 #. type: verbatim
28868 #: ../fish/guestfish-actions.pod:5024
28869 #, no-wrap
28870 msgid ""
28871 " wc-l path\n"
28872 "\n"
28873 msgstr ""
28874
28875 #. type: =head2
28876 #: ../fish/guestfish-actions.pod:5029
28877 msgid "wc-w"
28878 msgstr ""
28879
28880 #. type: verbatim
28881 #: ../fish/guestfish-actions.pod:5031
28882 #, no-wrap
28883 msgid ""
28884 " wc-w path\n"
28885 "\n"
28886 msgstr ""
28887
28888 #. type: =head2
28889 #: ../fish/guestfish-actions.pod:5036
28890 msgid "write"
28891 msgstr ""
28892
28893 #. type: verbatim
28894 #: ../fish/guestfish-actions.pod:5038
28895 #, no-wrap
28896 msgid ""
28897 " write path content\n"
28898 "\n"
28899 msgstr ""
28900
28901 #. type: textblock
28902 #: ../fish/guestfish-actions.pod:5043
28903 #, fuzzy
28904 #| msgid "See L<guestfish(1)>."
28905 msgid "See also L</write-append>."
28906 msgstr "Див. L<guestfish(1)>."
28907
28908 #. type: =head2
28909 #: ../fish/guestfish-actions.pod:5048
28910 msgid "write-append"
28911 msgstr ""
28912
28913 #. type: verbatim
28914 #: ../fish/guestfish-actions.pod:5050
28915 #, no-wrap
28916 msgid ""
28917 " write-append path content\n"
28918 "\n"
28919 msgstr ""
28920
28921 #. type: textblock
28922 #: ../fish/guestfish-actions.pod:5055
28923 #, fuzzy
28924 #| msgid "See L<guestfish(1)>."
28925 msgid "See also L</write>."
28926 msgstr "Див. L<guestfish(1)>."
28927
28928 #. type: =head2
28929 #: ../fish/guestfish-actions.pod:5060
28930 msgid "write-file"
28931 msgstr ""
28932
28933 #. type: verbatim
28934 #: ../fish/guestfish-actions.pod:5062
28935 #, no-wrap
28936 msgid ""
28937 " write-file path content size\n"
28938 "\n"
28939 msgstr ""
28940
28941 #. type: =head2
28942 #: ../fish/guestfish-actions.pod:5085
28943 msgid "zegrep"
28944 msgstr ""
28945
28946 #. type: verbatim
28947 #: ../fish/guestfish-actions.pod:5087
28948 #, no-wrap
28949 msgid ""
28950 " zegrep regex path\n"
28951 "\n"
28952 msgstr ""
28953
28954 #. type: =head2
28955 #: ../fish/guestfish-actions.pod:5095
28956 msgid "zegrepi"
28957 msgstr ""
28958
28959 #. type: verbatim
28960 #: ../fish/guestfish-actions.pod:5097
28961 #, no-wrap
28962 msgid ""
28963 " zegrepi regex path\n"
28964 "\n"
28965 msgstr ""
28966
28967 #. type: =head2
28968 #: ../fish/guestfish-actions.pod:5105
28969 msgid "zero"
28970 msgstr ""
28971
28972 #. type: verbatim
28973 #: ../fish/guestfish-actions.pod:5107
28974 #, no-wrap
28975 msgid ""
28976 " zero device\n"
28977 "\n"
28978 msgstr ""
28979
28980 #. type: textblock
28981 #: ../fish/guestfish-actions.pod:5115
28982 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28983 msgstr ""
28984
28985 #. type: =head2
28986 #: ../fish/guestfish-actions.pod:5118
28987 msgid "zero-device"
28988 msgstr ""
28989
28990 #. type: verbatim
28991 #: ../fish/guestfish-actions.pod:5120
28992 #, no-wrap
28993 msgid ""
28994 " zero-device device\n"
28995 "\n"
28996 msgstr ""
28997
28998 #. type: textblock
28999 #: ../fish/guestfish-actions.pod:5122
29000 msgid ""
29001 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
29002 "which just zeroes the first few blocks of a device."
29003 msgstr ""
29004
29005 #. type: =head2
29006 #: ../fish/guestfish-actions.pod:5129
29007 msgid "zerofree"
29008 msgstr ""
29009
29010 #. type: verbatim
29011 #: ../fish/guestfish-actions.pod:5131
29012 #, no-wrap
29013 msgid ""
29014 " zerofree device\n"
29015 "\n"
29016 msgstr ""
29017
29018 #. type: =head2
29019 #: ../fish/guestfish-actions.pod:5144
29020 msgid "zfgrep"
29021 msgstr ""
29022
29023 #. type: verbatim
29024 #: ../fish/guestfish-actions.pod:5146
29025 #, no-wrap
29026 msgid ""
29027 " zfgrep pattern path\n"
29028 "\n"
29029 msgstr ""
29030
29031 #. type: =head2
29032 #: ../fish/guestfish-actions.pod:5154
29033 msgid "zfgrepi"
29034 msgstr ""
29035
29036 #. type: verbatim
29037 #: ../fish/guestfish-actions.pod:5156
29038 #, no-wrap
29039 msgid ""
29040 " zfgrepi pattern path\n"
29041 "\n"
29042 msgstr ""
29043
29044 #. type: =head2
29045 #: ../fish/guestfish-actions.pod:5164
29046 msgid "zfile"
29047 msgstr ""
29048
29049 #. type: verbatim
29050 #: ../fish/guestfish-actions.pod:5166
29051 #, no-wrap
29052 msgid ""
29053 " zfile meth path\n"
29054 "\n"
29055 msgstr ""
29056
29057 #. type: textblock
29058 #: ../fish/guestfish-actions.pod:5173
29059 msgid ""
29060 "Since 1.0.63, use L</file> instead which can now process compressed files."
29061 msgstr ""
29062
29063 #. type: =head2
29064 #: ../fish/guestfish-actions.pod:5183
29065 msgid "zgrep"
29066 msgstr ""
29067
29068 #. type: verbatim
29069 #: ../fish/guestfish-actions.pod:5185
29070 #, no-wrap
29071 msgid ""
29072 " zgrep regex path\n"
29073 "\n"
29074 msgstr ""
29075
29076 #. type: =head2
29077 #: ../fish/guestfish-actions.pod:5193
29078 msgid "zgrepi"
29079 msgstr ""
29080
29081 #. type: verbatim
29082 #: ../fish/guestfish-actions.pod:5195
29083 #, no-wrap
29084 msgid ""
29085 " zgrepi regex path\n"
29086 "\n"
29087 msgstr ""
29088
29089 #. type: =head2
29090 #: ../fish/guestfish-commands.pod:1
29091 msgid "alloc"
29092 msgstr ""
29093
29094 #. type: =head2
29095 #: ../fish/guestfish-commands.pod:3
29096 msgid "allocate"
29097 msgstr ""
29098
29099 #. type: verbatim
29100 #: ../fish/guestfish-commands.pod:5
29101 #, no-wrap
29102 msgid ""
29103 " alloc filename size\n"
29104 "\n"
29105 msgstr ""
29106
29107 #. type: textblock
29108 #: ../fish/guestfish-commands.pod:7
29109 msgid ""
29110 "This creates an empty (zeroed) file of the given size, and then adds so it "
29111 "can be further examined."
29112 msgstr ""
29113
29114 #. type: textblock
29115 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
29116 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
29117 msgstr ""
29118
29119 #. type: textblock
29120 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
29121 msgid "Size can be specified using standard suffixes, eg. C<1M>."
29122 msgstr ""
29123
29124 #. type: textblock
29125 #: ../fish/guestfish-commands.pod:14
29126 msgid ""
29127 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
29128 "image, see L</PREPARED DISK IMAGES>."
29129 msgstr ""
29130
29131 #. type: =head2
29132 #: ../fish/guestfish-commands.pod:17
29133 msgid "copy-in"
29134 msgstr ""
29135
29136 #. type: verbatim
29137 #: ../fish/guestfish-commands.pod:19
29138 #, no-wrap
29139 msgid ""
29140 " copy-in local [local ...] /remotedir\n"
29141 "\n"
29142 msgstr ""
29143
29144 #. type: textblock
29145 #: ../fish/guestfish-commands.pod:21
29146 msgid ""
29147 "C<copy-in> copies local files or directories recursively into the disk "
29148 "image, placing them in the directory called C</remotedir> (which must "
29149 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
29150 "other commands as necessary."
29151 msgstr ""
29152
29153 #. type: textblock
29154 #: ../fish/guestfish-commands.pod:26
29155 msgid ""
29156 "Multiple local files and directories can be specified, but the last "
29157 "parameter must always be a remote directory.  Wildcards cannot be used."
29158 msgstr ""
29159
29160 #. type: =head2
29161 #: ../fish/guestfish-commands.pod:30
29162 msgid "copy-out"
29163 msgstr ""
29164
29165 #. type: verbatim
29166 #: ../fish/guestfish-commands.pod:32
29167 #, no-wrap
29168 msgid ""
29169 " copy-out remote [remote ...] localdir\n"
29170 "\n"
29171 msgstr ""
29172
29173 #. type: textblock
29174 #: ../fish/guestfish-commands.pod:34
29175 msgid ""
29176 "C<copy-out> copies remote files or directories recursively out of the disk "
29177 "image, placing them on the host disk in a local directory called C<localdir> "
29178 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
29179 "download>, L</tar-out> and other commands as necessary."
29180 msgstr ""
29181
29182 #. type: textblock
29183 #: ../fish/guestfish-commands.pod:40
29184 msgid ""
29185 "Multiple remote files and directories can be specified, but the last "
29186 "parameter must always be a local directory.  To download to the current "
29187 "directory, use C<.> as in:"
29188 msgstr ""
29189
29190 #. type: verbatim
29191 #: ../fish/guestfish-commands.pod:44
29192 #, no-wrap
29193 msgid ""
29194 " copy-out /home .\n"
29195 "\n"
29196 msgstr ""
29197
29198 #. type: textblock
29199 #: ../fish/guestfish-commands.pod:46
29200 msgid ""
29201 "Wildcards cannot be used in the ordinary command, but you can use them with "
29202 "the help of L</glob> like this:"
29203 msgstr ""
29204
29205 #. type: verbatim
29206 #: ../fish/guestfish-commands.pod:49
29207 #, no-wrap
29208 msgid ""
29209 " glob copy-out /home/* .\n"
29210 "\n"
29211 msgstr ""
29212
29213 #. type: =head2
29214 #: ../fish/guestfish-commands.pod:51
29215 msgid "display"
29216 msgstr ""
29217
29218 #. type: verbatim
29219 #: ../fish/guestfish-commands.pod:53
29220 #, no-wrap
29221 msgid ""
29222 " display filename\n"
29223 "\n"
29224 msgstr ""
29225
29226 #. type: textblock
29227 #: ../fish/guestfish-commands.pod:55
29228 msgid ""
29229 "Use C<display> (a graphical display program) to display an image file.  It "
29230 "downloads the file, and runs C<display> on it."
29231 msgstr ""
29232
29233 #. type: textblock
29234 #: ../fish/guestfish-commands.pod:58
29235 msgid ""
29236 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
29237 "environment variable.  For example to use the GNOME display program:"
29238 msgstr ""
29239
29240 #. type: verbatim
29241 #: ../fish/guestfish-commands.pod:61
29242 #, no-wrap
29243 msgid ""
29244 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
29245 "\n"
29246 msgstr ""
29247
29248 #. type: textblock
29249 #: ../fish/guestfish-commands.pod:63
29250 #, fuzzy
29251 #| msgid "See L<guestfish(1)>."
29252 msgid "See also L<display(1)>."
29253 msgstr "Див. L<guestfish(1)>."
29254
29255 #. type: =head2
29256 #: ../fish/guestfish-commands.pod:65
29257 msgid "echo"
29258 msgstr ""
29259
29260 #. type: verbatim
29261 #: ../fish/guestfish-commands.pod:67
29262 #, no-wrap
29263 msgid ""
29264 " echo [params ...]\n"
29265 "\n"
29266 msgstr ""
29267
29268 #. type: textblock
29269 #: ../fish/guestfish-commands.pod:69
29270 msgid "This echos the parameters to the terminal."
29271 msgstr ""
29272
29273 #. type: =head2
29274 #: ../fish/guestfish-commands.pod:71
29275 msgid "edit"
29276 msgstr ""
29277
29278 #. type: =head2
29279 #: ../fish/guestfish-commands.pod:73
29280 msgid "vi"
29281 msgstr ""
29282
29283 #. type: =head2
29284 #: ../fish/guestfish-commands.pod:75
29285 msgid "emacs"
29286 msgstr ""
29287
29288 #. type: verbatim
29289 #: ../fish/guestfish-commands.pod:77
29290 #, no-wrap
29291 msgid ""
29292 " edit filename\n"
29293 "\n"
29294 msgstr ""
29295
29296 #. type: textblock
29297 #: ../fish/guestfish-commands.pod:79
29298 msgid ""
29299 "This is used to edit a file.  It downloads the file, edits it locally using "
29300 "your editor, then uploads the result."
29301 msgstr ""
29302
29303 #. type: textblock
29304 #: ../fish/guestfish-commands.pod:82
29305 msgid ""
29306 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
29307 "or C<emacs> you will get those corresponding editors."
29308 msgstr ""
29309
29310 #. type: =head2
29311 #: ../fish/guestfish-commands.pod:86
29312 msgid "glob"
29313 msgstr ""
29314
29315 #. type: verbatim
29316 #: ../fish/guestfish-commands.pod:88
29317 #, no-wrap
29318 msgid ""
29319 " glob command args...\n"
29320 "\n"
29321 msgstr ""
29322
29323 #. type: textblock
29324 #: ../fish/guestfish-commands.pod:90
29325 msgid ""
29326 "Expand wildcards in any paths in the args list, and run C<command> "
29327 "repeatedly on each matching path."
29328 msgstr ""
29329
29330 #. type: textblock
29331 #: ../fish/guestfish-commands.pod:93
29332 msgid "See L</WILDCARDS AND GLOBBING>."
29333 msgstr ""
29334
29335 #. type: =head2
29336 #: ../fish/guestfish-commands.pod:95
29337 msgid "hexedit"
29338 msgstr ""
29339
29340 #. type: verbatim
29341 #: ../fish/guestfish-commands.pod:97
29342 #, no-wrap
29343 msgid ""
29344 " hexedit <filename|device>\n"
29345 " hexedit <filename|device> <max>\n"
29346 " hexedit <filename|device> <start> <max>\n"
29347 "\n"
29348 msgstr ""
29349
29350 #. type: textblock
29351 #: ../fish/guestfish-commands.pod:101
29352 msgid ""
29353 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
29354 "device."
29355 msgstr ""
29356
29357 #. type: textblock
29358 #: ../fish/guestfish-commands.pod:104
29359 msgid ""
29360 "This command works by downloading potentially the whole file or device, "
29361 "editing it locally, then uploading it.  If the file or device is large, you "
29362 "have to specify which part you wish to edit by using C<max> and/or C<start> "
29363 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
29364 "usual modifiers allowed such as C<1M> (1 megabyte)."
29365 msgstr ""
29366
29367 #. type: textblock
29368 #: ../fish/guestfish-commands.pod:111
29369 msgid "For example to edit the first few sectors of a disk you might do:"
29370 msgstr ""
29371
29372 #. type: verbatim
29373 #: ../fish/guestfish-commands.pod:114
29374 #, no-wrap
29375 msgid ""
29376 " hexedit /dev/sda 1M\n"
29377 "\n"
29378 msgstr ""
29379
29380 #. type: textblock
29381 #: ../fish/guestfish-commands.pod:116
29382 msgid ""
29383 "which would allow you to edit anywhere within the first megabyte of the disk."
29384 msgstr ""
29385
29386 #. type: textblock
29387 #: ../fish/guestfish-commands.pod:119
29388 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
29389 msgstr ""
29390
29391 #. type: verbatim
29392 #: ../fish/guestfish-commands.pod:121
29393 #, no-wrap
29394 msgid ""
29395 " hexedit /dev/sda1 0x400 0x400\n"
29396 "\n"
29397 msgstr ""
29398
29399 #. type: textblock
29400 #: ../fish/guestfish-commands.pod:123
29401 msgid "(assuming the superblock is in the standard location)."
29402 msgstr ""
29403
29404 #. type: textblock
29405 #: ../fish/guestfish-commands.pod:125
29406 msgid ""
29407 "This command requires the external L<hexedit(1)> program.  You can specify "
29408 "another program to use by setting the C<HEXEDITOR> environment variable."
29409 msgstr ""
29410
29411 #. type: textblock
29412 #: ../fish/guestfish-commands.pod:129
29413 msgid "See also L</hexdump>."
29414 msgstr ""
29415
29416 #. type: =head2
29417 #: ../fish/guestfish-commands.pod:131
29418 msgid "lcd"
29419 msgstr ""
29420
29421 #. type: verbatim
29422 #: ../fish/guestfish-commands.pod:133
29423 #, no-wrap
29424 msgid ""
29425 " lcd directory\n"
29426 "\n"
29427 msgstr ""
29428
29429 #. type: textblock
29430 #: ../fish/guestfish-commands.pod:135
29431 msgid ""
29432 "Change the local directory, ie. the current directory of guestfish itself."
29433 msgstr ""
29434
29435 #. type: textblock
29436 #: ../fish/guestfish-commands.pod:138
29437 msgid "Note that C<!cd> won't do what you might expect."
29438 msgstr ""
29439
29440 #. type: =head2
29441 #: ../fish/guestfish-commands.pod:140
29442 msgid "man"
29443 msgstr ""
29444
29445 #. type: =head2
29446 #: ../fish/guestfish-commands.pod:142
29447 msgid "manual"
29448 msgstr ""
29449
29450 #. type: verbatim
29451 #: ../fish/guestfish-commands.pod:144
29452 #, no-wrap
29453 msgid ""
29454 "  man\n"
29455 "\n"
29456 msgstr ""
29457
29458 #. type: textblock
29459 #: ../fish/guestfish-commands.pod:146
29460 msgid "Opens the manual page for guestfish."
29461 msgstr ""
29462
29463 #. type: =head2
29464 #: ../fish/guestfish-commands.pod:148
29465 msgid "more"
29466 msgstr ""
29467
29468 #. type: =head2
29469 #: ../fish/guestfish-commands.pod:150
29470 msgid "less"
29471 msgstr ""
29472
29473 #. type: verbatim
29474 #: ../fish/guestfish-commands.pod:152
29475 #, no-wrap
29476 msgid ""
29477 " more filename\n"
29478 "\n"
29479 msgstr ""
29480
29481 #. type: verbatim
29482 #: ../fish/guestfish-commands.pod:154
29483 #, no-wrap
29484 msgid ""
29485 " less filename\n"
29486 "\n"
29487 msgstr ""
29488
29489 #. type: textblock
29490 #: ../fish/guestfish-commands.pod:156
29491 msgid "This is used to view a file."
29492 msgstr ""
29493
29494 #. type: textblock
29495 #: ../fish/guestfish-commands.pod:158
29496 msgid ""
29497 "The default viewer is C<$PAGER>.  However if you use the alternate command "
29498 "C<less> you will get the C<less> command specifically."
29499 msgstr ""
29500
29501 #. type: =head2
29502 #: ../fish/guestfish-commands.pod:161
29503 msgid "reopen"
29504 msgstr ""
29505
29506 #. type: verbatim
29507 #: ../fish/guestfish-commands.pod:163
29508 #, no-wrap
29509 msgid ""
29510 "  reopen\n"
29511 "\n"
29512 msgstr ""
29513
29514 #. type: textblock
29515 #: ../fish/guestfish-commands.pod:165
29516 msgid ""
29517 "Close and reopen the libguestfs handle.  It is not necessary to use this "
29518 "normally, because the handle is closed properly when guestfish exits.  "
29519 "However this is occasionally useful for testing."
29520 msgstr ""
29521
29522 #. type: =head2
29523 #: ../fish/guestfish-commands.pod:169
29524 msgid "sparse"
29525 msgstr ""
29526
29527 #. type: verbatim
29528 #: ../fish/guestfish-commands.pod:171
29529 #, no-wrap
29530 msgid ""
29531 " sparse filename size\n"
29532 "\n"
29533 msgstr ""
29534
29535 #. type: textblock
29536 #: ../fish/guestfish-commands.pod:173
29537 msgid ""
29538 "This creates an empty sparse file of the given size, and then adds so it can "
29539 "be further examined."
29540 msgstr ""
29541
29542 #. type: textblock
29543 #: ../fish/guestfish-commands.pod:176
29544 msgid ""
29545 "In all respects it works the same as the L</alloc> command, except that the "
29546 "image file is allocated sparsely, which means that disk blocks are not "
29547 "assigned to the file until they are needed.  Sparse disk files only use "
29548 "space when written to, but they are slower and there is a danger you could "
29549 "run out of real disk space during a write operation."
29550 msgstr ""
29551
29552 #. type: =head2
29553 #: ../fish/guestfish-commands.pod:186
29554 msgid "supported"
29555 msgstr ""
29556
29557 #. type: verbatim
29558 #: ../fish/guestfish-commands.pod:188
29559 #, no-wrap
29560 msgid ""
29561 " supported\n"
29562 "\n"
29563 msgstr ""
29564
29565 #. type: textblock
29566 #: ../fish/guestfish-commands.pod:190
29567 msgid ""
29568 "This command returns a list of the optional groups known to the daemon, and "
29569 "indicates which ones are supported by this build of the libguestfs appliance."
29570 msgstr ""
29571
29572 #. type: textblock
29573 #: ../fish/guestfish-commands.pod:194
29574 msgid "See also L<guestfs(3)/AVAILABILITY>."
29575 msgstr ""
29576
29577 #. type: =head2
29578 #: ../fish/guestfish-commands.pod:196
29579 msgid "time"
29580 msgstr ""
29581
29582 #. type: verbatim
29583 #: ../fish/guestfish-commands.pod:198
29584 #, no-wrap
29585 msgid ""
29586 " time command args...\n"
29587 "\n"
29588 msgstr ""
29589
29590 #. type: textblock
29591 #: ../fish/guestfish-commands.pod:200
29592 msgid ""
29593 "Run the command as usual, but print the elapsed time afterwards.  This can "
29594 "be useful for benchmarking operations."
29595 msgstr ""
29596
29597 #. type: textblock
29598 #: ../test-tool/libguestfs-test-tool.pod:5
29599 msgid "libguestfs-test-tool - End user tests for libguestfs"
29600 msgstr ""
29601
29602 #. type: verbatim
29603 #: ../test-tool/libguestfs-test-tool.pod:9
29604 #, no-wrap
29605 msgid ""
29606 " libguestfs-test-tool [--options]\n"
29607 "\n"
29608 msgstr ""
29609
29610 #. type: textblock
29611 #: ../test-tool/libguestfs-test-tool.pod:13
29612 msgid ""
29613 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
29614 "and developers, to allow them to check basic libguestfs functionality is "
29615 "working.  This is needed because libguestfs occasionally breaks for reasons "
29616 "beyond our control: usually because of changes in the underlying qemu or "
29617 "kernel packages, or the host environment."
29618 msgstr ""
29619
29620 #. type: textblock
29621 #: ../test-tool/libguestfs-test-tool.pod:20
29622 msgid "If you suspect a problem in libguestfs, then just run:"
29623 msgstr ""
29624
29625 #. type: verbatim
29626 #: ../test-tool/libguestfs-test-tool.pod:22
29627 #, no-wrap
29628 msgid ""
29629 " libguestfs-test-tool\n"
29630 "\n"
29631 msgstr ""
29632
29633 #. type: textblock
29634 #: ../test-tool/libguestfs-test-tool.pod:24
29635 msgid "It will print lots of diagnostic messages."
29636 msgstr ""
29637
29638 #. type: textblock
29639 #: ../test-tool/libguestfs-test-tool.pod:26
29640 msgid "If it runs to completion successfully, you will see this near the end:"
29641 msgstr ""
29642
29643 #. type: verbatim
29644 #: ../test-tool/libguestfs-test-tool.pod:28
29645 #, no-wrap
29646 msgid ""
29647 " ===== TEST FINISHED OK =====\n"
29648 "\n"
29649 msgstr ""
29650
29651 #. type: textblock
29652 #: ../test-tool/libguestfs-test-tool.pod:30
29653 msgid "and the test tool will exit with code 0."
29654 msgstr ""
29655
29656 #. type: textblock
29657 #: ../test-tool/libguestfs-test-tool.pod:32
29658 msgid ""
29659 "If it fails (and/or exits with non-zero error code), please paste the "
29660 "B<complete, unedited> output of the test tool into a bug report.  More "
29661 "information about reporting bugs can be found on the L<http://libguestfs.org/"
29662 "> website."
29663 msgstr ""
29664
29665 #. type: =item
29666 #: ../test-tool/libguestfs-test-tool.pod:41
29667 msgid "I<--help>"
29668 msgstr ""
29669
29670 #. type: textblock
29671 #: ../test-tool/libguestfs-test-tool.pod:43
29672 msgid "Display short usage information and exit."
29673 msgstr ""
29674
29675 #. type: =item
29676 #: ../test-tool/libguestfs-test-tool.pod:45
29677 msgid "I<--qemu qemu_binary>"
29678 msgstr ""
29679
29680 #. type: textblock
29681 #: ../test-tool/libguestfs-test-tool.pod:47
29682 msgid ""
29683 "If you have downloaded another qemu binary, point this option at the full "
29684 "path of the binary to try it."
29685 msgstr ""
29686
29687 #. type: =item
29688 #: ../test-tool/libguestfs-test-tool.pod:50
29689 msgid "I<--qemudir qemu_source_dir>"
29690 msgstr ""
29691
29692 #. type: textblock
29693 #: ../test-tool/libguestfs-test-tool.pod:52
29694 msgid ""
29695 "If you have compiled qemu from source, point this option at the source "
29696 "directory to try it."
29697 msgstr ""
29698
29699 #. type: =item
29700 #: ../test-tool/libguestfs-test-tool.pod:55
29701 msgid "I<--timeout N>"
29702 msgstr ""
29703
29704 #. type: textblock
29705 #: ../test-tool/libguestfs-test-tool.pod:57
29706 msgid ""
29707 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
29708 "does not usually need to be adjusted unless your machine is very slow."
29709 msgstr ""
29710
29711 #. type: =head1
29712 #: ../test-tool/libguestfs-test-tool.pod:63
29713 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
29714 msgstr ""
29715
29716 #. type: textblock
29717 #: ../test-tool/libguestfs-test-tool.pod:65
29718 msgid ""
29719 "If you have compiled another version of qemu from source and would like to "
29720 "try that, then you can use the I<--qemudir> option to point to the qemu "
29721 "source directory."
29722 msgstr ""
29723
29724 #. type: textblock
29725 #: ../test-tool/libguestfs-test-tool.pod:69
29726 msgid ""
29727 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
29728 "option to point to the binary."
29729 msgstr ""
29730
29731 #. type: textblock
29732 #: ../test-tool/libguestfs-test-tool.pod:72
29733 msgid ""
29734 "When using an alternate qemu with libguestfs, usually you would need to "
29735 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
29736 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
29737 "use either of the I<--qemudir> or I<--qemu> options."
29738 msgstr ""
29739
29740 #. type: textblock
29741 #: ../test-tool/libguestfs-test-tool.pod:79
29742 msgid ""
29743 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
29744 "I<1> if there was an error."
29745 msgstr ""
29746
29747 #. type: textblock
29748 #: ../test-tool/libguestfs-test-tool.pod:84
29749 msgid ""
29750 "For the full list of environment variables which may affect libguestfs, "
29751 "please see the L<guestfs(3)> manual page."
29752 msgstr ""
29753
29754 #. type: textblock
29755 #: ../test-tool/libguestfs-test-tool.pod:89
29756 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
29757 msgstr ""
29758
29759 #. type: textblock
29760 #: ../fuse/guestmount.pod:5
29761 msgid ""
29762 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
29763 msgstr ""
29764
29765 #. type: verbatim
29766 #: ../fuse/guestmount.pod:9
29767 #, no-wrap
29768 msgid ""
29769 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29770 "\n"
29771 msgstr ""
29772
29773 #. type: verbatim
29774 #: ../fuse/guestmount.pod:11
29775 #, no-wrap
29776 msgid ""
29777 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29778 "\n"
29779 msgstr ""
29780
29781 #. type: verbatim
29782 #: ../fuse/guestmount.pod:13
29783 #, no-wrap
29784 msgid ""
29785 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29786 "\n"
29787 msgstr ""
29788
29789 #. type: textblock
29790 #: ../fuse/guestmount.pod:17
29791 msgid ""
29792 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29793 "machines.  If you do this, you risk disk corruption in the VM."
29794 msgstr ""
29795
29796 #. type: textblock
29797 #: ../fuse/guestmount.pod:22
29798 msgid ""
29799 "The guestmount program can be used to mount virtual machine filesystems and "
29800 "other disk images on the host.  It uses libguestfs for access to the guest "
29801 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29802 "a mountable device."
29803 msgstr ""
29804
29805 #. type: textblock
29806 #: ../fuse/guestmount.pod:27
29807 msgid ""
29808 "Along with other options, you have to give at least one device (I<-a> "
29809 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
29810 "option) or use the I<-i> inspection option.  How this works is better "
29811 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29812 "below."
29813 msgstr ""
29814
29815 #. type: textblock
29816 #: ../fuse/guestmount.pod:33
29817 msgid ""
29818 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29819 "by you, and the filesystem will not be visible to any other users unless you "
29820 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
29821 "the filesystem, use the C<fusermount -u> command."
29822 msgstr ""
29823
29824 #. type: textblock
29825 #: ../fuse/guestmount.pod:41
29826 msgid ""
29827 "For a typical Windows guest which has its main filesystem on the first "
29828 "partition:"
29829 msgstr ""
29830
29831 #. type: verbatim
29832 #: ../fuse/guestmount.pod:44
29833 #, no-wrap
29834 msgid ""
29835 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29836 "\n"
29837 msgstr ""
29838
29839 #. type: textblock
29840 #: ../fuse/guestmount.pod:46
29841 msgid ""
29842 "For a typical Linux guest which has a /boot filesystem on the first "
29843 "partition, and the root filesystem on a logical volume:"
29844 msgstr ""
29845
29846 #. type: verbatim
29847 #: ../fuse/guestmount.pod:49
29848 #, no-wrap
29849 msgid ""
29850 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29851 "\n"
29852 msgstr ""
29853
29854 #. type: textblock
29855 #: ../fuse/guestmount.pod:51
29856 msgid "To get libguestfs to detect guest mountpoints for you:"
29857 msgstr ""
29858
29859 #. type: verbatim
29860 #: ../fuse/guestmount.pod:53
29861 #, no-wrap
29862 msgid ""
29863 " guestmount -a guest.img -i --ro /mnt\n"
29864 "\n"
29865 msgstr ""
29866
29867 #. type: textblock
29868 #: ../fuse/guestmount.pod:55
29869 msgid "For a libvirt guest called \"Guest\" you could do:"
29870 msgstr ""
29871
29872 #. type: verbatim
29873 #: ../fuse/guestmount.pod:57
29874 #, no-wrap
29875 msgid ""
29876 " guestmount -d Guest -i --ro /mnt\n"
29877 "\n"
29878 msgstr ""
29879
29880 #. type: textblock
29881 #: ../fuse/guestmount.pod:59
29882 msgid ""
29883 "If you don't know what filesystems are contained in a guest or disk image, "
29884 "use L<virt-filesystems(1)> first:"
29885 msgstr ""
29886
29887 #. type: verbatim
29888 #: ../fuse/guestmount.pod:62
29889 #, no-wrap
29890 msgid ""
29891 " virt-filesystems MyGuest\n"
29892 "\n"
29893 msgstr ""
29894
29895 #. type: textblock
29896 #: ../fuse/guestmount.pod:64
29897 msgid ""
29898 "If you want to trace the libguestfs calls but without excessive debugging "
29899 "information, we recommend:"
29900 msgstr ""
29901
29902 #. type: verbatim
29903 #: ../fuse/guestmount.pod:67
29904 #, no-wrap
29905 msgid ""
29906 " guestmount [...] --trace /mnt\n"
29907 "\n"
29908 msgstr ""
29909
29910 #. type: textblock
29911 #: ../fuse/guestmount.pod:69
29912 msgid "If you want to debug the program, we recommend:"
29913 msgstr ""
29914
29915 #. type: verbatim
29916 #: ../fuse/guestmount.pod:71
29917 #, no-wrap
29918 msgid ""
29919 " guestmount [...] --trace --verbose /mnt\n"
29920 "\n"
29921 msgstr ""
29922
29923 #. type: =head1
29924 #: ../fuse/guestmount.pod:73
29925 msgid "NOTES"
29926 msgstr ""
29927
29928 #. type: =head2
29929 #: ../fuse/guestmount.pod:75
29930 msgid "Other users cannot see the filesystem by default"
29931 msgstr ""
29932
29933 #. type: textblock
29934 #: ../fuse/guestmount.pod:77
29935 msgid ""
29936 "If you mount a filesystem as one user (eg. root), then other users will not "
29937 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29938 "option when mounting:"
29939 msgstr ""
29940
29941 #. type: verbatim
29942 #: ../fuse/guestmount.pod:81
29943 #, no-wrap
29944 msgid ""
29945 " sudo guestmount [...] -o allow_other /mnt\n"
29946 "\n"
29947 msgstr ""
29948
29949 #. type: =item
29950 #: ../fuse/guestmount.pod:87
29951 msgid "B<-a image> | B<--add image>"
29952 msgstr ""
29953
29954 #. type: textblock
29955 #: ../fuse/guestmount.pod:89
29956 msgid "Add a block device or virtual machine image."
29957 msgstr ""
29958
29959 #. type: =item
29960 #: ../fuse/guestmount.pod:94
29961 msgid "B<-c URI> | B<--connect URI>"
29962 msgstr ""
29963
29964 #. type: =item
29965 #: ../fuse/guestmount.pod:100
29966 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29967 msgstr ""
29968
29969 #. type: =item
29970 #: ../fuse/guestmount.pod:108
29971 msgid "B<--dir-cache-timeout N>"
29972 msgstr ""
29973
29974 #. type: textblock
29975 #: ../fuse/guestmount.pod:110
29976 msgid ""
29977 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
29978 "seconds.  The readdir cache [actually, there are several semi-independent "
29979 "caches] is populated after a readdir(2) call with the stat and extended "
29980 "attributes of the files in the directory, in anticipation that they will be "
29981 "requested soon after."
29982 msgstr ""
29983
29984 #. type: textblock
29985 #: ../fuse/guestmount.pod:116
29986 msgid ""
29987 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29988 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29989 "requests, only cache existing ones."
29990 msgstr ""
29991
29992 #. type: =item
29993 #: ../fuse/guestmount.pod:127
29994 msgid "B<--format=raw|qcow2|..> | B<--format>"
29995 msgstr ""
29996
29997 #. type: textblock
29998 #: ../fuse/guestmount.pod:134
29999 msgid ""
30000 "If you have untrusted raw-format guest disk images, you should use this "
30001 "option to specify the disk format.  This avoids a possible security problem "
30002 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
30003 "guestfs_add_drive_opts>."
30004 msgstr ""
30005
30006 #. type: =item
30007 #: ../fuse/guestmount.pod:139
30008 msgid "B<--fuse-help>"
30009 msgstr ""
30010
30011 #. type: textblock
30012 #: ../fuse/guestmount.pod:141
30013 msgid "Display help on special FUSE options (see I<-o> below)."
30014 msgstr ""
30015
30016 #. type: textblock
30017 #: ../fuse/guestmount.pod:145
30018 msgid "Display brief help and exit."
30019 msgstr ""
30020
30021 #. type: =item
30022 #: ../fuse/guestmount.pod:147
30023 msgid "B<-i> | B<--inspector>"
30024 msgstr ""
30025
30026 #. type: textblock
30027 #: ../fuse/guestmount.pod:167
30028 msgid ""
30029 "Mount the named partition or logical volume on the given mountpoint B<in the "
30030 "guest> (this has nothing to do with mountpoints in the host)."
30031 msgstr ""
30032
30033 #. type: textblock
30034 #: ../fuse/guestmount.pod:170
30035 msgid ""
30036 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
30037 "something on C</>."
30038 msgstr ""
30039
30040 #. type: =item
30041 #: ../fuse/guestmount.pod:183
30042 msgid "B<-n> | B<--no-sync>"
30043 msgstr ""
30044
30045 #. type: textblock
30046 #: ../fuse/guestmount.pod:185
30047 msgid ""
30048 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
30049 "unmounted.  If you specify this option, then we don't attempt to sync the "
30050 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
30051 msgstr ""
30052
30053 #. type: =item
30054 #: ../fuse/guestmount.pod:190
30055 msgid "B<-o option> | B<--option option>"
30056 msgstr ""
30057
30058 #. type: textblock
30059 #: ../fuse/guestmount.pod:192
30060 msgid "Pass extra options to FUSE."
30061 msgstr ""
30062
30063 #. type: textblock
30064 #: ../fuse/guestmount.pod:194
30065 msgid ""
30066 "To get a list of all the extra options supported by FUSE, use the command "
30067 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
30068 "of them are a good idea."
30069 msgstr ""
30070
30071 #. type: verbatim
30072 #: ../fuse/guestmount.pod:198
30073 #, no-wrap
30074 msgid ""
30075 " guestmount --fuse-help\n"
30076 "\n"
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../fuse/guestmount.pod:200
30081 msgid "Some potentially useful FUSE options:"
30082 msgstr ""
30083
30084 #. type: =item
30085 #: ../fuse/guestmount.pod:204
30086 msgid "B<-o allow_other>"
30087 msgstr ""
30088
30089 #. type: textblock
30090 #: ../fuse/guestmount.pod:206
30091 msgid "Allow other users to see the filesystem."
30092 msgstr ""
30093
30094 #. type: =item
30095 #: ../fuse/guestmount.pod:208
30096 msgid "B<-o attr_timeout=N>"
30097 msgstr ""
30098
30099 #. type: textblock
30100 #: ../fuse/guestmount.pod:210
30101 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
30102 msgstr ""
30103
30104 #. type: =item
30105 #: ../fuse/guestmount.pod:212
30106 msgid "B<-o kernel_cache>"
30107 msgstr ""
30108
30109 #. type: textblock
30110 #: ../fuse/guestmount.pod:214
30111 msgid ""
30112 "Allow the kernel to cache files (reduces the number of reads that have to go "
30113 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
30114 "afford the extra memory usage."
30115 msgstr ""
30116
30117 #. type: =item
30118 #: ../fuse/guestmount.pod:218
30119 msgid "B<-o uid=N> B<-o gid=N>"
30120 msgstr ""
30121
30122 #. type: textblock
30123 #: ../fuse/guestmount.pod:220
30124 msgid ""
30125 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
30126 "the chosen values."
30127 msgstr ""
30128
30129 #. type: =item
30130 #: ../fuse/guestmount.pod:225
30131 msgid "B<-r> | B<--ro>"
30132 msgstr ""
30133
30134 #. type: textblock
30135 #: ../fuse/guestmount.pod:227
30136 msgid ""
30137 "Add devices and mount everything read-only.  Also disallow writes and make "
30138 "the disk appear read-only to FUSE."
30139 msgstr ""
30140
30141 #. type: textblock
30142 #: ../fuse/guestmount.pod:230
30143 msgid ""
30144 "This is highly recommended if you are not going to edit the guest disk.  If "
30145 "the guest is running and this option is I<not> supplied, then there is a "
30146 "strong risk of disk corruption in the guest.  We try to prevent this from "
30147 "happening, but it is not always possible."
30148 msgstr ""
30149
30150 #. type: textblock
30151 #: ../fuse/guestmount.pod:235
30152 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
30153 msgstr ""
30154
30155 #. type: textblock
30156 #: ../fuse/guestmount.pod:239
30157 msgid "Enable SELinux support for the guest."
30158 msgstr ""
30159
30160 #. type: =item
30161 #: ../fuse/guestmount.pod:241
30162 msgid "B<-v> | B<--verbose>"
30163 msgstr ""
30164
30165 #. type: textblock
30166 #: ../fuse/guestmount.pod:243
30167 msgid "Enable verbose messages from underlying libguestfs."
30168 msgstr ""
30169
30170 #. type: =item
30171 #: ../fuse/guestmount.pod:245
30172 msgid "B<-V> | B<--version>"
30173 msgstr ""
30174
30175 #. type: textblock
30176 #: ../fuse/guestmount.pod:247
30177 msgid "Display the program version and exit."
30178 msgstr ""
30179
30180 #. type: =item
30181 #: ../fuse/guestmount.pod:249
30182 msgid "B<-w> | B<--rw>"
30183 msgstr ""
30184
30185 #. type: textblock
30186 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
30187 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
30188 msgstr ""
30189
30190 #. type: =item
30191 #: ../fuse/guestmount.pod:256
30192 msgid "B<-x> | B<--trace>"
30193 msgstr ""
30194
30195 #. type: textblock
30196 #: ../fuse/guestmount.pod:258
30197 msgid "Trace libguestfs calls and entry into each FUSE function."
30198 msgstr ""
30199
30200 #. type: textblock
30201 #: ../fuse/guestmount.pod:260
30202 msgid "This also stops the daemon from forking into the background."
30203 msgstr ""
30204
30205 #. type: textblock
30206 #: ../fuse/guestmount.pod:281
30207 msgid ""
30208 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
30209 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
30210 "net/>."
30211 msgstr ""
30212
30213 #. type: textblock
30214 #: ../fuse/guestmount.pod:296
30215 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
30216 msgstr ""
30217
30218 #. type: textblock
30219 #: ../tools/virt-win-reg.pl:37
30220 msgid ""
30221 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
30222 msgstr ""
30223
30224 #. type: verbatim
30225 #: ../tools/virt-win-reg.pl:41
30226 #, no-wrap
30227 msgid ""
30228 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
30229 "\n"
30230 msgstr ""
30231
30232 #. type: verbatim
30233 #: ../tools/virt-win-reg.pl:43
30234 #, no-wrap
30235 msgid ""
30236 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
30237 "\n"
30238 msgstr ""
30239
30240 #. type: verbatim
30241 #: ../tools/virt-win-reg.pl:45
30242 #, no-wrap
30243 msgid ""
30244 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
30245 "\n"
30246 msgstr ""
30247
30248 #. type: verbatim
30249 #: ../tools/virt-win-reg.pl:47
30250 #, no-wrap
30251 msgid ""
30252 " virt-win-reg --merge domname [input.reg ...]\n"
30253 "\n"
30254 msgstr ""
30255
30256 #. type: verbatim
30257 #: ../tools/virt-win-reg.pl:49
30258 #, no-wrap
30259 msgid ""
30260 " virt-win-reg [--options] disk.img ... # instead of domname\n"
30261 "\n"
30262 msgstr ""
30263
30264 #. type: textblock
30265 #: ../tools/virt-win-reg.pl:53
30266 msgid ""
30267 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
30268 "virtual machines.  If you do this, you I<will> get irreversible disk "
30269 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
30270 "but doesn't catch all cases."
30271 msgstr ""
30272
30273 #. type: textblock
30274 #: ../tools/virt-win-reg.pl:58
30275 msgid ""
30276 "Modifying the Windows Registry is an inherently risky operation.  The format "
30277 "is deliberately obscure and undocumented, and Registry changes can leave the "
30278 "system unbootable.  Therefore when using the I<--merge> option, make sure "
30279 "you have a reliable backup first."
30280 msgstr ""
30281
30282 #. type: textblock
30283 #: ../tools/virt-win-reg.pl:65
30284 msgid ""
30285 "This program can export and merge Windows Registry entries from a Windows "
30286 "guest."
30287 msgstr ""
30288
30289 #. type: textblock
30290 #: ../tools/virt-win-reg.pl:68
30291 msgid ""
30292 "The first parameter is the libvirt guest name or the raw disk image of a "
30293 "Windows guest."
30294 msgstr ""
30295
30296 #. type: textblock
30297 #: ../tools/virt-win-reg.pl:71
30298 msgid ""
30299 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
30300 "exported (recursively).  For example:"
30301 msgstr ""
30302
30303 #. type: verbatim
30304 #: ../tools/virt-win-reg.pl:74
30305 #, no-wrap
30306 msgid ""
30307 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
30308 "\n"
30309 msgstr ""
30310
30311 #. type: textblock
30312 #: ../tools/virt-win-reg.pl:76
30313 msgid ""
30314 "You can also display single values from within registry keys, for example:"
30315 msgstr ""
30316
30317 #. type: verbatim
30318 #: ../tools/virt-win-reg.pl:79
30319 #, no-wrap
30320 msgid ""
30321 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
30322 " $ virt-win-reg Windows7 $cvkey ProductName\n"
30323 " Windows 7 Enterprise\n"
30324 "\n"
30325 msgstr ""
30326
30327 #. type: textblock
30328 #: ../tools/virt-win-reg.pl:83
30329 msgid ""
30330 "With I<--merge>, you can merge a textual regedit file into the Windows "
30331 "Registry:"
30332 msgstr ""
30333
30334 #. type: verbatim
30335 #: ../tools/virt-win-reg.pl:86
30336 #, no-wrap
30337 msgid ""
30338 " $ virt-win-reg --merge Windows7 changes.reg\n"
30339 "\n"
30340 msgstr ""
30341
30342 #. type: =head1
30343 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
30344 msgid "NOTE"
30345 msgstr ""
30346
30347 #. type: textblock
30348 #: ../tools/virt-win-reg.pl:90
30349 msgid ""
30350 "This program is only meant for simple access to the registry.  If you want "
30351 "to do complicated things with the registry, we suggest you download the "
30352 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
30353 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
30354 "L<hivexregedit(1)>."
30355 msgstr ""
30356
30357 #. type: textblock
30358 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
30359 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
30360 #: ../tools/virt-list-partitions.pl:64
30361 msgid "Display brief help."
30362 msgstr ""
30363
30364 #. type: textblock
30365 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
30366 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
30367 #: ../tools/virt-list-partitions.pl:72
30368 msgid "Display version number and exit."
30369 msgstr ""
30370
30371 #. type: =item
30372 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
30373 msgid "B<--debug>"
30374 msgstr ""
30375
30376 #. type: textblock
30377 #: ../tools/virt-win-reg.pl:122
30378 msgid "Enable debugging messages."
30379 msgstr ""
30380
30381 #. type: =item
30382 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
30383 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
30384 msgid "B<--connect URI> | B<-c URI>"
30385 msgstr ""
30386
30387 #. type: textblock
30388 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
30389 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
30390 msgid ""
30391 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
30392 "to the default libvirt hypervisor."
30393 msgstr ""
30394
30395 #. type: textblock
30396 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
30397 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
30398 msgid ""
30399 "If you specify guest block devices directly, then libvirt is not used at all."
30400 msgstr ""
30401
30402 #. type: =item
30403 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
30404 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
30405 msgid "B<--format> raw"
30406 msgstr ""
30407
30408 #. type: textblock
30409 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
30410 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
30411 msgid ""
30412 "Specify the format of disk images given on the command line.  If this is "
30413 "omitted then the format is autodetected from the content of the disk image."
30414 msgstr ""
30415
30416 #. type: textblock
30417 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
30418 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
30419 msgid ""
30420 "If disk images are requested from libvirt, then this program asks libvirt "
30421 "for this information.  In this case, the value of the format parameter is "
30422 "ignored."
30423 msgstr ""
30424
30425 #. type: textblock
30426 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
30427 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
30428 msgid ""
30429 "If working with untrusted raw-format guest disk images, you should ensure "
30430 "the format is always specified."
30431 msgstr ""
30432
30433 #. type: =item
30434 #: ../tools/virt-win-reg.pl:157
30435 msgid "B<--merge>"
30436 msgstr ""
30437
30438 #. type: textblock
30439 #: ../tools/virt-win-reg.pl:159
30440 msgid ""
30441 "In merge mode, this merges a textual regedit file into the Windows Registry "
30442 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
30443 "displays or exports Registry entries instead."
30444 msgstr ""
30445
30446 #. type: textblock
30447 #: ../tools/virt-win-reg.pl:163
30448 msgid ""
30449 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
30450 "result in disk corruption.  However exporting (without this flag)  is always "
30451 "safe."
30452 msgstr ""
30453
30454 #. type: =item
30455 #: ../tools/virt-win-reg.pl:171
30456 msgid "B<--encoding> UTF-16LE|ASCII"
30457 msgstr ""
30458
30459 #. type: textblock
30460 #: ../tools/virt-win-reg.pl:173
30461 msgid ""
30462 "When merging (only), you may need to specify the encoding for strings to be "
30463 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
30464 "(3)/ENCODING STRINGS>."
30465 msgstr ""
30466
30467 #. type: textblock
30468 #: ../tools/virt-win-reg.pl:177
30469 msgid ""
30470 "The default is to use UTF-16LE, which should work with recent versions of "
30471 "Windows."
30472 msgstr ""
30473
30474 #. type: =item
30475 #: ../tools/virt-win-reg.pl:184
30476 msgid "B<--unsafe-printable-strings>"
30477 msgstr ""
30478
30479 #. type: textblock
30480 #: ../tools/virt-win-reg.pl:186
30481 msgid ""
30482 "When exporting (only), assume strings are UTF-16LE and print them as strings "
30483 "instead of hex sequences.  Remove the final zero codepoint from strings if "
30484 "present."
30485 msgstr ""
30486
30487 #. type: textblock
30488 #: ../tools/virt-win-reg.pl:190
30489 msgid ""
30490 "This is unsafe and does not preserve the fidelity of strings in the original "
30491 "Registry for various reasons:"
30492 msgstr ""
30493
30494 #. type: textblock
30495 #: ../tools/virt-win-reg.pl:197
30496 msgid ""
30497 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
30498 "other encodings will be corrupted by this transformation."
30499 msgstr ""
30500
30501 #. type: textblock
30502 #: ../tools/virt-win-reg.pl:202
30503 msgid ""
30504 "Assumes that everything which has type 1 or 2 is really a string and that "
30505 "everything else is not a string, but the type field in real Registries is "
30506 "not reliable."
30507 msgstr ""
30508
30509 #. type: textblock
30510 #: ../tools/virt-win-reg.pl:208
30511 msgid ""
30512 "Loses information about whether a zero codepoint followed the string in the "
30513 "Registry or not."
30514 msgstr ""
30515
30516 #. type: textblock
30517 #: ../tools/virt-win-reg.pl:213
30518 msgid ""
30519 "This all happens because the Registry itself contains no information about "
30520 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
30521 msgstr ""
30522
30523 #. type: textblock
30524 #: ../tools/virt-win-reg.pl:217
30525 msgid ""
30526 "You should only use this option for quick hacking and debugging of the "
30527 "Registry contents, and I<never> use it if the output is going to be passed "
30528 "into another program or stored in another Registry."
30529 msgstr ""
30530
30531 #. type: =head1
30532 #: ../tools/virt-win-reg.pl:554
30533 msgid "SUPPORTED SYSTEMS"
30534 msgstr ""
30535
30536 #. type: textblock
30537 #: ../tools/virt-win-reg.pl:556
30538 msgid ""
30539 "The program currently supports Windows NT-derived guests starting with "
30540 "Windows XP through to at least Windows 7."
30541 msgstr ""
30542
30543 #. type: textblock
30544 #: ../tools/virt-win-reg.pl:559
30545 msgid "The following Registry keys are supported:"
30546 msgstr ""
30547
30548 #. type: =item
30549 #: ../tools/virt-win-reg.pl:563
30550 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
30551 msgstr ""
30552
30553 #. type: =item
30554 #: ../tools/virt-win-reg.pl:565
30555 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
30556 msgstr ""
30557
30558 #. type: =item
30559 #: ../tools/virt-win-reg.pl:567
30560 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
30561 msgstr ""
30562
30563 #. type: =item
30564 #: ../tools/virt-win-reg.pl:569
30565 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
30566 msgstr ""
30567
30568 #. type: =item
30569 #: ../tools/virt-win-reg.pl:571
30570 msgid "C<HKEY_USERS\\.DEFAULT>"
30571 msgstr ""
30572
30573 #. type: =item
30574 #: ../tools/virt-win-reg.pl:573
30575 msgid "C<HKEY_USERS\\I<SID>>"
30576 msgstr ""
30577
30578 #. type: textblock
30579 #: ../tools/virt-win-reg.pl:575
30580 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
30581 msgstr ""
30582
30583 #. type: =item
30584 #: ../tools/virt-win-reg.pl:577
30585 msgid "C<HKEY_USERS\\I<username>>"
30586 msgstr ""
30587
30588 #. type: textblock
30589 #: ../tools/virt-win-reg.pl:579
30590 msgid ""
30591 "where I<username> is a local user name (this is a libguestfs extension)."
30592 msgstr ""
30593
30594 #. type: textblock
30595 #: ../tools/virt-win-reg.pl:583
30596 msgid ""
30597 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
30598 "C<HKEY_USERS>."
30599 msgstr ""
30600
30601 #. type: textblock
30602 #: ../tools/virt-win-reg.pl:586
30603 msgid ""
30604 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
30605 "supported (there is no \"current user\")."
30606 msgstr ""
30607
30608 #. type: =head1
30609 #: ../tools/virt-win-reg.pl:589
30610 msgid "ENCODING"
30611 msgstr ""
30612
30613 #. type: textblock
30614 #: ../tools/virt-win-reg.pl:591
30615 msgid ""
30616 "C<virt-win-reg> expects that regedit files have already been reencoded in "
30617 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
30618 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
30619 "Windows-style line endings, you may need to reencode the whole file before "
30620 "or after processing."
30621 msgstr ""
30622
30623 #. type: textblock
30624 #: ../tools/virt-win-reg.pl:597
30625 msgid ""
30626 "To reencode a file from Windows format to Linux (before processing it with "
30627 "the I<--merge> option), you would do something like this:"
30628 msgstr ""
30629
30630 #. type: verbatim
30631 #: ../tools/virt-win-reg.pl:600
30632 #, no-wrap
30633 msgid ""
30634 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30635 "\n"
30636 msgstr ""
30637
30638 #. type: textblock
30639 #: ../tools/virt-win-reg.pl:602
30640 msgid ""
30641 "To go in the opposite direction, after exporting and before sending the file "
30642 "to a Windows user, do something like this:"
30643 msgstr ""
30644
30645 #. type: verbatim
30646 #: ../tools/virt-win-reg.pl:605
30647 #, no-wrap
30648 msgid ""
30649 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30650 "\n"
30651 msgstr ""
30652
30653 #. type: textblock
30654 #: ../tools/virt-win-reg.pl:607
30655 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30656 msgstr ""
30657
30658 #. type: textblock
30659 #: ../tools/virt-win-reg.pl:609
30660 msgid ""
30661 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30662 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30663 "style (CRLF) line endings, like this:"
30664 msgstr ""
30665
30666 #. type: verbatim
30667 #: ../tools/virt-win-reg.pl:613
30668 #, no-wrap
30669 msgid ""
30670 " $ file software.reg\n"
30671 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30672 " with CRLF line terminators\n"
30673 "\n"
30674 msgstr ""
30675
30676 #. type: textblock
30677 #: ../tools/virt-win-reg.pl:617
30678 msgid "This file would need conversion before you could I<--merge> it."
30679 msgstr ""
30680
30681 #. type: =head1
30682 #: ../tools/virt-win-reg.pl:619
30683 msgid "CurrentControlSet etc."
30684 msgstr ""
30685
30686 #. type: textblock
30687 #: ../tools/virt-win-reg.pl:621
30688 msgid ""
30689 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30690 "Registry at the level of the hive file, and therefore you cannot modify "
30691 "these."
30692 msgstr ""
30693
30694 #. type: textblock
30695 #: ../tools/virt-win-reg.pl:625
30696 msgid ""
30697 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30698 "circumstances it might refer to another control set.  The way to find out is "
30699 "to look at the C<HKLM\\SYSTEM\\Select> key:"
30700 msgstr ""
30701
30702 #. type: verbatim
30703 #: ../tools/virt-win-reg.pl:629
30704 #, no-wrap
30705 msgid ""
30706 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30707 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30708 " \"Current\"=dword:00000001\n"
30709 " \"Default\"=dword:00000001\n"
30710 " \"Failed\"=dword:00000000\n"
30711 " \"LastKnownGood\"=dword:00000002\n"
30712 "\n"
30713 msgstr ""
30714
30715 #. type: textblock
30716 #: ../tools/virt-win-reg.pl:636
30717 msgid "\"Current\" is the one which Windows will choose when it boots."
30718 msgstr ""
30719
30720 #. type: textblock
30721 #: ../tools/virt-win-reg.pl:638
30722 msgid ""
30723 "Similarly, other C<Current...> keys in the path may need to be replaced."
30724 msgstr ""
30725
30726 #. type: =head1
30727 #: ../tools/virt-win-reg.pl:641
30728 msgid "WINDOWS TIPS"
30729 msgstr ""
30730
30731 #. type: textblock
30732 #: ../tools/virt-win-reg.pl:643
30733 msgid ""
30734 "Note that some of these tips modify the guest disk image.  The guest I<must> "
30735 "be shut off, else you will get disk corruption."
30736 msgstr ""
30737
30738 #. type: =head2
30739 #: ../tools/virt-win-reg.pl:646
30740 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30741 msgstr ""
30742
30743 #. type: textblock
30744 #: ../tools/virt-win-reg.pl:648
30745 msgid ""
30746 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30747 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30748 "is uploaded into C<C:\\>:"
30749 msgstr ""
30750
30751 #. type: verbatim
30752 #: ../tools/virt-win-reg.pl:652
30753 #, no-wrap
30754 msgid ""
30755 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30756 "\n"
30757 msgstr ""
30758
30759 #. type: textblock
30760 #: ../tools/virt-win-reg.pl:654
30761 msgid "Prepare a regedit file containing the registry change:"
30762 msgstr ""
30763
30764 #. type: verbatim
30765 #: ../tools/virt-win-reg.pl:656
30766 #, no-wrap
30767 msgid ""
30768 " cat > test.reg <<'EOF'\n"
30769 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30770 " \"Test\"=\"c:\\\\test.bat\"\n"
30771 " EOF\n"
30772 "\n"
30773 msgstr ""
30774
30775 #. type: textblock
30776 #: ../tools/virt-win-reg.pl:661
30777 msgid ""
30778 "In this example we use the key C<RunOnce> which means that the script will "
30779 "run precisely once when the first user logs in.  If you want it to run every "
30780 "time a user logs in, replace C<RunOnce> with C<Run>."
30781 msgstr ""
30782
30783 #. type: textblock
30784 #: ../tools/virt-win-reg.pl:665
30785 msgid "Now update the registry:"
30786 msgstr ""
30787
30788 #. type: verbatim
30789 #: ../tools/virt-win-reg.pl:667
30790 #, no-wrap
30791 msgid ""
30792 " virt-win-reg --merge WindowsGuest test.reg\n"
30793 "\n"
30794 msgstr ""
30795
30796 #. type: =head2
30797 #: ../tools/virt-win-reg.pl:669
30798 msgid "INSTALLING A SERVICE"
30799 msgstr ""
30800
30801 #. type: textblock
30802 #: ../tools/virt-win-reg.pl:671
30803 msgid ""
30804 "This section assumes you are familiar with Windows services, and you either "
30805 "have a program which handles the Windows Service Control Protocol directly "
30806 "or you want to run any program using a service wrapper like SrvAny or the "
30807 "free RHSrvAny."
30808 msgstr ""
30809
30810 #. type: textblock
30811 #: ../tools/virt-win-reg.pl:676
30812 msgid ""
30813 "First upload the program and optionally the service wrapper.  In this case "
30814 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30815 msgstr ""
30816
30817 #. type: verbatim
30818 #: ../tools/virt-win-reg.pl:680
30819 #, no-wrap
30820 msgid ""
30821 " guestfish -i -d WindowsGuest <<EOF\n"
30822 "   upload rhsrvany.exe /rhsrvany.exe\n"
30823 "   upload test.exe /test.exe\n"
30824 " EOF\n"
30825 "\n"
30826 msgstr ""
30827
30828 #. type: textblock
30829 #: ../tools/virt-win-reg.pl:685
30830 msgid ""
30831 "Prepare a regedit file containing the registry changes.  In this example, "
30832 "the first registry change is needed for the service itself or the service "
30833 "wrapper (if used).  The second registry change is only needed because I am "
30834 "using the RHSrvAny service wrapper."
30835 msgstr ""
30836
30837 #. type: verbatim
30838 #: ../tools/virt-win-reg.pl:690
30839 #, no-wrap
30840 msgid ""
30841 " cat > service.reg <<'EOF'\n"
30842 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30843 " \"Type\"=dword:00000010\n"
30844 " \"Start\"=dword:00000002\n"
30845 " \"ErrorControl\"=dword:00000001\n"
30846 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30847 " \"DisplayName\"=\"RHSrvAny\"\n"
30848 " \"ObjectName\"=\"NetworkService\"\n"
30849 " \n"
30850 msgstr ""
30851
30852 #. type: verbatim
30853 #: ../tools/virt-win-reg.pl:699
30854 #, no-wrap
30855 msgid ""
30856 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30857 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30858 " \"PWD\"=\"c:\\\\Temp\"\n"
30859 " EOF\n"
30860 "\n"
30861 msgstr ""
30862
30863 #. type: textblock
30864 #: ../tools/virt-win-reg.pl:710
30865 msgid ""
30866 "For use of C<ControlSet001> see the section above in this manual page.  You "
30867 "may need to adjust this according to the control set that is in use by the "
30868 "guest."
30869 msgstr ""
30870
30871 #. type: textblock
30872 #: ../tools/virt-win-reg.pl:716
30873 msgid ""
30874 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30875 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30876 "privileged account."
30877 msgstr ""
30878
30879 #. type: textblock
30880 #: ../tools/virt-win-reg.pl:722
30881 msgid ""
30882 "For the meaning of the magic numbers, see this Microsoft KB article: "
30883 "L<http://support.microsoft.com/kb/103000>."
30884 msgstr ""
30885
30886 #. type: textblock
30887 #: ../tools/virt-win-reg.pl:727
30888 msgid "Update the registry:"
30889 msgstr ""
30890
30891 #. type: verbatim
30892 #: ../tools/virt-win-reg.pl:729
30893 #, no-wrap
30894 msgid ""
30895 " virt-win-reg --merge WindowsGuest service.reg\n"
30896 "\n"
30897 msgstr ""
30898
30899 #. type: =head1
30900 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30901 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30902 #: ../tools/virt-list-partitions.pl:250
30903 msgid "SHELL QUOTING"
30904 msgstr ""
30905
30906 #. type: textblock
30907 #: ../tools/virt-win-reg.pl:733
30908 msgid ""
30909 "Be careful when passing parameters containing C<\\> (backslash) in the "
30910 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30911 "(but not both) to protect them from the shell."
30912 msgstr ""
30913
30914 #. type: textblock
30915 #: ../tools/virt-win-reg.pl:737
30916 msgid "Paths and value names are case-insensitive."
30917 msgstr ""
30918
30919 #. type: textblock
30920 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30921 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30922 #: ../tools/virt-list-partitions.pl:252
30923 msgid ""
30924 "Libvirt guest names can contain arbitrary characters, some of which have "
30925 "meaning to the shell such as C<#> and space.  You may need to quote or "
30926 "escape these characters on the command line.  See the shell manual page L<sh"
30927 "(1)> for details."
30928 msgstr ""
30929
30930 #. type: textblock
30931 #: ../tools/virt-win-reg.pl:746
30932 msgid ""
30933 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30934 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30935 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30936 msgstr ""
30937
30938 #. type: textblock
30939 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30940 msgid ""
30941 "When reporting bugs, please enable debugging and capture the I<complete> "
30942 "output:"
30943 msgstr ""
30944
30945 #. type: verbatim
30946 #: ../tools/virt-win-reg.pl:764
30947 #, no-wrap
30948 msgid ""
30949 " export LIBGUESTFS_DEBUG=1\n"
30950 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30951 "\n"
30952 msgstr ""
30953
30954 #. type: textblock
30955 #: ../tools/virt-win-reg.pl:767
30956 msgid ""
30957 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30958 "redhat.com/>"
30959 msgstr ""
30960
30961 #. type: =head1
30962 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30963 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30964 #: ../tools/virt-list-partitions.pl:269
30965 msgid "AUTHOR"
30966 msgstr ""
30967
30968 #. type: textblock
30969 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30970 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30971 #: ../tools/virt-list-partitions.pl:271
30972 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30973 msgstr ""
30974
30975 #. type: textblock
30976 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30977 msgid "Copyright (C) 2010 Red Hat Inc."
30978 msgstr ""
30979
30980 #. type: textblock
30981 #: ../tools/virt-list-filesystems.pl:32
30982 msgid ""
30983 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30984 msgstr ""
30985
30986 #. type: verbatim
30987 #: ../tools/virt-list-filesystems.pl:36
30988 #, no-wrap
30989 msgid ""
30990 " virt-list-filesystems [--options] domname\n"
30991 "\n"
30992 msgstr ""
30993
30994 #. type: verbatim
30995 #: ../tools/virt-list-filesystems.pl:38
30996 #, no-wrap
30997 msgid ""
30998 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30999 "\n"
31000 msgstr ""
31001
31002 #. type: textblock
31003 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
31004 msgid ""
31005 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
31006 "replacement."
31007 msgstr ""
31008
31009 #. type: textblock
31010 #: ../tools/virt-list-filesystems.pl:45
31011 msgid ""
31012 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
31013 "are contained in a virtual machine or disk image."
31014 msgstr ""
31015
31016 #. type: textblock
31017 #: ../tools/virt-list-filesystems.pl:49
31018 msgid ""
31019 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
31020 "functionality.  For more complex cases you should look at the L<guestfish(1)"
31021 "> tool."
31022 msgstr ""
31023
31024 #. type: =item
31025 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
31026 msgid "B<-l> | B<--long>"
31027 msgstr ""
31028
31029 #. type: textblock
31030 #: ../tools/virt-list-filesystems.pl:108
31031 msgid ""
31032 "With this option, C<virt-list-filesystems> displays the type of each "
31033 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
31034 msgstr ""
31035
31036 #. type: =item
31037 #: ../tools/virt-list-filesystems.pl:115
31038 msgid "B<-a> | B<--all>"
31039 msgstr ""
31040
31041 #. type: textblock
31042 #: ../tools/virt-list-filesystems.pl:117
31043 msgid ""
31044 "Normally we only show mountable filesystems.  If this option is given then "
31045 "swap devices are shown too."
31046 msgstr ""
31047
31048 #. type: textblock
31049 #: ../tools/virt-list-filesystems.pl:191
31050 msgid ""
31051 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
31052 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
31053 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31054 msgstr ""
31055
31056 #. type: textblock
31057 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
31058 msgid "Copyright (C) 2009 Red Hat Inc."
31059 msgstr ""
31060
31061 #. type: textblock
31062 #: ../tools/virt-tar.pl:33
31063 msgid "virt-tar - Extract or upload files to a virtual machine"
31064 msgstr ""
31065
31066 #. type: verbatim
31067 #: ../tools/virt-tar.pl:37
31068 #, no-wrap
31069 msgid ""
31070 " virt-tar [--options] -x domname directory tarball\n"
31071 "\n"
31072 msgstr ""
31073
31074 #. type: verbatim
31075 #: ../tools/virt-tar.pl:39
31076 #, no-wrap
31077 msgid ""
31078 " virt-tar [--options] -u domname tarball directory\n"
31079 "\n"
31080 msgstr ""
31081
31082 #. type: verbatim
31083 #: ../tools/virt-tar.pl:41
31084 #, no-wrap
31085 msgid ""
31086 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
31087 "\n"
31088 msgstr ""
31089
31090 #. type: verbatim
31091 #: ../tools/virt-tar.pl:43
31092 #, no-wrap
31093 msgid ""
31094 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
31095 "\n"
31096 msgstr ""
31097
31098 #. type: textblock
31099 #: ../tools/virt-tar.pl:47
31100 msgid ""
31101 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
31102 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
31103 msgstr ""
31104
31105 #. type: textblock
31106 #: ../tools/virt-tar.pl:52
31107 msgid "Download C</home> from the VM into a local tarball:"
31108 msgstr ""
31109
31110 #. type: verbatim
31111 #: ../tools/virt-tar.pl:54
31112 #, no-wrap
31113 msgid ""
31114 " virt-tar -x domname /home home.tar\n"
31115 "\n"
31116 msgstr ""
31117
31118 #. type: verbatim
31119 #: ../tools/virt-tar.pl:56
31120 #, no-wrap
31121 msgid ""
31122 " virt-tar -zx domname /home home.tar.gz\n"
31123 "\n"
31124 msgstr ""
31125
31126 #. type: textblock
31127 #: ../tools/virt-tar.pl:58
31128 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
31129 msgstr ""
31130
31131 #. type: verbatim
31132 #: ../tools/virt-tar.pl:60
31133 #, no-wrap
31134 msgid ""
31135 " virt-tar -u domname uploadstuff.tar /tmp\n"
31136 "\n"
31137 msgstr ""
31138
31139 #. type: verbatim
31140 #: ../tools/virt-tar.pl:62
31141 #, no-wrap
31142 msgid ""
31143 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
31144 "\n"
31145 msgstr ""
31146
31147 #. type: textblock
31148 #: ../tools/virt-tar.pl:66
31149 msgid ""
31150 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
31151 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
31152 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
31153 msgstr ""
31154
31155 #. type: textblock
31156 #: ../tools/virt-tar.pl:71
31157 msgid ""
31158 "You can use I<-x> (extract) on live virtual machines, but you might get "
31159 "inconsistent results or errors if there is filesystem activity inside the "
31160 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
31161 "work, but the only way to guarantee consistent results is if the virtual "
31162 "machine is shut down."
31163 msgstr ""
31164
31165 #. type: textblock
31166 #: ../tools/virt-tar.pl:79
31167 msgid ""
31168 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
31169 "parts of a guest filesystem.  There are many possibilities: making backups, "
31170 "uploading data files, snooping on guest activity, fixing or customizing "
31171 "guests, etc."
31172 msgstr ""
31173
31174 #. type: textblock
31175 #: ../tools/virt-tar.pl:84
31176 msgid ""
31177 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
31178 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
31179 "should look at the L<guestfish(1)> tool."
31180 msgstr ""
31181
31182 #. type: textblock
31183 #: ../tools/virt-tar.pl:88
31184 msgid ""
31185 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
31186 "its contents (recursively) from the virtual machine into a local tarball.  "
31187 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
31188 "virtual machine.  You cannot use these two options together."
31189 msgstr ""
31190
31191 #. type: textblock
31192 #: ../tools/virt-tar.pl:94
31193 msgid ""
31194 "In addition, you may need to use the I<-z> (gZip) option to enable "
31195 "compression.  When uploading, you have to specify I<-z> if the upload file "
31196 "is compressed because virt-tar won't detect this on its own."
31197 msgstr ""
31198
31199 #. type: textblock
31200 #: ../tools/virt-tar.pl:98
31201 msgid ""
31202 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
31203 "example it cannot do PKZip files or bzip2 compression.  If you want that "
31204 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
31205 "the L<libguestfs(3)> API)."
31206 msgstr ""
31207
31208 #. type: =item
31209 #: ../tools/virt-tar.pl:156
31210 msgid "B<-x> | B<--extract> | B<--download>"
31211 msgstr ""
31212
31213 #. type: =item
31214 #: ../tools/virt-tar.pl:158
31215 msgid "B<-u> | B<--upload>"
31216 msgstr ""
31217
31218 #. type: textblock
31219 #: ../tools/virt-tar.pl:160
31220 msgid ""
31221 "Use I<-x> to extract (download) a directory from a virtual machine to a "
31222 "local tarball."
31223 msgstr ""
31224
31225 #. type: textblock
31226 #: ../tools/virt-tar.pl:163
31227 msgid ""
31228 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
31229 "Please read the L</WARNING> section above before using this option."
31230 msgstr ""
31231
31232 #. type: textblock
31233 #: ../tools/virt-tar.pl:167
31234 msgid "You must specify exactly one of these options."
31235 msgstr ""
31236
31237 #. type: =item
31238 #: ../tools/virt-tar.pl:173
31239 msgid "B<-z> | B<--gzip>"
31240 msgstr ""
31241
31242 #. type: textblock
31243 #: ../tools/virt-tar.pl:175
31244 msgid "Specify that the input or output tarball is gzip-compressed."
31245 msgstr ""
31246
31247 #. type: textblock
31248 #: ../tools/virt-tar.pl:288
31249 msgid ""
31250 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
31251 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
31252 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
31253 "org/>."
31254 msgstr ""
31255
31256 #. type: textblock
31257 #: ../tools/virt-make-fs.pl:37
31258 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
31259 msgstr ""
31260
31261 #. type: verbatim
31262 #: ../tools/virt-make-fs.pl:41
31263 #, no-wrap
31264 msgid ""
31265 " virt-make-fs [--options] input.tar output.img\n"
31266 "\n"
31267 msgstr ""
31268
31269 #. type: verbatim
31270 #: ../tools/virt-make-fs.pl:43
31271 #, no-wrap
31272 msgid ""
31273 " virt-make-fs [--options] input.tar.gz output.img\n"
31274 "\n"
31275 msgstr ""
31276
31277 #. type: verbatim
31278 #: ../tools/virt-make-fs.pl:45
31279 #, no-wrap
31280 msgid ""
31281 " virt-make-fs [--options] directory output.img\n"
31282 "\n"
31283 msgstr ""
31284
31285 #. type: textblock
31286 #: ../tools/virt-make-fs.pl:49
31287 msgid ""
31288 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
31289 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
31290 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
31291 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
31292 "you want to attach these filesystems to existing virtual machines (eg. to "
31293 "import large amounts of read-only data to a VM)."
31294 msgstr ""
31295
31296 #. type: textblock
31297 #: ../tools/virt-make-fs.pl:57
31298 msgid "Basic usage is:"
31299 msgstr ""
31300
31301 #. type: verbatim
31302 #: ../tools/virt-make-fs.pl:59
31303 #, no-wrap
31304 msgid ""
31305 " virt-make-fs input output\n"
31306 "\n"
31307 msgstr ""
31308
31309 #. type: textblock
31310 #: ../tools/virt-make-fs.pl:61
31311 msgid ""
31312 "where C<input> is either a directory containing files that you want to add, "
31313 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
31314 "C<output> is a disk image.  The input type is detected automatically.  The "
31315 "output disk image defaults to a raw ext2 image unless you specify extra "
31316 "flags (see L</OPTIONS> below)."
31317 msgstr ""
31318
31319 #. type: =head2
31320 #: ../tools/virt-make-fs.pl:67
31321 msgid "EXTRA SPACE"
31322 msgstr ""
31323
31324 #. type: textblock
31325 #: ../tools/virt-make-fs.pl:69
31326 msgid ""
31327 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
31328 "the files that it contains, but might have extra space.  Depending on how "
31329 "you are going to use the output, you might think this extra space is wasted "
31330 "and want to minimize it, or you might want to leave space so that more files "
31331 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
31332 "but you can use the I<--size> flag to leave space in the filesystem if you "
31333 "want it."
31334 msgstr ""
31335
31336 #. type: textblock
31337 #: ../tools/virt-make-fs.pl:77
31338 msgid ""
31339 "An alternative way to leave extra space but not make the output image any "
31340 "bigger is to use an alternative disk image format (instead of the default "
31341 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
31342 "image format (check your hypervisor supports this before using it).  This "
31343 "allows you to choose a large I<--size> but the extra space won't actually be "
31344 "allocated in the image until you try to store something in it."
31345 msgstr ""
31346
31347 #. type: textblock
31348 #: ../tools/virt-make-fs.pl:85
31349 msgid ""
31350 "Don't forget that you can also use local commands including L<resize2fs(8)> "
31351 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
31352 "to build another image from scratch."
31353 msgstr ""
31354
31355 #. type: =head3
31356 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
31357 #: ../tools/virt-make-fs.pl:142
31358 msgid "EXAMPLE"
31359 msgstr ""
31360
31361 #. type: verbatim
31362 #: ../tools/virt-make-fs.pl:91
31363 #, no-wrap
31364 msgid ""
31365 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
31366 "\n"
31367 msgstr ""
31368
31369 #. type: =head2
31370 #: ../tools/virt-make-fs.pl:93
31371 msgid "FILESYSTEM TYPE"
31372 msgstr ""
31373
31374 #. type: textblock
31375 #: ../tools/virt-make-fs.pl:95
31376 msgid ""
31377 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
31378 "libguestfs supports can be used (but I<not> read-only formats like "
31379 "ISO9660).  Here are some of the more common choices:"
31380 msgstr ""
31381
31382 #. type: =item
31383 #: ../tools/virt-make-fs.pl:101
31384 msgid "I<ext3>"
31385 msgstr ""
31386
31387 #. type: textblock
31388 #: ../tools/virt-make-fs.pl:103
31389 msgid ""
31390 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
31391 "you are not going to use the filesystem in a way that requires the journal, "
31392 "then this is just wasted overhead."
31393 msgstr ""
31394
31395 #. type: =item
31396 #: ../tools/virt-make-fs.pl:107
31397 msgid "I<ntfs> or I<vfat>"
31398 msgstr ""
31399
31400 #. type: textblock
31401 #: ../tools/virt-make-fs.pl:109
31402 msgid "Useful if exporting data to a Windows guest."
31403 msgstr ""
31404
31405 #. type: textblock
31406 #: ../tools/virt-make-fs.pl:111
31407 msgid ""
31408 "I<Note for vfat>: The tar archive or local directory must only contain files "
31409 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
31410 "program running within libguestfs is unable to change the ownership of non-"
31411 "root files, since vfat itself does not support this."
31412 msgstr ""
31413
31414 #. type: =item
31415 #: ../tools/virt-make-fs.pl:116
31416 msgid "I<minix>"
31417 msgstr ""
31418
31419 #. type: textblock
31420 #: ../tools/virt-make-fs.pl:118
31421 msgid ""
31422 "Lower overhead than C<ext2>, but certain limitations on filename length and "
31423 "total filesystem size."
31424 msgstr ""
31425
31426 #. type: verbatim
31427 #: ../tools/virt-make-fs.pl:125
31428 #, no-wrap
31429 msgid ""
31430 " virt-make-fs --type=minix input minixfs.img\n"
31431 "\n"
31432 msgstr ""
31433
31434 #. type: =head2
31435 #: ../tools/virt-make-fs.pl:127
31436 msgid "TO PARTITION OR NOT TO PARTITION"
31437 msgstr ""
31438
31439 #. type: textblock
31440 #: ../tools/virt-make-fs.pl:129
31441 msgid "Optionally virt-make-fs can add a partition table to the output disk."
31442 msgstr ""
31443
31444 #. type: textblock
31445 #: ../tools/virt-make-fs.pl:131
31446 msgid ""
31447 "Adding a partition can make the disk image more compatible with certain "
31448 "virtualized operating systems which don't expect to see a filesystem "
31449 "directly located on a block device (Linux doesn't care and will happily "
31450 "handle both types)."
31451 msgstr ""
31452
31453 #. type: textblock
31454 #: ../tools/virt-make-fs.pl:136
31455 msgid ""
31456 "On the other hand, if you have a partition table then the output image is no "
31457 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
31458 "directly on a partitioned disk image.  (However libguestfs tools such as "
31459 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
31460 msgstr ""
31461
31462 #. type: textblock
31463 #: ../tools/virt-make-fs.pl:144
31464 msgid "Add an MBR partition:"
31465 msgstr ""
31466
31467 #. type: verbatim
31468 #: ../tools/virt-make-fs.pl:146
31469 #, no-wrap
31470 msgid ""
31471 " virt-make-fs --partition -- input disk.img\n"
31472 "\n"
31473 msgstr ""
31474
31475 #. type: textblock
31476 #: ../tools/virt-make-fs.pl:148
31477 msgid ""
31478 "If the output disk image could be terabyte-sized or larger, it's better to "
31479 "use an EFI/GPT-compatible partition table:"
31480 msgstr ""
31481
31482 #. type: verbatim
31483 #: ../tools/virt-make-fs.pl:151
31484 #, no-wrap
31485 msgid ""
31486 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
31487 "\n"
31488 msgstr ""
31489
31490 #. type: textblock
31491 #: ../tools/virt-make-fs.pl:179
31492 msgid "Enable debugging information."
31493 msgstr ""
31494
31495 #. type: =item
31496 #: ../tools/virt-make-fs.pl:185
31497 msgid "B<--size=E<lt>NE<gt>>"
31498 msgstr ""
31499
31500 #. type: =item
31501 #: ../tools/virt-make-fs.pl:187
31502 msgid "B<--size=+E<lt>NE<gt>>"
31503 msgstr ""
31504
31505 #. type: =item
31506 #: ../tools/virt-make-fs.pl:189
31507 msgid "B<-s E<lt>NE<gt>>"
31508 msgstr ""
31509
31510 #. type: =item
31511 #: ../tools/virt-make-fs.pl:191
31512 msgid "B<-s +E<lt>NE<gt>>"
31513 msgstr ""
31514
31515 #. type: textblock
31516 #: ../tools/virt-make-fs.pl:193
31517 msgid ""
31518 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
31519 msgstr ""
31520
31521 #. type: textblock
31522 #: ../tools/virt-make-fs.pl:196
31523 msgid ""
31524 "If this option is I<not> given, then the output image will be just large "
31525 "enough to contain all the files, with not much wasted space."
31526 msgstr ""
31527
31528 #. type: textblock
31529 #: ../tools/virt-make-fs.pl:199
31530 msgid ""
31531 "To choose a fixed size output disk, specify an absolute number followed by b/"
31532 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31533 "Petabytes or Exabytes.  This must be large enough to contain all the input "
31534 "files, else you will get an error."
31535 msgstr ""
31536
31537 #. type: textblock
31538 #: ../tools/virt-make-fs.pl:204
31539 msgid ""
31540 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
31541 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31542 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
31543 "the input files, and (approximately) an extra 200 MB free space."
31544 msgstr ""
31545
31546 #. type: textblock
31547 #: ../tools/virt-make-fs.pl:210
31548 msgid ""
31549 "Note that virt-make-fs estimates free space, and therefore will not produce "
31550 "filesystems containing precisely the free space requested.  (It is much more "
31551 "expensive and time-consuming to produce a filesystem which has precisely the "
31552 "desired free space)."
31553 msgstr ""
31554
31555 #. type: =item
31556 #: ../tools/virt-make-fs.pl:219
31557 msgid "B<--format=E<lt>fmtE<gt>>"
31558 msgstr ""
31559
31560 #. type: =item
31561 #: ../tools/virt-make-fs.pl:221
31562 msgid "B<-F E<lt>fmtE<gt>>"
31563 msgstr ""
31564
31565 #. type: textblock
31566 #: ../tools/virt-make-fs.pl:223
31567 msgid "Choose the output disk image format."
31568 msgstr ""
31569
31570 #. type: textblock
31571 #: ../tools/virt-make-fs.pl:225
31572 msgid "The default is C<raw> (raw disk image)."
31573 msgstr ""
31574
31575 #. type: textblock
31576 #: ../tools/virt-make-fs.pl:227
31577 msgid ""
31578 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
31579 "that would really make sense here is C<qcow2>."
31580 msgstr ""
31581
31582 #. type: =item
31583 #: ../tools/virt-make-fs.pl:234
31584 msgid "B<--type=E<lt>fsE<gt>>"
31585 msgstr ""
31586
31587 #. type: =item
31588 #: ../tools/virt-make-fs.pl:236
31589 msgid "B<-t E<lt>fsE<gt>>"
31590 msgstr ""
31591
31592 #. type: textblock
31593 #: ../tools/virt-make-fs.pl:238
31594 msgid "Choose the output filesystem type."
31595 msgstr ""
31596
31597 #. type: textblock
31598 #: ../tools/virt-make-fs.pl:240
31599 msgid "The default is C<ext2>."
31600 msgstr ""
31601
31602 #. type: textblock
31603 #: ../tools/virt-make-fs.pl:242
31604 msgid ""
31605 "Any filesystem which is supported read-write by libguestfs can be used here."
31606 msgstr ""
31607
31608 #. type: =item
31609 #: ../tools/virt-make-fs.pl:249
31610 msgid "B<--partition>"
31611 msgstr ""
31612
31613 #. type: =item
31614 #: ../tools/virt-make-fs.pl:251
31615 msgid "B<--partition=E<lt>parttypeE<gt>>"
31616 msgstr ""
31617
31618 #. type: textblock
31619 #: ../tools/virt-make-fs.pl:253
31620 msgid ""
31621 "If specified, this flag adds an MBR partition table to the output disk image."
31622 msgstr ""
31623
31624 #. type: textblock
31625 #: ../tools/virt-make-fs.pl:256
31626 msgid ""
31627 "You can change the partition table type, eg. I<--partition=gpt> for large "
31628 "disks."
31629 msgstr ""
31630
31631 #. type: textblock
31632 #: ../tools/virt-make-fs.pl:259
31633 msgid ""
31634 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
31635 "might consider the next parameter to be the partition type.  For example:"
31636 msgstr ""
31637
31638 #. type: verbatim
31639 #: ../tools/virt-make-fs.pl:263
31640 #, no-wrap
31641 msgid ""
31642 " virt-make-fs --partition input.tar ...\n"
31643 "\n"
31644 msgstr ""
31645
31646 #. type: textblock
31647 #: ../tools/virt-make-fs.pl:265
31648 msgid ""
31649 "would cause virt-make-fs to think you wanted to use a partition type of "
31650 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
31651 "dash) between options and the input file argument:"
31652 msgstr ""
31653
31654 #. type: verbatim
31655 #: ../tools/virt-make-fs.pl:269
31656 #, no-wrap
31657 msgid ""
31658 " virt-make-fs --partition -- input.tar ...\n"
31659 "\n"
31660 msgstr ""
31661
31662 #. type: textblock
31663 #: ../tools/virt-make-fs.pl:541
31664 msgid ""
31665 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31666 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
31667 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31668 msgstr ""
31669
31670 #. type: verbatim
31671 #: ../tools/virt-make-fs.pl:558
31672 #, no-wrap
31673 msgid ""
31674 " export LIBGUESTFS_DEBUG=1\n"
31675 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31676 "\n"
31677 msgstr ""
31678
31679 #. type: textblock
31680 #: ../tools/virt-make-fs.pl:561
31681 msgid ""
31682 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
31683 "redhat.com/>"
31684 msgstr ""
31685
31686 #. type: textblock
31687 #: ../tools/virt-list-partitions.pl:32
31688 msgid ""
31689 "virt-list-partitions - List partitions in a virtual machine or disk image"
31690 msgstr ""
31691
31692 #. type: verbatim
31693 #: ../tools/virt-list-partitions.pl:36
31694 #, no-wrap
31695 msgid ""
31696 " virt-list-partitions [--options] domname\n"
31697 "\n"
31698 msgstr ""
31699
31700 #. type: verbatim
31701 #: ../tools/virt-list-partitions.pl:38
31702 #, no-wrap
31703 msgid ""
31704 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31705 "\n"
31706 msgstr ""
31707
31708 #. type: textblock
31709 #: ../tools/virt-list-partitions.pl:45
31710 msgid ""
31711 "C<virt-list-partitions> is a command line tool to list the partitions that "
31712 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31713 "first step to using L<virt-resize(1)>."
31714 msgstr ""
31715
31716 #. type: textblock
31717 #: ../tools/virt-list-partitions.pl:50
31718 msgid ""
31719 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31720 "functionality.  For more complex cases you should look at the L<guestfish(1)"
31721 "> tool."
31722 msgstr ""
31723
31724 #. type: =item
31725 #: ../tools/virt-list-partitions.pl:107
31726 msgid "B<-h> | B<--human-readable>"
31727 msgstr ""
31728
31729 #. type: textblock
31730 #: ../tools/virt-list-partitions.pl:109
31731 msgid "Show sizes in human-readable form (eg. \"1G\")."
31732 msgstr ""
31733
31734 #. type: textblock
31735 #: ../tools/virt-list-partitions.pl:117
31736 msgid ""
31737 "With this option, C<virt-list-partitions> displays the type and size of each "
31738 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31739 msgstr ""
31740
31741 #. type: =item
31742 #: ../tools/virt-list-partitions.pl:124
31743 msgid "B<-t> | B<--total>"
31744 msgstr ""
31745
31746 #. type: textblock
31747 #: ../tools/virt-list-partitions.pl:126
31748 msgid ""
31749 "Display the total size of each block device (as a separate row or rows)."
31750 msgstr ""
31751
31752 #. type: textblock
31753 #: ../tools/virt-list-partitions.pl:259
31754 msgid ""
31755 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31756 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
31757 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31758 msgstr ""
31759
31760 #. type: textblock
31761 #: ../tools/virt-list-partitions.pl:275
31762 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31763 msgstr ""