Version 1.11.17.
[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-14 14:07+0200\n"
11 "PO-Revision-Date: 2011-04-01 15:39+0000\n"
12 "Last-Translator: yurchor <yurchor@ukr.net>\n"
13 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
14 "Language: uk\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
20
21 #. type: =head1
22 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
23 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
24 #: ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30
25 #: ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35
26 #: ../tools/virt-list-partitions.pl:30
27 msgid "NAME"
28 msgstr "НАЗВА"
29
30 #. type: textblock
31 #: ../src/guestfs.pod:5
32 msgid "guestfs - Library for accessing and modifying virtual machine images"
33 msgstr ""
34 "guestfs — бібліотека для доступу та внесення змін до образів віртуальних "
35 "машин"
36
37 #. type: =head1
38 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
39 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
40 #: ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34
41 #: ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39
42 #: ../tools/virt-list-partitions.pl:34
43 msgid "SYNOPSIS"
44 msgstr "КОРОТКИЙ ОПИС"
45
46 #. type: verbatim
47 #: ../src/guestfs.pod:9
48 #, no-wrap
49 msgid ""
50 " #include <guestfs.h>\n"
51 " \n"
52 msgstr ""
53 " #include <guestfs.h>\n"
54 " \n"
55
56 #. type: verbatim
57 #: ../src/guestfs.pod:11
58 #, no-wrap
59 msgid ""
60 " guestfs_h *g = guestfs_create ();\n"
61 " guestfs_add_drive (g, \"guest.img\");\n"
62 " guestfs_launch (g);\n"
63 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
64 " guestfs_touch (g, \"/hello\");\n"
65 " guestfs_umount (g, \"/\");\n"
66 " guestfs_close (g);\n"
67 "\n"
68 msgstr ""
69 " guestfs_h *g = guestfs_create ();\n"
70 " guestfs_add_drive (g, \"guest.img\");\n"
71 " guestfs_launch (g);\n"
72 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
73 " guestfs_touch (g, \"/hello\");\n"
74 " guestfs_umount (g, \"/\");\n"
75 " guestfs_close (g);\n"
76 "\n"
77
78 #. type: verbatim
79 #: ../src/guestfs.pod:19
80 #, no-wrap
81 msgid ""
82 " cc prog.c -o prog -lguestfs\n"
83 "or:\n"
84 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
85 "\n"
86 msgstr ""
87 " cc prog.c -o prog -lguestfs\n"
88 "або:\n"
89 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
90 "\n"
91
92 #. type: =head1
93 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
94 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
95 #: ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40
96 #: ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47
97 #: ../tools/virt-list-partitions.pl:40
98 msgid "DESCRIPTION"
99 msgstr "ОПИС"
100
101 #. type: textblock
102 #: ../src/guestfs.pod:25
103 msgid ""
104 "Libguestfs is a library for accessing and modifying guest disk images.  "
105 "Amongst the things this is good for: making batch configuration changes to "
106 "guests, getting disk used/free statistics (see also: virt-df), migrating "
107 "between virtualization systems (see also: virt-p2v), performing partial "
108 "backups, performing partial guest clones, cloning guests and changing "
109 "registry/UUID/hostname info, and much else besides."
110 msgstr ""
111
112 #. type: textblock
113 #: ../src/guestfs.pod:33
114 msgid ""
115 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
116 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
117 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
118 "qcow2, vmdk."
119 msgstr ""
120
121 #. type: textblock
122 #: ../src/guestfs.pod:38
123 msgid ""
124 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
125 "what filesystem is in each LV, etc.).  It can also run commands in the "
126 "context of the guest.  Also you can access filesystems over FUSE."
127 msgstr ""
128
129 #. type: textblock
130 #: ../src/guestfs.pod:43
131 msgid ""
132 "Libguestfs is a library that can be linked with C and C++ management "
133 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
134 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
135 "line."
136 msgstr ""
137
138 #. type: textblock
139 #: ../src/guestfs.pod:48
140 msgid ""
141 "You don't need to be root to use libguestfs, although obviously you do need "
142 "enough permissions to access the disk images."
143 msgstr ""
144
145 #. type: textblock
146 #: ../src/guestfs.pod:51
147 msgid ""
148 "Libguestfs is a large API because it can do many things.  For a gentle "
149 "introduction, please read the L</API OVERVIEW> section next."
150 msgstr ""
151
152 #. type: textblock
153 #: ../src/guestfs.pod:54
154 msgid ""
155 "There are also some example programs in the L<guestfs-examples(3)> manual "
156 "page."
157 msgstr ""
158
159 #. type: =head1
160 #: ../src/guestfs.pod:57
161 msgid "API OVERVIEW"
162 msgstr "ОГЛЯД API"
163
164 #. type: textblock
165 #: ../src/guestfs.pod:59
166 msgid ""
167 "This section provides a gentler overview of the libguestfs API.  We also try "
168 "to group API calls together, where that may not be obvious from reading "
169 "about the individual calls in the main section of this manual."
170 msgstr ""
171
172 #. type: =head2
173 #: ../src/guestfs.pod:64
174 msgid "HANDLES"
175 msgstr "ОБРОБНИКИ"
176
177 #. type: textblock
178 #: ../src/guestfs.pod:66
179 msgid ""
180 "Before you can use libguestfs calls, you have to create a handle.  Then you "
181 "must add at least one disk image to the handle, followed by launching the "
182 "handle, then performing whatever operations you want, and finally closing "
183 "the handle.  By convention we use the single letter C<g> for the name of the "
184 "handle variable, although of course you can use any name you want."
185 msgstr ""
186
187 #. type: textblock
188 #: ../src/guestfs.pod:73
189 msgid "The general structure of all libguestfs-using programs looks like this:"
190 msgstr ""
191
192 #. type: verbatim
193 #: ../src/guestfs.pod:76
194 #, no-wrap
195 msgid ""
196 " guestfs_h *g = guestfs_create ();\n"
197 " \n"
198 msgstr ""
199 " guestfs_h *g = guestfs_create ();\n"
200 " \n"
201
202 #. type: verbatim
203 #: ../src/guestfs.pod:78
204 #, no-wrap
205 msgid ""
206 " /* Call guestfs_add_drive additional times if there are\n"
207 "  * multiple disk images.\n"
208 "  */\n"
209 " guestfs_add_drive (g, \"guest.img\");\n"
210 " \n"
211 msgstr ""
212
213 #. type: verbatim
214 #: ../src/guestfs.pod:83
215 #, no-wrap
216 msgid ""
217 " /* Most manipulation calls won't work until you've launched\n"
218 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
219 "  * and _before_ other commands.\n"
220 "  */\n"
221 " guestfs_launch (g);\n"
222 " \n"
223 msgstr ""
224
225 #. type: verbatim
226 #: ../src/guestfs.pod:89
227 #, no-wrap
228 msgid ""
229 " /* Now you can examine what partitions, LVs etc are available.\n"
230 "  */\n"
231 " char **partitions = guestfs_list_partitions (g);\n"
232 " char **logvols = guestfs_lvs (g);\n"
233 " \n"
234 msgstr ""
235
236 #. type: verbatim
237 #: ../src/guestfs.pod:94
238 #, no-wrap
239 msgid ""
240 " /* To access a filesystem in the image, you must mount it.\n"
241 "  */\n"
242 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
243 " \n"
244 msgstr ""
245 " /* Щоб отримати доступ до файлової системи на образі, вам слід його змонтувати.\n"
246 "  */\n"
247 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
248 " \n"
249
250 #. type: verbatim
251 #: ../src/guestfs.pod:98
252 #, fuzzy, no-wrap
253 #| msgid ""
254 #| " /* Now you can perform filesystem actions on the guest\n"
255 #| "  * disk image.\n"
256 #| "  */\n"
257 #| " guestfs_touch (g, \"/hello\");\n"
258 #| "\n"
259 msgid ""
260 " /* Now you can perform filesystem actions on the guest\n"
261 "  * disk image.\n"
262 "  */\n"
263 " guestfs_touch (g, \"/hello\");\n"
264 " \n"
265 msgstr ""
266 " /* Тепер ви можете виконувати дії з файловою системою на\n"
267 "  * образі диска операційної системи.\n"
268 "  */\n"
269 " guestfs_touch (g, \"/hello\");\n"
270 "\n"
271
272 #. type: verbatim
273 #: ../src/guestfs.pod:103
274 #, no-wrap
275 msgid ""
276 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
277 "  * it is done automatically when you close the handle.  See\n"
278 "  * discussion of autosync in this page.\n"
279 "  */\n"
280 " guestfs_sync (g);\n"
281 " \n"
282 msgstr ""
283
284 #. type: verbatim
285 #: ../src/guestfs.pod:109
286 #, no-wrap
287 msgid ""
288 " /* Close the handle 'g'. */\n"
289 " guestfs_close (g);\n"
290 "\n"
291 msgstr ""
292
293 #. type: textblock
294 #: ../src/guestfs.pod:112
295 msgid ""
296 "The code above doesn't include any error checking.  In real code you should "
297 "check return values carefully for errors.  In general all functions that "
298 "return integers return C<-1> on error, and all functions that return "
299 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
300 "how to handle errors, and consult the documentation for each function call "
301 "below to see precisely how they return error indications.  See L<guestfs-"
302 "examples(3)> for fully worked examples."
303 msgstr ""
304
305 #. type: =head2
306 #: ../src/guestfs.pod:121
307 msgid "DISK IMAGES"
308 msgstr ""
309
310 #. type: textblock
311 #: ../src/guestfs.pod:123
312 msgid ""
313 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
314 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
315 "actual block device, or simply an empty file of zeroes that you have created "
316 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
317 "of these."
318 msgstr ""
319
320 #. type: textblock
321 #: ../src/guestfs.pod:129
322 msgid ""
323 "The call you should use in modern code for adding drives is L</"
324 "guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
325 "specifying that the format is raw, do:"
326 msgstr ""
327
328 #. type: verbatim
329 #: ../src/guestfs.pod:133
330 #, no-wrap
331 msgid ""
332 " guestfs_add_drive_opts (g, filename,\n"
333 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
334 "                         -1);\n"
335 "\n"
336 msgstr ""
337
338 #. type: textblock
339 #: ../src/guestfs.pod:137
340 msgid "You can add a disk read-only using:"
341 msgstr ""
342
343 #. type: verbatim
344 #: ../src/guestfs.pod:139
345 #, no-wrap
346 msgid ""
347 " guestfs_add_drive_opts (g, filename,\n"
348 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
349 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
350 "                         -1);\n"
351 "\n"
352 msgstr ""
353
354 #. type: textblock
355 #: ../src/guestfs.pod:144
356 msgid ""
357 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
358 "libguestfs won't modify the file."
359 msgstr ""
360
361 #. type: textblock
362 #: ../src/guestfs.pod:147
363 msgid ""
364 "Be extremely cautious if the disk image is in use, eg. if it is being used "
365 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
366 "corruption, but adding it read-only is safe."
367 msgstr ""
368
369 #. type: textblock
370 #: ../src/guestfs.pod:151
371 msgid ""
372 "You must add at least one disk image, and you may add multiple disk images.  "
373 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
374 "first one you added), C</dev/sdb> (for the second one you added), etc."
375 msgstr ""
376
377 #. type: textblock
378 #: ../src/guestfs.pod:156
379 msgid ""
380 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
381 "can call L</guestfs_list_devices> to get a list of the device names, in the "
382 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
383 msgstr ""
384
385 #. type: =head2
386 #: ../src/guestfs.pod:161
387 msgid "MOUNTING"
388 msgstr "МОНТУВАННЯ"
389
390 #. type: textblock
391 #: ../src/guestfs.pod:163
392 msgid ""
393 "Before you can read or write files, create directories and so on in a disk "
394 "image that contains filesystems, you have to mount those filesystems using "
395 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
396 "a disk image contains (for example) one partition with a filesystem on that "
397 "partition, then you can mount it directly:"
398 msgstr ""
399
400 #. type: verbatim
401 #: ../src/guestfs.pod:170
402 #, no-wrap
403 msgid ""
404 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
405 "\n"
406 msgstr ""
407
408 #. type: textblock
409 #: ../src/guestfs.pod:172
410 msgid ""
411 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
412 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
413 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
414 "that these are libguestfs virtual devices, and are nothing to do with host "
415 "devices."
416 msgstr ""
417
418 #. type: textblock
419 #: ../src/guestfs.pod:178
420 msgid ""
421 "If you are given a disk image and you don't know what it contains then you "
422 "have to find out.  Libguestfs can do that too: use L</"
423 "guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
424 "LVs, and either try mounting each to see what is mountable, or else examine "
425 "them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
426 "filesystems, use L</guestfs_list_filesystems>."
427 msgstr ""
428
429 #. type: textblock
430 #: ../src/guestfs.pod:186
431 msgid ""
432 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
433 "L</INSPECTION> below).  But you might find it easier to look at higher level "
434 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
435 msgstr ""
436
437 #. type: textblock
438 #: ../src/guestfs.pod:191
439 msgid ""
440 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
441 "several other variations of the C<guestfs_mount_*> call."
442 msgstr ""
443
444 #. type: =head2
445 #: ../src/guestfs.pod:194
446 msgid "FILESYSTEM ACCESS AND MODIFICATION"
447 msgstr ""
448
449 #. type: textblock
450 #: ../src/guestfs.pod:196
451 msgid ""
452 "The majority of the libguestfs API consists of fairly low-level calls for "
453 "accessing and modifying the files, directories, symlinks etc on mounted "
454 "filesystems.  There are over a hundred such calls which you can find listed "
455 "in detail below in this man page, and we don't even pretend to cover them "
456 "all in this overview."
457 msgstr ""
458
459 #. type: textblock
460 #: ../src/guestfs.pod:202
461 msgid ""
462 "Specify filenames as full paths, starting with C<\"/\"> and including the "
463 "mount point."
464 msgstr ""
465
466 #. type: textblock
467 #: ../src/guestfs.pod:205
468 msgid ""
469 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
470 "the file called C<\"etc/passwd\"> then you could do:"
471 msgstr ""
472
473 #. type: verbatim
474 #: ../src/guestfs.pod:208
475 #, no-wrap
476 msgid ""
477 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
478 "\n"
479 msgstr ""
480
481 #. type: textblock
482 #: ../src/guestfs.pod:210
483 msgid ""
484 "This would return C<data> as a newly allocated buffer containing the full "
485 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
486 "or C<NULL> if there was an error."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:214
491 msgid ""
492 "As another example, to create a top-level directory on that filesystem "
493 "called C<\"var\"> you would do:"
494 msgstr ""
495
496 #. type: verbatim
497 #: ../src/guestfs.pod:217
498 #, no-wrap
499 msgid ""
500 " guestfs_mkdir (g, \"/var\");\n"
501 "\n"
502 msgstr ""
503
504 #. type: textblock
505 #: ../src/guestfs.pod:219
506 msgid "To create a symlink you could do:"
507 msgstr ""
508
509 #. type: verbatim
510 #: ../src/guestfs.pod:221
511 #, no-wrap
512 msgid ""
513 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
514 "               \"/etc/rc3.d/S30portmap\");\n"
515 "\n"
516 msgstr ""
517
518 #. type: textblock
519 #: ../src/guestfs.pod:224
520 msgid ""
521 "Libguestfs will reject attempts to use relative paths and there is no "
522 "concept of a current working directory."
523 msgstr ""
524
525 #. type: textblock
526 #: ../src/guestfs.pod:227
527 msgid ""
528 "Libguestfs can return errors in many situations: for example if the "
529 "filesystem isn't writable, or if a file or directory that you requested "
530 "doesn't exist.  If you are using the C API (documented here)  you have to "
531 "check for those error conditions after each call.  (Other language bindings "
532 "turn these errors into exceptions)."
533 msgstr ""
534
535 #. type: textblock
536 #: ../src/guestfs.pod:233
537 msgid ""
538 "File writes are affected by the per-handle umask, set by calling L</"
539 "guestfs_umask> and defaulting to 022.  See L</UMASK>."
540 msgstr ""
541
542 #. type: =head2
543 #: ../src/guestfs.pod:236
544 msgid "PARTITIONING"
545 msgstr "ПОДІЛ НА РОЗДІЛИ"
546
547 #. type: textblock
548 #: ../src/guestfs.pod:238
549 msgid ""
550 "Libguestfs contains API calls to read, create and modify partition tables on "
551 "disk images."
552 msgstr ""
553
554 #. type: textblock
555 #: ../src/guestfs.pod:241
556 msgid ""
557 "In the common case where you want to create a single partition covering the "
558 "whole disk, you should use the L</guestfs_part_disk> call:"
559 msgstr ""
560
561 #. type: verbatim
562 #: ../src/guestfs.pod:245
563 #, no-wrap
564 msgid ""
565 " const char *parttype = \"mbr\";\n"
566 " if (disk_is_larger_than_2TB)\n"
567 "   parttype = \"gpt\";\n"
568 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
569 "\n"
570 msgstr ""
571
572 #. type: textblock
573 #: ../src/guestfs.pod:250
574 msgid ""
575 "Obviously this effectively wipes anything that was on that disk image before."
576 msgstr ""
577
578 #. type: =head2
579 #: ../src/guestfs.pod:253
580 msgid "LVM2"
581 msgstr "LVM2"
582
583 #. type: textblock
584 #: ../src/guestfs.pod:255
585 msgid ""
586 "Libguestfs provides access to a large part of the LVM2 API, such as L</"
587 "guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense unless "
588 "you familiarize yourself with the concepts of physical volumes, volume "
589 "groups and logical volumes."
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:260
594 msgid ""
595 "This author strongly recommends reading the LVM HOWTO, online at L<http://"
596 "tldp.org/HOWTO/LVM-HOWTO/>."
597 msgstr ""
598
599 #. type: =head2
600 #: ../src/guestfs.pod:263
601 msgid "DOWNLOADING"
602 msgstr ""
603
604 #. type: textblock
605 #: ../src/guestfs.pod:265
606 msgid ""
607 "Use L</guestfs_cat> to download small, text only files.  This call is "
608 "limited to files which are less than 2 MB and which cannot contain any ASCII "
609 "NUL (C<\\0>) characters.  However the API is very simple to use."
610 msgstr ""
611
612 #. type: textblock
613 #: ../src/guestfs.pod:269
614 msgid ""
615 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
616 "bit data, since it returns a (pointer, size) pair.  However it is still "
617 "limited to \"small\" files, less than 2 MB."
618 msgstr ""
619
620 #. type: textblock
621 #: ../src/guestfs.pod:273
622 msgid ""
623 "L</guestfs_download> can be used to download any file, with no limits on "
624 "content or size (even files larger than 4 GB)."
625 msgstr ""
626
627 #. type: textblock
628 #: ../src/guestfs.pod:276
629 msgid ""
630 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
631 msgstr ""
632
633 #. type: =head2
634 #: ../src/guestfs.pod:279
635 msgid "UPLOADING"
636 msgstr "ВИВАНТАЖЕННЯ"
637
638 #. type: textblock
639 #: ../src/guestfs.pod:281
640 msgid ""
641 "It's often the case that you want to write a file or files to the disk image."
642 msgstr ""
643
644 #. type: textblock
645 #: ../src/guestfs.pod:284
646 msgid ""
647 "To write a small file with fixed content, use L</guestfs_write>.  To create "
648 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
649 "guestfs_fallocate64> (with all disk blocks allocated).  There are a variety "
650 "of other functions for creating test files, for example L</guestfs_fill> and "
651 "L</guestfs_fill_pattern>."
652 msgstr ""
653
654 #. type: textblock
655 #: ../src/guestfs.pod:290
656 msgid ""
657 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
658 "file content or size (even files larger than 4 GB)."
659 msgstr ""
660
661 #. type: textblock
662 #: ../src/guestfs.pod:293
663 msgid ""
664 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
665 msgstr ""
666
667 #. type: textblock
668 #: ../src/guestfs.pod:295
669 msgid ""
670 "However the fastest way to upload I<large numbers of arbitrary files> is to "
671 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
672 ">), then attach this using L</guestfs_add_drive_ro>.  If you add the drive "
673 "in a predictable way (eg. adding it last after all other drives) then you "
674 "can get the device name from L</guestfs_list_devices> and mount it directly "
675 "using L</guestfs_mount_ro>.  Note that squashfs images are sometimes non-"
676 "portable between kernel versions, and they don't support labels or UUIDs.  "
677 "If you want to pre-build an image or you need to mount it using a label or "
678 "UUID, use an ISO image instead."
679 msgstr ""
680
681 #. type: =head2
682 #: ../src/guestfs.pod:306
683 msgid "COPYING"
684 msgstr "КОПІЮВАННЯ"
685
686 #. type: textblock
687 #: ../src/guestfs.pod:308
688 msgid ""
689 "There are various different commands for copying between files and devices "
690 "and in and out of the guest filesystem.  These are summarised in the table "
691 "below."
692 msgstr ""
693
694 #. type: =item
695 #: ../src/guestfs.pod:314
696 msgid "B<file> to B<file>"
697 msgstr ""
698
699 #. type: textblock
700 #: ../src/guestfs.pod:316
701 msgid ""
702 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
703 "directories recursively."
704 msgstr ""
705
706 #. type: =item
707 #: ../src/guestfs.pod:319
708 msgid "B<file or device> to B<file or device>"
709 msgstr ""
710
711 #. type: textblock
712 #: ../src/guestfs.pod:321
713 msgid ""
714 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
715 "devices in the guest."
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:324
720 msgid "Example: duplicate the contents of an LV:"
721 msgstr ""
722
723 #. type: verbatim
724 #: ../src/guestfs.pod:326
725 #, no-wrap
726 msgid ""
727 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
728 "\n"
729 msgstr ""
730
731 #. type: textblock
732 #: ../src/guestfs.pod:328
733 msgid ""
734 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
735 "(C</dev/VG/Original>).  To copy less than the whole source device, use L</"
736 "guestfs_copy_size>."
737 msgstr ""
738
739 #. type: =item
740 #: ../src/guestfs.pod:332
741 msgid "B<file on the host> to B<file or device>"
742 msgstr ""
743
744 #. type: textblock
745 #: ../src/guestfs.pod:334
746 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
747 msgstr ""
748
749 #. type: =item
750 #: ../src/guestfs.pod:336
751 msgid "B<file or device> to B<file on the host>"
752 msgstr ""
753
754 #. type: textblock
755 #: ../src/guestfs.pod:338
756 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
757 msgstr ""
758
759 #. type: =head2
760 #: ../src/guestfs.pod:342
761 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
762 msgstr ""
763
764 #. type: textblock
765 #: ../src/guestfs.pod:344
766 msgid ""
767 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
768 "guestfs_tar_out> etc appear to only take filenames as arguments, so it "
769 "appears you can only upload and download to files.  However many Un*x-like "
770 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
771 "dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
772 "and arbitrary file descriptor N."
773 msgstr ""
774
775 #. type: textblock
776 #: ../src/guestfs.pod:352
777 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
778 msgstr ""
779
780 #. type: verbatim
781 #: ../src/guestfs.pod:355
782 #, no-wrap
783 msgid ""
784 " guestfs_download (g, filename, \"/dev/stdout\");\n"
785 "\n"
786 msgstr ""
787
788 #. type: textblock
789 #: ../src/guestfs.pod:357
790 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
791 msgstr ""
792
793 #. type: verbatim
794 #: ../src/guestfs.pod:359
795 #, no-wrap
796 msgid ""
797 " char devfd[64];\n"
798 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
799 " guestfs_tar_out (g, \"/\", devfd);\n"
800 "\n"
801 msgstr ""
802
803 #. type: =head2
804 #: ../src/guestfs.pod:363
805 msgid "LISTING FILES"
806 msgstr ""
807
808 #. type: textblock
809 #: ../src/guestfs.pod:365
810 msgid ""
811 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
812 "L<guestfish(1)>-equivalent command C<ll>)."
813 msgstr ""
814
815 #. type: textblock
816 #: ../src/guestfs.pod:368
817 msgid ""
818 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
819 "programs, as a flat list of strings."
820 msgstr ""
821
822 #. type: textblock
823 #: ../src/guestfs.pod:371
824 msgid ""
825 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
826 "directory, plus additional information about each one.  It is more "
827 "equivalent to using the L<readdir(3)> call on a local filesystem."
828 msgstr ""
829
830 #. type: textblock
831 #: ../src/guestfs.pod:375
832 msgid ""
833 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
834 msgstr ""
835
836 #. type: =head2
837 #: ../src/guestfs.pod:378
838 msgid "RUNNING COMMANDS"
839 msgstr ""
840
841 #. type: textblock
842 #: ../src/guestfs.pod:380
843 msgid ""
844 "Although libguestfs is primarily an API for manipulating files inside guest "
845 "images, we also provide some limited facilities for running commands inside "
846 "guests."
847 msgstr ""
848
849 #. type: textblock
850 #: ../src/guestfs.pod:384
851 msgid "There are many limitations to this:"
852 msgstr ""
853
854 #. type: =item
855 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
856 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
857 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
858 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
859 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
860 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
861 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
862 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
863 #: ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763
864 #: ../src/guestfs.pod:1773 ../src/guestfs.pod:2008 ../src/guestfs.pod:2013
865 #: ../src/guestfs.pod:2019 ../src/guestfs.pod:2027 ../src/guestfs.pod:2381
866 #: ../src/guestfs.pod:2387 ../src/guestfs.pod:2392 ../src/guestfs.pod:2398
867 #: ../src/guestfs.pod:2972 ../src/guestfs.pod:2976 ../src/guestfs.pod:2980
868 #: ../src/guestfs.pod:2984 ../src/guestfs-actions.pod:15
869 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583
870 #: ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598
871 #: ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1660
872 #: ../src/guestfs-actions.pod:1664 ../src/guestfs-actions.pod:1668
873 #: ../src/guestfs-actions.pod:1672 ../src/guestfs-actions.pod:1680
874 #: ../src/guestfs-actions.pod:1684 ../src/guestfs-actions.pod:1688
875 #: ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1702
876 #: ../src/guestfs-actions.pod:1706 ../src/guestfs-actions.pod:1844
877 #: ../src/guestfs-actions.pod:1848 ../src/guestfs-actions.pod:1853
878 #: ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:1919
879 #: ../src/guestfs-actions.pod:1923 ../src/guestfs-actions.pod:1928
880 #: ../src/guestfs-actions.pod:2846 ../src/guestfs-actions.pod:2852
881 #: ../src/guestfs-actions.pod:2860 ../src/guestfs-actions.pod:2867
882 #: ../src/guestfs-actions.pod:2874 ../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:1927 ../fish/guestfish-actions.pod:1933
897 #: ../fish/guestfish-actions.pod:1941 ../fish/guestfish-actions.pod:1948
898 #: ../fish/guestfish-actions.pod:1955 ../tools/virt-win-reg.pl:195
899 #: ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206
900 #: ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714
901 #: ../tools/virt-win-reg.pl:720
902 msgid "*"
903 msgstr ""
904
905 #. type: textblock
906 #: ../src/guestfs.pod:390
907 msgid ""
908 "The kernel version that the command runs under will be different from what "
909 "it expects."
910 msgstr ""
911
912 #. type: textblock
913 #: ../src/guestfs.pod:395
914 msgid ""
915 "If the command needs to communicate with daemons, then most likely they "
916 "won't be running."
917 msgstr ""
918
919 #. type: textblock
920 #: ../src/guestfs.pod:400
921 msgid "The command will be running in limited memory."
922 msgstr ""
923
924 #. type: textblock
925 #: ../src/guestfs.pod:404
926 msgid ""
927 "The network may not be available unless you enable it (see L</"
928 "guestfs_set_network>)."
929 msgstr ""
930
931 #. type: textblock
932 #: ../src/guestfs.pod:409
933 msgid "Only supports Linux guests (not Windows, BSD, etc)."
934 msgstr ""
935
936 #. type: textblock
937 #: ../src/guestfs.pod:413
938 msgid ""
939 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
940 msgstr ""
941
942 #. type: textblock
943 #: ../src/guestfs.pod:418
944 msgid ""
945 "For SELinux guests, you may need to enable SELinux and load policy first.  "
946 "See L</SELINUX> in this manpage."
947 msgstr ""
948
949 #. type: textblock
950 #: ../src/guestfs.pod:423
951 msgid ""
952 "I<Security:> It is not safe to run commands from untrusted, possibly "
953 "malicious guests.  These commands may attempt to exploit your program by "
954 "sending unexpected output.  They could also try to exploit the Linux kernel "
955 "or qemu provided by the libguestfs appliance.  They could use the network "
956 "provided by the libguestfs appliance to bypass ordinary network partitions "
957 "and firewalls.  They could use the elevated privileges or different SELinux "
958 "context of your program to their advantage."
959 msgstr ""
960
961 #. type: textblock
962 #: ../src/guestfs.pod:432
963 msgid ""
964 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
965 "(a script which runs when the guest next boots normally), and to have this "
966 "script run the commands you want in the normal context of the running guest, "
967 "network security and so on.  For information about other security issues, "
968 "see L</SECURITY>."
969 msgstr ""
970
971 #. type: textblock
972 #: ../src/guestfs.pod:440
973 msgid ""
974 "The two main API calls to run commands are L</guestfs_command> and L</"
975 "guestfs_sh> (there are also variations)."
976 msgstr ""
977
978 #. type: textblock
979 #: ../src/guestfs.pod:443
980 msgid ""
981 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
982 "shell globs, redirections, etc will work."
983 msgstr ""
984
985 #. type: =head2
986 #: ../src/guestfs.pod:446
987 msgid "CONFIGURATION FILES"
988 msgstr "ФАЙЛИ НАЛАШТУВАННЯ"
989
990 #. type: textblock
991 #: ../src/guestfs.pod:448
992 msgid ""
993 "To read and write configuration files in Linux guest filesystems, we "
994 "strongly recommend using Augeas.  For example, Augeas understands how to "
995 "read and write, say, a Linux shadow password file or X.org configuration "
996 "file, and so avoids you having to write that code."
997 msgstr ""
998
999 #. type: textblock
1000 #: ../src/guestfs.pod:453
1001 msgid ""
1002 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1003 "document Augeas itself here because there is excellent documentation on the "
1004 "L<http://augeas.net/> website."
1005 msgstr ""
1006
1007 #. type: textblock
1008 #: ../src/guestfs.pod:457
1009 msgid ""
1010 "If you don't want to use Augeas (you fool!) then try calling L</"
1011 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1012 "over."
1013 msgstr ""
1014
1015 #. type: =head2
1016 #: ../src/guestfs.pod:461
1017 msgid "SELINUX"
1018 msgstr "SELINUX"
1019
1020 #. type: textblock
1021 #: ../src/guestfs.pod:463
1022 msgid ""
1023 "We support SELinux guests.  To ensure that labeling happens correctly in "
1024 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1025 msgstr ""
1026
1027 #. type: =item
1028 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1029 #: ../src/guestfs.pod:2426
1030 msgid "1."
1031 msgstr ""
1032
1033 #. type: textblock
1034 #: ../src/guestfs.pod:471
1035 msgid "Before launching, do:"
1036 msgstr ""
1037
1038 #. type: verbatim
1039 #: ../src/guestfs.pod:473
1040 #, no-wrap
1041 msgid ""
1042 " guestfs_set_selinux (g, 1);\n"
1043 "\n"
1044 msgstr ""
1045
1046 #. type: =item
1047 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1048 #: ../src/guestfs.pod:2451
1049 msgid "2."
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:477
1054 msgid ""
1055 "After mounting the guest's filesystem(s), load the policy.  This is best "
1056 "done by running the L<load_policy(8)> command in the guest itself:"
1057 msgstr ""
1058
1059 #. type: verbatim
1060 #: ../src/guestfs.pod:481
1061 #, no-wrap
1062 msgid ""
1063 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1064 "\n"
1065 msgstr ""
1066
1067 #. type: textblock
1068 #: ../src/guestfs.pod:483
1069 msgid ""
1070 "(Older versions of C<load_policy> require you to specify the name of the "
1071 "policy file)."
1072 msgstr ""
1073
1074 #. type: =item
1075 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1076 msgid "3."
1077 msgstr ""
1078
1079 #. type: textblock
1080 #: ../src/guestfs.pod:488
1081 msgid ""
1082 "Optionally, set the security context for the API.  The correct security "
1083 "context to use can only be known by inspecting the guest.  As an example:"
1084 msgstr ""
1085
1086 #. type: verbatim
1087 #: ../src/guestfs.pod:492
1088 #, no-wrap
1089 msgid ""
1090 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1091 "\n"
1092 msgstr ""
1093
1094 #. type: textblock
1095 #: ../src/guestfs.pod:496
1096 msgid "This will work for running commands and editing existing files."
1097 msgstr ""
1098
1099 #. type: textblock
1100 #: ../src/guestfs.pod:498
1101 msgid ""
1102 "When new files are created, you may need to label them explicitly, for "
1103 "example by running the external command C<restorecon pathname>."
1104 msgstr ""
1105
1106 #. type: =head2
1107 #: ../src/guestfs.pod:502
1108 msgid "UMASK"
1109 msgstr ""
1110
1111 #. type: textblock
1112 #: ../src/guestfs.pod:504
1113 msgid ""
1114 "Certain calls are affected by the current file mode creation mask (the "
1115 "\"umask\").  In particular ones which create files or directories, such as "
1116 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1117 "either the default mode that the file is created with or modifies the mode "
1118 "that you supply."
1119 msgstr ""
1120
1121 #. type: textblock
1122 #: ../src/guestfs.pod:510
1123 msgid ""
1124 "The default umask is C<022>, so files are created with modes such as C<0644> "
1125 "and directories with C<0755>."
1126 msgstr ""
1127
1128 #. type: textblock
1129 #: ../src/guestfs.pod:513
1130 msgid ""
1131 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1132 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1133 "guestfs_chmod> after creating each file or directory."
1134 msgstr ""
1135
1136 #. type: textblock
1137 #: ../src/guestfs.pod:517
1138 msgid "For more information about umask, see L<umask(2)>."
1139 msgstr ""
1140
1141 #. type: =head1
1142 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1143 msgid "ENCRYPTED DISKS"
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:521
1148 msgid ""
1149 "Libguestfs allows you to access Linux guests which have been encrypted using "
1150 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1151 "standard.  This includes nearly all whole disk encryption systems used by "
1152 "modern Linux guests."
1153 msgstr ""
1154
1155 #. type: textblock
1156 #: ../src/guestfs.pod:527
1157 msgid ""
1158 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1159 "returns the string C<crypto_LUKS>)."
1160 msgstr ""
1161
1162 #. type: textblock
1163 #: ../src/guestfs.pod:530
1164 msgid ""
1165 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1166 "will require the passphrase!"
1167 msgstr ""
1168
1169 #. type: textblock
1170 #: ../src/guestfs.pod:533
1171 msgid ""
1172 "Opening a LUKS device creates a new device mapper device called C</dev/"
1173 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1174 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1175 "from and encrypted to the underlying block device respectively."
1176 msgstr ""
1177
1178 #. type: textblock
1179 #: ../src/guestfs.pod:539
1180 msgid ""
1181 "LVM volume groups on the device can be made visible by calling L</"
1182 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1183 "(s) can now be mounted in the usual way."
1184 msgstr ""
1185
1186 #. type: textblock
1187 #: ../src/guestfs.pod:543
1188 msgid ""
1189 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1190 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1191 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1192 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1193 "underlying encrypted block device)."
1194 msgstr ""
1195
1196 #. type: =head2
1197 #: ../src/guestfs.pod:550
1198 msgid "INSPECTION"
1199 msgstr "ПЕРЕВІРКА"
1200
1201 #. type: textblock
1202 #: ../src/guestfs.pod:552
1203 msgid ""
1204 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1205 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1206 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1207 "version 1.5.3 the most frequently used part of this library has been "
1208 "rewritten in C and moved into the core code)."
1209 msgstr ""
1210
1211 #. type: textblock
1212 #: ../src/guestfs.pod:559
1213 msgid ""
1214 "Add all disks belonging to the unknown virtual machine and call L</"
1215 "guestfs_launch> in the usual way."
1216 msgstr ""
1217
1218 #. type: textblock
1219 #: ../src/guestfs.pod:562
1220 msgid ""
1221 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1222 "and certain heuristics, and returns a list of operating systems that were "
1223 "found.  An empty list means none were found.  A single element is the root "
1224 "filesystem of the operating system.  For dual- or multi-boot guests, "
1225 "multiple roots can be returned, each one corresponding to a separate "
1226 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1227 "world of virtualization, but since this scenario can happen, we have built "
1228 "libguestfs to deal with it.)"
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:571
1233 msgid ""
1234 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1235 "to get additional details about that operating system.  For example, call L</"
1236 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1237 "Windows and Linux-based operating systems respectively."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:577
1242 msgid ""
1243 "Un*x-like and Linux-based operating systems usually consist of several "
1244 "filesystems which are mounted at boot time (for example, a separate boot "
1245 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1246 "filesystems correspond to mount points.  Call "
1247 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1248 "hash table like this example:"
1249 msgstr ""
1250
1251 #. type: verbatim
1252 #: ../src/guestfs.pod:584
1253 #, no-wrap
1254 msgid ""
1255 " /boot => /dev/sda1\n"
1256 " /     => /dev/vg_guest/lv_root\n"
1257 " /usr  => /dev/vg_guest/lv_usr\n"
1258 "\n"
1259 msgstr ""
1260
1261 #. type: textblock
1262 #: ../src/guestfs.pod:588
1263 msgid ""
1264 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1265 "filesystems as suggested."
1266 msgstr ""
1267
1268 #. type: textblock
1269 #: ../src/guestfs.pod:591
1270 msgid ""
1271 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1272 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:595
1277 msgid ""
1278 "Inspection currently only works for some common operating systems.  "
1279 "Contributors are welcome to send patches for other operating systems that we "
1280 "currently cannot detect."
1281 msgstr ""
1282
1283 #. type: textblock
1284 #: ../src/guestfs.pod:599
1285 msgid ""
1286 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1287 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1288 "encrypted devices."
1289 msgstr ""
1290
1291 #. type: textblock
1292 #: ../src/guestfs.pod:603
1293 msgid ""
1294 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1295 "inspection and caches the results in the guest handle.  Subsequent calls to "
1296 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1297 "read the disks.  If you change the content of the guest disks, you can redo "
1298 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1299 "guestfs_inspect_list_applications> works a little differently from the other "
1300 "calls and does read the disks.  See documentation for that function for "
1301 "details)."
1302 msgstr ""
1303
1304 #. type: =head3
1305 #: ../src/guestfs.pod:612
1306 msgid "INSPECTING INSTALL DISKS"
1307 msgstr ""
1308
1309 #. type: textblock
1310 #: ../src/guestfs.pod:614
1311 msgid ""
1312 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1313 "CDs and more."
1314 msgstr ""
1315
1316 #. type: textblock
1317 #: ../src/guestfs.pod:617
1318 msgid ""
1319 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1320 "system, which currently can be C<installed> (a regular operating system) or "
1321 "C<installer> (some sort of install disk)."
1322 msgstr ""
1323
1324 #. type: textblock
1325 #: ../src/guestfs.pod:621
1326 msgid ""
1327 "Further information is available about the operating system that can be "
1328 "installed using the regular inspection APIs like L</"
1329 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1330 msgstr ""
1331
1332 #. type: textblock
1333 #: ../src/guestfs.pod:626
1334 msgid ""
1335 "Some additional information specific to installer disks is also available "
1336 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1337 "guestfs_inspect_is_multipart> calls."
1338 msgstr ""
1339
1340 #. type: =head2
1341 #: ../src/guestfs.pod:631
1342 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1343 msgstr ""
1344
1345 #. type: textblock
1346 #: ../src/guestfs.pod:633
1347 msgid ""
1348 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1349 "ntfs-3g.org/> driver."
1350 msgstr ""
1351
1352 #. type: =head3
1353 #: ../src/guestfs.pod:636
1354 msgid "DRIVE LETTERS AND PATHS"
1355 msgstr ""
1356
1357 #. type: textblock
1358 #: ../src/guestfs.pod:638
1359 msgid ""
1360 "DOS and Windows still use drive letters, and the filesystems are always "
1361 "treated as case insensitive by Windows itself, and therefore you might find "
1362 "a Windows configuration file referring to a path like C<c:\\windows"
1363 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1364 "might be referred to as C</WINDOWS/System32>."
1365 msgstr ""
1366
1367 #. type: textblock
1368 #: ../src/guestfs.pod:644
1369 msgid ""
1370 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1371 "L</guestfs_inspect_get_drive_mappings>)"
1372 msgstr ""
1373
1374 #. type: textblock
1375 #: ../src/guestfs.pod:647
1376 msgid ""
1377 "Dealing with separator characters (backslash vs forward slash) is outside "
1378 "the scope of libguestfs, but usually a simple character replacement will "
1379 "work."
1380 msgstr ""
1381
1382 #. type: textblock
1383 #: ../src/guestfs.pod:651
1384 msgid ""
1385 "To resolve the case insensitivity of paths, call L</"
1386 "guestfs_case_sensitive_path>."
1387 msgstr ""
1388
1389 #. type: =head3
1390 #: ../src/guestfs.pod:654
1391 msgid "ACCESSING THE WINDOWS REGISTRY"
1392 msgstr ""
1393
1394 #. type: textblock
1395 #: ../src/guestfs.pod:656
1396 msgid ""
1397 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1398 "files, through the library C<hivex> which is part of the libguestfs project "
1399 "although ships as a separate tarball.  You have to locate and download the "
1400 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1401 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1402 "reg(1)> for more help on this issue."
1403 msgstr ""
1404
1405 #. type: =head3
1406 #: ../src/guestfs.pod:664
1407 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1408 msgstr ""
1409
1410 #. type: textblock
1411 #: ../src/guestfs.pod:666
1412 msgid ""
1413 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1414 "provide something which looks like a Linux symlink.  The way it tries to do "
1415 "the rewriting is described here:"
1416 msgstr ""
1417
1418 #. type: textblock
1419 #: ../src/guestfs.pod:670
1420 msgid ""
1421 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1422 "symbolic-links/>"
1423 msgstr ""
1424 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1425 "symbolic-links/>"
1426
1427 #. type: textblock
1428 #: ../src/guestfs.pod:672
1429 msgid ""
1430 "The essential problem is that ntfs-3g simply does not have enough "
1431 "information to do a correct job.  NTFS links can contain drive letters and "
1432 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1433 "It is almost certainly the case that libguestfs callers should ignore what "
1434 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1435 msgstr ""
1436
1437 #. type: textblock
1438 #: ../src/guestfs.pod:679
1439 msgid ""
1440 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1441 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1442 "attribute, and read the raw reparse data from that (you can find the format "
1443 "documented in various places around the web)."
1444 msgstr ""
1445
1446 #. type: =head3
1447 #: ../src/guestfs.pod:684
1448 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1449 msgstr ""
1450
1451 #. type: textblock
1452 #: ../src/guestfs.pod:686
1453 msgid ""
1454 "There are other useful extended attributes that can be read from ntfs-3g "
1455 "filesystems (using L</guestfs_getxattr>).  See:"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:689
1460 msgid ""
1461 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1462 msgstr ""
1463 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1464
1465 #. type: =head2
1466 #: ../src/guestfs.pod:691
1467 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1468 msgstr ""
1469
1470 #. type: textblock
1471 #: ../src/guestfs.pod:693
1472 msgid ""
1473 "Although we don't want to discourage you from using the C API, we will "
1474 "mention here that the same API is also available in other languages."
1475 msgstr ""
1476
1477 #. type: textblock
1478 #: ../src/guestfs.pod:696
1479 msgid ""
1480 "The API is broadly identical in all supported languages.  This means that "
1481 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1482 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1483 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1484 "each language."
1485 msgstr ""
1486
1487 #. type: textblock
1488 #: ../src/guestfs.pod:702
1489 msgid ""
1490 "Error messages are automatically transformed into exceptions if the language "
1491 "supports it."
1492 msgstr ""
1493
1494 #. type: textblock
1495 #: ../src/guestfs.pod:705
1496 msgid ""
1497 "We don't try to \"object orientify\" parts of the API in OO languages, "
1498 "although contributors are welcome to write higher level APIs above what we "
1499 "provide in their favourite languages if they wish."
1500 msgstr ""
1501
1502 #. type: =item
1503 #: ../src/guestfs.pod:711
1504 msgid "B<C++>"
1505 msgstr "B<C++>"
1506
1507 #. type: textblock
1508 #: ../src/guestfs.pod:713
1509 msgid ""
1510 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1511 "identical to the C API.  C++ classes and exceptions are not used."
1512 msgstr ""
1513
1514 #. type: =item
1515 #: ../src/guestfs.pod:717
1516 msgid "B<C#>"
1517 msgstr "B<C#>"
1518
1519 #. type: textblock
1520 #: ../src/guestfs.pod:719
1521 msgid ""
1522 "The C# bindings are highly experimental.  Please read the warnings at the "
1523 "top of C<csharp/Libguestfs.cs>."
1524 msgstr ""
1525
1526 #. type: =item
1527 #: ../src/guestfs.pod:722
1528 msgid "B<Haskell>"
1529 msgstr "B<Haskell>"
1530
1531 #. type: textblock
1532 #: ../src/guestfs.pod:724
1533 msgid ""
1534 "This is the only language binding that is working but incomplete.  Only "
1535 "calls which return simple integers have been bound in Haskell, and we are "
1536 "looking for help to complete this binding."
1537 msgstr ""
1538
1539 #. type: =item
1540 #: ../src/guestfs.pod:728
1541 msgid "B<Java>"
1542 msgstr "B<Java>"
1543
1544 #. type: textblock
1545 #: ../src/guestfs.pod:730
1546 msgid ""
1547 "Full documentation is contained in the Javadoc which is distributed with "
1548 "libguestfs."
1549 msgstr ""
1550
1551 #. type: =item
1552 #: ../src/guestfs.pod:733
1553 msgid "B<OCaml>"
1554 msgstr "B<OCaml>"
1555
1556 #. type: textblock
1557 #: ../src/guestfs.pod:735
1558 msgid "See L<guestfs-ocaml(3)>."
1559 msgstr "Див. L<guestfs-ocaml(3)>."
1560
1561 #. type: =item
1562 #: ../src/guestfs.pod:737
1563 msgid "B<Perl>"
1564 msgstr "B<Perl>"
1565
1566 #. type: textblock
1567 #: ../src/guestfs.pod:739
1568 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1569 msgstr "Див. L<guestfs-perl(3)> та L<Sys::Guestfs(3)>."
1570
1571 #. type: =item
1572 #: ../src/guestfs.pod:741
1573 msgid "B<PHP>"
1574 msgstr "B<PHP>"
1575
1576 #. type: textblock
1577 #: ../src/guestfs.pod:743
1578 msgid ""
1579 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1580 "the php-libguestfs package for your distribution."
1581 msgstr ""
1582
1583 #. type: textblock
1584 #: ../src/guestfs.pod:746
1585 msgid "The PHP binding only works correctly on 64 bit machines."
1586 msgstr ""
1587
1588 #. type: =item
1589 #: ../src/guestfs.pod:748
1590 msgid "B<Python>"
1591 msgstr "B<Python>"
1592
1593 #. type: textblock
1594 #: ../src/guestfs.pod:750
1595 msgid "See L<guestfs-python(3)>."
1596 msgstr "Див. L<guestfs-python(3)>."
1597
1598 #. type: =item
1599 #: ../src/guestfs.pod:752
1600 msgid "B<Ruby>"
1601 msgstr "B<Ruby>"
1602
1603 #. type: textblock
1604 #: ../src/guestfs.pod:754
1605 msgid "See L<guestfs-ruby(3)>."
1606 msgstr "Див. L<guestfs-ruby(3)>."
1607
1608 #. type: =item
1609 #: ../src/guestfs.pod:756
1610 msgid "B<shell scripts>"
1611 msgstr "B<скрипти оболонки>"
1612
1613 #. type: textblock
1614 #: ../src/guestfs.pod:758
1615 msgid "See L<guestfish(1)>."
1616 msgstr "Див. L<guestfish(1)>."
1617
1618 #. type: =head2
1619 #: ../src/guestfs.pod:762
1620 msgid "LIBGUESTFS GOTCHAS"
1621 msgstr ""
1622
1623 #. type: textblock
1624 #: ../src/guestfs.pod:764
1625 msgid ""
1626 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1627 "system [...] that works in the way it is documented but is counterintuitive "
1628 "and almost invites mistakes.\""
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:768
1633 msgid ""
1634 "Since we developed libguestfs and the associated tools, there are several "
1635 "things we would have designed differently, but are now stuck with for "
1636 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1637 "release, you can expect these to change.  Beware of them."
1638 msgstr ""
1639
1640 #. type: =item
1641 #: ../src/guestfs.pod:776
1642 msgid "Autosync / forgetting to sync."
1643 msgstr ""
1644
1645 #. type: textblock
1646 #: ../src/guestfs.pod:778
1647 msgid ""
1648 "I<Update:> Autosync is enabled by default for all API users starting from "
1649 "libguestfs 1.5.24.  This section only applies to older versions."
1650 msgstr ""
1651
1652 #. type: textblock
1653 #: ../src/guestfs.pod:781
1654 msgid ""
1655 "When modifying a filesystem from C or another language, you B<must> unmount "
1656 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1657 "libguestfs handle.  You can also call:"
1658 msgstr ""
1659
1660 #. type: verbatim
1661 #: ../src/guestfs.pod:785
1662 #, no-wrap
1663 msgid ""
1664 " guestfs_set_autosync (g, 1);\n"
1665 "\n"
1666 msgstr ""
1667
1668 #. type: textblock
1669 #: ../src/guestfs.pod:787
1670 msgid ""
1671 "to have the unmount/sync done automatically for you when the handle 'g' is "
1672 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1673 msgstr ""
1674
1675 #. type: textblock
1676 #: ../src/guestfs.pod:791
1677 msgid ""
1678 "If you forget to do this, then it is entirely possible that your changes "
1679 "won't be written out, or will be partially written, or (very rarely) that "
1680 "you'll get disk corruption."
1681 msgstr ""
1682
1683 #. type: textblock
1684 #: ../src/guestfs.pod:795
1685 msgid ""
1686 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1687 "guestfish scripts that forget to sync will work just fine, which can make "
1688 "this very puzzling if you are trying to debug a problem."
1689 msgstr ""
1690
1691 #. type: =item
1692 #: ../src/guestfs.pod:799
1693 msgid "Mount option C<-o sync> should not be the default."
1694 msgstr ""
1695
1696 #. type: textblock
1697 #: ../src/guestfs.pod:801
1698 msgid ""
1699 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1700 "However C<-o sync> does not add any reliability benefit, but does have a "
1701 "very large performance impact."
1702 msgstr ""
1703
1704 #. type: textblock
1705 #: ../src/guestfs.pod:805
1706 msgid ""
1707 "The work around is to use L</guestfs_mount_options> and set the mount "
1708 "options that you actually want to use."
1709 msgstr ""
1710
1711 #. type: =item
1712 #: ../src/guestfs.pod:808
1713 msgid "Read-only should be the default."
1714 msgstr ""
1715
1716 #. type: textblock
1717 #: ../src/guestfs.pod:810
1718 msgid ""
1719 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1720 "specify I<--rw> if you want to make changes to the image."
1721 msgstr ""
1722
1723 #. type: textblock
1724 #: ../src/guestfs.pod:813
1725 msgid "This would reduce the potential to corrupt live VM images."
1726 msgstr ""
1727
1728 #. type: textblock
1729 #: ../src/guestfs.pod:815
1730 msgid ""
1731 "Note that many filesystems change the disk when you just mount and unmount, "
1732 "even if you didn't perform any writes.  You need to use L</"
1733 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1734 msgstr ""
1735
1736 #. type: =item
1737 #: ../src/guestfs.pod:819
1738 msgid "guestfish command line is hard to use."
1739 msgstr ""
1740
1741 #. type: textblock
1742 #: ../src/guestfs.pod:821
1743 msgid ""
1744 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1745 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1746 "exist, so it fails.  In earlier versions of guestfish the error message was "
1747 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1748 "we should have used C<guestfish -c command> to run commands."
1749 msgstr ""
1750
1751 #. type: =item
1752 #: ../src/guestfs.pod:828
1753 msgid "guestfish megabyte modifiers don't work right on all commands"
1754 msgstr ""
1755
1756 #. type: textblock
1757 #: ../src/guestfs.pod:830
1758 msgid ""
1759 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1760 "other modifiers).  What guestfish actually does is to multiply the number "
1761 "part by the modifier part and pass the result to the C API.  However this "
1762 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1763 "expecting some other unit (eg. megabytes)."
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:837
1768 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1769 msgstr ""
1770
1771 #. type: verbatim
1772 #: ../src/guestfs.pod:839
1773 #, no-wrap
1774 msgid ""
1775 " lvcreate LV VG 100M\n"
1776 "\n"
1777 msgstr ""
1778
1779 #. type: textblock
1780 #: ../src/guestfs.pod:841
1781 msgid ""
1782 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1783 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1784 "megabytes * megabytes) logical volume.  The error message you get from this "
1785 "is also a little obscure."
1786 msgstr ""
1787
1788 #. type: textblock
1789 #: ../src/guestfs.pod:846
1790 msgid ""
1791 "This could be fixed in the generator by specially marking parameters and "
1792 "return values which take bytes or other units."
1793 msgstr ""
1794
1795 #. type: =item
1796 #: ../src/guestfs.pod:849
1797 msgid "Ambiguity between devices and paths"
1798 msgstr ""
1799
1800 #. type: textblock
1801 #: ../src/guestfs.pod:851
1802 msgid ""
1803 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1804 "sdb2>) and a similar pathname.  A file might just happen to be called "
1805 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1806 msgstr ""
1807
1808 #. type: textblock
1809 #: ../src/guestfs.pod:856
1810 msgid ""
1811 "In the current API we usually resolve this ambiguity by having two separate "
1812 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1813 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1814 "detecting if the path supplied begins with C</dev/>."
1815 msgstr ""
1816
1817 #. type: textblock
1818 #: ../src/guestfs.pod:862
1819 msgid ""
1820 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1821 "make paths/devices into structured names.  One way to do this would be to "
1822 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1823 "aspect of grub.  Another way would be to use a structured type, equivalent "
1824 "to this OCaml type:"
1825 msgstr ""
1826
1827 #. type: verbatim
1828 #: ../src/guestfs.pod:868
1829 #, no-wrap
1830 msgid ""
1831 " type path = Path of string | Device of int | Partition of int * int\n"
1832 "\n"
1833 msgstr ""
1834
1835 #. type: textblock
1836 #: ../src/guestfs.pod:870
1837 msgid "which would allow you to pass arguments like:"
1838 msgstr ""
1839
1840 #. type: verbatim
1841 #: ../src/guestfs.pod:872
1842 #, no-wrap
1843 msgid ""
1844 " Path \"/foo/bar\"\n"
1845 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1846 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1847 " Path \"/dev/sdb2\"    (* not a device *)\n"
1848 "\n"
1849 msgstr ""
1850
1851 #. type: textblock
1852 #: ../src/guestfs.pod:877
1853 msgid ""
1854 "As you can see there are still problems to resolve even with this "
1855 "representation.  Also consider how it might work in guestfish."
1856 msgstr ""
1857
1858 #. type: =head2
1859 #: ../src/guestfs.pod:882
1860 msgid "KEYS AND PASSPHRASES"
1861 msgstr ""
1862
1863 #. type: textblock
1864 #: ../src/guestfs.pod:884
1865 msgid ""
1866 "Certain libguestfs calls take a parameter that contains sensitive key "
1867 "material, passed in as a C string."
1868 msgstr ""
1869
1870 #. type: textblock
1871 #: ../src/guestfs.pod:887
1872 msgid ""
1873 "In the future we would hope to change the libguestfs implementation so that "
1874 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1875 "swap.  However this is I<not> done at the moment, because of the complexity "
1876 "of such an implementation."
1877 msgstr ""
1878
1879 #. type: textblock
1880 #: ../src/guestfs.pod:892
1881 msgid ""
1882 "Therefore you should be aware that any key parameter you pass to libguestfs "
1883 "might end up being written out to the swap partition.  If this is a concern, "
1884 "scrub the swap partition or don't use libguestfs on encrypted devices."
1885 msgstr ""
1886
1887 #. type: =head2
1888 #: ../src/guestfs.pod:897
1889 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1890 msgstr ""
1891
1892 #. type: textblock
1893 #: ../src/guestfs.pod:899
1894 msgid ""
1895 "All high-level libguestfs actions are synchronous.  If you want to use "
1896 "libguestfs asynchronously then you must create a thread."
1897 msgstr ""
1898
1899 #. type: textblock
1900 #: ../src/guestfs.pod:902
1901 msgid ""
1902 "Only use the handle from a single thread.  Either use the handle exclusively "
1903 "from one thread, or provide your own mutex so that two threads cannot issue "
1904 "calls on the same handle at the same time."
1905 msgstr ""
1906
1907 #. type: textblock
1908 #: ../src/guestfs.pod:906
1909 msgid ""
1910 "See the graphical program guestfs-browser for one possible architecture for "
1911 "multithreaded programs using libvirt and libguestfs."
1912 msgstr ""
1913
1914 #. type: =head2
1915 #: ../src/guestfs.pod:909
1916 msgid "PATH"
1917 msgstr "ШЛЯХ"
1918
1919 #. type: textblock
1920 #: ../src/guestfs.pod:911
1921 msgid ""
1922 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1923 "internal path."
1924 msgstr ""
1925
1926 #. type: textblock
1927 #: ../src/guestfs.pod:914
1928 msgid ""
1929 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
1930 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1931 msgstr ""
1932
1933 #. type: textblock
1934 #: ../src/guestfs.pod:917
1935 msgid ""
1936 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1937 "to change the directories that libguestfs will search in.  The value is a "
1938 "colon-separated list of paths.  The current directory is I<not> searched "
1939 "unless the path contains an empty element or C<.>.  For example "
1940 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1941 "then C</usr/lib/guestfs>."
1942 msgstr ""
1943
1944 #. type: =head2
1945 #: ../src/guestfs.pod:924
1946 msgid "QEMU WRAPPERS"
1947 msgstr ""
1948
1949 #. type: textblock
1950 #: ../src/guestfs.pod:926
1951 msgid ""
1952 "If you want to compile your own qemu, run qemu from a non-standard location, "
1953 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1954 "around qemu."
1955 msgstr ""
1956
1957 #. type: textblock
1958 #: ../src/guestfs.pod:930
1959 msgid ""
1960 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1961 "last command in the shell script (so that qemu replaces the shell and "
1962 "becomes the direct child of the libguestfs-using program).  If you don't do "
1963 "this, then the qemu process won't be cleaned up correctly."
1964 msgstr ""
1965
1966 #. type: textblock
1967 #: ../src/guestfs.pod:935
1968 msgid ""
1969 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1970 "source:"
1971 msgstr ""
1972
1973 #. type: verbatim
1974 #: ../src/guestfs.pod:938
1975 #, no-wrap
1976 msgid ""
1977 " #!/bin/sh -\n"
1978 " qemudir=/home/rjones/d/qemu\n"
1979 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1980 "\n"
1981 msgstr ""
1982
1983 #. type: textblock
1984 #: ../src/guestfs.pod:942
1985 msgid ""
1986 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1987 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1988 "example:"
1989 msgstr ""
1990
1991 #. type: verbatim
1992 #: ../src/guestfs.pod:946
1993 #, no-wrap
1994 msgid ""
1995 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1996 "\n"
1997 msgstr ""
1998
1999 #. type: textblock
2000 #: ../src/guestfs.pod:948
2001 msgid ""
2002 "Note that libguestfs also calls qemu with the -help and -version options in "
2003 "order to determine features."
2004 msgstr ""
2005
2006 #. type: =head2
2007 #: ../src/guestfs.pod:951
2008 msgid "ATTACHING TO RUNNING DAEMONS"
2009 msgstr ""
2010
2011 #. type: textblock
2012 #: ../src/guestfs.pod:953
2013 msgid ""
2014 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2015 "babies.  Use with caution."
2016 msgstr ""
2017
2018 #. type: textblock
2019 #: ../src/guestfs.pod:956
2020 msgid ""
2021 "I<Note (2):> This section explains how to attach to a running daemon from a "
2022 "low level perspective.  For most users, simply using virt tools such as "
2023 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2024 msgstr ""
2025
2026 #. type: =head3
2027 #: ../src/guestfs.pod:960
2028 msgid "Using guestfs_set_attach_method"
2029 msgstr ""
2030
2031 #. type: textblock
2032 #: ../src/guestfs.pod:962
2033 msgid ""
2034 "By calling L</guestfs_set_attach_method> you can change how the library "
2035 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2036 "ARCHITECTURE> for some background)."
2037 msgstr ""
2038
2039 #. type: textblock
2040 #: ../src/guestfs.pod:966
2041 msgid ""
2042 "The normal attach method is C<appliance>, where a small appliance is created "
2043 "containing the daemon, and then the library connects to this."
2044 msgstr ""
2045
2046 #. type: textblock
2047 #: ../src/guestfs.pod:969
2048 msgid ""
2049 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2050 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2051 "daemon over the Unix domain socket."
2052 msgstr ""
2053
2054 #. type: textblock
2055 #: ../src/guestfs.pod:973
2056 msgid ""
2057 "The normal use for this is to connect to a running virtual machine that "
2058 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2059 "files inside the live virtual machine."
2060 msgstr ""
2061
2062 #. type: =head3
2063 #: ../src/guestfs.pod:977
2064 msgid "Using guestfs_add_domain with live flag"
2065 msgstr ""
2066
2067 #. type: textblock
2068 #: ../src/guestfs.pod:979
2069 msgid ""
2070 "L</guestfs_add_domain> provides some help for getting the correct attach "
2071 "method.  If you pass the C<live> option to this function, then (if the "
2072 "virtual machine is running) it will examine the libvirt XML looking for a "
2073 "virtio-serial channel to connect to:"
2074 msgstr ""
2075
2076 #. type: verbatim
2077 #: ../src/guestfs.pod:985
2078 #, no-wrap
2079 msgid ""
2080 " <domain>\n"
2081 "   ...\n"
2082 "   <devices>\n"
2083 "     ...\n"
2084 "     <channel type='unix'>\n"
2085 "       <source mode='bind' path='/path/to/socket'/>\n"
2086 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2087 "     </channel>\n"
2088 "     ...\n"
2089 "   </devices>\n"
2090 " </domain>\n"
2091 "\n"
2092 msgstr ""
2093
2094 #. type: textblock
2095 #: ../src/guestfs.pod:997
2096 msgid ""
2097 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2098 "method to C<unix:/path/to/socket>."
2099 msgstr ""
2100
2101 #. type: textblock
2102 #: ../src/guestfs.pod:1000
2103 msgid ""
2104 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2105 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2106 "to attach to and modify live virtual machines."
2107 msgstr ""
2108
2109 #. type: textblock
2110 #: ../src/guestfs.pod:1004
2111 msgid ""
2112 "The virtual machine needs to have been set up beforehand so that it has the "
2113 "virtio-serial channel and so that guestfsd is running inside it."
2114 msgstr ""
2115
2116 #. type: =head2
2117 #: ../src/guestfs.pod:1008
2118 msgid "ABI GUARANTEE"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1010
2123 msgid ""
2124 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2125 "actions as outlined in this section.  Although we will deprecate some "
2126 "actions, for example if they get replaced by newer calls, we will keep the "
2127 "old actions forever.  This allows you the developer to program in confidence "
2128 "against the libguestfs API."
2129 msgstr ""
2130
2131 #. type: =head2
2132 #: ../src/guestfs.pod:1016
2133 msgid "BLOCK DEVICE NAMING"
2134 msgstr ""
2135
2136 #. type: textblock
2137 #: ../src/guestfs.pod:1018
2138 msgid ""
2139 "In the kernel there is now quite a profusion of schemata for naming block "
2140 "devices (in this context, by I<block device> I mean a physical or virtual "
2141 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2142 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2143 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2144 "for the old IDE driver (particularly for SATA devices) those devices also "
2145 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2146 "paravirtualized drivers.  This has created several different naming systems, "
2147 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2148 msgstr ""
2149
2150 #. type: textblock
2151 #: ../src/guestfs.pod:1030
2152 msgid ""
2153 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2154 "Linux kernel to access block devices.  We can run a variety of appliances "
2155 "based on a variety of Linux kernels."
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1034
2160 msgid ""
2161 "This causes a problem for libguestfs because many API calls use device or "
2162 "partition names.  Working scripts and the recipe (example) scripts that we "
2163 "make available over the internet could fail if the naming scheme changes."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1039
2168 msgid ""
2169 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2170 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2171 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2172 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2173 msgstr ""
2174
2175 #. type: textblock
2176 #: ../src/guestfs.pod:1045
2177 msgid ""
2178 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2179 "L</guestfs_list_partitions> and similar calls return the true names of the "
2180 "devices and partitions as known to the appliance."
2181 msgstr ""
2182
2183 #. type: =head3
2184 #: ../src/guestfs.pod:1050
2185 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2186 msgstr ""
2187
2188 #. type: textblock
2189 #: ../src/guestfs.pod:1052
2190 msgid ""
2191 "Usually this translation is transparent.  However in some (very rare)  cases "
2192 "you may need to know the exact algorithm.  Such cases include where you use "
2193 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2194 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1058
2199 msgid ""
2200 "The algorithm is applied only to I<parameters> which are known to be either "
2201 "device or partition names.  Return values from functions such as L</"
2202 "guestfs_list_devices> are never changed."
2203 msgstr ""
2204
2205 #. type: textblock
2206 #: ../src/guestfs.pod:1066
2207 msgid "Is the string a parameter which is a device or partition name?"
2208 msgstr ""
2209
2210 #. type: textblock
2211 #: ../src/guestfs.pod:1070
2212 msgid "Does the string begin with C</dev/sd>?"
2213 msgstr ""
2214
2215 #. type: textblock
2216 #: ../src/guestfs.pod:1074
2217 msgid ""
2218 "Does the named device exist? If so, we use that device.  However if I<not> "
2219 "then we continue with this algorithm."
2220 msgstr ""
2221
2222 #. type: textblock
2223 #: ../src/guestfs.pod:1079
2224 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2225 msgstr ""
2226
2227 #. type: textblock
2228 #: ../src/guestfs.pod:1081
2229 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2230 msgstr ""
2231
2232 #. type: textblock
2233 #: ../src/guestfs.pod:1083
2234 msgid "If that named device exists, use it.  If not, continue."
2235 msgstr ""
2236
2237 #. type: textblock
2238 #: ../src/guestfs.pod:1087
2239 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2240 msgstr ""
2241
2242 #. type: textblock
2243 #: ../src/guestfs.pod:1089
2244 msgid "If that named device exists, use it.  If not, return an error."
2245 msgstr ""
2246
2247 #. type: =head3
2248 #: ../src/guestfs.pod:1093
2249 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2250 msgstr ""
2251
2252 #. type: textblock
2253 #: ../src/guestfs.pod:1095
2254 msgid ""
2255 "Although the standard naming scheme and automatic translation is useful for "
2256 "simple programs and guestfish scripts, for larger programs it is best not to "
2257 "rely on this mechanism."
2258 msgstr ""
2259
2260 #. type: textblock
2261 #: ../src/guestfs.pod:1099
2262 msgid ""
2263 "Where possible for maximum future portability programs using libguestfs "
2264 "should use these future-proof techniques:"
2265 msgstr ""
2266
2267 #. type: textblock
2268 #: ../src/guestfs.pod:1106
2269 msgid ""
2270 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2271 "device names, and then use those names directly."
2272 msgstr ""
2273
2274 #. type: textblock
2275 #: ../src/guestfs.pod:1109
2276 msgid ""
2277 "Since those device names exist by definition, they will never be translated."
2278 msgstr ""
2279
2280 #. type: textblock
2281 #: ../src/guestfs.pod:1114
2282 msgid ""
2283 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2284 "filesystem labels."
2285 msgstr ""
2286
2287 #. type: =head1
2288 #: ../src/guestfs.pod:1119
2289 msgid "SECURITY"
2290 msgstr "БЕЗПЕКА"
2291
2292 #. type: textblock
2293 #: ../src/guestfs.pod:1121
2294 msgid ""
2295 "This section discusses security implications of using libguestfs, "
2296 "particularly with untrusted or malicious guests or disk images."
2297 msgstr ""
2298
2299 #. type: =head2
2300 #: ../src/guestfs.pod:1124
2301 msgid "GENERAL SECURITY CONSIDERATIONS"
2302 msgstr ""
2303
2304 #. type: textblock
2305 #: ../src/guestfs.pod:1126
2306 msgid ""
2307 "Be careful with any files or data that you download from a guest (by "
2308 "\"download\" we mean not just the L</guestfs_download> command but any "
2309 "command that reads files, filenames, directories or anything else from a "
2310 "disk image).  An attacker could manipulate the data to fool your program "
2311 "into doing the wrong thing.  Consider cases such as:"
2312 msgstr ""
2313
2314 #. type: textblock
2315 #: ../src/guestfs.pod:1136
2316 msgid "the data (file etc) not being present"
2317 msgstr ""
2318
2319 #. type: textblock
2320 #: ../src/guestfs.pod:1140
2321 msgid "being present but empty"
2322 msgstr ""
2323
2324 #. type: textblock
2325 #: ../src/guestfs.pod:1144
2326 msgid "being much larger than normal"
2327 msgstr ""
2328
2329 #. type: textblock
2330 #: ../src/guestfs.pod:1148
2331 msgid "containing arbitrary 8 bit data"
2332 msgstr ""
2333
2334 #. type: textblock
2335 #: ../src/guestfs.pod:1152
2336 msgid "being in an unexpected character encoding"
2337 msgstr ""
2338
2339 #. type: textblock
2340 #: ../src/guestfs.pod:1156
2341 msgid "containing homoglyphs."
2342 msgstr ""
2343
2344 #. type: =head2
2345 #: ../src/guestfs.pod:1160
2346 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2347 msgstr ""
2348
2349 #. type: textblock
2350 #: ../src/guestfs.pod:1162
2351 msgid ""
2352 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2353 "(VFS) module can sometimes be escalated into exploits by deliberately "
2354 "creating a malicious, malformed filesystem.  These exploits are very severe "
2355 "for two reasons.  Firstly there are very many filesystem drivers in the "
2356 "kernel, and many of them are infrequently used and not much developer "
2357 "attention has been paid to the code.  Linux userspace helps potential "
2358 "crackers by detecting the filesystem type and automatically choosing the "
2359 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2360 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2361 "exploit (worse in some ways), giving immediate and total access to the "
2362 "system right down to the hardware level."
2363 msgstr ""
2364
2365 #. type: textblock
2366 #: ../src/guestfs.pod:1175
2367 msgid ""
2368 "That explains why you should never mount a filesystem from an untrusted "
2369 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2370 "inside a qemu virtual machine, usually running as a non-root user.  The "
2371 "attacker would need to write a filesystem which first exploited the kernel, "
2372 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2373 "the libguestfs protocol, and finally to be as serious as the host kernel "
2374 "exploit it would need to escalate its privileges to root.  This multi-step "
2375 "escalation, performed by a static piece of data, is thought to be extremely "
2376 "hard to do, although we never say 'never' about security issues."
2377 msgstr ""
2378
2379 #. type: textblock
2380 #: ../src/guestfs.pod:1186
2381 msgid ""
2382 "In any case callers can reduce the attack surface by forcing the filesystem "
2383 "type when mounting (use L</guestfs_mount_vfs>)."
2384 msgstr ""
2385
2386 #. type: =head2
2387 #: ../src/guestfs.pod:1189
2388 msgid "PROTOCOL SECURITY"
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1191
2393 msgid ""
2394 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2395 "defined upper message size.  However a program that uses libguestfs must "
2396 "also take care - for example you can write a program that downloads a binary "
2397 "from a disk image and executes it locally, and no amount of protocol "
2398 "security will save you from the consequences."
2399 msgstr ""
2400
2401 #. type: =head2
2402 #: ../src/guestfs.pod:1197
2403 msgid "INSPECTION SECURITY"
2404 msgstr ""
2405
2406 #. type: textblock
2407 #: ../src/guestfs.pod:1199
2408 msgid ""
2409 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2410 "directly from the guest, and these could contain any 8 bit data.  Callers "
2411 "should be careful to escape these before printing them to a structured file "
2412 "(for example, use HTML escaping if creating a web page)."
2413 msgstr ""
2414
2415 #. type: textblock
2416 #: ../src/guestfs.pod:1205
2417 msgid ""
2418 "Guest configuration may be altered in unusual ways by the administrator of "
2419 "the virtual machine, and may not reflect reality (particularly for untrusted "
2420 "or actively malicious guests).  For example we parse the hostname from "
2421 "configuration files like C</etc/sysconfig/network> that we find in the "
2422 "guest, but the guest administrator can easily manipulate these files to "
2423 "provide the wrong hostname."
2424 msgstr ""
2425
2426 #. type: textblock
2427 #: ../src/guestfs.pod:1213
2428 msgid ""
2429 "The inspection API parses guest configuration using two external libraries: "
2430 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2431 "designed to be robust in the face of malicious data, although denial of "
2432 "service attacks are still possible, for example with oversized configuration "
2433 "files."
2434 msgstr ""
2435
2436 #. type: =head2
2437 #: ../src/guestfs.pod:1219
2438 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2439 msgstr ""
2440
2441 #. type: textblock
2442 #: ../src/guestfs.pod:1221
2443 msgid ""
2444 "Be very cautious about running commands from the guest.  By running a "
2445 "command in the guest, you are giving CPU time to a binary that you do not "
2446 "control, under the same user account as the library, albeit wrapped in qemu "
2447 "virtualization.  More information and alternatives can be found in the "
2448 "section L</RUNNING COMMANDS>."
2449 msgstr ""
2450
2451 #. type: =head2
2452 #: ../src/guestfs.pod:1227
2453 msgid "CVE-2010-3851"
2454 msgstr "CVE-2010-3851"
2455
2456 #. type: textblock
2457 #: ../src/guestfs.pod:1229
2458 msgid "https://bugzilla.redhat.com/642934"
2459 msgstr "https://bugzilla.redhat.com/642934"
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1231
2463 msgid ""
2464 "This security bug concerns the automatic disk format detection that qemu "
2465 "does on disk images."
2466 msgstr ""
2467
2468 #. type: textblock
2469 #: ../src/guestfs.pod:1234
2470 msgid ""
2471 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2472 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2473 "for one of the known headers, and if none is found then assuming the disk "
2474 "image must be raw."
2475 msgstr ""
2476
2477 #. type: textblock
2478 #: ../src/guestfs.pod:1239
2479 msgid ""
2480 "This allows a guest which has been given a raw disk image to write some "
2481 "other header.  At next boot (or when the disk image is accessed by "
2482 "libguestfs) qemu would do autodetection and think the disk image format was, "
2483 "say, qcow2 based on the header written by the guest."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1244
2488 msgid ""
2489 "This in itself would not be a problem, but qcow2 offers many features, one "
2490 "of which is to allow a disk image to refer to another image (called the "
2491 "\"backing disk\").  It does this by placing the path to the backing disk "
2492 "into the qcow2 header.  This path is not validated and could point to any "
2493 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2494 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2495 "control of the attacker."
2496 msgstr ""
2497
2498 #. type: textblock
2499 #: ../src/guestfs.pod:1252
2500 msgid ""
2501 "In libguestfs this is rather hard to exploit except under two circumstances:"
2502 msgstr ""
2503
2504 #. type: textblock
2505 #: ../src/guestfs.pod:1259
2506 msgid "You have enabled the network or have opened the disk in write mode."
2507 msgstr ""
2508
2509 #. type: textblock
2510 #: ../src/guestfs.pod:1263
2511 msgid ""
2512 "You are also running untrusted code from the guest (see L</RUNNING "
2513 "COMMANDS>)."
2514 msgstr ""
2515
2516 #. type: textblock
2517 #: ../src/guestfs.pod:1268
2518 msgid ""
2519 "The way to avoid this is to specify the expected disk format when adding "
2520 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2521 "should always do this if the disk is raw format, and it's a good idea for "
2522 "other cases too."
2523 msgstr ""
2524
2525 #. type: textblock
2526 #: ../src/guestfs.pod:1273
2527 msgid ""
2528 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2529 "format is fetched from libvirt and passed through."
2530 msgstr ""
2531
2532 #. type: textblock
2533 #: ../src/guestfs.pod:1276
2534 msgid ""
2535 "For libguestfs tools, use the I<--format> command line parameter as "
2536 "appropriate."
2537 msgstr ""
2538
2539 #. type: =head1
2540 #: ../src/guestfs.pod:1279
2541 msgid "CONNECTION MANAGEMENT"
2542 msgstr ""
2543
2544 #. type: =head2
2545 #: ../src/guestfs.pod:1281
2546 msgid "guestfs_h *"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1283
2551 msgid ""
2552 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2553 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2554 "handle and release all resources used."
2555 msgstr ""
2556
2557 #. type: textblock
2558 #: ../src/guestfs.pod:1287
2559 msgid ""
2560 "For information on using multiple handles and threads, see the section L</"
2561 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2562 msgstr ""
2563
2564 #. type: =head2
2565 #: ../src/guestfs.pod:1290
2566 msgid "guestfs_create"
2567 msgstr ""
2568
2569 #. type: verbatim
2570 #: ../src/guestfs.pod:1292
2571 #, no-wrap
2572 msgid ""
2573 " guestfs_h *guestfs_create (void);\n"
2574 "\n"
2575 msgstr ""
2576
2577 #. type: textblock
2578 #: ../src/guestfs.pod:1294
2579 msgid "Create a connection handle."
2580 msgstr ""
2581
2582 #. type: textblock
2583 #: ../src/guestfs.pod:1296
2584 msgid ""
2585 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2586 "NULL."
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1299
2591 msgid ""
2592 "You have to \"configure\" the handle after creating it.  This includes "
2593 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2594 "handle at least once."
2595 msgstr ""
2596
2597 #. type: textblock
2598 #: ../src/guestfs.pod:1303
2599 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2600 msgstr ""
2601
2602 #. type: textblock
2603 #: ../src/guestfs.pod:1305
2604 msgid ""
2605 "You may also want to configure error handling for the handle.  See the L</"
2606 "ERROR HANDLING> section below."
2607 msgstr ""
2608
2609 #. type: =head2
2610 #: ../src/guestfs.pod:1308
2611 msgid "guestfs_close"
2612 msgstr ""
2613
2614 #. type: verbatim
2615 #: ../src/guestfs.pod:1310
2616 #, no-wrap
2617 msgid ""
2618 " void guestfs_close (guestfs_h *g);\n"
2619 "\n"
2620 msgstr ""
2621
2622 #. type: textblock
2623 #: ../src/guestfs.pod:1312
2624 msgid "This closes the connection handle and frees up all resources used."
2625 msgstr ""
2626
2627 #. type: textblock
2628 #: ../src/guestfs.pod:1314
2629 msgid ""
2630 "If autosync was set on the handle and the handle was launched, then this "
2631 "implicitly calls various functions to unmount filesystems and sync the "
2632 "disk.  See L</guestfs_set_autosync> for more details."
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1318
2637 msgid "If a close callback was set on the handle, then it is called."
2638 msgstr ""
2639
2640 #. type: =head1
2641 #: ../src/guestfs.pod:1320
2642 msgid "ERROR HANDLING"
2643 msgstr "ОБРОБКА ПОМИЛОК"
2644
2645 #. type: textblock
2646 #: ../src/guestfs.pod:1322
2647 msgid ""
2648 "API functions can return errors.  For example, almost all functions that "
2649 "return C<int> will return C<-1> to indicate an error."
2650 msgstr ""
2651
2652 #. type: textblock
2653 #: ../src/guestfs.pod:1325
2654 msgid ""
2655 "Additional information is available for errors: an error message string and "
2656 "optionally an error number (errno) if the thing that failed was a system "
2657 "call."
2658 msgstr ""
2659
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1329
2662 msgid ""
2663 "You can get at the additional information about the last error on the handle "
2664 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2665 "up an error handler with L</guestfs_set_error_handler>."
2666 msgstr ""
2667
2668 #. type: textblock
2669 #: ../src/guestfs.pod:1334
2670 msgid ""
2671 "When the handle is created, a default error handler is installed which "
2672 "prints the error message string to C<stderr>.  For small short-running "
2673 "command line programs it is sufficient to do:"
2674 msgstr ""
2675
2676 #. type: verbatim
2677 #: ../src/guestfs.pod:1338
2678 #, no-wrap
2679 msgid ""
2680 " if (guestfs_launch (g) == -1)\n"
2681 "   exit (EXIT_FAILURE);\n"
2682 "\n"
2683 msgstr ""
2684
2685 #. type: textblock
2686 #: ../src/guestfs.pod:1341
2687 msgid ""
2688 "since the default error handler will ensure that an error message has been "
2689 "printed to C<stderr> before the program exits."
2690 msgstr ""
2691
2692 #. type: textblock
2693 #: ../src/guestfs.pod:1344
2694 msgid ""
2695 "For other programs the caller will almost certainly want to install an "
2696 "alternate error handler or do error handling in-line like this:"
2697 msgstr ""
2698
2699 #. type: verbatim
2700 #: ../src/guestfs.pod:1347
2701 #, no-wrap
2702 msgid ""
2703 " g = guestfs_create ();\n"
2704 " \n"
2705 msgstr ""
2706
2707 #. type: verbatim
2708 #: ../src/guestfs.pod:1349
2709 #, no-wrap
2710 msgid ""
2711 " /* This disables the default behaviour of printing errors\n"
2712 "    on stderr. */\n"
2713 " guestfs_set_error_handler (g, NULL, NULL);\n"
2714 " \n"
2715 msgstr ""
2716
2717 #. type: verbatim
2718 #: ../src/guestfs.pod:1353
2719 #, no-wrap
2720 msgid ""
2721 " if (guestfs_launch (g) == -1) {\n"
2722 "   /* Examine the error message and print it etc. */\n"
2723 "   char *msg = guestfs_last_error (g);\n"
2724 "   int errnum = guestfs_last_errno (g);\n"
2725 "   fprintf (stderr, \"%s\\n\", msg);\n"
2726 "   /* ... */\n"
2727 "  }\n"
2728 "\n"
2729 msgstr ""
2730
2731 #. type: textblock
2732 #: ../src/guestfs.pod:1361
2733 msgid ""
2734 "Out of memory errors are handled differently.  The default action is to call "
2735 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
2736 "guestfs_set_out_of_memory_handler>."
2737 msgstr ""
2738
2739 #. type: textblock
2740 #: ../src/guestfs.pod:1365
2741 msgid ""
2742 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2743 "because there is no handle if this happens there is no way to get additional "
2744 "error information.  However L</guestfs_create> is supposed to be a "
2745 "lightweight operation which can only fail because of insufficient memory (it "
2746 "returns NULL in this case)."
2747 msgstr ""
2748
2749 #. type: =head2
2750 #: ../src/guestfs.pod:1371
2751 msgid "guestfs_last_error"
2752 msgstr ""
2753
2754 #. type: verbatim
2755 #: ../src/guestfs.pod:1373
2756 #, no-wrap
2757 msgid ""
2758 " const char *guestfs_last_error (guestfs_h *g);\n"
2759 "\n"
2760 msgstr ""
2761
2762 #. type: textblock
2763 #: ../src/guestfs.pod:1375
2764 msgid ""
2765 "This returns the last error message that happened on C<g>.  If there has not "
2766 "been an error since the handle was created, then this returns C<NULL>."
2767 msgstr ""
2768
2769 #. type: textblock
2770 #: ../src/guestfs.pod:1379
2771 msgid ""
2772 "The lifetime of the returned string is until the next error occurs, or L</"
2773 "guestfs_close> is called."
2774 msgstr ""
2775
2776 #. type: =head2
2777 #: ../src/guestfs.pod:1382
2778 msgid "guestfs_last_errno"
2779 msgstr ""
2780
2781 #. type: verbatim
2782 #: ../src/guestfs.pod:1384
2783 #, no-wrap
2784 msgid ""
2785 " int guestfs_last_errno (guestfs_h *g);\n"
2786 "\n"
2787 msgstr ""
2788
2789 #. type: textblock
2790 #: ../src/guestfs.pod:1386
2791 msgid "This returns the last error number (errno) that happened on C<g>."
2792 msgstr ""
2793
2794 #. type: textblock
2795 #: ../src/guestfs.pod:1388
2796 msgid "If successful, an errno integer not equal to zero is returned."
2797 msgstr ""
2798
2799 #. type: textblock
2800 #: ../src/guestfs.pod:1390
2801 msgid ""
2802 "If no error, this returns 0.  This call can return 0 in three situations:"
2803 msgstr ""
2804
2805 #. type: textblock
2806 #: ../src/guestfs.pod:1397
2807 msgid "There has not been any error on the handle."
2808 msgstr ""
2809
2810 #. type: textblock
2811 #: ../src/guestfs.pod:1401
2812 msgid ""
2813 "There has been an error but the errno was meaningless.  This corresponds to "
2814 "the case where the error did not come from a failed system call, but for "
2815 "some other reason."
2816 msgstr ""
2817
2818 #. type: textblock
2819 #: ../src/guestfs.pod:1407
2820 msgid ""
2821 "There was an error from a failed system call, but for some reason the errno "
2822 "was not captured and returned.  This usually indicates a bug in libguestfs."
2823 msgstr ""
2824
2825 #. type: textblock
2826 #: ../src/guestfs.pod:1413
2827 msgid ""
2828 "Libguestfs tries to convert the errno from inside the applicance into a "
2829 "corresponding errno for the caller (not entirely trivial: the appliance "
2830 "might be running a completely different operating system from the library "
2831 "and error numbers are not standardized across Un*xen).  If this could not be "
2832 "done, then the error is translated to C<EINVAL>.  In practice this should "
2833 "only happen in very rare circumstances."
2834 msgstr ""
2835
2836 #. type: =head2
2837 #: ../src/guestfs.pod:1421
2838 msgid "guestfs_set_error_handler"
2839 msgstr ""
2840
2841 #. type: verbatim
2842 #: ../src/guestfs.pod:1423
2843 #, no-wrap
2844 msgid ""
2845 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2846 "                                           void *opaque,\n"
2847 "                                           const char *msg);\n"
2848 " void guestfs_set_error_handler (guestfs_h *g,\n"
2849 "                                 guestfs_error_handler_cb cb,\n"
2850 "                                 void *opaque);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1430
2856 msgid ""
2857 "The callback C<cb> will be called if there is an error.  The parameters "
2858 "passed to the callback are an opaque data pointer and the error message "
2859 "string."
2860 msgstr ""
2861
2862 #. type: textblock
2863 #: ../src/guestfs.pod:1434
2864 msgid ""
2865 "C<errno> is not passed to the callback.  To get that the callback must call "
2866 "L</guestfs_last_errno>."
2867 msgstr ""
2868
2869 #. type: textblock
2870 #: ../src/guestfs.pod:1437
2871 msgid ""
2872 "Note that the message string C<msg> is freed as soon as the callback "
2873 "function returns, so if you want to stash it somewhere you must make your "
2874 "own copy."
2875 msgstr ""
2876
2877 #. type: textblock
2878 #: ../src/guestfs.pod:1441
2879 msgid "The default handler prints messages on C<stderr>."
2880 msgstr ""
2881
2882 #. type: textblock
2883 #: ../src/guestfs.pod:1443
2884 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2885 msgstr ""
2886
2887 #. type: =head2
2888 #: ../src/guestfs.pod:1445
2889 msgid "guestfs_get_error_handler"
2890 msgstr ""
2891
2892 #. type: verbatim
2893 #: ../src/guestfs.pod:1447
2894 #, no-wrap
2895 msgid ""
2896 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2897 "                                                     void **opaque_rtn);\n"
2898 "\n"
2899 msgstr ""
2900
2901 #. type: textblock
2902 #: ../src/guestfs.pod:1450
2903 msgid "Returns the current error handler callback."
2904 msgstr ""
2905
2906 #. type: =head2
2907 #: ../src/guestfs.pod:1452
2908 msgid "guestfs_set_out_of_memory_handler"
2909 msgstr ""
2910
2911 #. type: verbatim
2912 #: ../src/guestfs.pod:1454
2913 #, no-wrap
2914 msgid ""
2915 " typedef void (*guestfs_abort_cb) (void);\n"
2916 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2917 "                                        guestfs_abort_cb);\n"
2918 "\n"
2919 msgstr ""
2920
2921 #. type: textblock
2922 #: ../src/guestfs.pod:1458
2923 msgid ""
2924 "The callback C<cb> will be called if there is an out of memory situation.  "
2925 "I<Note this callback must not return>."
2926 msgstr ""
2927
2928 #. type: textblock
2929 #: ../src/guestfs.pod:1461
2930 msgid "The default is to call L<abort(3)>."
2931 msgstr ""
2932
2933 #. type: textblock
2934 #: ../src/guestfs.pod:1463
2935 msgid ""
2936 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2937 msgstr ""
2938
2939 #. type: =head2
2940 #: ../src/guestfs.pod:1466
2941 msgid "guestfs_get_out_of_memory_handler"
2942 msgstr ""
2943
2944 #. type: verbatim
2945 #: ../src/guestfs.pod:1468
2946 #, no-wrap
2947 msgid ""
2948 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2949 "\n"
2950 msgstr ""
2951
2952 #. type: textblock
2953 #: ../src/guestfs.pod:1470
2954 msgid "This returns the current out of memory handler."
2955 msgstr ""
2956
2957 #. type: =head1
2958 #: ../src/guestfs.pod:1472
2959 msgid "API CALLS"
2960 msgstr ""
2961
2962 #. type: textblock
2963 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2964 msgid "@ACTIONS@"
2965 msgstr "@ACTIONS@"
2966
2967 #. type: =head1
2968 #: ../src/guestfs.pod:1476
2969 msgid "STRUCTURES"
2970 msgstr "СТРУКТУРИ"
2971
2972 #. type: textblock
2973 #: ../src/guestfs.pod:1478
2974 msgid "@STRUCTS@"
2975 msgstr "@STRUCTS@"
2976
2977 #. type: =head1
2978 #: ../src/guestfs.pod:1480
2979 msgid "AVAILABILITY"
2980 msgstr ""
2981
2982 #. type: =head2
2983 #: ../src/guestfs.pod:1482
2984 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2985 msgstr ""
2986
2987 #. type: textblock
2988 #: ../src/guestfs.pod:1484
2989 msgid ""
2990 "Using L</guestfs_available> you can test availability of the following "
2991 "groups of functions.  This test queries the appliance to see if the "
2992 "appliance you are currently using supports the functionality."
2993 msgstr ""
2994
2995 #. type: textblock
2996 #: ../src/guestfs.pod:1489
2997 msgid "@AVAILABILITY@"
2998 msgstr ""
2999
3000 #. type: =head2
3001 #: ../src/guestfs.pod:1491
3002 msgid "GUESTFISH supported COMMAND"
3003 msgstr ""
3004
3005 #. type: textblock
3006 #: ../src/guestfs.pod:1493
3007 msgid ""
3008 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3009 "prints out the available groups and whether they are supported by this build "
3010 "of libguestfs.  Note however that you have to do C<run> first."
3011 msgstr ""
3012
3013 #. type: =head2
3014 #: ../src/guestfs.pod:1498
3015 msgid "SINGLE CALLS AT COMPILE TIME"
3016 msgstr ""
3017
3018 #. type: textblock
3019 #: ../src/guestfs.pod:1500
3020 msgid ""
3021 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3022 "function, such as:"
3023 msgstr ""
3024
3025 #. type: verbatim
3026 #: ../src/guestfs.pod:1503
3027 #, no-wrap
3028 msgid ""
3029 " #define LIBGUESTFS_HAVE_DD 1\n"
3030 "\n"
3031 msgstr ""
3032
3033 #. type: textblock
3034 #: ../src/guestfs.pod:1505
3035 msgid "if L</guestfs_dd> is available."
3036 msgstr ""
3037
3038 #. type: textblock
3039 #: ../src/guestfs.pod:1507
3040 msgid ""
3041 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3042 "function is available at compile time, we recommended using build tools such "
3043 "as autoconf or cmake.  For example in autotools you could use:"
3044 msgstr ""
3045
3046 #. type: verbatim
3047 #: ../src/guestfs.pod:1512
3048 #, no-wrap
3049 msgid ""
3050 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3051 " AC_CHECK_FUNCS([guestfs_dd])\n"
3052 "\n"
3053 msgstr ""
3054
3055 #. type: textblock
3056 #: ../src/guestfs.pod:1515
3057 msgid ""
3058 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3059 "in your program."
3060 msgstr ""
3061
3062 #. type: =head2
3063 #: ../src/guestfs.pod:1518
3064 msgid "SINGLE CALLS AT RUN TIME"
3065 msgstr ""
3066
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1520
3069 msgid ""
3070 "Testing at compile time doesn't guarantee that a function really exists in "
3071 "the library.  The reason is that you might be dynamically linked against a "
3072 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3073 "This situation unfortunately results in a segmentation fault, which is a "
3074 "shortcoming of the C dynamic linking system itself."
3075 msgstr ""
3076
3077 #. type: textblock
3078 #: ../src/guestfs.pod:1527
3079 msgid ""
3080 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3081 "in this example program (note that you still need the compile time check as "
3082 "well):"
3083 msgstr ""
3084
3085 #. type: verbatim
3086 #: ../src/guestfs.pod:1531
3087 #, no-wrap
3088 msgid ""
3089 " #include <stdio.h>\n"
3090 " #include <stdlib.h>\n"
3091 " #include <unistd.h>\n"
3092 " #include <dlfcn.h>\n"
3093 " #include <guestfs.h>\n"
3094 " \n"
3095 msgstr ""
3096
3097 #. type: verbatim
3098 #: ../src/guestfs.pod:1537
3099 #, no-wrap
3100 msgid ""
3101 " main ()\n"
3102 " {\n"
3103 " #ifdef LIBGUESTFS_HAVE_DD\n"
3104 "   void *dl;\n"
3105 "   int has_function;\n"
3106 " \n"
3107 msgstr ""
3108
3109 #. type: verbatim
3110 #: ../src/guestfs.pod:1543
3111 #, no-wrap
3112 msgid ""
3113 "   /* Test if the function guestfs_dd is really available. */\n"
3114 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3115 "   if (!dl) {\n"
3116 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3117 "     exit (EXIT_FAILURE);\n"
3118 "   }\n"
3119 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3120 "   dlclose (dl);\n"
3121 " \n"
3122 msgstr ""
3123
3124 #. type: verbatim
3125 #: ../src/guestfs.pod:1552
3126 #, no-wrap
3127 msgid ""
3128 "   if (!has_function)\n"
3129 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3130 "   else {\n"
3131 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3132 "     /* Now it's safe to call\n"
3133 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3134 "     */\n"
3135 "   }\n"
3136 " #else\n"
3137 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3138 " #endif\n"
3139 "  }\n"
3140 "\n"
3141 msgstr ""
3142
3143 #. type: textblock
3144 #: ../src/guestfs.pod:1565
3145 msgid ""
3146 "You may think the above is an awful lot of hassle, and it is.  There are "
3147 "other ways outside of the C linking system to ensure that this kind of "
3148 "incompatibility never arises, such as using package versioning:"
3149 msgstr ""
3150
3151 #. type: verbatim
3152 #: ../src/guestfs.pod:1570
3153 #, no-wrap
3154 msgid ""
3155 " Requires: libguestfs >= 1.0.80\n"
3156 "\n"
3157 msgstr ""
3158
3159 #. type: =head1
3160 #: ../src/guestfs.pod:1572
3161 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3162 msgstr ""
3163
3164 #. type: textblock
3165 #: ../src/guestfs.pod:1574
3166 msgid ""
3167 "A recent feature of the API is the introduction of calls which take optional "
3168 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3169 "takes variable arguments (ie. C<...>), as in this example:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1579
3174 #, no-wrap
3175 msgid ""
3176 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3177 "\n"
3178 msgstr ""
3179
3180 #. type: textblock
3181 #: ../src/guestfs.pod:1581
3182 msgid ""
3183 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3184 "call with no optional arguments specified:"
3185 msgstr ""
3186
3187 #. type: verbatim
3188 #: ../src/guestfs.pod:1584
3189 #, no-wrap
3190 msgid ""
3191 " guestfs_add_drive_opts (g, filename, -1);\n"
3192 "\n"
3193 msgstr ""
3194
3195 #. type: textblock
3196 #: ../src/guestfs.pod:1586
3197 msgid "With a single optional argument:"
3198 msgstr ""
3199
3200 #. type: verbatim
3201 #: ../src/guestfs.pod:1588
3202 #, no-wrap
3203 msgid ""
3204 " guestfs_add_drive_opts (g, filename,\n"
3205 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3206 "                         -1);\n"
3207 "\n"
3208 msgstr ""
3209
3210 #. type: textblock
3211 #: ../src/guestfs.pod:1592
3212 msgid "With two:"
3213 msgstr ""
3214
3215 #. type: verbatim
3216 #: ../src/guestfs.pod:1594
3217 #, no-wrap
3218 msgid ""
3219 " guestfs_add_drive_opts (g, filename,\n"
3220 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3221 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3222 "                         -1);\n"
3223 "\n"
3224 msgstr ""
3225
3226 #. type: textblock
3227 #: ../src/guestfs.pod:1599
3228 msgid ""
3229 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3230 "happen!"
3231 msgstr ""
3232
3233 #. type: =head2
3234 #: ../src/guestfs.pod:1602
3235 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3236 msgstr ""
3237
3238 #. type: textblock
3239 #: ../src/guestfs.pod:1604
3240 msgid ""
3241 "The second variant has the same name with the suffix C<_va>, which works the "
3242 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3243 "example function, this is declared:"
3244 msgstr ""
3245
3246 #. type: verbatim
3247 #: ../src/guestfs.pod:1608
3248 #, no-wrap
3249 msgid ""
3250 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3251 "                                va_list args);\n"
3252 "\n"
3253 msgstr ""
3254
3255 #. type: =head2
3256 #: ../src/guestfs.pod:1611
3257 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3258 msgstr ""
3259
3260 #. type: textblock
3261 #: ../src/guestfs.pod:1613
3262 msgid ""
3263 "The third variant is useful where you need to construct these calls.  You "
3264 "pass in a structure where you fill in the optional fields.  The structure "
3265 "has a bitmask as the first element which you must set to indicate which "
3266 "fields you have filled in.  For our example function the structure and call "
3267 "are declared:"
3268 msgstr ""
3269
3270 #. type: verbatim
3271 #: ../src/guestfs.pod:1619
3272 #, no-wrap
3273 msgid ""
3274 " struct guestfs_add_drive_opts_argv {\n"
3275 "   uint64_t bitmask;\n"
3276 "   int readonly;\n"
3277 "   const char *format;\n"
3278 "   /* ... */\n"
3279 " };\n"
3280 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3281 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3282 "\n"
3283 msgstr ""
3284
3285 #. type: textblock
3286 #: ../src/guestfs.pod:1628
3287 msgid "You could call it like this:"
3288 msgstr ""
3289
3290 #. type: verbatim
3291 #: ../src/guestfs.pod:1630
3292 #, no-wrap
3293 msgid ""
3294 " struct guestfs_add_drive_opts_argv optargs = {\n"
3295 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3296 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3297 "   .readonly = 1,\n"
3298 "   .format = \"qcow2\"\n"
3299 " };\n"
3300 " \n"
3301 msgstr ""
3302
3303 #. type: verbatim
3304 #: ../src/guestfs.pod:1637
3305 #, no-wrap
3306 msgid ""
3307 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3308 "\n"
3309 msgstr ""
3310
3311 #. type: textblock
3312 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3313 #: ../src/guestfs-actions.pod:1915 ../src/guestfs-actions.pod:2842
3314 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1287
3315 #: ../fish/guestfish-actions.pod:1923 ../tools/virt-win-reg.pl:704
3316 msgid "Notes:"
3317 msgstr "Нотатки:"
3318
3319 #. type: textblock
3320 #: ../src/guestfs.pod:1645
3321 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3322 msgstr ""
3323
3324 #. type: textblock
3325 #: ../src/guestfs.pod:1650
3326 msgid "You do not need to fill in all fields of the structure."
3327 msgstr ""
3328
3329 #. type: textblock
3330 #: ../src/guestfs.pod:1654
3331 msgid ""
3332 "There must be a one-to-one correspondence between fields of the structure "
3333 "that are filled in, and bits set in the bitmask."
3334 msgstr ""
3335
3336 #. type: =head2
3337 #: ../src/guestfs.pod:1659
3338 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3339 msgstr ""
3340
3341 #. type: textblock
3342 #: ../src/guestfs.pod:1661
3343 msgid ""
3344 "In other languages, optional arguments are expressed in the way that is "
3345 "natural for that language.  We refer you to the language-specific "
3346 "documentation for more details on that."
3347 msgstr ""
3348
3349 #. type: textblock
3350 #: ../src/guestfs.pod:1665
3351 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3352 msgstr ""
3353
3354 #. type: =head2
3355 #: ../src/guestfs.pod:1667
3356 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3357 msgstr ""
3358
3359 #. type: textblock
3360 #: ../src/guestfs.pod:1669
3361 msgid ""
3362 "B<Note:> This section documents the generic event mechanism introduced in "
3363 "libguestfs 1.10, which you should use in new code if possible.  The old "
3364 "functions C<guestfs_set_log_message_callback>, "
3365 "C<guestfs_set_subprocess_quit_callback>, "
3366 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3367 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3368 "page.  Because of the ABI guarantee, the old functions continue to work."
3369 msgstr ""
3370
3371 #. type: textblock
3372 #: ../src/guestfs.pod:1678
3373 msgid ""
3374 "Handles generate events when certain things happen, such as log messages "
3375 "being generated, progress messages during long-running operations, or the "
3376 "handle being closed.  The API calls described below let you register a "
3377 "callback to be called when events happen.  You can register multiple "
3378 "callbacks (for the same, different or overlapping sets of events), and "
3379 "individually remove callbacks.  If callbacks are not removed, then they "
3380 "remain in force until the handle is closed."
3381 msgstr ""
3382
3383 #. type: textblock
3384 #: ../src/guestfs.pod:1686
3385 msgid ""
3386 "In the current implementation, events are only generated synchronously: that "
3387 "means that events (and hence callbacks) can only happen while you are in the "
3388 "middle of making another libguestfs call.  The callback is called in the "
3389 "same thread."
3390 msgstr ""
3391
3392 #. type: textblock
3393 #: ../src/guestfs.pod:1691
3394 msgid ""
3395 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3396 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3397 msgstr ""
3398
3399 #. type: =head3
3400 #: ../src/guestfs.pod:1695
3401 msgid "CLASSES OF EVENTS"
3402 msgstr ""
3403
3404 #. type: =item
3405 #: ../src/guestfs.pod:1699
3406 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3407 msgstr ""
3408
3409 #. type: textblock
3410 #: ../src/guestfs.pod:1702
3411 msgid ""
3412 "The callback function will be called while the handle is being closed "
3413 "(synchronously from L</guestfs_close>)."
3414 msgstr ""
3415
3416 #. type: textblock
3417 #: ../src/guestfs.pod:1705
3418 msgid ""
3419 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3420 "handles that are open when the program exits.  This means that this callback "
3421 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3422 "problems in higher-level languages (eg. if your HLL interpreter has already "
3423 "been cleaned up by the time this is called, and if your callback then jumps "
3424 "into some HLL function)."
3425 msgstr ""
3426
3427 #. type: textblock
3428 #: ../src/guestfs.pod:1712
3429 msgid ""
3430 "If no callback is registered: the handle is closed without any callback "
3431 "being invoked."
3432 msgstr ""
3433
3434 #. type: =item
3435 #: ../src/guestfs.pod:1715
3436 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3437 msgstr ""
3438
3439 #. type: textblock
3440 #: ../src/guestfs.pod:1718
3441 msgid ""
3442 "The callback function will be called when the child process quits, either "
3443 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3444 "corresponds to a transition from any state to the CONFIG state)."
3445 msgstr ""
3446
3447 #. type: textblock
3448 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3449 msgid "If no callback is registered: the event is ignored."
3450 msgstr ""
3451
3452 #. type: =item
3453 #: ../src/guestfs.pod:1724
3454 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3455 msgstr ""
3456
3457 #. type: textblock
3458 #: ../src/guestfs.pod:1727
3459 msgid ""
3460 "The callback function will be called when the child process becomes ready "
3461 "first time after it has been launched.  (This corresponds to a transition "
3462 "from LAUNCHING to the READY state)."
3463 msgstr ""
3464
3465 #. type: =item
3466 #: ../src/guestfs.pod:1733
3467 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3468 msgstr ""
3469
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1736
3472 msgid ""
3473 "Some long-running operations can generate progress messages.  If this "
3474 "callback is registered, then it will be called each time a progress message "
3475 "is generated (usually two seconds after the operation started, and three "
3476 "times per second thereafter until it completes, although the frequency may "
3477 "change in future versions)."
3478 msgstr ""
3479
3480 #. type: textblock
3481 #: ../src/guestfs.pod:1742
3482 msgid ""
3483 "The callback receives in the payload four unsigned 64 bit numbers which are "
3484 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3485 msgstr ""
3486
3487 #. type: textblock
3488 #: ../src/guestfs.pod:1745
3489 msgid ""
3490 "The units of C<total> are not defined, although for some operations C<total> "
3491 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3492 "or megabytes), and C<position> may be the portion which has been transferred."
3493 msgstr ""
3494
3495 #. type: textblock
3496 #: ../src/guestfs.pod:1750
3497 msgid "The only defined and stable parts of the API are:"
3498 msgstr ""
3499
3500 #. type: textblock
3501 #: ../src/guestfs.pod:1756
3502 msgid ""
3503 "The callback can display to the user some type of progress bar or indicator "
3504 "which shows the ratio of C<position>:C<total>."
3505 msgstr ""
3506
3507 #. type: textblock
3508 #: ../src/guestfs.pod:1761
3509 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3510 msgstr ""
3511
3512 #. type: textblock
3513 #: ../src/guestfs.pod:1765
3514 msgid ""
3515 "If any progress notification is sent during a call, then a final progress "
3516 "notification is always sent when C<position> = C<total> (I<unless> the call "
3517 "fails with an error)."
3518 msgstr ""
3519
3520 #. type: textblock
3521 #: ../src/guestfs.pod:1769
3522 msgid ""
3523 "This is to simplify caller code, so callers can easily set the progress "
3524 "indicator to \"100%\" at the end of the operation, without requiring special "
3525 "code to detect this case."
3526 msgstr ""
3527
3528 #. type: textblock
3529 #: ../src/guestfs.pod:1775
3530 msgid ""
3531 "For some calls we are unable to estimate the progress of the call, but we "
3532 "can still generate progress messages to indicate activity.  This is known as "
3533 "\"pulse mode\", and is directly supported by certain progress bar "
3534 "implementations (eg. GtkProgressBar)."
3535 msgstr ""
3536
3537 #. type: textblock
3538 #: ../src/guestfs.pod:1780
3539 msgid ""
3540 "For these calls, zero or more progress messages are generated with "
3541 "C<position = 0> and C<total = 1>, followed by a final message with "
3542 "C<position = total = 1>."
3543 msgstr ""
3544
3545 #. type: textblock
3546 #: ../src/guestfs.pod:1784
3547 msgid ""
3548 "As noted above, if the call fails with an error then the final message may "
3549 "not be generated."
3550 msgstr ""
3551
3552 #. type: textblock
3553 #: ../src/guestfs.pod:1789
3554 msgid ""
3555 "The callback also receives the procedure number (C<proc_nr>) and serial "
3556 "number (C<serial>) of the call.  These are only useful for debugging "
3557 "protocol issues, and the callback can normally ignore them.  The callback "
3558 "may want to print these numbers in error messages or debugging messages."
3559 msgstr ""
3560
3561 #. type: textblock
3562 #: ../src/guestfs.pod:1795
3563 msgid "If no callback is registered: progress messages are discarded."
3564 msgstr ""
3565
3566 #. type: =item
3567 #: ../src/guestfs.pod:1797
3568 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3569 msgstr ""
3570
3571 #. type: textblock
3572 #: ../src/guestfs.pod:1800
3573 msgid ""
3574 "The callback function is called whenever a log message is generated by qemu, "
3575 "the appliance kernel, guestfsd (daemon), or utility programs."
3576 msgstr ""
3577
3578 #. type: textblock
3579 #: ../src/guestfs.pod:1803
3580 msgid ""
3581 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3582 "guestfs_launch>) then additional debug messages are generated."
3583 msgstr ""
3584
3585 #. type: textblock
3586 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3587 msgid ""
3588 "If no callback is registered: the messages are discarded unless the verbose "
3589 "flag is set in which case they are sent to stderr.  You can override the "
3590 "printing of verbose messages to stderr by setting up a callback."
3591 msgstr ""
3592
3593 #. type: =item
3594 #: ../src/guestfs.pod:1811
3595 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3596 msgstr ""
3597
3598 #. type: textblock
3599 #: ../src/guestfs.pod:1814
3600 msgid ""
3601 "The callback function is called whenever a log message is generated by the "
3602 "library part of libguestfs."
3603 msgstr ""
3604
3605 #. type: textblock
3606 #: ../src/guestfs.pod:1817
3607 msgid ""
3608 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3609 "messages are generated."
3610 msgstr ""
3611
3612 #. type: =item
3613 #: ../src/guestfs.pod:1825
3614 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3615 msgstr ""
3616
3617 #. type: textblock
3618 #: ../src/guestfs.pod:1828
3619 msgid ""
3620 "The callback function is called whenever a trace message is generated.  This "
3621 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3622 msgstr ""
3623
3624 #. type: textblock
3625 #: ../src/guestfs.pod:1831
3626 msgid ""
3627 "If no callback is registered: the messages are sent to stderr.  You can "
3628 "override the printing of trace messages to stderr by setting up a callback."
3629 msgstr ""
3630
3631 #. type: =head3
3632 #: ../src/guestfs.pod:1837
3633 msgid "guestfs_set_event_callback"
3634 msgstr ""
3635
3636 #. type: verbatim
3637 #: ../src/guestfs.pod:1839
3638 #, no-wrap
3639 msgid ""
3640 " int guestfs_set_event_callback (guestfs_h *g,\n"
3641 "                                 guestfs_event_callback cb,\n"
3642 "                                 uint64_t event_bitmask,\n"
3643 "                                 int flags,\n"
3644 "                                 void *opaque);\n"
3645 "\n"
3646 msgstr ""
3647
3648 #. type: textblock
3649 #: ../src/guestfs.pod:1845
3650 msgid ""
3651 "This function registers a callback (C<cb>) for all event classes in the "
3652 "C<event_bitmask>."
3653 msgstr ""
3654
3655 #. type: textblock
3656 #: ../src/guestfs.pod:1848
3657 msgid ""
3658 "For example, to register for all log message events, you could call this "
3659 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3660 "To register a single callback for all possible classes of events, use "
3661 "C<GUESTFS_EVENT_ALL>."
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1854
3666 msgid "C<flags> should always be passed as 0."
3667 msgstr ""
3668
3669 #. type: textblock
3670 #: ../src/guestfs.pod:1856
3671 msgid ""
3672 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3673 "it for any purpose."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1859
3678 msgid ""
3679 "The return value is the event handle (an integer) which you can use to "
3680 "delete the callback (see below)."
3681 msgstr ""
3682
3683 #. type: textblock
3684 #: ../src/guestfs.pod:1862
3685 msgid ""
3686 "If there is an error, this function returns C<-1>, and sets the error in the "
3687 "handle in the usual way (see L</guestfs_last_error> etc.)"
3688 msgstr ""
3689
3690 #. type: textblock
3691 #: ../src/guestfs.pod:1865
3692 msgid ""
3693 "Callbacks remain in effect until they are deleted, or until the handle is "
3694 "closed."
3695 msgstr ""
3696
3697 #. type: textblock
3698 #: ../src/guestfs.pod:1868
3699 msgid ""
3700 "In the case where multiple callbacks are registered for a particular event "
3701 "class, all of the callbacks are called.  The order in which multiple "
3702 "callbacks are called is not defined."
3703 msgstr ""
3704
3705 #. type: =head3
3706 #: ../src/guestfs.pod:1872
3707 msgid "guestfs_delete_event_callback"
3708 msgstr ""
3709
3710 #. type: verbatim
3711 #: ../src/guestfs.pod:1874
3712 #, no-wrap
3713 msgid ""
3714 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3715 "\n"
3716 msgstr ""
3717
3718 #. type: textblock
3719 #: ../src/guestfs.pod:1876
3720 msgid ""
3721 "Delete a callback that was previously registered.  C<event_handle> should be "
3722 "the integer that was returned by a previous call to "
3723 "C<guestfs_set_event_callback> on the same handle."
3724 msgstr ""
3725
3726 #. type: =head3
3727 #: ../src/guestfs.pod:1880
3728 msgid "guestfs_event_callback"
3729 msgstr ""
3730
3731 #. type: verbatim
3732 #: ../src/guestfs.pod:1882
3733 #, no-wrap
3734 msgid ""
3735 " typedef void (*guestfs_event_callback) (\n"
3736 "                  guestfs_h *g,\n"
3737 "                  void *opaque,\n"
3738 "                  uint64_t event,\n"
3739 "                  int event_handle,\n"
3740 "                  int flags,\n"
3741 "                  const char *buf, size_t buf_len,\n"
3742 "                  const uint64_t *array, size_t array_len);\n"
3743 "\n"
3744 msgstr ""
3745
3746 #. type: textblock
3747 #: ../src/guestfs.pod:1891
3748 msgid ""
3749 "This is the type of the event callback function that you have to provide."
3750 msgstr ""
3751
3752 #. type: textblock
3753 #: ../src/guestfs.pod:1894
3754 msgid ""
3755 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3756 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3757 "handle, and C<flags> which in the current API you should ignore."
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1898
3762 msgid ""
3763 "The remaining parameters contain the event payload (if any).  Each event may "
3764 "contain a payload, which usually relates to the event class, but for future "
3765 "proofing your code should be written to handle any payload for any event "
3766 "class."
3767 msgstr ""
3768
3769 #. type: textblock
3770 #: ../src/guestfs.pod:1903
3771 msgid ""
3772 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3773 "there is no message buffer).  Note that this message buffer can contain "
3774 "arbitrary 8 bit data, including NUL bytes."
3775 msgstr ""
3776
3777 #. type: textblock
3778 #: ../src/guestfs.pod:1907
3779 msgid ""
3780 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3781 "moment this is only used for progress messages."
3782 msgstr ""
3783
3784 #. type: =head3
3785 #: ../src/guestfs.pod:1910
3786 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1912
3791 msgid ""
3792 "One motivation for the generic event API was to allow GUI programs to "
3793 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3794 "unconditionally to C<stderr>."
3795 msgstr ""
3796
3797 #. type: textblock
3798 #: ../src/guestfs.pod:1916
3799 msgid ""
3800 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3801 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3802 "messages are not events; you must capture error messages separately)."
3803 msgstr ""
3804
3805 #. type: textblock
3806 #: ../src/guestfs.pod:1921
3807 msgid ""
3808 "Programs have to set up a callback to capture the classes of events of "
3809 "interest:"
3810 msgstr ""
3811
3812 #. type: verbatim
3813 #: ../src/guestfs.pod:1924
3814 #, no-wrap
3815 msgid ""
3816 " int eh =\n"
3817 "   guestfs_set_event_callback\n"
3818 "     (g, message_callback,\n"
3819 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3820 "      GUESTFS_EVENT_TRACE,\n"
3821 "      0, NULL) == -1)\n"
3822 " if (eh == -1) {\n"
3823 "   // handle error in the usual way\n"
3824 " }\n"
3825 "\n"
3826 msgstr ""
3827
3828 #. type: textblock
3829 #: ../src/guestfs.pod:1934
3830 msgid ""
3831 "The callback can then direct messages to the appropriate place.  In this "
3832 "example, messages are directed to syslog:"
3833 msgstr ""
3834
3835 #. type: verbatim
3836 #: ../src/guestfs.pod:1937
3837 #, no-wrap
3838 msgid ""
3839 " static void\n"
3840 " message_callback (\n"
3841 "         guestfs_h *g,\n"
3842 "         void *opaque,\n"
3843 "         uint64_t event,\n"
3844 "         int event_handle,\n"
3845 "         int flags,\n"
3846 "         const char *buf, size_t buf_len,\n"
3847 "         const uint64_t *array, size_t array_len)\n"
3848 " {\n"
3849 "   const int priority = LOG_USER|LOG_INFO;\n"
3850 "   if (buf_len > 0)\n"
3851 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3852 " }\n"
3853 "\n"
3854 msgstr ""
3855
3856 #. type: =head1
3857 #: ../src/guestfs.pod:1952
3858 msgid "PRIVATE DATA AREA"
3859 msgstr ""
3860
3861 #. type: textblock
3862 #: ../src/guestfs.pod:1954
3863 msgid ""
3864 "You can attach named pieces of private data to the libguestfs handle, fetch "
3865 "them by name, and walk over them, for the lifetime of the handle.  This is "
3866 "called the private data area and is only available from the C API."
3867 msgstr ""
3868
3869 #. type: textblock
3870 #: ../src/guestfs.pod:1959
3871 msgid "To attach a named piece of data, use the following call:"
3872 msgstr ""
3873
3874 #. type: verbatim
3875 #: ../src/guestfs.pod:1961
3876 #, no-wrap
3877 msgid ""
3878 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3879 "\n"
3880 msgstr ""
3881
3882 #. type: textblock
3883 #: ../src/guestfs.pod:1963
3884 msgid ""
3885 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3886 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3887 "overwritten."
3888 msgstr ""
3889
3890 #. type: textblock
3891 #: ../src/guestfs.pod:1967
3892 msgid ""
3893 "You can use any C<key> you want, but your key should I<not> start with an "
3894 "underscore character.  Keys beginning with an underscore character are "
3895 "reserved for internal libguestfs purposes (eg. for implementing language "
3896 "bindings).  It is recommended that you prefix the key with some unique "
3897 "string to avoid collisions with other users."
3898 msgstr ""
3899
3900 #. type: textblock
3901 #: ../src/guestfs.pod:1973
3902 msgid "To retrieve the pointer, use:"
3903 msgstr ""
3904
3905 #. type: verbatim
3906 #: ../src/guestfs.pod:1975
3907 #, no-wrap
3908 msgid ""
3909 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3910 "\n"
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:1977
3915 msgid ""
3916 "This function returns C<NULL> if either no data is found associated with "
3917 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3918 "C<NULL>."
3919 msgstr ""
3920
3921 #. type: textblock
3922 #: ../src/guestfs.pod:1981
3923 msgid ""
3924 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3925 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3926 "all.  In particular, libguestfs does I<not> try to free the data when the "
3927 "handle is closed.  If the data must be freed, then the caller must either "
3928 "free it before calling L</guestfs_close> or must set up a close callback to "
3929 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3930 msgstr ""
3931
3932 #. type: textblock
3933 #: ../src/guestfs.pod:1988
3934 msgid "To walk over all entries, use these two functions:"
3935 msgstr ""
3936
3937 #. type: verbatim
3938 #: ../src/guestfs.pod:1990
3939 #, no-wrap
3940 msgid ""
3941 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3942 "\n"
3943 msgstr ""
3944
3945 #. type: verbatim
3946 #: ../src/guestfs.pod:1992
3947 #, no-wrap
3948 msgid ""
3949 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3950 "\n"
3951 msgstr ""
3952
3953 #. type: textblock
3954 #: ../src/guestfs.pod:1994
3955 msgid ""
3956 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3957 "not have any particular meaning -- keys are not returned in any defined "
3958 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3959 "corresponding data pointer is returned from the function.  C<NULL> is "
3960 "returned if there are no keys stored in the handle."
3961 msgstr ""
3962
3963 #. type: textblock
3964 #: ../src/guestfs.pod:2000
3965 msgid ""
3966 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3967 "value of this function is also C<NULL> is there are no further entries to "
3968 "return."
3969 msgstr ""
3970
3971 #. type: textblock
3972 #: ../src/guestfs.pod:2004
3973 msgid "Notes about walking over entries:"
3974 msgstr ""
3975
3976 #. type: textblock
3977 #: ../src/guestfs.pod:2010
3978 msgid ""
3979 "You must not call C<guestfs_set_private> while walking over the entries."
3980 msgstr ""
3981
3982 #. type: textblock
3983 #: ../src/guestfs.pod:2015
3984 msgid ""
3985 "The handle maintains an internal iterator which is reset when you call "
3986 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3987 "call C<guestfs_set_private>."
3988 msgstr ""
3989
3990 #. type: textblock
3991 #: ../src/guestfs.pod:2021
3992 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3993 msgstr ""
3994
3995 #. type: verbatim
3996 #: ../src/guestfs.pod:2023
3997 #, no-wrap
3998 msgid ""
3999 " guestfs_set_private (g, key, NULL);\n"
4000 "\n"
4001 msgstr ""
4002
4003 #. type: textblock
4004 #: ../src/guestfs.pod:2025
4005 msgid "then that C<key> is not returned when walking."
4006 msgstr ""
4007
4008 #. type: textblock
4009 #: ../src/guestfs.pod:2029
4010 msgid ""
4011 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4012 "C<guestfs_next_private> or C<guestfs_set_private>."
4013 msgstr ""
4014
4015 #. type: textblock
4016 #: ../src/guestfs.pod:2035
4017 msgid ""
4018 "The following example code shows how to print all keys and data pointers "
4019 "that are associated with the handle C<g>:"
4020 msgstr ""
4021
4022 #. type: verbatim
4023 #: ../src/guestfs.pod:2038
4024 #, no-wrap
4025 msgid ""
4026 " const char *key;\n"
4027 " void *data = guestfs_first_private (g, &key);\n"
4028 " while (data != NULL)\n"
4029 "   {\n"
4030 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4031 "     data = guestfs_next_private (g, &key);\n"
4032 "   }\n"
4033 "\n"
4034 msgstr ""
4035
4036 #. type: textblock
4037 #: ../src/guestfs.pod:2046
4038 msgid ""
4039 "More commonly you are only interested in keys that begin with an application-"
4040 "specific prefix C<foo_>.  Modify the loop like so:"
4041 msgstr ""
4042
4043 #. type: verbatim
4044 #: ../src/guestfs.pod:2049
4045 #, no-wrap
4046 msgid ""
4047 " const char *key;\n"
4048 " void *data = guestfs_first_private (g, &key);\n"
4049 " while (data != NULL)\n"
4050 "   {\n"
4051 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4052 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4053 "     data = guestfs_next_private (g, &key);\n"
4054 "   }\n"
4055 "\n"
4056 msgstr ""
4057
4058 #. type: textblock
4059 #: ../src/guestfs.pod:2058
4060 msgid ""
4061 "If you need to modify keys while walking, then you have to jump back to the "
4062 "beginning of the loop.  For example, to delete all keys prefixed with "
4063 "C<foo_>:"
4064 msgstr ""
4065
4066 #. type: verbatim
4067 #: ../src/guestfs.pod:2062
4068 #, no-wrap
4069 msgid ""
4070 "  const char *key;\n"
4071 "  void *data;\n"
4072 " again:\n"
4073 "  data = guestfs_first_private (g, &key);\n"
4074 "  while (data != NULL)\n"
4075 "    {\n"
4076 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4077 "        {\n"
4078 "          guestfs_set_private (g, key, NULL);\n"
4079 "          /* note that 'key' pointer is now invalid, and so is\n"
4080 "             the internal iterator */\n"
4081 "          goto again;\n"
4082 "        }\n"
4083 "      data = guestfs_next_private (g, &key);\n"
4084 "    }\n"
4085 "\n"
4086 msgstr ""
4087
4088 #. type: textblock
4089 #: ../src/guestfs.pod:2078
4090 msgid ""
4091 "Note that the above loop is guaranteed to terminate because the keys are "
4092 "being deleted, but other manipulations of keys within the loop might not "
4093 "terminate unless you also maintain an indication of which keys have been "
4094 "visited."
4095 msgstr ""
4096
4097 #. type: =end
4098 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
4099 msgid "html"
4100 msgstr "html"
4101
4102 #. type: textblock
4103 #: ../src/guestfs.pod:2085
4104 msgid ""
4105 "<!-- old anchor for the next section --> <a name="
4106 "\"state_machine_and_low_level_event_api\"/>"
4107 msgstr ""
4108 "<!-- old anchor for the next section --> <a name="
4109 "\"state_machine_and_low_level_event_api\"/>"
4110
4111 #. type: =head1
4112 #: ../src/guestfs.pod:2090
4113 msgid "ARCHITECTURE"
4114 msgstr "АРХІТЕКТУРА"
4115
4116 #. type: textblock
4117 #: ../src/guestfs.pod:2092
4118 msgid ""
4119 "Internally, libguestfs is implemented by running an appliance (a special "
4120 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4121 "process of the main program."
4122 msgstr ""
4123
4124 #. type: verbatim
4125 #: ../src/guestfs.pod:2096
4126 #, no-wrap
4127 msgid ""
4128 "  ___________________\n"
4129 " /                   \\\n"
4130 " | main program      |\n"
4131 " |                   |\n"
4132 " |                   |           child process / appliance\n"
4133 " |                   |           __________________________\n"
4134 " |                   |          / qemu                     \\\n"
4135 " +-------------------+   RPC    |      +-----------------+ |\n"
4136 " | libguestfs     <--------------------> guestfsd        | |\n"
4137 " |                   |          |      +-----------------+ |\n"
4138 " \\___________________/          |      | Linux kernel    | |\n"
4139 "                                |      +--^--------------+ |\n"
4140 "                                \\_________|________________/\n"
4141 "                                          |\n"
4142 "                                   _______v______\n"
4143 "                                  /              \\\n"
4144 "                                  | Device or    |\n"
4145 "                                  | disk image   |\n"
4146 "                                  \\______________/\n"
4147 "\n"
4148 msgstr ""
4149
4150 #. type: textblock
4151 #: ../src/guestfs.pod:2116
4152 msgid ""
4153 "The library, linked to the main program, creates the child process and hence "
4154 "the appliance in the L</guestfs_launch> function."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2119
4159 msgid ""
4160 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4161 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4162 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4163 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4164 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4165 "attached to the qemu process which translates device access by the "
4166 "appliance's Linux kernel into accesses to the image."
4167 msgstr ""
4168
4169 #. type: textblock
4170 #: ../src/guestfs.pod:2128
4171 msgid ""
4172 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4173 "Although the disk image you are attached to might also be used by some "
4174 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4175 "care if both libguestfs's qemu process and your virtual machine are trying "
4176 "to update the disk image at the same time, since these usually results in "
4177 "massive disk corruption)."
4178 msgstr ""
4179
4180 #. type: =head1
4181 #: ../src/guestfs.pod:2135
4182 msgid "STATE MACHINE"
4183 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4184
4185 #. type: textblock
4186 #: ../src/guestfs.pod:2137
4187 msgid "libguestfs uses a state machine to model the child process:"
4188 msgstr ""
4189
4190 #. type: verbatim
4191 #: ../src/guestfs.pod:2139
4192 #, no-wrap
4193 msgid ""
4194 "                         |\n"
4195 "                    guestfs_create\n"
4196 "                         |\n"
4197 "                         |\n"
4198 "                     ____V_____\n"
4199 "                    /          \\\n"
4200 "                    |  CONFIG  |\n"
4201 "                    \\__________/\n"
4202 "                     ^ ^   ^  \\\n"
4203 "                    /  |    \\  \\ guestfs_launch\n"
4204 "                   /   |    _\\__V______\n"
4205 "                  /    |   /           \\\n"
4206 "                 /     |   | LAUNCHING |\n"
4207 "                /      |   \\___________/\n"
4208 "               /       |       /\n"
4209 "              /        |  guestfs_launch\n"
4210 "             /         |     /\n"
4211 "    ______  /        __|____V\n"
4212 "   /      \\ ------> /        \\\n"
4213 "   | BUSY |         | READY  |\n"
4214 "   \\______/ <------ \\________/\n"
4215 "\n"
4216 msgstr ""
4217
4218 #. type: textblock
4219 #: ../src/guestfs.pod:2161
4220 msgid ""
4221 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4222 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4223 "(3) alternating between READY and BUSY as commands are issued to, and "
4224 "carried out by, the child process."
4225 msgstr ""
4226
4227 #. type: textblock
4228 #: ../src/guestfs.pod:2166
4229 msgid ""
4230 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4231 "asynchronously at any time (eg. due to some internal error), and that causes "
4232 "the state to transition back to CONFIG."
4233 msgstr ""
4234
4235 #. type: textblock
4236 #: ../src/guestfs.pod:2170
4237 msgid ""
4238 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4239 "issued when in the CONFIG state."
4240 msgstr ""
4241
4242 #. type: textblock
4243 #: ../src/guestfs.pod:2173
4244 msgid ""
4245 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4246 "L</guestfs_launch> blocks until the child process is READY to accept "
4247 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4248 "moves the state from CONFIG to LAUNCHING while it is running."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2179
4253 msgid ""
4254 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4255 "state.  These API calls block waiting for the command to be carried out (ie. "
4256 "the state to transition to BUSY and then back to READY).  There are no non-"
4257 "blocking versions, and no way to issue more than one command per handle at "
4258 "the same time."
4259 msgstr ""
4260
4261 #. type: textblock
4262 #: ../src/guestfs.pod:2185
4263 msgid ""
4264 "Finally, the child process sends asynchronous messages back to the main "
4265 "program, such as kernel log messages.  You can register a callback to "
4266 "receive these messages."
4267 msgstr ""
4268
4269 #. type: =head1
4270 #: ../src/guestfs.pod:2189
4271 msgid "INTERNALS"
4272 msgstr ""
4273
4274 #. type: =head2
4275 #: ../src/guestfs.pod:2191
4276 msgid "COMMUNICATION PROTOCOL"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2193
4281 msgid ""
4282 "Don't rely on using this protocol directly.  This section documents how it "
4283 "currently works, but it may change at any time."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2196
4288 msgid ""
4289 "The protocol used to talk between the library and the daemon running inside "
4290 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4291 "1014, RFC 1832, RFC 4506)."
4292 msgstr ""
4293
4294 #. type: textblock
4295 #: ../src/guestfs.pod:2200
4296 msgid ""
4297 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4298 "this file is automatically generated)."
4299 msgstr ""
4300
4301 #. type: textblock
4302 #: ../src/guestfs.pod:2203
4303 msgid ""
4304 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4305 "and C<FileOut> parameters, which are handled with very simple request/reply "
4306 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4307 "parameters, which use the same request and reply messages, but they may also "
4308 "be followed by files sent using a chunked encoding."
4309 msgstr ""
4310
4311 #. type: =head3
4312 #: ../src/guestfs.pod:2210
4313 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4314 msgstr ""
4315
4316 #. type: textblock
4317 #: ../src/guestfs.pod:2212
4318 msgid "For ordinary functions, the request message is:"
4319 msgstr ""
4320
4321 #. type: verbatim
4322 #: ../src/guestfs.pod:2214
4323 #, no-wrap
4324 msgid ""
4325 " total length (header + arguments,\n"
4326 "      but not including the length word itself)\n"
4327 " struct guestfs_message_header (encoded as XDR)\n"
4328 " struct guestfs_<foo>_args (encoded as XDR)\n"
4329 "\n"
4330 msgstr ""
4331
4332 #. type: textblock
4333 #: ../src/guestfs.pod:2219
4334 msgid ""
4335 "The total length field allows the daemon to allocate a fixed size buffer "
4336 "into which it slurps the rest of the message.  As a result, the total length "
4337 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4338 "effective size of any request is limited to somewhere under this size."
4339 msgstr ""
4340
4341 #. type: textblock
4342 #: ../src/guestfs.pod:2225
4343 msgid ""
4344 "Note also that many functions don't take any arguments, in which case the "
4345 "C<guestfs_I<foo>_args> is completely omitted."
4346 msgstr ""
4347
4348 #. type: textblock
4349 #: ../src/guestfs.pod:2228
4350 msgid ""
4351 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4352 "receiver knows what type of args structure to expect, or none at all."
4353 msgstr ""
4354
4355 #. type: textblock
4356 #: ../src/guestfs.pod:2232
4357 msgid ""
4358 "For functions that take optional arguments, the optional arguments are "
4359 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4360 "arguments.  A bitmask in the header indicates which optional arguments are "
4361 "meaningful.  The bitmask is also checked to see if it contains bits set "
4362 "which the daemon does not know about (eg. if more optional arguments were "
4363 "added in a later version of the library), and this causes the call to be "
4364 "rejected."
4365 msgstr ""
4366
4367 #. type: textblock
4368 #: ../src/guestfs.pod:2240
4369 msgid "The reply message for ordinary functions is:"
4370 msgstr ""
4371
4372 #. type: verbatim
4373 #: ../src/guestfs.pod:2242
4374 #, no-wrap
4375 msgid ""
4376 " total length (header + ret,\n"
4377 "      but not including the length word itself)\n"
4378 " struct guestfs_message_header (encoded as XDR)\n"
4379 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4380 "\n"
4381 msgstr ""
4382
4383 #. type: textblock
4384 #: ../src/guestfs.pod:2247
4385 msgid ""
4386 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4387 "functions that return no formal return values."
4388 msgstr ""
4389
4390 #. type: textblock
4391 #: ../src/guestfs.pod:2250
4392 msgid ""
4393 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4394 msgstr ""
4395
4396 #. type: textblock
4397 #: ../src/guestfs.pod:2253
4398 msgid ""
4399 "In the case of an error, a flag is set in the header, and the reply message "
4400 "is slightly changed:"
4401 msgstr ""
4402
4403 #. type: verbatim
4404 #: ../src/guestfs.pod:2256
4405 #, no-wrap
4406 msgid ""
4407 " total length (header + error,\n"
4408 "      but not including the length word itself)\n"
4409 " struct guestfs_message_header (encoded as XDR)\n"
4410 " struct guestfs_message_error (encoded as XDR)\n"
4411 "\n"
4412 msgstr ""
4413
4414 #. type: textblock
4415 #: ../src/guestfs.pod:2261
4416 msgid ""
4417 "The C<guestfs_message_error> structure contains the error message as a "
4418 "string."
4419 msgstr ""
4420
4421 #. type: =head3
4422 #: ../src/guestfs.pod:2264
4423 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4424 msgstr ""
4425
4426 #. type: textblock
4427 #: ../src/guestfs.pod:2266
4428 msgid ""
4429 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4430 "The normal request message is sent (see above).  However this is followed by "
4431 "a sequence of file chunks."
4432 msgstr ""
4433
4434 #. type: verbatim
4435 #: ../src/guestfs.pod:2270
4436 #, no-wrap
4437 msgid ""
4438 " total length (header + arguments,\n"
4439 "      but not including the length word itself,\n"
4440 "      and not including the chunks)\n"
4441 " struct guestfs_message_header (encoded as XDR)\n"
4442 " struct guestfs_<foo>_args (encoded as XDR)\n"
4443 " sequence of chunks for FileIn param #0\n"
4444 " sequence of chunks for FileIn param #1 etc.\n"
4445 "\n"
4446 msgstr ""
4447
4448 #. type: textblock
4449 #: ../src/guestfs.pod:2278
4450 msgid "The \"sequence of chunks\" is:"
4451 msgstr ""
4452
4453 #. type: verbatim
4454 #: ../src/guestfs.pod:2280
4455 #, no-wrap
4456 msgid ""
4457 " length of chunk (not including length word itself)\n"
4458 " struct guestfs_chunk (encoded as XDR)\n"
4459 " length of chunk\n"
4460 " struct guestfs_chunk (encoded as XDR)\n"
4461 "   ...\n"
4462 " length of chunk\n"
4463 " struct guestfs_chunk (with data.data_len == 0)\n"
4464 "\n"
4465 msgstr ""
4466
4467 #. type: textblock
4468 #: ../src/guestfs.pod:2288
4469 msgid ""
4470 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4471 "is set in the final chunk to indicate either successful completion or early "
4472 "cancellation."
4473 msgstr ""
4474
4475 #. type: textblock
4476 #: ../src/guestfs.pod:2292
4477 msgid ""
4478 "At time of writing there are no functions that have more than one FileIn "
4479 "parameter.  However this is (theoretically) supported, by sending the "
4480 "sequence of chunks for each FileIn parameter one after another (from left to "
4481 "right)."
4482 msgstr ""
4483
4484 #. type: textblock
4485 #: ../src/guestfs.pod:2297
4486 msgid ""
4487 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4488 "transfer.  The library does this by sending a chunk with a special flag set "
4489 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4490 "RPC, does I<not> send any reply, and goes back to reading the next request."
4491 msgstr ""
4492
4493 #. type: textblock
4494 #: ../src/guestfs.pod:2303
4495 msgid ""
4496 "The daemon may also cancel.  It does this by writing a special word "
4497 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4498 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4499 "cancel chunk).  The special word is chosen so that even if cancellation "
4500 "happens right at the end of the transfer (after the library has finished "
4501 "writing and has started listening for the reply), the \"spurious\" cancel "
4502 "flag will not be confused with the reply message."
4503 msgstr ""
4504
4505 #. type: textblock
4506 #: ../src/guestfs.pod:2312
4507 msgid ""
4508 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4509 "limit), and also files where the size is not known in advance (eg. from "
4510 "pipes or sockets).  However the chunks are rather small "
4511 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4512 "to keep much in memory."
4513 msgstr ""
4514
4515 #. type: =head3
4516 #: ../src/guestfs.pod:2318
4517 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4518 msgstr ""
4519
4520 #. type: textblock
4521 #: ../src/guestfs.pod:2320
4522 msgid ""
4523 "The protocol for FileOut parameters is exactly the same as for FileIn "
4524 "parameters, but with the roles of daemon and library reversed."
4525 msgstr ""
4526
4527 #. type: verbatim
4528 #: ../src/guestfs.pod:2323
4529 #, no-wrap
4530 msgid ""
4531 " total length (header + ret,\n"
4532 "      but not including the length word itself,\n"
4533 "      and not including the chunks)\n"
4534 " struct guestfs_message_header (encoded as XDR)\n"
4535 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4536 " sequence of chunks for FileOut param #0\n"
4537 " sequence of chunks for FileOut param #1 etc.\n"
4538 "\n"
4539 msgstr ""
4540
4541 #. type: =head3
4542 #: ../src/guestfs.pod:2331
4543 msgid "INITIAL MESSAGE"
4544 msgstr ""
4545
4546 #. type: textblock
4547 #: ../src/guestfs.pod:2333
4548 msgid ""
4549 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4550 "which indicates that the guest and daemon is alive.  This is what L</"
4551 "guestfs_launch> waits for."
4552 msgstr ""
4553
4554 #. type: =head3
4555 #: ../src/guestfs.pod:2337
4556 msgid "PROGRESS NOTIFICATION MESSAGES"
4557 msgstr ""
4558
4559 #. type: textblock
4560 #: ../src/guestfs.pod:2339
4561 msgid ""
4562 "The daemon may send progress notification messages at any time.  These are "
4563 "distinguished by the normal length word being replaced by "
4564 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4565 msgstr ""
4566
4567 #. type: textblock
4568 #: ../src/guestfs.pod:2343
4569 msgid ""
4570 "The library turns them into progress callbacks (see L</"
4571 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4572 "if not."
4573 msgstr ""
4574
4575 #. type: textblock
4576 #: ../src/guestfs.pod:2347
4577 msgid ""
4578 "The daemon self-limits the frequency of progress messages it sends (see "
4579 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4580 "messages."
4581 msgstr ""
4582
4583 #. type: =head1
4584 #: ../src/guestfs.pod:2351
4585 msgid "LIBGUESTFS VERSION NUMBERS"
4586 msgstr ""
4587
4588 #. type: textblock
4589 #: ../src/guestfs.pod:2353
4590 msgid ""
4591 "Since April 2010, libguestfs has started to make separate development and "
4592 "stable releases, along with corresponding branches in our git repository.  "
4593 "These separate releases can be identified by version number:"
4594 msgstr ""
4595
4596 #. type: verbatim
4597 #: ../src/guestfs.pod:2358
4598 #, no-wrap
4599 msgid ""
4600 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4601 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4602 "       |\n"
4603 "       v\n"
4604 " 1  .  3  .  5\n"
4605 " ^           ^\n"
4606 " |           |\n"
4607 " |           `-------- sub-version\n"
4608 " |\n"
4609 " `------ always '1' because we don't change the ABI\n"
4610 "\n"
4611 msgstr ""
4612
4613 #. type: textblock
4614 #: ../src/guestfs.pod:2369
4615 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4616 msgstr ""
4617
4618 #. type: textblock
4619 #: ../src/guestfs.pod:2371
4620 msgid ""
4621 "As time passes we cherry pick fixes from the development branch and backport "
4622 "those into the stable branch, the effect being that the stable branch should "
4623 "get more stable and less buggy over time.  So the stable releases are ideal "
4624 "for people who don't need new features but would just like the software to "
4625 "work."
4626 msgstr ""
4627
4628 #. type: textblock
4629 #: ../src/guestfs.pod:2377
4630 msgid "Our criteria for backporting changes are:"
4631 msgstr ""
4632
4633 #. type: textblock
4634 #: ../src/guestfs.pod:2383
4635 msgid ""
4636 "Documentation changes which don't affect any code are backported unless the "
4637 "documentation refers to a future feature which is not in stable."
4638 msgstr ""
4639
4640 #. type: textblock
4641 #: ../src/guestfs.pod:2389
4642 msgid ""
4643 "Bug fixes which are not controversial, fix obvious problems, and have been "
4644 "well tested are backported."
4645 msgstr ""
4646
4647 #. type: textblock
4648 #: ../src/guestfs.pod:2394
4649 msgid ""
4650 "Simple rearrangements of code which shouldn't affect how it works get "
4651 "backported.  This is so that the code in the two branches doesn't get too "
4652 "far out of step, allowing us to backport future fixes more easily."
4653 msgstr ""
4654
4655 #. type: textblock
4656 #: ../src/guestfs.pod:2400
4657 msgid ""
4658 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4659 "exceptional case: the new feature is required in order to implement an "
4660 "important bug fix."
4661 msgstr ""
4662
4663 #. type: textblock
4664 #: ../src/guestfs.pod:2406
4665 msgid ""
4666 "A new stable branch starts when we think the new features in development are "
4667 "substantial and compelling enough over the current stable branch to warrant "
4668 "it.  When that happens we create new stable and development versions 1.N.0 "
4669 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4670 "stable at this point, but by backporting fixes from development, that branch "
4671 "will stabilize over time."
4672 msgstr ""
4673
4674 #. type: =head1
4675 #: ../src/guestfs.pod:2414
4676 msgid "EXTENDING LIBGUESTFS"
4677 msgstr ""
4678
4679 #. type: =head2
4680 #: ../src/guestfs.pod:2416
4681 msgid "ADDING A NEW API ACTION"
4682 msgstr ""
4683
4684 #. type: textblock
4685 #: ../src/guestfs.pod:2418
4686 msgid ""
4687 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4688 "documentation) are generated, and this makes it easy to extend the "
4689 "libguestfs API."
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2422
4694 msgid "To add a new API action there are two changes:"
4695 msgstr ""
4696
4697 #. type: textblock
4698 #: ../src/guestfs.pod:2428
4699 msgid ""
4700 "You need to add a description of the call (name, parameters, return type, "
4701 "tests, documentation) to C<generator/generator_actions.ml>."
4702 msgstr ""
4703
4704 #. type: textblock
4705 #: ../src/guestfs.pod:2431
4706 msgid ""
4707 "There are two sorts of API action, depending on whether the call goes "
4708 "through to the daemon in the appliance, or is serviced entirely by the "
4709 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4710 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4711 "an example of the latter, since a trace flag is maintained in the handle and "
4712 "all tracing is done on the library side."
4713 msgstr ""
4714
4715 #. type: textblock
4716 #: ../src/guestfs.pod:2439
4717 msgid ""
4718 "Most new actions are of the first type, and get added to the "
4719 "C<daemon_functions> list.  Each function has a unique procedure number used "
4720 "in the RPC protocol which is assigned to that action when we publish "
4721 "libguestfs and cannot be reused.  Take the latest procedure number and "
4722 "increment it."
4723 msgstr ""
4724
4725 #. type: textblock
4726 #: ../src/guestfs.pod:2445
4727 msgid ""
4728 "For library-only actions of the second type, add to the "
4729 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4730 "library and do not travel over the RPC mechanism to the daemon, these "
4731 "functions do not need a procedure number, and so the procedure number is set "
4732 "to C<-1>."
4733 msgstr ""
4734
4735 #. type: textblock
4736 #: ../src/guestfs.pod:2453
4737 msgid "Implement the action (in C):"
4738 msgstr ""
4739
4740 #. type: textblock
4741 #: ../src/guestfs.pod:2455
4742 msgid ""
4743 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4744 "C<daemon/> directory."
4745 msgstr ""
4746
4747 #. type: textblock
4748 #: ../src/guestfs.pod:2458
4749 msgid ""
4750 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4751 "(note: double underscore) in the C<src/> directory."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2461
4756 msgid "In either case, use another function as an example of what to do."
4757 msgstr ""
4758
4759 #. type: textblock
4760 #: ../src/guestfs.pod:2465
4761 msgid "After making these changes, use C<make> to compile."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2467
4766 msgid ""
4767 "Note that you don't need to implement the RPC, language bindings, manual "
4768 "pages or anything else.  It's all automatically generated from the OCaml "
4769 "description."
4770 msgstr ""
4771
4772 #. type: =head2
4773 #: ../src/guestfs.pod:2471
4774 msgid "ADDING TESTS FOR AN API ACTION"
4775 msgstr ""
4776
4777 #. type: textblock
4778 #: ../src/guestfs.pod:2473
4779 msgid ""
4780 "You can supply zero or as many tests as you want per API call.  The tests "
4781 "can either be added as part of the API description (C<generator/"
4782 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4783 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4784 "slower, so if possible use the first method."
4785 msgstr ""
4786
4787 #. type: textblock
4788 #: ../src/guestfs.pod:2479
4789 msgid ""
4790 "The following describes the test environment used when you add an API test "
4791 "in C<generator_actions.ml>."
4792 msgstr ""
4793
4794 #. type: textblock
4795 #: ../src/guestfs.pod:2482
4796 msgid "The test environment has 4 block devices:"
4797 msgstr ""
4798
4799 #. type: =item
4800 #: ../src/guestfs.pod:2486
4801 msgid "C</dev/sda> 500MB"
4802 msgstr ""
4803
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2488
4806 msgid "General block device for testing."
4807 msgstr ""
4808
4809 #. type: =item
4810 #: ../src/guestfs.pod:2490
4811 msgid "C</dev/sdb> 50MB"
4812 msgstr ""
4813
4814 #. type: textblock
4815 #: ../src/guestfs.pod:2492
4816 msgid ""
4817 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4818 "operations."
4819 msgstr ""
4820
4821 #. type: =item
4822 #: ../src/guestfs.pod:2495
4823 msgid "C</dev/sdc> 10MB"
4824 msgstr ""
4825
4826 #. type: textblock
4827 #: ../src/guestfs.pod:2497
4828 msgid "Used in a few tests where two block devices are needed."
4829 msgstr ""
4830
4831 #. type: =item
4832 #: ../src/guestfs.pod:2499
4833 msgid "C</dev/sdd>"
4834 msgstr "C</dev/sdd>"
4835
4836 #. type: textblock
4837 #: ../src/guestfs.pod:2501
4838 msgid "ISO with fixed content (see C<images/test.iso>)."
4839 msgstr ""
4840
4841 #. type: textblock
4842 #: ../src/guestfs.pod:2505
4843 msgid ""
4844 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4845 "appliance and block devices are reused between tests.  So don't try testing "
4846 "L</guestfs_kill_subprocess> :-x"
4847 msgstr ""
4848
4849 #. type: textblock
4850 #: ../src/guestfs.pod:2509
4851 msgid ""
4852 "Each test starts with an initial scenario, selected using one of the "
4853 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4854 "initialize the disks mentioned above in a particular way as documented in "
4855 "C<generator_types.ml>.  You should not assume anything about the previous "
4856 "contents of other disks that are not initialized."
4857 msgstr ""
4858
4859 #. type: textblock
4860 #: ../src/guestfs.pod:2515
4861 msgid ""
4862 "You can add a prerequisite clause to any individual test.  This is a run-"
4863 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4864 "testing a command which might not work on all variations of libguestfs "
4865 "builds.  A test that has prerequisite of C<Always> means to run "
4866 "unconditionally."
4867 msgstr ""
4868
4869 #. type: textblock
4870 #: ../src/guestfs.pod:2521
4871 msgid ""
4872 "In addition, packagers can skip individual tests by setting environment "
4873 "variables before running C<make check>."
4874 msgstr ""
4875
4876 #. type: verbatim
4877 #: ../src/guestfs.pod:2524
4878 #, no-wrap
4879 msgid ""
4880 " SKIP_TEST_<CMD>_<NUM>=1\n"
4881 "\n"
4882 msgstr ""
4883
4884 #. type: textblock
4885 #: ../src/guestfs.pod:2526
4886 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4887 msgstr ""
4888
4889 #. type: textblock
4890 #: ../src/guestfs.pod:2528
4891 msgid "or:"
4892 msgstr "або:"
4893
4894 #. type: verbatim
4895 #: ../src/guestfs.pod:2530
4896 #, no-wrap
4897 msgid ""
4898 " SKIP_TEST_<CMD>=1\n"
4899 "\n"
4900 msgstr ""
4901
4902 #. type: textblock
4903 #: ../src/guestfs.pod:2532
4904 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4905 msgstr ""
4906
4907 #. type: textblock
4908 #: ../src/guestfs.pod:2534
4909 msgid "Packagers can run only certain tests by setting for example:"
4910 msgstr ""
4911
4912 #. type: verbatim
4913 #: ../src/guestfs.pod:2536
4914 #, no-wrap
4915 msgid ""
4916 " TEST_ONLY=\"vfs_type zerofree\"\n"
4917 "\n"
4918 msgstr ""
4919
4920 #. type: textblock
4921 #: ../src/guestfs.pod:2538
4922 msgid ""
4923 "See C<capitests/tests.c> for more details of how these environment variables "
4924 "work."
4925 msgstr ""
4926
4927 #. type: =head2
4928 #: ../src/guestfs.pod:2541
4929 msgid "DEBUGGING NEW API ACTIONS"
4930 msgstr ""
4931
4932 #. type: textblock
4933 #: ../src/guestfs.pod:2543
4934 msgid "Test new actions work before submitting them."
4935 msgstr ""
4936
4937 #. type: textblock
4938 #: ../src/guestfs.pod:2545
4939 msgid "You can use guestfish to try out new commands."
4940 msgstr ""
4941
4942 #. type: textblock
4943 #: ../src/guestfs.pod:2547
4944 msgid ""
4945 "Debugging the daemon is a problem because it runs inside a minimal "
4946 "environment.  However you can fprintf messages in the daemon to stderr, and "
4947 "they will show up if you use C<guestfish -v>."
4948 msgstr ""
4949
4950 #. type: =head2
4951 #: ../src/guestfs.pod:2551
4952 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4953 msgstr ""
4954
4955 #. type: textblock
4956 #: ../src/guestfs.pod:2553
4957 msgid ""
4958 "Our C source code generally adheres to some basic code-formatting "
4959 "conventions.  The existing code base is not totally consistent on this "
4960 "front, but we do prefer that contributed code be formatted similarly.  In "
4961 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4962 "indentation level, and other than that, follow the K&R style."
4963 msgstr ""
4964
4965 #. type: textblock
4966 #: ../src/guestfs.pod:2559
4967 msgid ""
4968 "If you use Emacs, add the following to one of one of your start-up files (e."
4969 "g., ~/.emacs), to help ensure that you get indentation right:"
4970 msgstr ""
4971
4972 #. type: verbatim
4973 #: ../src/guestfs.pod:2562
4974 #, no-wrap
4975 msgid ""
4976 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4977 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4978 " (add-hook 'find-file-hook\n"
4979 "     '(lambda () (if (and buffer-file-name\n"
4980 "                          (string-match \"/libguestfs\\\\>\"\n"
4981 "                              (buffer-file-name))\n"
4982 "                          (not (string-equal mode-name \"Change Log\"))\n"
4983 "                          (not (string-equal mode-name \"Makefile\")))\n"
4984 "                     (setq indent-tabs-mode nil))))\n"
4985 " \n"
4986 msgstr ""
4987
4988 #. type: verbatim
4989 #: ../src/guestfs.pod:2572
4990 #, no-wrap
4991 msgid ""
4992 " ;;; When editing C sources in libguestfs, use this style.\n"
4993 " (defun libguestfs-c-mode ()\n"
4994 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4995 "   (interactive)\n"
4996 "   (c-set-style \"K&R\")\n"
4997 "   (setq c-indent-level 2)\n"
4998 "   (setq c-basic-offset 2))\n"
4999 " (add-hook 'c-mode-hook\n"
5000 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5001 "                               (buffer-file-name))\n"
5002 "                           (libguestfs-c-mode))))\n"
5003 "\n"
5004 msgstr ""
5005
5006 #. type: textblock
5007 #: ../src/guestfs.pod:2584
5008 msgid "Enable warnings when compiling (and fix any problems this finds):"
5009 msgstr ""
5010
5011 #. type: verbatim
5012 #: ../src/guestfs.pod:2587
5013 #, no-wrap
5014 msgid ""
5015 " ./configure --enable-gcc-warnings\n"
5016 "\n"
5017 msgstr ""
5018
5019 #. type: textblock
5020 #: ../src/guestfs.pod:2589
5021 msgid "Useful targets are:"
5022 msgstr ""
5023
5024 #. type: verbatim
5025 #: ../src/guestfs.pod:2591
5026 #, no-wrap
5027 msgid ""
5028 " make syntax-check  # checks the syntax of the C code\n"
5029 " make check         # runs the test suite\n"
5030 "\n"
5031 msgstr ""
5032
5033 #. type: =head2
5034 #: ../src/guestfs.pod:2594
5035 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5036 msgstr ""
5037
5038 #. type: textblock
5039 #: ../src/guestfs.pod:2596
5040 msgid ""
5041 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5042 "which are used to do shell quoting."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2601
5047 msgid "%Q"
5048 msgstr "%Q"
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2603
5052 msgid ""
5053 "Simple shell quoted string.  Any spaces or other shell characters are "
5054 "escaped for you."
5055 msgstr ""
5056
5057 #. type: =item
5058 #: ../src/guestfs.pod:2606
5059 msgid "%R"
5060 msgstr "%R"
5061
5062 #. type: textblock
5063 #: ../src/guestfs.pod:2608
5064 msgid ""
5065 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5066 "the sysroot."
5067 msgstr ""
5068
5069 #. type: textblock
5070 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
5071 msgid "For example:"
5072 msgstr "Приклад:"
5073
5074 #. type: verbatim
5075 #: ../src/guestfs.pod:2615
5076 #, no-wrap
5077 msgid ""
5078 " asprintf (&cmd, \"cat %R\", path);\n"
5079 "\n"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2617
5084 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5085 msgstr ""
5086
5087 #. type: textblock
5088 #: ../src/guestfs.pod:2619
5089 msgid ""
5090 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5091 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5092 "they are not passed via the shell (instead, straight to exec).  You probably "
5093 "want to use the C<sysroot_path()> function however."
5094 msgstr ""
5095
5096 #. type: =head2
5097 #: ../src/guestfs.pod:2625
5098 msgid "SUBMITTING YOUR NEW API ACTIONS"
5099 msgstr ""
5100
5101 #. type: textblock
5102 #: ../src/guestfs.pod:2627
5103 msgid ""
5104 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5105 "libguestfs> and CC to L<rjones@redhat.com>."
5106 msgstr ""
5107
5108 #. type: =head2
5109 #: ../src/guestfs.pod:2631
5110 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5111 msgstr ""
5112
5113 #. type: textblock
5114 #: ../src/guestfs.pod:2633
5115 msgid "We support i18n (gettext anyhow) in the library."
5116 msgstr ""
5117
5118 #. type: textblock
5119 #: ../src/guestfs.pod:2635
5120 msgid ""
5121 "However many messages come from the daemon, and we don't translate those at "
5122 "the moment.  One reason is that the appliance generally has all locale files "
5123 "removed from it, because they take up a lot of space.  So we'd have to readd "
5124 "some of those, as well as copying our PO files into the appliance."
5125 msgstr ""
5126
5127 #. type: textblock
5128 #: ../src/guestfs.pod:2641
5129 msgid ""
5130 "Debugging messages are never translated, since they are intended for the "
5131 "programmers."
5132 msgstr ""
5133
5134 #. type: =head2
5135 #: ../src/guestfs.pod:2644
5136 msgid "SOURCE CODE SUBDIRECTORIES"
5137 msgstr ""
5138
5139 #. type: =item
5140 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:6163
5141 #: ../fish/guestfish-actions.pod:4066
5142 msgid "C<appliance>"
5143 msgstr "C<appliance>"
5144
5145 #. type: textblock
5146 #: ../src/guestfs.pod:2650
5147 msgid "The libguestfs appliance, build scripts and so on."
5148 msgstr ""
5149
5150 #. type: =item
5151 #: ../src/guestfs.pod:2652
5152 msgid "C<capitests>"
5153 msgstr "C<capitests>"
5154
5155 #. type: textblock
5156 #: ../src/guestfs.pod:2654
5157 msgid "Automated tests of the C API."
5158 msgstr ""
5159
5160 #. type: =item
5161 #: ../src/guestfs.pod:2656
5162 msgid "C<cat>"
5163 msgstr "C<cat>"
5164
5165 #. type: textblock
5166 #: ../src/guestfs.pod:2658
5167 msgid ""
5168 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5169 "documentation."
5170 msgstr ""
5171
5172 #. type: =item
5173 #: ../src/guestfs.pod:2661
5174 #, fuzzy
5175 #| msgid "C<cat>"
5176 msgid "C<caution>"
5177 msgstr "C<cat>"
5178
5179 #. type: textblock
5180 #: ../src/guestfs.pod:2663
5181 msgid ""
5182 "Safety and liveness tests of components that libguestfs depends upon (not of "
5183 "libguestfs itself).  Mainly this is for qemu and the kernel."
5184 msgstr ""
5185
5186 #. type: =item
5187 #: ../src/guestfs.pod:2666
5188 msgid "C<contrib>"
5189 msgstr "C<contrib>"
5190
5191 #. type: textblock
5192 #: ../src/guestfs.pod:2668
5193 msgid "Outside contributions, experimental parts."
5194 msgstr ""
5195
5196 #. type: =item
5197 #: ../src/guestfs.pod:2670
5198 msgid "C<daemon>"
5199 msgstr "C<daemon>"
5200
5201 #. type: textblock
5202 #: ../src/guestfs.pod:2672
5203 msgid ""
5204 "The daemon that runs inside the libguestfs appliance and carries out actions."
5205 msgstr ""
5206
5207 #. type: =item
5208 #: ../src/guestfs.pod:2675
5209 msgid "C<df>"
5210 msgstr "C<df>"
5211
5212 #. type: textblock
5213 #: ../src/guestfs.pod:2677
5214 msgid "L<virt-df(1)> command and documentation."
5215 msgstr ""
5216
5217 #. type: =item
5218 #: ../src/guestfs.pod:2679
5219 msgid "C<edit>"
5220 msgstr ""
5221
5222 #. type: textblock
5223 #: ../src/guestfs.pod:2681
5224 msgid "L<virt-edit(1)> command and documentation."
5225 msgstr ""
5226
5227 #. type: =item
5228 #: ../src/guestfs.pod:2683
5229 msgid "C<examples>"
5230 msgstr "C<examples>"
5231
5232 #. type: textblock
5233 #: ../src/guestfs.pod:2685
5234 msgid "C API example code."
5235 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5236
5237 #. type: =item
5238 #: ../src/guestfs.pod:2687
5239 msgid "C<fish>"
5240 msgstr "C<fish>"
5241
5242 #. type: textblock
5243 #: ../src/guestfs.pod:2689
5244 msgid ""
5245 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5246 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5247 "L<virt-tar-out(1)>."
5248 msgstr ""
5249
5250 #. type: =item
5251 #: ../src/guestfs.pod:2693
5252 msgid "C<fuse>"
5253 msgstr "C<fuse>"
5254
5255 #. type: textblock
5256 #: ../src/guestfs.pod:2695
5257 msgid ""
5258 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5259 msgstr ""
5260
5261 #. type: =item
5262 #: ../src/guestfs.pod:2697
5263 msgid "C<generator>"
5264 msgstr "C<generator>"
5265
5266 #. type: textblock
5267 #: ../src/guestfs.pod:2699
5268 msgid ""
5269 "The crucially important generator, used to automatically generate large "
5270 "amounts of boilerplate C code for things like RPC and bindings."
5271 msgstr ""
5272
5273 #. type: =item
5274 #: ../src/guestfs.pod:2702
5275 msgid "C<images>"
5276 msgstr "C<images>"
5277
5278 #. type: textblock
5279 #: ../src/guestfs.pod:2704
5280 msgid "Files used by the test suite."
5281 msgstr ""
5282
5283 #. type: textblock
5284 #: ../src/guestfs.pod:2706
5285 msgid "Some \"phony\" guest images which we test against."
5286 msgstr ""
5287
5288 #. type: =item
5289 #: ../src/guestfs.pod:2708
5290 msgid "C<inspector>"
5291 msgstr "C<inspector>"
5292
5293 #. type: textblock
5294 #: ../src/guestfs.pod:2710
5295 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5296 msgstr ""
5297
5298 #. type: =item
5299 #: ../src/guestfs.pod:2712
5300 msgid "C<logo>"
5301 msgstr "C<logo>"
5302
5303 #. type: textblock
5304 #: ../src/guestfs.pod:2714
5305 msgid "Logo used on the website.  The fish is called Arthur by the way."
5306 msgstr ""
5307
5308 #. type: =item
5309 #: ../src/guestfs.pod:2716
5310 msgid "C<m4>"
5311 msgstr "C<m4>"
5312
5313 #. type: textblock
5314 #: ../src/guestfs.pod:2718
5315 msgid "M4 macros used by autoconf."
5316 msgstr ""
5317
5318 #. type: =item
5319 #: ../src/guestfs.pod:2720
5320 msgid "C<po>"
5321 msgstr "C<po>"
5322
5323 #. type: textblock
5324 #: ../src/guestfs.pod:2722
5325 msgid "Translations of simple gettext strings."
5326 msgstr "Переклади простих рядків gettext."
5327
5328 #. type: =item
5329 #: ../src/guestfs.pod:2724
5330 msgid "C<po-docs>"
5331 msgstr "C<po-docs>"
5332
5333 #. type: textblock
5334 #: ../src/guestfs.pod:2726
5335 msgid ""
5336 "The build infrastructure and PO files for translations of manpages and POD "
5337 "files.  Eventually this will be combined with the C<po> directory, but that "
5338 "is rather complicated."
5339 msgstr ""
5340
5341 #. type: =item
5342 #: ../src/guestfs.pod:2730
5343 msgid "C<regressions>"
5344 msgstr "C<regressions>"
5345
5346 #. type: textblock
5347 #: ../src/guestfs.pod:2732
5348 msgid "Regression tests."
5349 msgstr "Тести на регресії."
5350
5351 #. type: =item
5352 #: ../src/guestfs.pod:2734
5353 msgid "C<rescue>"
5354 msgstr "C<rescue>"
5355
5356 #. type: textblock
5357 #: ../src/guestfs.pod:2736
5358 msgid "L<virt-rescue(1)> command and documentation."
5359 msgstr ""
5360
5361 #. type: =item
5362 #: ../src/guestfs.pod:2738
5363 msgid "C<src>"
5364 msgstr "C<src>"
5365
5366 #. type: textblock
5367 #: ../src/guestfs.pod:2740
5368 msgid "Source code to the C library."
5369 msgstr ""
5370
5371 #. type: =item
5372 #: ../src/guestfs.pod:2742
5373 msgid "C<tools>"
5374 msgstr "C<tools>"
5375
5376 #. type: textblock
5377 #: ../src/guestfs.pod:2744
5378 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5379 msgstr ""
5380
5381 #. type: =item
5382 #: ../src/guestfs.pod:2746
5383 msgid "C<test-tool>"
5384 msgstr "C<test-tool>"
5385
5386 #. type: textblock
5387 #: ../src/guestfs.pod:2748
5388 msgid ""
5389 "Test tool for end users to test if their qemu/kernel combination will work "
5390 "with libguestfs."
5391 msgstr ""
5392
5393 #. type: =item
5394 #: ../src/guestfs.pod:2751
5395 msgid "C<csharp>"
5396 msgstr "C<csharp>"
5397
5398 #. type: =item
5399 #: ../src/guestfs.pod:2753
5400 msgid "C<haskell>"
5401 msgstr "C<haskell>"
5402
5403 #. type: =item
5404 #: ../src/guestfs.pod:2755
5405 msgid "C<java>"
5406 msgstr "C<java>"
5407
5408 #. type: =item
5409 #: ../src/guestfs.pod:2757
5410 msgid "C<ocaml>"
5411 msgstr "C<ocaml>"
5412
5413 #. type: =item
5414 #: ../src/guestfs.pod:2759
5415 msgid "C<php>"
5416 msgstr "C<php>"
5417
5418 #. type: =item
5419 #: ../src/guestfs.pod:2761
5420 msgid "C<perl>"
5421 msgstr "C<perl>"
5422
5423 #. type: =item
5424 #: ../src/guestfs.pod:2763
5425 msgid "C<python>"
5426 msgstr "C<python>"
5427
5428 #. type: =item
5429 #: ../src/guestfs.pod:2765
5430 msgid "C<ruby>"
5431 msgstr "C<ruby>"
5432
5433 #. type: textblock
5434 #: ../src/guestfs.pod:2767
5435 msgid "Language bindings."
5436 msgstr "Прив’язки до мов програмування."
5437
5438 #. type: =head1
5439 #: ../src/guestfs.pod:2771
5440 msgid "LIMITS"
5441 msgstr ""
5442
5443 #. type: =head2
5444 #: ../src/guestfs.pod:2773
5445 msgid "PROTOCOL LIMITS"
5446 msgstr ""
5447
5448 #. type: textblock
5449 #: ../src/guestfs.pod:2775
5450 msgid ""
5451 "Internally libguestfs uses a message-based protocol to pass API calls and "
5452 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5453 "plenty more detail about this).  The maximum message size used by the "
5454 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5455 "aware of this limit.  The API calls which may be affected are individually "
5456 "documented, with a link back to this section of the documentation."
5457 msgstr ""
5458
5459 #. type: textblock
5460 #: ../src/guestfs.pod:2783
5461 msgid ""
5462 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5463 "a simple string.  Because this string is at some point internally encoded as "
5464 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5465 "the requested file is larger than this then you will get an error."
5466 msgstr ""
5467
5468 #. type: textblock
5469 #: ../src/guestfs.pod:2789
5470 msgid ""
5471 "In order to transfer large files into and out of the guest filesystem, you "
5472 "need to use particular calls that support this.  The sections L</UPLOADING> "
5473 "and L</DOWNLOADING> document how to do this."
5474 msgstr ""
5475
5476 #. type: textblock
5477 #: ../src/guestfs.pod:2793
5478 msgid ""
5479 "You might also consider mounting the disk image using our FUSE filesystem "
5480 "support (L<guestmount(1)>)."
5481 msgstr ""
5482
5483 #. type: =head2
5484 #: ../src/guestfs.pod:2796
5485 msgid "MAXIMUM NUMBER OF DISKS"
5486 msgstr ""
5487
5488 #. type: textblock
5489 #: ../src/guestfs.pod:2798
5490 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5491 msgstr ""
5492
5493 #. type: textblock
5494 #: ../src/guestfs.pod:2801
5495 msgid ""
5496 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5497 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5498 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5499 "purposes."
5500 msgstr ""
5501
5502 #. type: textblock
5503 #: ../src/guestfs.pod:2806
5504 msgid ""
5505 "We are working to substantially raise this limit in future versions but it "
5506 "requires complex changes to qemu."
5507 msgstr ""
5508
5509 #. type: textblock
5510 #: ../src/guestfs.pod:2809
5511 msgid ""
5512 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5513 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5514 "requires changes to qemu."
5515 msgstr ""
5516
5517 #. type: =head2
5518 #: ../src/guestfs.pod:2813
5519 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs.pod:2815
5524 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5525 msgstr ""
5526
5527 #. type: textblock
5528 #: ../src/guestfs.pod:2817
5529 msgid ""
5530 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5531 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5532 msgstr ""
5533
5534 #. type: textblock
5535 #: ../src/guestfs.pod:2820
5536 msgid ""
5537 "If you attach a disk with more than 15 partitions, the extra partitions are "
5538 "ignored by libguestfs."
5539 msgstr ""
5540
5541 #. type: =head2
5542 #: ../src/guestfs.pod:2823
5543 msgid "MAXIMUM SIZE OF A DISK"
5544 msgstr ""
5545
5546 #. type: textblock
5547 #: ../src/guestfs.pod:2825
5548 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2827
5553 msgid ""
5554 "We have tested block devices up to 1 exabyte (2**60 or "
5555 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5556 "filesystem."
5557 msgstr ""
5558
5559 #. type: textblock
5560 #: ../src/guestfs.pod:2831
5561 msgid ""
5562 "Although libguestfs probably does not impose any limit, the underlying host "
5563 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5564 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5565 "TB).  If you store disk images as host logical volumes then you are limited "
5566 "by the maximum size of an LV."
5567 msgstr ""
5568
5569 #. type: textblock
5570 #: ../src/guestfs.pod:2837
5571 msgid ""
5572 "For the hugest disk image files, we recommend using XFS on the host for "
5573 "storage."
5574 msgstr ""
5575
5576 #. type: =head2
5577 #: ../src/guestfs.pod:2840
5578 msgid "MAXIMUM SIZE OF A PARTITION"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2842
5583 msgid ""
5584 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5585 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5586 "address a partition located beyond 2 TB on the disk."
5587 msgstr ""
5588
5589 #. type: textblock
5590 #: ../src/guestfs.pod:2846
5591 msgid ""
5592 "It is recommended that you use GPT partitions on disks which are larger than "
5593 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5594 "which are theoretically larger than the largest disk we could support."
5595 msgstr ""
5596
5597 #. type: =head2
5598 #: ../src/guestfs.pod:2851
5599 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5600 msgstr ""
5601
5602 #. type: textblock
5603 #: ../src/guestfs.pod:2853
5604 msgid ""
5605 "This depends on the filesystem type.  libguestfs itself does not impose any "
5606 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5607 "what these limits are."
5608 msgstr ""
5609
5610 #. type: =head2
5611 #: ../src/guestfs.pod:2857
5612 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5613 msgstr ""
5614
5615 #. type: textblock
5616 #: ../src/guestfs.pod:2859
5617 msgid ""
5618 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5619 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5620 "uploads and downloads."
5621 msgstr ""
5622
5623 #. type: =head2
5624 #: ../src/guestfs.pod:2863
5625 #, fuzzy
5626 #| msgid "INSPECTION"
5627 msgid "INSPECTION LIMITS"
5628 msgstr "ПЕРЕВІРКА"
5629
5630 #. type: textblock
5631 #: ../src/guestfs.pod:2865
5632 msgid ""
5633 "The inspection code has several arbitrary limits on things like the size of "
5634 "Windows Registry hive it will read, and the length of product name.  These "
5635 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5636 "memory and disk space on the host, and should not be reached in practice.  "
5637 "See the source code for more information."
5638 msgstr ""
5639
5640 #. type: =head1
5641 #: ../src/guestfs.pod:2871 ../fish/guestfish.pod:1017
5642 #: ../test-tool/libguestfs-test-tool.pod:82
5643 msgid "ENVIRONMENT VARIABLES"
5644 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5645
5646 #. type: =item
5647 #: ../src/guestfs.pod:2875 ../fish/guestfish.pod:1048
5648 msgid "LIBGUESTFS_APPEND"
5649 msgstr ""
5650
5651 #. type: textblock
5652 #: ../src/guestfs.pod:2877 ../fish/guestfish.pod:1050
5653 msgid "Pass additional options to the guest kernel."
5654 msgstr ""
5655
5656 #. type: =item
5657 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5658 msgid "LIBGUESTFS_DEBUG"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2881
5663 msgid ""
5664 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5665 "effect as calling C<guestfs_set_verbose (g, 1)>."
5666 msgstr ""
5667
5668 #. type: =item
5669 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5670 msgid "LIBGUESTFS_MEMSIZE"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5675 msgid ""
5676 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5677 msgstr ""
5678
5679 #. type: verbatim
5680 #: ../src/guestfs.pod:2889 ../fish/guestfish.pod:1062
5681 #, no-wrap
5682 msgid ""
5683 " LIBGUESTFS_MEMSIZE=700\n"
5684 "\n"
5685 msgstr ""
5686
5687 #. type: =item
5688 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5689 msgid "LIBGUESTFS_PATH"
5690 msgstr ""
5691
5692 #. type: textblock
5693 #: ../src/guestfs.pod:2893
5694 msgid ""
5695 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5696 "the discussion of paths in section L</PATH> above."
5697 msgstr ""
5698
5699 #. type: =item
5700 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1069
5701 msgid "LIBGUESTFS_QEMU"
5702 msgstr ""
5703
5704 #. type: textblock
5705 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1071
5706 msgid ""
5707 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5708 "which was found at compile time by the configure script is used."
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs.pod:2902
5713 msgid "See also L</QEMU WRAPPERS> above."
5714 msgstr ""
5715
5716 #. type: =item
5717 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1075
5718 msgid "LIBGUESTFS_TRACE"
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs.pod:2906
5723 msgid ""
5724 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5725 "effect as calling C<guestfs_set_trace (g, 1)>."
5726 msgstr ""
5727
5728 #. type: =item
5729 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5730 msgid "TMPDIR"
5731 msgstr ""
5732
5733 #. type: textblock
5734 #: ../src/guestfs.pod:2911 ../fish/guestfish.pod:1086
5735 msgid ""
5736 "Location of temporary directory, defaults to C</tmp> except for the cached "
5737 "supermin appliance which defaults to C</var/tmp>."
5738 msgstr ""
5739
5740 #. type: textblock
5741 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1089
5742 msgid ""
5743 "If libguestfs was compiled to use the supermin appliance then the real "
5744 "appliance is cached in this directory, shared between all handles belonging "
5745 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5746 "use in case C</var/tmp> is not large enough."
5747 msgstr ""
5748
5749 #. type: =head1
5750 #: ../src/guestfs.pod:2922 ../fish/guestfish.pod:1156
5751 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279
5752 #: ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189
5753 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539
5754 #: ../tools/virt-list-partitions.pl:257
5755 msgid "SEE ALSO"
5756 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5757
5758 #. type: textblock
5759 #: ../src/guestfs.pod:2924
5760 msgid ""
5761 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5762 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5763 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5764 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5765 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5766 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5767 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5768 msgstr ""
5769
5770 #. type: textblock
5771 #: ../src/guestfs.pod:2951
5772 msgid ""
5773 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5774 "(8)>, L<disktype(1)>."
5775 msgstr ""
5776
5777 #. type: =head1
5778 #: ../src/guestfs.pod:2958 ../tools/virt-win-reg.pl:759
5779 #: ../tools/virt-make-fs.pl:553
5780 msgid "BUGS"
5781 msgstr "ВАДИ"
5782
5783 #. type: textblock
5784 #: ../src/guestfs.pod:2960
5785 msgid "To get a list of bugs against libguestfs use this link:"
5786 msgstr ""
5787 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5788 "посиланням:"
5789
5790 #. type: textblock
5791 #: ../src/guestfs.pod:2962
5792 msgid ""
5793 "L<https://bugzilla.redhat.com/buglist.cgi?"
5794 "component=libguestfs&product=Virtualization+Tools>"
5795 msgstr ""
5796 "L<https://bugzilla.redhat.com/buglist.cgi?"
5797 "component=libguestfs&product=Virtualization+Tools>"
5798
5799 #. type: textblock
5800 #: ../src/guestfs.pod:2964
5801 msgid "To report a new bug against libguestfs use this link:"
5802 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5803
5804 #. type: textblock
5805 #: ../src/guestfs.pod:2966
5806 msgid ""
5807 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5808 "component=libguestfs&product=Virtualization+Tools>"
5809 msgstr ""
5810 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5811 "component=libguestfs&product=Virtualization+Tools>"
5812
5813 #. type: textblock
5814 #: ../src/guestfs.pod:2968
5815 msgid "When reporting a bug, please check:"
5816 msgstr ""
5817
5818 #. type: textblock
5819 #: ../src/guestfs.pod:2974
5820 msgid "That the bug hasn't been reported already."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs.pod:2978
5825 msgid "That you are testing a recent version."
5826 msgstr ""
5827
5828 #. type: textblock
5829 #: ../src/guestfs.pod:2982
5830 msgid "Describe the bug accurately, and give a way to reproduce it."
5831 msgstr ""
5832
5833 #. type: textblock
5834 #: ../src/guestfs.pod:2986
5835 msgid ""
5836 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5837 "bug report."
5838 msgstr ""
5839
5840 #. type: =head1
5841 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1180
5842 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5843 msgid "AUTHORS"
5844 msgstr "АВТОРИ"
5845
5846 #. type: textblock
5847 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1182
5848 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5849 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5850 msgstr ""
5851
5852 #. type: =head1
5853 #: ../src/guestfs.pod:2995 ../fish/guestfish.pod:1184
5854 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294
5855 #: ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206
5856 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568
5857 #: ../tools/virt-list-partitions.pl:273
5858 msgid "COPYRIGHT"
5859 msgstr "АВТОРСЬКІ ПРАВА"
5860
5861 #. type: textblock
5862 #: ../src/guestfs.pod:2997 ../fish/guestfish.pod:1186
5863 #: ../test-tool/libguestfs-test-tool.pod:99
5864 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5865 msgstr ""
5866
5867 #. type: textblock
5868 #: ../src/guestfs.pod:3000
5869 msgid ""
5870 "This library is free software; you can redistribute it and/or modify it "
5871 "under the terms of the GNU Lesser General Public License as published by the "
5872 "Free Software Foundation; either version 2 of the License, or (at your "
5873 "option) any later version."
5874 msgstr ""
5875
5876 #. type: textblock
5877 #: ../src/guestfs.pod:3005
5878 msgid ""
5879 "This library is distributed in the hope that it will be useful, but WITHOUT "
5880 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5881 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5882 "for more details."
5883 msgstr ""
5884
5885 #. type: textblock
5886 #: ../src/guestfs.pod:3010
5887 msgid ""
5888 "You should have received a copy of the GNU Lesser General Public License "
5889 "along with this library; if not, write to the Free Software Foundation, "
5890 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5891 msgstr ""
5892
5893 #. type: =head2
5894 #: ../src/guestfs-actions.pod:1
5895 msgid "guestfs_add_cdrom"
5896 msgstr ""
5897
5898 #. type: verbatim
5899 #: ../src/guestfs-actions.pod:3
5900 #, no-wrap
5901 msgid ""
5902 " int\n"
5903 " guestfs_add_cdrom (guestfs_h *g,\n"
5904 "                    const char *filename);\n"
5905 "\n"
5906 msgstr ""
5907
5908 #. type: textblock
5909 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5910 msgid "This function adds a virtual CD-ROM disk image to the guest."
5911 msgstr ""
5912
5913 #. type: textblock
5914 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5915 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5916 msgstr ""
5917
5918 #. type: textblock
5919 #: ../src/guestfs-actions.pod:17
5920 msgid ""
5921 "This call checks for the existence of C<filename>.  This stops you from "
5922 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5923 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5924 "instead."
5925 msgstr ""
5926
5927 #. type: textblock
5928 #: ../src/guestfs-actions.pod:24
5929 msgid ""
5930 "If you just want to add an ISO file (often you use this as an efficient way "
5931 "to transfer large files into the guest), then you should probably use "
5932 "C<guestfs_add_drive_ro> instead."
5933 msgstr ""
5934
5935 #. type: textblock
5936 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
5937 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
5938 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
5939 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
5940 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
5941 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
5942 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
5943 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
5944 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
5945 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
5946 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
5947 #: ../src/guestfs-actions.pod:858 ../src/guestfs-actions.pod:1039
5948 #: ../src/guestfs-actions.pod:1059 ../src/guestfs-actions.pod:1077
5949 #: ../src/guestfs-actions.pod:1161 ../src/guestfs-actions.pod:1179
5950 #: ../src/guestfs-actions.pod:1198 ../src/guestfs-actions.pod:1212
5951 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1302
5952 #: ../src/guestfs-actions.pod:1333 ../src/guestfs-actions.pod:1358
5953 #: ../src/guestfs-actions.pod:1400 ../src/guestfs-actions.pod:1506
5954 #: ../src/guestfs-actions.pod:1540 ../src/guestfs-actions.pod:1755
5955 #: ../src/guestfs-actions.pod:1777 ../src/guestfs-actions.pod:1864
5956 #: ../src/guestfs-actions.pod:2328 ../src/guestfs-actions.pod:2472
5957 #: ../src/guestfs-actions.pod:2533 ../src/guestfs-actions.pod:2568
5958 #: ../src/guestfs-actions.pod:3608 ../src/guestfs-actions.pod:3623
5959 #: ../src/guestfs-actions.pod:3648 ../src/guestfs-actions.pod:3837
5960 #: ../src/guestfs-actions.pod:3851 ../src/guestfs-actions.pod:3864
5961 #: ../src/guestfs-actions.pod:3878 ../src/guestfs-actions.pod:3893
5962 #: ../src/guestfs-actions.pod:3929 ../src/guestfs-actions.pod:4001
5963 #: ../src/guestfs-actions.pod:4021 ../src/guestfs-actions.pod:4038
5964 #: ../src/guestfs-actions.pod:4061 ../src/guestfs-actions.pod:4084
5965 #: ../src/guestfs-actions.pod:4119 ../src/guestfs-actions.pod:4138
5966 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4192
5967 #: ../src/guestfs-actions.pod:4204 ../src/guestfs-actions.pod:4240
5968 #: ../src/guestfs-actions.pod:4256 ../src/guestfs-actions.pod:4269
5969 #: ../src/guestfs-actions.pod:4284 ../src/guestfs-actions.pod:4301
5970 #: ../src/guestfs-actions.pod:4394 ../src/guestfs-actions.pod:4414
5971 #: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:4478
5972 #: ../src/guestfs-actions.pod:4496 ../src/guestfs-actions.pod:4514
5973 #: ../src/guestfs-actions.pod:4530 ../src/guestfs-actions.pod:4544
5974 #: ../src/guestfs-actions.pod:4558 ../src/guestfs-actions.pod:4575
5975 #: ../src/guestfs-actions.pod:4590 ../src/guestfs-actions.pod:4610
5976 #: ../src/guestfs-actions.pod:4680 ../src/guestfs-actions.pod:4753
5977 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4803
5978 #: ../src/guestfs-actions.pod:4822 ../src/guestfs-actions.pod:4834
5979 #: ../src/guestfs-actions.pod:4851 ../src/guestfs-actions.pod:4864
5980 #: ../src/guestfs-actions.pod:4879 ../src/guestfs-actions.pod:4894
5981 #: ../src/guestfs-actions.pod:4929 ../src/guestfs-actions.pod:4962
5982 #: ../src/guestfs-actions.pod:5001 ../src/guestfs-actions.pod:5021
5983 #: ../src/guestfs-actions.pod:5035 ../src/guestfs-actions.pod:5052
5984 #: ../src/guestfs-actions.pod:5101 ../src/guestfs-actions.pod:5147
5985 #: ../src/guestfs-actions.pod:5201 ../src/guestfs-actions.pod:5237
5986 #: ../src/guestfs-actions.pod:5272 ../src/guestfs-actions.pod:5289
5987 #: ../src/guestfs-actions.pod:5307 ../src/guestfs-actions.pod:5441
5988 #: ../src/guestfs-actions.pod:5498 ../src/guestfs-actions.pod:5520
5989 #: ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5570
5990 #: ../src/guestfs-actions.pod:5636 ../src/guestfs-actions.pod:5653
5991 #: ../src/guestfs-actions.pod:5666 ../src/guestfs-actions.pod:5680
5992 #: ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:5988
5993 #: ../src/guestfs-actions.pod:6007 ../src/guestfs-actions.pod:6021
5994 #: ../src/guestfs-actions.pod:6033 ../src/guestfs-actions.pod:6047
5995 #: ../src/guestfs-actions.pod:6059 ../src/guestfs-actions.pod:6073
5996 #: ../src/guestfs-actions.pod:6089 ../src/guestfs-actions.pod:6110
5997 #: ../src/guestfs-actions.pod:6129 ../src/guestfs-actions.pod:6148
5998 #: ../src/guestfs-actions.pod:6178 ../src/guestfs-actions.pod:6196
5999 #: ../src/guestfs-actions.pod:6219 ../src/guestfs-actions.pod:6237
6000 #: ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6277
6001 #: ../src/guestfs-actions.pod:6296 ../src/guestfs-actions.pod:6313
6002 #: ../src/guestfs-actions.pod:6341 ../src/guestfs-actions.pod:6365
6003 #: ../src/guestfs-actions.pod:6384 ../src/guestfs-actions.pod:6408
6004 #: ../src/guestfs-actions.pod:6427 ../src/guestfs-actions.pod:6442
6005 #: ../src/guestfs-actions.pod:6461 ../src/guestfs-actions.pod:6498
6006 #: ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6561
6007 #: ../src/guestfs-actions.pod:6683 ../src/guestfs-actions.pod:6804
6008 #: ../src/guestfs-actions.pod:6816 ../src/guestfs-actions.pod:6829
6009 #: ../src/guestfs-actions.pod:6842 ../src/guestfs-actions.pod:6864
6010 #: ../src/guestfs-actions.pod:6877 ../src/guestfs-actions.pod:6890
6011 #: ../src/guestfs-actions.pod:6903 ../src/guestfs-actions.pod:6918
6012 #: ../src/guestfs-actions.pod:6977 ../src/guestfs-actions.pod:6994
6013 #: ../src/guestfs-actions.pod:7010 ../src/guestfs-actions.pod:7026
6014 #: ../src/guestfs-actions.pod:7043 ../src/guestfs-actions.pod:7056
6015 #: ../src/guestfs-actions.pod:7076 ../src/guestfs-actions.pod:7112
6016 #: ../src/guestfs-actions.pod:7126 ../src/guestfs-actions.pod:7167
6017 #: ../src/guestfs-actions.pod:7180 ../src/guestfs-actions.pod:7198
6018 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7268
6019 #: ../src/guestfs-actions.pod:7384 ../src/guestfs-actions.pod:7399
6020 #: ../src/guestfs-actions.pod:7413 ../src/guestfs-actions.pod:7468
6021 #: ../src/guestfs-actions.pod:7481 ../src/guestfs-actions.pod:7526
6022 #: ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7620
6023 #: ../src/guestfs-actions.pod:7646 ../src/guestfs-actions.pod:7713
6024 #: ../src/guestfs-actions.pod:7732 ../src/guestfs-actions.pod:7761
6025 msgid "This function returns 0 on success or -1 on error."
6026 msgstr ""
6027
6028 #. type: textblock
6029 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6030 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6031 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6032 msgid ""
6033 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6034 "instead."
6035 msgstr ""
6036
6037 #. type: textblock
6038 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6039 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1511
6040 #: ../src/guestfs-actions.pod:2006 ../src/guestfs-actions.pod:2027
6041 #: ../src/guestfs-actions.pod:4615 ../src/guestfs-actions.pod:4934
6042 #: ../src/guestfs-actions.pod:5152 ../src/guestfs-actions.pod:5242
6043 #: ../src/guestfs-actions.pod:6506 ../src/guestfs-actions.pod:6536
6044 #: ../src/guestfs-actions.pod:6569 ../src/guestfs-actions.pod:6628
6045 #: ../src/guestfs-actions.pod:7564 ../src/guestfs-actions.pod:7654
6046 #: ../src/guestfs-actions.pod:7824 ../fish/guestfish-actions.pod:31
6047 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6048 #: ../fish/guestfish-actions.pod:986 ../fish/guestfish-actions.pod:1346
6049 #: ../fish/guestfish-actions.pod:1360 ../fish/guestfish-actions.pod:3079
6050 #: ../fish/guestfish-actions.pod:3286 ../fish/guestfish-actions.pod:3400
6051 #: ../fish/guestfish-actions.pod:3448 ../fish/guestfish-actions.pod:4328
6052 #: ../fish/guestfish-actions.pod:4351 ../fish/guestfish-actions.pod:4373
6053 #: ../fish/guestfish-actions.pod:4411 ../fish/guestfish-actions.pod:5046
6054 #: ../fish/guestfish-actions.pod:5144
6055 msgid ""
6056 "Deprecated functions will not be removed from the API, but the fact that "
6057 "they are deprecated indicates that there are problems with correct use of "
6058 "these functions."
6059 msgstr ""
6060
6061 #. type: textblock
6062 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6063 #: ../src/guestfs-actions.pod:1163 ../src/guestfs-actions.pod:1978
6064 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:2179
6065 #: ../src/guestfs-actions.pod:3610 ../src/guestfs-actions.pod:3630
6066 #: ../src/guestfs-actions.pod:4938 ../src/guestfs-actions.pod:6198
6067 #: ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6429
6068 #: ../src/guestfs-actions.pod:6920 ../src/guestfs-actions.pod:7045
6069 #: ../src/guestfs-actions.pod:7568
6070 msgid "(Added in 0.3)"
6071 msgstr ""
6072
6073 #. type: =head2
6074 #: ../src/guestfs-actions.pod:41
6075 msgid "guestfs_add_domain"
6076 msgstr ""
6077
6078 #. type: verbatim
6079 #: ../src/guestfs-actions.pod:43
6080 #, no-wrap
6081 msgid ""
6082 " int\n"
6083 " guestfs_add_domain (guestfs_h *g,\n"
6084 "                     const char *dom,\n"
6085 "                     ...);\n"
6086 "\n"
6087 msgstr ""
6088
6089 #. type: textblock
6090 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6091 #: ../src/guestfs-actions.pod:832 ../src/guestfs-actions.pod:2813
6092 #: ../src/guestfs-actions.pod:4629 ../src/guestfs-actions.pod:4948
6093 #: ../src/guestfs-actions.pod:5165
6094 msgid ""
6095 "You may supply a list of optional arguments to this call.  Use zero or more "
6096 "of the following pairs of parameters, and terminate the list with C<-1> on "
6097 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6098 msgstr ""
6099
6100 #. type: verbatim
6101 #: ../src/guestfs-actions.pod:53
6102 #, no-wrap
6103 msgid ""
6104 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6105 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6106 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6107 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6108 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6109 "\n"
6110 msgstr ""
6111
6112 #. type: textblock
6113 #: ../src/guestfs-actions.pod:59
6114 msgid ""
6115 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6116 "It works by connecting to libvirt, requesting the domain and domain XML from "
6117 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6118 "one."
6119 msgstr ""
6120
6121 #. type: textblock
6122 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6123 msgid ""
6124 "The number of disks added is returned.  This operation is atomic: if an "
6125 "error is returned, then no disks are added."
6126 msgstr ""
6127
6128 #. type: textblock
6129 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6130 msgid ""
6131 "This function does some minimal checks to make sure the libvirt domain is "
6132 "not running (unless C<readonly> is true).  In a future version we will try "
6133 "to acquire the libvirt lock on each disk."
6134 msgstr ""
6135
6136 #. type: textblock
6137 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6138 msgid ""
6139 "Disks must be accessible locally.  This often means that adding disks from a "
6140 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6141 "unless those disks are accessible via the same device path locally too."
6142 msgstr ""
6143
6144 #. type: textblock
6145 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6146 msgid ""
6147 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6148 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6149 "libvirt URI (or one set through an environment variable, see the libvirt "
6150 "documentation for full details)."
6151 msgstr ""
6152
6153 #. type: textblock
6154 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6155 msgid ""
6156 "The optional C<live> flag controls whether this call will try to connect to "
6157 "a running virtual machine C<guestfsd> process if it sees a suitable "
6158 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6159 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6160 "DAEMONS> for more information."
6161 msgstr ""
6162
6163 #. type: textblock
6164 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6165 msgid ""
6166 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6167 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6168 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
6169 "as usual."
6170 msgstr ""
6171
6172 #. type: textblock
6173 #: ../src/guestfs-actions.pod:94
6174 msgid ""
6175 "The other optional parameters are passed directly through to "
6176 "C<guestfs_add_drive_opts>."
6177 msgstr ""
6178
6179 #. type: textblock
6180 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6181 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6182 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6183 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1378
6184 #: ../src/guestfs-actions.pod:1734 ../src/guestfs-actions.pod:1937
6185 #: ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:2088
6186 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:2166
6187 #: ../src/guestfs-actions.pod:2459 ../src/guestfs-actions.pod:2931
6188 #: ../src/guestfs-actions.pod:2949 ../src/guestfs-actions.pod:5124
6189 #: ../src/guestfs-actions.pod:5344 ../src/guestfs-actions.pod:5750
6190 #: ../src/guestfs-actions.pod:5776 ../src/guestfs-actions.pod:7153
6191 #: ../src/guestfs-actions.pod:7579 ../src/guestfs-actions.pod:7592
6192 #: ../src/guestfs-actions.pod:7605
6193 msgid "On error this function returns -1."
6194 msgstr ""
6195
6196 #. type: textblock
6197 #: ../src/guestfs-actions.pod:99
6198 msgid "(Added in 1.7.4)"
6199 msgstr ""
6200
6201 #. type: =head2
6202 #: ../src/guestfs-actions.pod:101
6203 msgid "guestfs_add_domain_va"
6204 msgstr ""
6205
6206 #. type: verbatim
6207 #: ../src/guestfs-actions.pod:103
6208 #, no-wrap
6209 msgid ""
6210 " int\n"
6211 " guestfs_add_domain_va (guestfs_h *g,\n"
6212 "                        const char *dom,\n"
6213 "                        va_list args);\n"
6214 "\n"
6215 msgstr ""
6216
6217 #. type: textblock
6218 #: ../src/guestfs-actions.pod:108
6219 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6220 msgstr ""
6221
6222 #. type: textblock
6223 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6224 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6225 #: ../src/guestfs-actions.pod:869 ../src/guestfs-actions.pod:880
6226 #: ../src/guestfs-actions.pod:2897 ../src/guestfs-actions.pod:2909
6227 #: ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:4706
6228 #: ../src/guestfs-actions.pod:4976 ../src/guestfs-actions.pod:4988
6229 #: ../src/guestfs-actions.pod:5214 ../src/guestfs-actions.pod:5225
6230 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6231 msgstr ""
6232
6233 #. type: =head2
6234 #: ../src/guestfs-actions.pod:112
6235 msgid "guestfs_add_domain_argv"
6236 msgstr ""
6237
6238 #. type: verbatim
6239 #: ../src/guestfs-actions.pod:114
6240 #, no-wrap
6241 msgid ""
6242 " int\n"
6243 " guestfs_add_domain_argv (guestfs_h *g,\n"
6244 "                          const char *dom,\n"
6245 "                          const struct guestfs_add_domain_argv *optargs);\n"
6246 "\n"
6247 msgstr ""
6248
6249 #. type: textblock
6250 #: ../src/guestfs-actions.pod:119
6251 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6252 msgstr ""
6253
6254 #. type: =head2
6255 #: ../src/guestfs-actions.pod:123
6256 msgid "guestfs_add_drive"
6257 msgstr ""
6258
6259 #. type: verbatim
6260 #: ../src/guestfs-actions.pod:125
6261 #, no-wrap
6262 msgid ""
6263 " int\n"
6264 " guestfs_add_drive (guestfs_h *g,\n"
6265 "                    const char *filename);\n"
6266 "\n"
6267 msgstr ""
6268
6269 #. type: textblock
6270 #: ../src/guestfs-actions.pod:129
6271 msgid ""
6272 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6273 "optional parameters, so the disk is added writable, with the format being "
6274 "detected automatically."
6275 msgstr ""
6276
6277 #. type: textblock
6278 #: ../src/guestfs-actions.pod:133
6279 msgid ""
6280 "Automatic detection of the format opens you up to a potential security hole "
6281 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6282 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6283 "you should think about replacing calls to this function with calls to "
6284 "C<guestfs_add_drive_opts>, and specifying the format."
6285 msgstr ""
6286
6287 #. type: =head2
6288 #: ../src/guestfs-actions.pod:144
6289 msgid "guestfs_add_drive_opts"
6290 msgstr ""
6291
6292 #. type: verbatim
6293 #: ../src/guestfs-actions.pod:146
6294 #, no-wrap
6295 msgid ""
6296 " int\n"
6297 " guestfs_add_drive_opts (guestfs_h *g,\n"
6298 "                         const char *filename,\n"
6299 "                         ...);\n"
6300 "\n"
6301 msgstr ""
6302
6303 #. type: verbatim
6304 #: ../src/guestfs-actions.pod:156
6305 #, no-wrap
6306 msgid ""
6307 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6308 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6309 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6310 "\n"
6311 msgstr ""
6312
6313 #. type: textblock
6314 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6315 msgid ""
6316 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6317 "The first time you call this function, the disk appears as C</dev/sda>, the "
6318 "second time as C</dev/sdb>, and so on."
6319 msgstr ""
6320
6321 #. type: textblock
6322 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6323 msgid ""
6324 "You don't necessarily need to be root when using libguestfs.  However you "
6325 "obviously do need sufficient permissions to access the filename for whatever "
6326 "operations you want to perform (ie. read access if you just want to read the "
6327 "image or write access if you want to modify the image)."
6328 msgstr ""
6329
6330 #. type: textblock
6331 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6332 msgid "This call checks that C<filename> exists."
6333 msgstr ""
6334
6335 #. type: textblock
6336 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4642
6337 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3090
6338 msgid "The optional arguments are:"
6339 msgstr ""
6340
6341 #. type: =item
6342 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6343 msgid "C<readonly>"
6344 msgstr "C<readonly>"
6345
6346 #. type: textblock
6347 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6348 msgid ""
6349 "If true then the image is treated as read-only.  Writes are still allowed, "
6350 "but they are stored in a temporary snapshot overlay which is discarded at "
6351 "the end.  The disk that you add is not modified."
6352 msgstr ""
6353
6354 #. type: =item
6355 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6356 msgid "C<format>"
6357 msgstr "C<format>"
6358
6359 #. type: textblock
6360 #: ../src/guestfs-actions.pod:185
6361 msgid ""
6362 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6363 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6364 "Possible formats include C<raw> and C<qcow2>."
6365 msgstr ""
6366
6367 #. type: textblock
6368 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6369 msgid ""
6370 "Automatic detection of the format opens you up to a potential security hole "
6371 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6372 "RHBZ#642934.  Specifying the format closes this security hole."
6373 msgstr ""
6374
6375 #. type: =item
6376 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6377 msgid "C<iface>"
6378 msgstr "C<iface>"
6379
6380 #. type: textblock
6381 #: ../src/guestfs-actions.pod:196
6382 msgid ""
6383 "This rarely-used option lets you emulate the behaviour of the deprecated "
6384 "C<guestfs_add_drive_with_if> call (q.v.)"
6385 msgstr ""
6386
6387 #. type: textblock
6388 #: ../src/guestfs-actions.pod:203
6389 msgid "(Added in 1.5.23)"
6390 msgstr ""
6391
6392 #. type: =head2
6393 #: ../src/guestfs-actions.pod:205
6394 msgid "guestfs_add_drive_opts_va"
6395 msgstr ""
6396
6397 #. type: verbatim
6398 #: ../src/guestfs-actions.pod:207
6399 #, no-wrap
6400 msgid ""
6401 " int\n"
6402 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6403 "                            const char *filename,\n"
6404 "                            va_list args);\n"
6405 "\n"
6406 msgstr ""
6407
6408 #. type: textblock
6409 #: ../src/guestfs-actions.pod:212
6410 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6411 msgstr ""
6412
6413 #. type: =head2
6414 #: ../src/guestfs-actions.pod:216
6415 msgid "guestfs_add_drive_opts_argv"
6416 msgstr ""
6417
6418 #. type: verbatim
6419 #: ../src/guestfs-actions.pod:218
6420 #, no-wrap
6421 msgid ""
6422 " int\n"
6423 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6424 "                              const char *filename,\n"
6425 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6426 "\n"
6427 msgstr ""
6428
6429 #. type: textblock
6430 #: ../src/guestfs-actions.pod:223
6431 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6432 msgstr ""
6433
6434 #. type: =head2
6435 #: ../src/guestfs-actions.pod:227
6436 msgid "guestfs_add_drive_ro"
6437 msgstr ""
6438
6439 #. type: verbatim
6440 #: ../src/guestfs-actions.pod:229
6441 #, no-wrap
6442 msgid ""
6443 " int\n"
6444 " guestfs_add_drive_ro (guestfs_h *g,\n"
6445 "                       const char *filename);\n"
6446 "\n"
6447 msgstr ""
6448
6449 #. type: textblock
6450 #: ../src/guestfs-actions.pod:233
6451 msgid ""
6452 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6453 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6454 "disk is added read-only, with the format being detected automatically."
6455 msgstr ""
6456
6457 #. type: textblock
6458 #: ../src/guestfs-actions.pod:240
6459 msgid "(Added in 1.0.38)"
6460 msgstr ""
6461
6462 #. type: =head2
6463 #: ../src/guestfs-actions.pod:242
6464 msgid "guestfs_add_drive_ro_with_if"
6465 msgstr ""
6466
6467 #. type: verbatim
6468 #: ../src/guestfs-actions.pod:244
6469 #, no-wrap
6470 msgid ""
6471 " int\n"
6472 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6473 "                               const char *filename,\n"
6474 "                               const char *iface);\n"
6475 "\n"
6476 msgstr ""
6477
6478 #. type: textblock
6479 #: ../src/guestfs-actions.pod:249
6480 msgid ""
6481 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6482 "QEMU interface emulation to use at run time."
6483 msgstr ""
6484
6485 #. type: textblock
6486 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6487 #: ../src/guestfs-actions.pod:2418
6488 msgid "(Added in 1.0.84)"
6489 msgstr ""
6490
6491 #. type: =head2
6492 #: ../src/guestfs-actions.pod:263
6493 msgid "guestfs_add_drive_with_if"
6494 msgstr ""
6495
6496 #. type: verbatim
6497 #: ../src/guestfs-actions.pod:265
6498 #, no-wrap
6499 msgid ""
6500 " int\n"
6501 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6502 "                            const char *filename,\n"
6503 "                            const char *iface);\n"
6504 "\n"
6505 msgstr ""
6506
6507 #. type: textblock
6508 #: ../src/guestfs-actions.pod:270
6509 msgid ""
6510 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6511 "QEMU interface emulation to use at run time."
6512 msgstr ""
6513
6514 #. type: =head2
6515 #: ../src/guestfs-actions.pod:284
6516 msgid "guestfs_aug_clear"
6517 msgstr ""
6518
6519 #. type: verbatim
6520 #: ../src/guestfs-actions.pod:286
6521 #, no-wrap
6522 msgid ""
6523 " int\n"
6524 " guestfs_aug_clear (guestfs_h *g,\n"
6525 "                    const char *augpath);\n"
6526 "\n"
6527 msgstr ""
6528
6529 #. type: textblock
6530 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6531 msgid ""
6532 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6533 "L<augtool(1)> C<clear> command."
6534 msgstr ""
6535
6536 #. type: textblock
6537 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2168
6538 msgid "(Added in 1.3.4)"
6539 msgstr ""
6540
6541 #. type: =head2
6542 #: ../src/guestfs-actions.pod:297
6543 msgid "guestfs_aug_close"
6544 msgstr ""
6545
6546 #. type: verbatim
6547 #: ../src/guestfs-actions.pod:299
6548 #, no-wrap
6549 msgid ""
6550 " int\n"
6551 " guestfs_aug_close (guestfs_h *g);\n"
6552 "\n"
6553 msgstr ""
6554
6555 #. type: textblock
6556 #: ../src/guestfs-actions.pod:302
6557 msgid ""
6558 "Close the current Augeas handle and free up any resources used by it.  After "
6559 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6560 "any other Augeas functions."
6561 msgstr ""
6562
6563 #. type: textblock
6564 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6565 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6566 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6567 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6568 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6569 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6570 #: ../src/guestfs-actions.pod:5827
6571 msgid "(Added in 0.7)"
6572 msgstr ""
6573
6574 #. type: =head2
6575 #: ../src/guestfs-actions.pod:311
6576 msgid "guestfs_aug_defnode"
6577 msgstr ""
6578
6579 #. type: verbatim
6580 #: ../src/guestfs-actions.pod:313
6581 #, no-wrap
6582 msgid ""
6583 " struct guestfs_int_bool *\n"
6584 " guestfs_aug_defnode (guestfs_h *g,\n"
6585 "                      const char *name,\n"
6586 "                      const char *expr,\n"
6587 "                      const char *val);\n"
6588 "\n"
6589 msgstr ""
6590
6591 #. type: textblock
6592 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6593 msgid ""
6594 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6595 msgstr ""
6596
6597 #. type: textblock
6598 #: ../src/guestfs-actions.pod:322
6599 msgid ""
6600 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6601 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6602 "containing that single node."
6603 msgstr ""
6604
6605 #. type: textblock
6606 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6607 msgid ""
6608 "On success this returns a pair containing the number of nodes in the "
6609 "nodeset, and a boolean flag if a node was created."
6610 msgstr ""
6611
6612 #. type: textblock
6613 #: ../src/guestfs-actions.pod:330
6614 msgid ""
6615 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6616 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6617 msgstr ""
6618
6619 #. type: =head2
6620 #: ../src/guestfs-actions.pod:336
6621 msgid "guestfs_aug_defvar"
6622 msgstr ""
6623
6624 #. type: verbatim
6625 #: ../src/guestfs-actions.pod:338
6626 #, no-wrap
6627 msgid ""
6628 " int\n"
6629 " guestfs_aug_defvar (guestfs_h *g,\n"
6630 "                     const char *name,\n"
6631 "                     const char *expr);\n"
6632 "\n"
6633 msgstr ""
6634
6635 #. type: textblock
6636 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6637 msgid ""
6638 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6639 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6640 msgstr ""
6641
6642 #. type: textblock
6643 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6644 msgid ""
6645 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6646 "evaluates to something which is not a nodeset."
6647 msgstr ""
6648
6649 #. type: =head2
6650 #: ../src/guestfs-actions.pod:354
6651 msgid "guestfs_aug_get"
6652 msgstr ""
6653
6654 #. type: verbatim
6655 #: ../src/guestfs-actions.pod:356
6656 #, no-wrap
6657 msgid ""
6658 " char *\n"
6659 " guestfs_aug_get (guestfs_h *g,\n"
6660 "                  const char *augpath);\n"
6661 "\n"
6662 msgstr ""
6663
6664 #. type: textblock
6665 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6666 msgid ""
6667 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6668 "node, the C<value> is returned."
6669 msgstr ""
6670
6671 #. type: textblock
6672 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:920
6673 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:998
6674 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1117
6675 #: ../src/guestfs-actions.pod:1247 ../src/guestfs-actions.pod:1264
6676 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:1417
6677 #: ../src/guestfs-actions.pod:1605 ../src/guestfs-actions.pod:1717
6678 #: ../src/guestfs-actions.pod:1880 ../src/guestfs-actions.pod:1897
6679 #: ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2000
6680 #: ../src/guestfs-actions.pod:2021 ../src/guestfs-actions.pod:2191
6681 #: ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:2587
6682 #: ../src/guestfs-actions.pod:2677 ../src/guestfs-actions.pod:2781
6683 #: ../src/guestfs-actions.pod:2800 ../src/guestfs-actions.pod:3014
6684 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
6685 #: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:3156
6686 #: ../src/guestfs-actions.pod:3176 ../src/guestfs-actions.pod:3196
6687 #: ../src/guestfs-actions.pod:3823 ../src/guestfs-actions.pod:4176
6688 #: ../src/guestfs-actions.pod:4346 ../src/guestfs-actions.pod:4456
6689 #: ../src/guestfs-actions.pod:5362 ../src/guestfs-actions.pod:5555
6690 #: ../src/guestfs-actions.pod:5725 ../src/guestfs-actions.pod:5903
6691 #: ../src/guestfs-actions.pod:5952 ../src/guestfs-actions.pod:6589
6692 #: ../src/guestfs-actions.pod:6605 ../src/guestfs-actions.pod:6622
6693 #: ../src/guestfs-actions.pod:6653 ../src/guestfs-actions.pod:7327
6694 #: ../src/guestfs-actions.pod:7346 ../src/guestfs-actions.pod:7364
6695 #: ../src/guestfs-actions.pod:7538 ../src/guestfs-actions.pod:7818
6696 msgid ""
6697 "This function returns a string, or NULL on error.  I<The caller must free "
6698 "the returned string after use>."
6699 msgstr ""
6700
6701 #. type: =head2
6702 #: ../src/guestfs-actions.pod:368
6703 msgid "guestfs_aug_init"
6704 msgstr ""
6705
6706 #. type: verbatim
6707 #: ../src/guestfs-actions.pod:370
6708 #, no-wrap
6709 msgid ""
6710 " int\n"
6711 " guestfs_aug_init (guestfs_h *g,\n"
6712 "                   const char *root,\n"
6713 "                   int flags);\n"
6714 "\n"
6715 msgstr ""
6716
6717 #. type: textblock
6718 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6719 msgid ""
6720 "Create a new Augeas handle for editing configuration files.  If there was "
6721 "any previous Augeas handle associated with this guestfs session, then it is "
6722 "closed."
6723 msgstr ""
6724
6725 #. type: textblock
6726 #: ../src/guestfs-actions.pod:379
6727 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6728 msgstr ""
6729
6730 #. type: textblock
6731 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6732 msgid ""
6733 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6734 msgstr ""
6735
6736 #. type: textblock
6737 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6738 msgid ""
6739 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6740 "logical I<or> of the following integers:"
6741 msgstr ""
6742
6743 #. type: =item
6744 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6745 msgid "C<AUG_SAVE_BACKUP> = 1"
6746 msgstr "C<AUG_SAVE_BACKUP> = 1"
6747
6748 #. type: textblock
6749 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6750 msgid "Keep the original file with a C<.augsave> extension."
6751 msgstr ""
6752
6753 #. type: =item
6754 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6755 msgid "C<AUG_SAVE_NEWFILE> = 2"
6756 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6757
6758 #. type: textblock
6759 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6760 msgid ""
6761 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6762 "original.  Overrides C<AUG_SAVE_BACKUP>."
6763 msgstr ""
6764
6765 #. type: =item
6766 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6767 msgid "C<AUG_TYPE_CHECK> = 4"
6768 msgstr "C<AUG_TYPE_CHECK> = 4"
6769
6770 #. type: textblock
6771 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6772 msgid "Typecheck lenses (can be expensive)."
6773 msgstr ""
6774
6775 #. type: =item
6776 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6777 msgid "C<AUG_NO_STDINC> = 8"
6778 msgstr "C<AUG_NO_STDINC> = 8"
6779
6780 #. type: textblock
6781 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6782 msgid "Do not use standard load path for modules."
6783 msgstr ""
6784
6785 #. type: =item
6786 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6787 msgid "C<AUG_SAVE_NOOP> = 16"
6788 msgstr "C<AUG_SAVE_NOOP> = 16"
6789
6790 #. type: textblock
6791 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6792 msgid "Make save a no-op, just record what would have been changed."
6793 msgstr ""
6794
6795 #. type: =item
6796 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6797 msgid "C<AUG_NO_LOAD> = 32"
6798 msgstr "C<AUG_NO_LOAD> = 32"
6799
6800 #. type: textblock
6801 #: ../src/guestfs-actions.pod:414
6802 msgid "Do not load the tree in C<guestfs_aug_init>."
6803 msgstr ""
6804
6805 #. type: textblock
6806 #: ../src/guestfs-actions.pod:418
6807 msgid "To close the handle, you can call C<guestfs_aug_close>."
6808 msgstr ""
6809
6810 #. type: textblock
6811 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6812 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6813 msgstr ""
6814
6815 #. type: =head2
6816 #: ../src/guestfs-actions.pod:426
6817 msgid "guestfs_aug_insert"
6818 msgstr ""
6819
6820 #. type: verbatim
6821 #: ../src/guestfs-actions.pod:428
6822 #, no-wrap
6823 msgid ""
6824 " int\n"
6825 " guestfs_aug_insert (guestfs_h *g,\n"
6826 "                     const char *augpath,\n"
6827 "                     const char *label,\n"
6828 "                     int before);\n"
6829 "\n"
6830 msgstr ""
6831
6832 #. type: textblock
6833 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6834 msgid ""
6835 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6836 "or after C<path> (depending on the boolean flag C<before>)."
6837 msgstr ""
6838
6839 #. type: textblock
6840 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6841 msgid ""
6842 "C<path> must match exactly one existing node in the tree, and C<label> must "
6843 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6844 msgstr ""
6845
6846 #. type: =head2
6847 #: ../src/guestfs-actions.pod:446
6848 msgid "guestfs_aug_load"
6849 msgstr ""
6850
6851 #. type: verbatim
6852 #: ../src/guestfs-actions.pod:448
6853 #, no-wrap
6854 msgid ""
6855 " int\n"
6856 " guestfs_aug_load (guestfs_h *g);\n"
6857 "\n"
6858 msgstr ""
6859
6860 #. type: textblock
6861 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6862 msgid "Load files into the tree."
6863 msgstr "Завантажити файли до ієрархії."
6864
6865 #. type: textblock
6866 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6867 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6868 msgstr ""
6869
6870 #. type: =head2
6871 #: ../src/guestfs-actions.pod:460
6872 msgid "guestfs_aug_ls"
6873 msgstr ""
6874
6875 #. type: verbatim
6876 #: ../src/guestfs-actions.pod:462
6877 #, no-wrap
6878 msgid ""
6879 " char **\n"
6880 " guestfs_aug_ls (guestfs_h *g,\n"
6881 "                 const char *augpath);\n"
6882 "\n"
6883 msgstr ""
6884
6885 #. type: textblock
6886 #: ../src/guestfs-actions.pod:466
6887 msgid ""
6888 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6889 "sorting the resulting nodes into alphabetical order."
6890 msgstr ""
6891
6892 #. type: textblock
6893 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6894 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1136
6895 #: ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:1451
6896 #: ../src/guestfs-actions.pod:1554 ../src/guestfs-actions.pod:1573
6897 #: ../src/guestfs-actions.pod:1819 ../src/guestfs-actions.pod:2263
6898 #: ../src/guestfs-actions.pod:2279 ../src/guestfs-actions.pod:2298
6899 #: ../src/guestfs-actions.pod:2341 ../src/guestfs-actions.pod:2365
6900 #: ../src/guestfs-actions.pod:2436 ../src/guestfs-actions.pod:2485
6901 #: ../src/guestfs-actions.pod:2742 ../src/guestfs-actions.pod:3116
6902 #: ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:3706
6903 #: ../src/guestfs-actions.pod:3723 ../src/guestfs-actions.pod:3743
6904 #: ../src/guestfs-actions.pod:3805 ../src/guestfs-actions.pod:3910
6905 #: ../src/guestfs-actions.pod:4318 ../src/guestfs-actions.pod:5085
6906 #: ../src/guestfs-actions.pod:5697 ../src/guestfs-actions.pod:5823
6907 #: ../src/guestfs-actions.pod:5937 ../src/guestfs-actions.pod:6669
6908 #: ../src/guestfs-actions.pod:6730 ../src/guestfs-actions.pod:6785
6909 #: ../src/guestfs-actions.pod:6931 ../src/guestfs-actions.pod:6955
6910 #: ../src/guestfs-actions.pod:7431 ../src/guestfs-actions.pod:7451
6911 #: ../src/guestfs-actions.pod:7498 ../src/guestfs-actions.pod:7670
6912 #: ../src/guestfs-actions.pod:7689 ../src/guestfs-actions.pod:7775
6913 #: ../src/guestfs-actions.pod:7794 ../src/guestfs-actions.pod:7840
6914 #: ../src/guestfs-actions.pod:7859
6915 msgid ""
6916 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6917 ">), or NULL if there was an error.  I<The caller must free the strings and "
6918 "the array after use>."
6919 msgstr ""
6920
6921 #. type: textblock
6922 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1061
6923 #: ../src/guestfs-actions.pod:1079 ../src/guestfs-actions.pod:1489
6924 #: ../src/guestfs-actions.pod:3470 ../src/guestfs-actions.pod:3501
6925 #: ../src/guestfs-actions.pod:4159 ../src/guestfs-actions.pod:4209
6926 #: ../src/guestfs-actions.pod:4396 ../src/guestfs-actions.pod:4429
6927 #: ../src/guestfs-actions.pod:4592 ../src/guestfs-actions.pod:5089
6928 #: ../src/guestfs-actions.pod:5638 ../src/guestfs-actions.pod:6035
6929 #: ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6061
6930 #: ../src/guestfs-actions.pod:6510 ../src/guestfs-actions.pod:7169
6931 #: ../src/guestfs-actions.pod:7182 ../src/guestfs-actions.pod:7415
6932 #: ../src/guestfs-actions.pod:7658
6933 msgid "(Added in 0.8)"
6934 msgstr ""
6935
6936 #. type: =head2
6937 #: ../src/guestfs-actions.pod:475
6938 msgid "guestfs_aug_match"
6939 msgstr ""
6940
6941 #. type: verbatim
6942 #: ../src/guestfs-actions.pod:477
6943 #, no-wrap
6944 msgid ""
6945 " char **\n"
6946 " guestfs_aug_match (guestfs_h *g,\n"
6947 "                    const char *augpath);\n"
6948 "\n"
6949 msgstr ""
6950
6951 #. type: textblock
6952 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6953 msgid ""
6954 "Returns a list of paths which match the path expression C<path>.  The "
6955 "returned paths are sufficiently qualified so that they match exactly one "
6956 "node in the current tree."
6957 msgstr ""
6958
6959 #. type: =head2
6960 #: ../src/guestfs-actions.pod:491
6961 msgid "guestfs_aug_mv"
6962 msgstr ""
6963
6964 #. type: verbatim
6965 #: ../src/guestfs-actions.pod:493
6966 #, no-wrap
6967 msgid ""
6968 " int\n"
6969 " guestfs_aug_mv (guestfs_h *g,\n"
6970 "                 const char *src,\n"
6971 "                 const char *dest);\n"
6972 "\n"
6973 msgstr ""
6974
6975 #. type: textblock
6976 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6977 msgid ""
6978 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6979 "C<dest> is overwritten if it exists."
6980 msgstr ""
6981
6982 #. type: =head2
6983 #: ../src/guestfs-actions.pod:505
6984 msgid "guestfs_aug_rm"
6985 msgstr ""
6986
6987 #. type: verbatim
6988 #: ../src/guestfs-actions.pod:507
6989 #, no-wrap
6990 msgid ""
6991 " int\n"
6992 " guestfs_aug_rm (guestfs_h *g,\n"
6993 "                 const char *augpath);\n"
6994 "\n"
6995 msgstr ""
6996
6997 #. type: textblock
6998 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6999 msgid "Remove C<path> and all of its children."
7000 msgstr ""
7001
7002 #. type: textblock
7003 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
7004 msgid "On success this returns the number of entries which were removed."
7005 msgstr ""
7006
7007 #. type: =head2
7008 #: ../src/guestfs-actions.pod:519
7009 msgid "guestfs_aug_save"
7010 msgstr ""
7011
7012 #. type: verbatim
7013 #: ../src/guestfs-actions.pod:521
7014 #, no-wrap
7015 msgid ""
7016 " int\n"
7017 " guestfs_aug_save (guestfs_h *g);\n"
7018 "\n"
7019 msgstr ""
7020
7021 #. type: textblock
7022 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7023 msgid "This writes all pending changes to disk."
7024 msgstr ""
7025
7026 #. type: textblock
7027 #: ../src/guestfs-actions.pod:526
7028 msgid ""
7029 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7030 "are saved."
7031 msgstr ""
7032
7033 #. type: =head2
7034 #: ../src/guestfs-actions.pod:533
7035 msgid "guestfs_aug_set"
7036 msgstr ""
7037
7038 #. type: verbatim
7039 #: ../src/guestfs-actions.pod:535
7040 #, no-wrap
7041 msgid ""
7042 " int\n"
7043 " guestfs_aug_set (guestfs_h *g,\n"
7044 "                  const char *augpath,\n"
7045 "                  const char *val);\n"
7046 "\n"
7047 msgstr ""
7048
7049 #. type: textblock
7050 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7051 msgid "Set the value associated with C<path> to C<val>."
7052 msgstr ""
7053
7054 #. type: textblock
7055 #: ../src/guestfs-actions.pod:542
7056 msgid ""
7057 "In the Augeas API, it is possible to clear a node by setting the value to "
7058 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7059 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7060 msgstr ""
7061
7062 #. type: =head2
7063 #: ../src/guestfs-actions.pod:551
7064 msgid "guestfs_available"
7065 msgstr ""
7066
7067 #. type: verbatim
7068 #: ../src/guestfs-actions.pod:553
7069 #, no-wrap
7070 msgid ""
7071 " int\n"
7072 " guestfs_available (guestfs_h *g,\n"
7073 "                    char *const *groups);\n"
7074 "\n"
7075 msgstr ""
7076
7077 #. type: textblock
7078 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7079 msgid ""
7080 "This command is used to check the availability of some groups of "
7081 "functionality in the appliance, which not all builds of the libguestfs "
7082 "appliance will be able to provide."
7083 msgstr ""
7084
7085 #. type: textblock
7086 #: ../src/guestfs-actions.pod:561
7087 msgid ""
7088 "The libguestfs groups, and the functions that those groups correspond to, "
7089 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7090 "runtime by calling C<guestfs_available_all_groups>."
7091 msgstr ""
7092
7093 #. type: textblock
7094 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7095 msgid ""
7096 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7097 "\"]> would check for the availability of the Linux inotify functions and "
7098 "Augeas (configuration file editing) functions."
7099 msgstr ""
7100
7101 #. type: textblock
7102 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7103 msgid "The command returns no error if I<all> requested groups are available."
7104 msgstr ""
7105
7106 #. type: textblock
7107 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7108 msgid ""
7109 "It fails with an error if one or more of the requested groups is unavailable "
7110 "in the appliance."
7111 msgstr ""
7112
7113 #. type: textblock
7114 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7115 msgid ""
7116 "If an unknown group name is included in the list of groups then an error is "
7117 "always returned."
7118 msgstr ""
7119
7120 #. type: textblock
7121 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7122 msgid "I<Notes:>"
7123 msgstr "I<Нотатки:>"
7124
7125 #. type: textblock
7126 #: ../src/guestfs-actions.pod:585
7127 msgid "You must call C<guestfs_launch> before calling this function."
7128 msgstr ""
7129
7130 #. type: textblock
7131 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7132 msgid ""
7133 "The reason is because we don't know what groups are supported by the "
7134 "appliance/daemon until it is running and can be queried."
7135 msgstr ""
7136
7137 #. type: textblock
7138 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7139 msgid ""
7140 "If a group of functions is available, this does not necessarily mean that "
7141 "they will work.  You still have to check for errors when calling individual "
7142 "API functions even if they are available."
7143 msgstr ""
7144
7145 #. type: textblock
7146 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7147 msgid ""
7148 "It is usually the job of distro packagers to build complete functionality "
7149 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7150 "with all requirements satisfied, will support everything."
7151 msgstr ""
7152
7153 #. type: textblock
7154 #: ../src/guestfs-actions.pod:607
7155 msgid ""
7156 "This call was added in version C<1.0.80>.  In previous versions of "
7157 "libguestfs all you could do would be to speculatively execute a command to "
7158 "find out if the daemon implemented it.  See also C<guestfs_version>."
7159 msgstr ""
7160
7161 #. type: textblock
7162 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1234
7163 msgid "(Added in 1.0.80)"
7164 msgstr ""
7165
7166 #. type: =head2
7167 #: ../src/guestfs-actions.pod:618
7168 msgid "guestfs_available_all_groups"
7169 msgstr ""
7170
7171 #. type: verbatim
7172 #: ../src/guestfs-actions.pod:620
7173 #, no-wrap
7174 msgid ""
7175 " char **\n"
7176 " guestfs_available_all_groups (guestfs_h *g);\n"
7177 "\n"
7178 msgstr ""
7179
7180 #. type: textblock
7181 #: ../src/guestfs-actions.pod:623
7182 msgid ""
7183 "This command returns a list of all optional groups that this daemon knows "
7184 "about.  Note this returns both supported and unsupported groups.  To find "
7185 "out which ones the daemon can actually support you have to call "
7186 "C<guestfs_available> on each member of the returned list."
7187 msgstr ""
7188
7189 #. type: textblock
7190 #: ../src/guestfs-actions.pod:629
7191 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7192 msgstr ""
7193
7194 #. type: textblock
7195 #: ../src/guestfs-actions.pod:635
7196 msgid "(Added in 1.3.15)"
7197 msgstr ""
7198
7199 #. type: =head2
7200 #: ../src/guestfs-actions.pod:637
7201 msgid "guestfs_base64_in"
7202 msgstr ""
7203
7204 #. type: verbatim
7205 #: ../src/guestfs-actions.pod:639
7206 #, no-wrap
7207 msgid ""
7208 " int\n"
7209 " guestfs_base64_in (guestfs_h *g,\n"
7210 "                    const char *base64file,\n"
7211 "                    const char *filename);\n"
7212 "\n"
7213 msgstr ""
7214
7215 #. type: textblock
7216 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7217 msgid ""
7218 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7219 msgstr ""
7220
7221 #. type: textblock
7222 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7223 msgid "(Added in 1.3.5)"
7224 msgstr ""
7225
7226 #. type: =head2
7227 #: ../src/guestfs-actions.pod:651
7228 msgid "guestfs_base64_out"
7229 msgstr ""
7230
7231 #. type: verbatim
7232 #: ../src/guestfs-actions.pod:653
7233 #, no-wrap
7234 msgid ""
7235 " int\n"
7236 " guestfs_base64_out (guestfs_h *g,\n"
7237 "                     const char *filename,\n"
7238 "                     const char *base64file);\n"
7239 "\n"
7240 msgstr ""
7241
7242 #. type: textblock
7243 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7244 msgid ""
7245 "This command downloads the contents of C<filename>, writing it out to local "
7246 "file C<base64file> encoded as base64."
7247 msgstr ""
7248
7249 #. type: =head2
7250 #: ../src/guestfs-actions.pod:665
7251 msgid "guestfs_blockdev_flushbufs"
7252 msgstr ""
7253
7254 #. type: verbatim
7255 #: ../src/guestfs-actions.pod:667
7256 #, no-wrap
7257 msgid ""
7258 " int\n"
7259 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7260 "                             const char *device);\n"
7261 "\n"
7262 msgstr ""
7263
7264 #. type: textblock
7265 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7266 msgid ""
7267 "This tells the kernel to flush internal buffers associated with C<device>."
7268 msgstr ""
7269
7270 #. type: textblock
7271 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7272 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7273 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7274 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7275 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7276 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7277 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7278 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7279 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7280 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7281 msgid "This uses the L<blockdev(8)> command."
7282 msgstr ""
7283
7284 #. type: textblock
7285 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7286 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7287 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7288 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7289 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7290 msgid "(Added in 0.9.3)"
7291 msgstr ""
7292
7293 #. type: =head2
7294 #: ../src/guestfs-actions.pod:680
7295 msgid "guestfs_blockdev_getbsz"
7296 msgstr ""
7297
7298 #. type: verbatim
7299 #: ../src/guestfs-actions.pod:682
7300 #, no-wrap
7301 msgid ""
7302 " int\n"
7303 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7304 "                          const char *device);\n"
7305 "\n"
7306 msgstr ""
7307
7308 #. type: textblock
7309 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7310 msgid "This returns the block size of a device."
7311 msgstr ""
7312
7313 #. type: textblock
7314 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7315 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7316 msgid ""
7317 "(Note this is different from both I<size in blocks> and I<filesystem block "
7318 "size>)."
7319 msgstr ""
7320
7321 #. type: =head2
7322 #: ../src/guestfs-actions.pod:697
7323 msgid "guestfs_blockdev_getro"
7324 msgstr ""
7325
7326 #. type: verbatim
7327 #: ../src/guestfs-actions.pod:699
7328 #, no-wrap
7329 msgid ""
7330 " int\n"
7331 " guestfs_blockdev_getro (guestfs_h *g,\n"
7332 "                         const char *device);\n"
7333 "\n"
7334 msgstr ""
7335
7336 #. type: textblock
7337 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7338 msgid ""
7339 "Returns a boolean indicating if the block device is read-only (true if read-"
7340 "only, false if not)."
7341 msgstr ""
7342
7343 #. type: textblock
7344 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1472
7345 #: ../src/guestfs-actions.pod:1487 ../src/guestfs-actions.pod:1976
7346 #: ../src/guestfs-actions.pod:1987 ../src/guestfs-actions.pod:2059
7347 #: ../src/guestfs-actions.pod:2114 ../src/guestfs-actions.pod:2129
7348 #: ../src/guestfs-actions.pod:2154 ../src/guestfs-actions.pod:2177
7349 #: ../src/guestfs-actions.pod:3213 ../src/guestfs-actions.pod:3229
7350 #: ../src/guestfs-actions.pod:3247 ../src/guestfs-actions.pod:3409
7351 #: ../src/guestfs-actions.pod:3423 ../src/guestfs-actions.pod:3438
7352 #: ../src/guestfs-actions.pod:3452 ../src/guestfs-actions.pod:3468
7353 #: ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3499
7354 #: ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526
7355 #: ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:3555
7356 #: ../src/guestfs-actions.pod:3570 ../src/guestfs-actions.pod:3583
7357 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:5326
7358 msgid "This function returns a C truth value on success or -1 on error."
7359 msgstr ""
7360
7361 #. type: =head2
7362 #: ../src/guestfs-actions.pod:712
7363 msgid "guestfs_blockdev_getsize64"
7364 msgstr ""
7365
7366 #. type: verbatim
7367 #: ../src/guestfs-actions.pod:714
7368 #, no-wrap
7369 msgid ""
7370 " int64_t\n"
7371 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7372 "                             const char *device);\n"
7373 "\n"
7374 msgstr ""
7375
7376 #. type: textblock
7377 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7378 msgid "This returns the size of the device in bytes."
7379 msgstr ""
7380
7381 #. type: textblock
7382 #: ../src/guestfs-actions.pod:720
7383 msgid "See also C<guestfs_blockdev_getsz>."
7384 msgstr ""
7385
7386 #. type: =head2
7387 #: ../src/guestfs-actions.pod:728
7388 msgid "guestfs_blockdev_getss"
7389 msgstr ""
7390
7391 #. type: verbatim
7392 #: ../src/guestfs-actions.pod:730
7393 #, no-wrap
7394 msgid ""
7395 " int\n"
7396 " guestfs_blockdev_getss (guestfs_h *g,\n"
7397 "                         const char *device);\n"
7398 "\n"
7399 msgstr ""
7400
7401 #. type: textblock
7402 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7403 msgid ""
7404 "This returns the size of sectors on a block device.  Usually 512, but can be "
7405 "larger for modern devices."
7406 msgstr ""
7407
7408 #. type: textblock
7409 #: ../src/guestfs-actions.pod:737
7410 msgid ""
7411 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7412 "that)."
7413 msgstr ""
7414
7415 #. type: =head2
7416 #: ../src/guestfs-actions.pod:746
7417 msgid "guestfs_blockdev_getsz"
7418 msgstr ""
7419
7420 #. type: verbatim
7421 #: ../src/guestfs-actions.pod:748
7422 #, no-wrap
7423 msgid ""
7424 " int64_t\n"
7425 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7426 "                         const char *device);\n"
7427 "\n"
7428 msgstr ""
7429
7430 #. type: textblock
7431 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7432 msgid ""
7433 "This returns the size of the device in units of 512-byte sectors (even if "
7434 "the sectorsize isn't 512 bytes ... weird)."
7435 msgstr ""
7436
7437 #. type: textblock
7438 #: ../src/guestfs-actions.pod:755
7439 msgid ""
7440 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7441 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7442 msgstr ""
7443
7444 #. type: =head2
7445 #: ../src/guestfs-actions.pod:765
7446 msgid "guestfs_blockdev_rereadpt"
7447 msgstr ""
7448
7449 #. type: verbatim
7450 #: ../src/guestfs-actions.pod:767
7451 #, no-wrap
7452 msgid ""
7453 " int\n"
7454 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7455 "                            const char *device);\n"
7456 "\n"
7457 msgstr ""
7458
7459 #. type: textblock
7460 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7461 msgid "Reread the partition table on C<device>."
7462 msgstr ""
7463
7464 #. type: =head2
7465 #: ../src/guestfs-actions.pod:779
7466 msgid "guestfs_blockdev_setbsz"
7467 msgstr ""
7468
7469 #. type: verbatim
7470 #: ../src/guestfs-actions.pod:781
7471 #, no-wrap
7472 msgid ""
7473 " int\n"
7474 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7475 "                          const char *device,\n"
7476 "                          int blocksize);\n"
7477 "\n"
7478 msgstr ""
7479
7480 #. type: textblock
7481 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7482 msgid "This sets the block size of a device."
7483 msgstr ""
7484
7485 #. type: =head2
7486 #: ../src/guestfs-actions.pod:797
7487 msgid "guestfs_blockdev_setro"
7488 msgstr ""
7489
7490 #. type: verbatim
7491 #: ../src/guestfs-actions.pod:799
7492 #, no-wrap
7493 msgid ""
7494 " int\n"
7495 " guestfs_blockdev_setro (guestfs_h *g,\n"
7496 "                         const char *device);\n"
7497 "\n"
7498 msgstr ""
7499
7500 #. type: textblock
7501 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7502 msgid "Sets the block device named C<device> to read-only."
7503 msgstr ""
7504
7505 #. type: =head2
7506 #: ../src/guestfs-actions.pod:811
7507 msgid "guestfs_blockdev_setrw"
7508 msgstr ""
7509
7510 #. type: verbatim
7511 #: ../src/guestfs-actions.pod:813
7512 #, no-wrap
7513 msgid ""
7514 " int\n"
7515 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7516 "                         const char *device);\n"
7517 "\n"
7518 msgstr ""
7519
7520 #. type: textblock
7521 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7522 msgid "Sets the block device named C<device> to read-write."
7523 msgstr ""
7524
7525 #. type: =head2
7526 #: ../src/guestfs-actions.pod:825
7527 msgid "guestfs_btrfs_filesystem_resize"
7528 msgstr ""
7529
7530 #. type: verbatim
7531 #: ../src/guestfs-actions.pod:827
7532 #, no-wrap
7533 msgid ""
7534 " int\n"
7535 " guestfs_btrfs_filesystem_resize (guestfs_h *g,\n"
7536 "                                  const char *mountpoint,\n"
7537 "                                  ...);\n"
7538 "\n"
7539 msgstr ""
7540
7541 #. type: verbatim
7542 #: ../src/guestfs-actions.pod:837
7543 #, no-wrap
7544 msgid ""
7545 " GUESTFS_BTRFS_FILESYSTEM_RESIZE_SIZE, int64_t size,\n"
7546 "\n"
7547 msgstr ""
7548
7549 #. type: textblock
7550 #: ../src/guestfs-actions.pod:839 ../fish/guestfish-actions.pod:549
7551 msgid "This command resizes a btrfs filesystem."
7552 msgstr ""
7553
7554 #. type: textblock
7555 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:551
7556 msgid ""
7557 "Note that unlike other resize calls, the filesystem has to be mounted and "
7558 "the parameter is the mountpoint not the device (this is a requirement of "
7559 "btrfs itself)."
7560 msgstr ""
7561
7562 #. type: textblock
7563 #: ../src/guestfs-actions.pod:845 ../src/guestfs-actions.pod:5176
7564 #: ../fish/guestfish-actions.pod:555 ../fish/guestfish-actions.pod:3411
7565 msgid "The optional parameters are:"
7566 msgstr ""
7567
7568 #. type: =item
7569 #: ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:5180
7570 #: ../fish/guestfish-actions.pod:559 ../fish/guestfish-actions.pod:3415
7571 #, fuzzy
7572 #| msgid "C<inspector>"
7573 msgid "C<size>"
7574 msgstr "C<inspector>"
7575
7576 #. type: textblock
7577 #: ../src/guestfs-actions.pod:851 ../fish/guestfish-actions.pod:561
7578 msgid ""
7579 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
7580 "resized to the maximum size."
7581 msgstr ""
7582
7583 #. type: textblock
7584 #: ../src/guestfs-actions.pod:856 ../fish/guestfish-actions.pod:566
7585 #, fuzzy
7586 #| msgid "See L<guestfish(1)>."
7587 msgid "See also L<btrfs(8)>."
7588 msgstr "Див. L<guestfish(1)>."
7589
7590 #. type: =head2
7591 #: ../src/guestfs-actions.pod:860
7592 msgid "guestfs_btrfs_filesystem_resize_va"
7593 msgstr ""
7594
7595 #. type: verbatim
7596 #: ../src/guestfs-actions.pod:862
7597 #, no-wrap
7598 msgid ""
7599 " int\n"
7600 " guestfs_btrfs_filesystem_resize_va (guestfs_h *g,\n"
7601 "                                     const char *mountpoint,\n"
7602 "                                     va_list args);\n"
7603 "\n"
7604 msgstr ""
7605
7606 #. type: textblock
7607 #: ../src/guestfs-actions.pod:867
7608 msgid "This is the \"va_list variant\" of L</guestfs_btrfs_filesystem_resize>."
7609 msgstr ""
7610
7611 #. type: =head2
7612 #: ../src/guestfs-actions.pod:871
7613 msgid "guestfs_btrfs_filesystem_resize_argv"
7614 msgstr ""
7615
7616 #. type: verbatim
7617 #: ../src/guestfs-actions.pod:873
7618 #, no-wrap
7619 msgid ""
7620 " int\n"
7621 " guestfs_btrfs_filesystem_resize_argv (guestfs_h *g,\n"
7622 "                                       const char *mountpoint,\n"
7623 "                                       const struct guestfs_btrfs_filesystem_resize_argv *optargs);\n"
7624 "\n"
7625 msgstr ""
7626
7627 #. type: textblock
7628 #: ../src/guestfs-actions.pod:878
7629 msgid "This is the \"argv variant\" of L</guestfs_btrfs_filesystem_resize>."
7630 msgstr ""
7631
7632 #. type: =head2
7633 #: ../src/guestfs-actions.pod:882
7634 msgid "guestfs_case_sensitive_path"
7635 msgstr ""
7636
7637 #. type: verbatim
7638 #: ../src/guestfs-actions.pod:884
7639 #, no-wrap
7640 msgid ""
7641 " char *\n"
7642 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7643 "                              const char *path);\n"
7644 "\n"
7645 msgstr ""
7646
7647 #. type: textblock
7648 #: ../src/guestfs-actions.pod:888 ../fish/guestfish-actions.pod:574
7649 msgid ""
7650 "This can be used to resolve case insensitive paths on a filesystem which is "
7651 "case sensitive.  The use case is to resolve paths which you have read from "
7652 "Windows configuration files or the Windows Registry, to the true path."
7653 msgstr ""
7654
7655 #. type: textblock
7656 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:579
7657 msgid ""
7658 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7659 "(and probably others), which is that although the underlying filesystem is "
7660 "case-insensitive, the driver exports the filesystem to Linux as case-"
7661 "sensitive."
7662 msgstr ""
7663
7664 #. type: textblock
7665 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:584
7666 msgid ""
7667 "One consequence of this is that special directories such as C<c:\\windows> "
7668 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7669 "precise details of how they were created.  In Windows itself this would not "
7670 "be a problem."
7671 msgstr ""
7672
7673 #. type: textblock
7674 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:590
7675 msgid ""
7676 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7677 "#posixfilenames1>"
7678 msgstr ""
7679
7680 #. type: textblock
7681 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:593
7682 msgid ""
7683 "This function resolves the true case of each element in the path and returns "
7684 "the case-sensitive path."
7685 msgstr ""
7686
7687 #. type: textblock
7688 #: ../src/guestfs-actions.pod:910
7689 msgid ""
7690 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7691 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7692 "how the directories were originally created under Windows)."
7693 msgstr ""
7694
7695 #. type: textblock
7696 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:601
7697 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:918
7702 msgid "See also C<guestfs_realpath>."
7703 msgstr ""
7704
7705 #. type: textblock
7706 #: ../src/guestfs-actions.pod:923 ../src/guestfs-actions.pod:7349
7707 msgid "(Added in 1.0.75)"
7708 msgstr ""
7709
7710 #. type: =head2
7711 #: ../src/guestfs-actions.pod:925
7712 msgid "guestfs_cat"
7713 msgstr ""
7714
7715 #. type: verbatim
7716 #: ../src/guestfs-actions.pod:927
7717 #, no-wrap
7718 msgid ""
7719 " char *\n"
7720 " guestfs_cat (guestfs_h *g,\n"
7721 "              const char *path);\n"
7722 "\n"
7723 msgstr ""
7724
7725 #. type: textblock
7726 #: ../src/guestfs-actions.pod:931 ../src/guestfs-actions.pod:5813
7727 #: ../fish/guestfish-actions.pod:610 ../fish/guestfish-actions.pod:3825
7728 msgid "Return the contents of the file named C<path>."
7729 msgstr ""
7730
7731 #. type: textblock
7732 #: ../src/guestfs-actions.pod:933
7733 msgid ""
7734 "Note that this function cannot correctly handle binary files (specifically, "
7735 "files containing C<\\0> character which is treated as end of string).  For "
7736 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7737 "functions which have a more complex interface."
7738 msgstr ""
7739
7740 #. type: textblock
7741 #: ../src/guestfs-actions.pod:941 ../src/guestfs-actions.pod:1120
7742 #: ../src/guestfs-actions.pod:1140 ../src/guestfs-actions.pod:1436
7743 #: ../src/guestfs-actions.pod:1455 ../src/guestfs-actions.pod:1558
7744 #: ../src/guestfs-actions.pod:1577 ../src/guestfs-actions.pod:1823
7745 #: ../src/guestfs-actions.pod:2283 ../src/guestfs-actions.pod:2302
7746 #: ../src/guestfs-actions.pod:2345 ../src/guestfs-actions.pod:2369
7747 #: ../src/guestfs-actions.pod:2386 ../src/guestfs-actions.pod:2415
7748 #: ../src/guestfs-actions.pod:5595 ../src/guestfs-actions.pod:5621
7749 #: ../src/guestfs-actions.pod:5752 ../src/guestfs-actions.pod:5778
7750 #: ../src/guestfs-actions.pod:5802 ../src/guestfs-actions.pod:6734
7751 #: ../src/guestfs-actions.pod:6789 ../src/guestfs-actions.pod:6935
7752 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:7622
7753 #: ../src/guestfs-actions.pod:7648 ../src/guestfs-actions.pod:7674
7754 #: ../src/guestfs-actions.pod:7693 ../src/guestfs-actions.pod:7779
7755 #: ../src/guestfs-actions.pod:7798 ../src/guestfs-actions.pod:7844
7756 #: ../src/guestfs-actions.pod:7863 ../fish/guestfish-actions.pod:617
7757 #: ../fish/guestfish-actions.pod:752 ../fish/guestfish-actions.pod:764
7758 #: ../fish/guestfish-actions.pod:940 ../fish/guestfish-actions.pod:950
7759 #: ../fish/guestfish-actions.pod:1017 ../fish/guestfish-actions.pod:1027
7760 #: ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1520
7761 #: ../fish/guestfish-actions.pod:1530 ../fish/guestfish-actions.pod:1558
7762 #: ../fish/guestfish-actions.pod:1573 ../fish/guestfish-actions.pod:1583
7763 #: ../fish/guestfish-actions.pod:1602 ../fish/guestfish-actions.pod:3695
7764 #: ../fish/guestfish-actions.pod:3710 ../fish/guestfish-actions.pod:3786
7765 #: ../fish/guestfish-actions.pod:3803 ../fish/guestfish-actions.pod:3818
7766 #: ../fish/guestfish-actions.pod:4472 ../fish/guestfish-actions.pod:4518
7767 #: ../fish/guestfish-actions.pod:4603 ../fish/guestfish-actions.pod:4618
7768 #: ../fish/guestfish-actions.pod:5022 ../fish/guestfish-actions.pod:5040
7769 #: ../fish/guestfish-actions.pod:5057 ../fish/guestfish-actions.pod:5067
7770 #: ../fish/guestfish-actions.pod:5116 ../fish/guestfish-actions.pod:5126
7771 #: ../fish/guestfish-actions.pod:5155 ../fish/guestfish-actions.pod:5165
7772 msgid ""
7773 "Because of the message protocol, there is a transfer limit of somewhere "
7774 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7775 msgstr ""
7776
7777 #. type: textblock
7778 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:3727
7779 #: ../src/guestfs-actions.pod:3809 ../src/guestfs-actions.pod:3826
7780 #: ../src/guestfs-actions.pod:3914 ../src/guestfs-actions.pod:4322
7781 #: ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:5701
7782 #: ../src/guestfs-actions.pod:5715 ../src/guestfs-actions.pod:7502
7783 #: ../src/guestfs-actions.pod:7516
7784 msgid "(Added in 0.4)"
7785 msgstr ""
7786
7787 #. type: =head2
7788 #: ../src/guestfs-actions.pod:946
7789 msgid "guestfs_checksum"
7790 msgstr ""
7791
7792 #. type: verbatim
7793 #: ../src/guestfs-actions.pod:948
7794 #, no-wrap
7795 msgid ""
7796 " char *\n"
7797 " guestfs_checksum (guestfs_h *g,\n"
7798 "                   const char *csumtype,\n"
7799 "                   const char *path);\n"
7800 "\n"
7801 msgstr ""
7802
7803 #. type: textblock
7804 #: ../src/guestfs-actions.pod:953 ../fish/guestfish-actions.pod:624
7805 msgid ""
7806 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7807 msgstr ""
7808
7809 #. type: textblock
7810 #: ../src/guestfs-actions.pod:956 ../fish/guestfish-actions.pod:627
7811 msgid ""
7812 "The type of checksum to compute is given by the C<csumtype> parameter which "
7813 "must have one of the following values:"
7814 msgstr ""
7815
7816 #. type: =item
7817 #: ../src/guestfs-actions.pod:961 ../fish/guestfish-actions.pod:632
7818 msgid "C<crc>"
7819 msgstr "C<crc>"
7820
7821 #. type: textblock
7822 #: ../src/guestfs-actions.pod:963 ../fish/guestfish-actions.pod:634
7823 msgid ""
7824 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7825 "C<cksum> command."
7826 msgstr ""
7827
7828 #. type: =item
7829 #: ../src/guestfs-actions.pod:966 ../fish/guestfish-actions.pod:637
7830 msgid "C<md5>"
7831 msgstr "C<md5>"
7832
7833 #. type: textblock
7834 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:639
7835 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7836 msgstr ""
7837
7838 #. type: =item
7839 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:641
7840 msgid "C<sha1>"
7841 msgstr "C<sha1>"
7842
7843 #. type: textblock
7844 #: ../src/guestfs-actions.pod:972 ../fish/guestfish-actions.pod:643
7845 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7846 msgstr ""
7847
7848 #. type: =item
7849 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:645
7850 msgid "C<sha224>"
7851 msgstr "C<sha224>"
7852
7853 #. type: textblock
7854 #: ../src/guestfs-actions.pod:976 ../fish/guestfish-actions.pod:647
7855 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7856 msgstr ""
7857
7858 #. type: =item
7859 #: ../src/guestfs-actions.pod:978 ../fish/guestfish-actions.pod:649
7860 msgid "C<sha256>"
7861 msgstr "C<sha256>"
7862
7863 #. type: textblock
7864 #: ../src/guestfs-actions.pod:980 ../fish/guestfish-actions.pod:651
7865 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7866 msgstr ""
7867
7868 #. type: =item
7869 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:653
7870 msgid "C<sha384>"
7871 msgstr "C<sha384>"
7872
7873 #. type: textblock
7874 #: ../src/guestfs-actions.pod:984 ../fish/guestfish-actions.pod:655
7875 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7876 msgstr ""
7877
7878 #. type: =item
7879 #: ../src/guestfs-actions.pod:986 ../fish/guestfish-actions.pod:657
7880 msgid "C<sha512>"
7881 msgstr "C<sha512>"
7882
7883 #. type: textblock
7884 #: ../src/guestfs-actions.pod:988 ../fish/guestfish-actions.pod:659
7885 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7886 msgstr ""
7887
7888 #. type: textblock
7889 #: ../src/guestfs-actions.pod:992 ../fish/guestfish-actions.pod:663
7890 msgid "The checksum is returned as a printable string."
7891 msgstr ""
7892
7893 #. type: textblock
7894 #: ../src/guestfs-actions.pod:994
7895 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7896 msgstr ""
7897
7898 #. type: textblock
7899 #: ../src/guestfs-actions.pod:996
7900 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7901 msgstr ""
7902
7903 #. type: textblock
7904 #: ../src/guestfs-actions.pod:1001 ../src/guestfs-actions.pod:1309
7905 #: ../src/guestfs-actions.pod:2145 ../src/guestfs-actions.pod:3425
7906 #: ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:3515
7907 #: ../src/guestfs-actions.pod:3542 ../src/guestfs-actions.pod:7205
7908 msgid "(Added in 1.0.2)"
7909 msgstr ""
7910
7911 #. type: =head2
7912 #: ../src/guestfs-actions.pod:1003
7913 msgid "guestfs_checksum_device"
7914 msgstr ""
7915
7916 #. type: verbatim
7917 #: ../src/guestfs-actions.pod:1005
7918 #, no-wrap
7919 msgid ""
7920 " char *\n"
7921 " guestfs_checksum_device (guestfs_h *g,\n"
7922 "                          const char *csumtype,\n"
7923 "                          const char *device);\n"
7924 "\n"
7925 msgstr ""
7926
7927 #. type: textblock
7928 #: ../src/guestfs-actions.pod:1010
7929 msgid ""
7930 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7931 "device named C<device>.  For the types of checksums supported see the "
7932 "C<guestfs_checksum> command."
7933 msgstr ""
7934
7935 #. type: textblock
7936 #: ../src/guestfs-actions.pod:1017 ../src/guestfs-actions.pod:5156
7937 #: ../src/guestfs-actions.pod:5291 ../src/guestfs-actions.pod:5328
7938 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5522
7939 #: ../src/guestfs-actions.pod:7114 ../src/guestfs-actions.pod:7128
7940 #: ../src/guestfs-actions.pod:7528
7941 msgid "(Added in 1.3.2)"
7942 msgstr ""
7943
7944 #. type: =head2
7945 #: ../src/guestfs-actions.pod:1019
7946 msgid "guestfs_checksums_out"
7947 msgstr ""
7948
7949 #. type: verbatim
7950 #: ../src/guestfs-actions.pod:1021
7951 #, no-wrap
7952 msgid ""
7953 " int\n"
7954 " guestfs_checksums_out (guestfs_h *g,\n"
7955 "                        const char *csumtype,\n"
7956 "                        const char *directory,\n"
7957 "                        const char *sumsfile);\n"
7958 "\n"
7959 msgstr ""
7960
7961 #. type: textblock
7962 #: ../src/guestfs-actions.pod:1027 ../fish/guestfish-actions.pod:681
7963 msgid ""
7964 "This command computes the checksums of all regular files in C<directory> and "
7965 "then emits a list of those checksums to the local output file C<sumsfile>."
7966 msgstr ""
7967
7968 #. type: textblock
7969 #: ../src/guestfs-actions.pod:1031 ../fish/guestfish-actions.pod:685
7970 msgid ""
7971 "This can be used for verifying the integrity of a virtual machine.  However "
7972 "to be properly secure you should pay attention to the output of the checksum "
7973 "command (it uses the ones from GNU coreutils).  In particular when the "
7974 "filename is not printable, coreutils uses a special backslash syntax.  For "
7975 "more information, see the GNU coreutils info file."
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1041
7980 msgid "(Added in 1.3.7)"
7981 msgstr ""
7982
7983 #. type: =head2
7984 #: ../src/guestfs-actions.pod:1043
7985 msgid "guestfs_chmod"
7986 msgstr ""
7987
7988 #. type: verbatim
7989 #: ../src/guestfs-actions.pod:1045
7990 #, no-wrap
7991 msgid ""
7992 " int\n"
7993 " guestfs_chmod (guestfs_h *g,\n"
7994 "                int mode,\n"
7995 "                const char *path);\n"
7996 "\n"
7997 msgstr ""
7998
7999 #. type: textblock
8000 #: ../src/guestfs-actions.pod:1050 ../fish/guestfish-actions.pod:699
8001 msgid ""
8002 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
8003 "supported."
8004 msgstr ""
8005
8006 #. type: textblock
8007 #: ../src/guestfs-actions.pod:1053 ../fish/guestfish-actions.pod:702
8008 msgid ""
8009 "I<Note>: When using this command from guestfish, C<mode> by default would be "
8010 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8011 "C<700>."
8012 msgstr ""
8013
8014 #. type: textblock
8015 #: ../src/guestfs-actions.pod:1057 ../src/guestfs-actions.pod:4573
8016 #: ../src/guestfs-actions.pod:4782 ../src/guestfs-actions.pod:4801
8017 #: ../src/guestfs-actions.pod:4820 ../fish/guestfish-actions.pod:706
8018 #: ../fish/guestfish-actions.pod:3054 ../fish/guestfish-actions.pod:3193
8019 #: ../fish/guestfish-actions.pod:3203 ../fish/guestfish-actions.pod:3213
8020 msgid "The mode actually set is affected by the umask."
8021 msgstr ""
8022
8023 #. type: =head2
8024 #: ../src/guestfs-actions.pod:1063
8025 msgid "guestfs_chown"
8026 msgstr ""
8027
8028 #. type: verbatim
8029 #: ../src/guestfs-actions.pod:1065
8030 #, no-wrap
8031 msgid ""
8032 " int\n"
8033 " guestfs_chown (guestfs_h *g,\n"
8034 "                int owner,\n"
8035 "                int group,\n"
8036 "                const char *path);\n"
8037 "\n"
8038 msgstr ""
8039
8040 #. type: textblock
8041 #: ../src/guestfs-actions.pod:1071 ../fish/guestfish-actions.pod:712
8042 msgid "Change the file owner to C<owner> and group to C<group>."
8043 msgstr ""
8044
8045 #. type: textblock
8046 #: ../src/guestfs-actions.pod:1073 ../src/guestfs-actions.pod:3644
8047 #: ../fish/guestfish-actions.pod:714 ../fish/guestfish-actions.pod:2489
8048 msgid ""
8049 "Only numeric uid and gid are supported.  If you want to use names, you will "
8050 "need to locate and parse the password file yourself (Augeas support makes "
8051 "this relatively easy)."
8052 msgstr ""
8053
8054 #. type: =head2
8055 #: ../src/guestfs-actions.pod:1081
8056 msgid "guestfs_command"
8057 msgstr ""
8058
8059 #. type: verbatim
8060 #: ../src/guestfs-actions.pod:1083
8061 #, no-wrap
8062 msgid ""
8063 " char *\n"
8064 " guestfs_command (guestfs_h *g,\n"
8065 "                  char *const *arguments);\n"
8066 "\n"
8067 msgstr ""
8068
8069 #. type: textblock
8070 #: ../src/guestfs-actions.pod:1087 ../fish/guestfish-actions.pod:722
8071 msgid ""
8072 "This call runs a command from the guest filesystem.  The filesystem must be "
8073 "mounted, and must contain a compatible operating system (ie. something "
8074 "Linux, with the same or compatible processor architecture)."
8075 msgstr ""
8076
8077 #. type: textblock
8078 #: ../src/guestfs-actions.pod:1092
8079 msgid ""
8080 "The single parameter is an argv-style list of arguments.  The first element "
8081 "is the name of the program to run.  Subsequent elements are parameters.  The "
8082 "list must be non-empty (ie. must contain a program name).  Note that the "
8083 "command runs directly, and is I<not> invoked via the shell (see "
8084 "C<guestfs_sh>)."
8085 msgstr ""
8086
8087 #. type: textblock
8088 #: ../src/guestfs-actions.pod:1099 ../fish/guestfish-actions.pod:734
8089 msgid "The return value is anything printed to I<stdout> by the command."
8090 msgstr ""
8091
8092 #. type: textblock
8093 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:737
8094 msgid ""
8095 "If the command returns a non-zero exit status, then this function returns an "
8096 "error message.  The error message string is the content of I<stderr> from "
8097 "the command."
8098 msgstr ""
8099
8100 #. type: textblock
8101 #: ../src/guestfs-actions.pod:1106 ../fish/guestfish-actions.pod:741
8102 msgid ""
8103 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
8104 "bin>.  If you require a program from another location, you should provide "
8105 "the full path in the first parameter."
8106 msgstr ""
8107
8108 #. type: textblock
8109 #: ../src/guestfs-actions.pod:1111 ../fish/guestfish-actions.pod:746
8110 msgid ""
8111 "Shared libraries and data files required by the program must be available on "
8112 "filesystems which are mounted in the correct places.  It is the caller's "
8113 "responsibility to ensure all filesystems that are needed are mounted at the "
8114 "right locations."
8115 msgstr ""
8116
8117 #. type: textblock
8118 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:1143
8119 #: ../src/guestfs-actions.pod:1608
8120 msgid "(Added in 0.9.1)"
8121 msgstr ""
8122
8123 #. type: =head2
8124 #: ../src/guestfs-actions.pod:1125
8125 msgid "guestfs_command_lines"
8126 msgstr ""
8127
8128 #. type: verbatim
8129 #: ../src/guestfs-actions.pod:1127
8130 #, no-wrap
8131 msgid ""
8132 " char **\n"
8133 " guestfs_command_lines (guestfs_h *g,\n"
8134 "                        char *const *arguments);\n"
8135 "\n"
8136 msgstr ""
8137
8138 #. type: textblock
8139 #: ../src/guestfs-actions.pod:1131
8140 msgid ""
8141 "This is the same as C<guestfs_command>, but splits the result into a list of "
8142 "lines."
8143 msgstr ""
8144
8145 #. type: textblock
8146 #: ../src/guestfs-actions.pod:1134
8147 msgid "See also: C<guestfs_sh_lines>"
8148 msgstr ""
8149
8150 #. type: =head2
8151 #: ../src/guestfs-actions.pod:1145
8152 msgid "guestfs_config"
8153 msgstr ""
8154
8155 #. type: verbatim
8156 #: ../src/guestfs-actions.pod:1147
8157 #, no-wrap
8158 msgid ""
8159 " int\n"
8160 " guestfs_config (guestfs_h *g,\n"
8161 "                 const char *qemuparam,\n"
8162 "                 const char *qemuvalue);\n"
8163 "\n"
8164 msgstr ""
8165
8166 #. type: textblock
8167 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:771
8168 msgid ""
8169 "This can be used to add arbitrary qemu command line parameters of the form "
8170 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8171 "setting some parameters which would interfere with parameters that we use."
8172 msgstr ""
8173
8174 #. type: textblock
8175 #: ../src/guestfs-actions.pod:1157 ../fish/guestfish-actions.pod:776
8176 msgid "The first character of C<param> string must be a C<-> (dash)."
8177 msgstr ""
8178
8179 #. type: textblock
8180 #: ../src/guestfs-actions.pod:1159 ../fish/guestfish-actions.pod:778
8181 msgid "C<value> can be NULL."
8182 msgstr ""
8183
8184 #. type: =head2
8185 #: ../src/guestfs-actions.pod:1165
8186 msgid "guestfs_copy_size"
8187 msgstr ""
8188
8189 #. type: verbatim
8190 #: ../src/guestfs-actions.pod:1167
8191 #, no-wrap
8192 msgid ""
8193 " int\n"
8194 " guestfs_copy_size (guestfs_h *g,\n"
8195 "                    const char *src,\n"
8196 "                    const char *dest,\n"
8197 "                    int64_t size);\n"
8198 "\n"
8199 msgstr ""
8200
8201 #. type: textblock
8202 #: ../src/guestfs-actions.pod:1173 ../fish/guestfish-actions.pod:784
8203 msgid ""
8204 "This command copies exactly C<size> bytes from one source device or file "
8205 "C<src> to another destination device or file C<dest>."
8206 msgstr ""
8207
8208 #. type: textblock
8209 #: ../src/guestfs-actions.pod:1176 ../fish/guestfish-actions.pod:787
8210 msgid ""
8211 "Note this will fail if the source is too short or if the destination is not "
8212 "large enough."
8213 msgstr ""
8214
8215 #. type: textblock
8216 #: ../src/guestfs-actions.pod:1181 ../src/guestfs-actions.pod:1304
8217 #: ../src/guestfs-actions.pod:1335 ../src/guestfs-actions.pod:1380
8218 #: ../src/guestfs-actions.pod:1757 ../src/guestfs-actions.pod:1779
8219 #: ../src/guestfs-actions.pod:3625 ../src/guestfs-actions.pod:7200
8220 #: ../src/guestfs-actions.pod:7234 ../src/guestfs-actions.pod:7715
8221 #: ../src/guestfs-actions.pod:7734
8222 msgid ""
8223 "This long-running command can generate progress notification messages so "
8224 "that the caller can display a progress bar or indicator.  To receive these "
8225 "messages, the caller must register a progress event callback.  See L<guestfs"
8226 "(3)/GUESTFS_EVENT_PROGRESS>."
8227 msgstr ""
8228
8229 #. type: textblock
8230 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:4349
8231 #: ../src/guestfs-actions.pod:5728 ../src/guestfs-actions.pod:7435
8232 #: ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:7541
8233 msgid "(Added in 1.0.87)"
8234 msgstr ""
8235
8236 #. type: =head2
8237 #: ../src/guestfs-actions.pod:1188
8238 msgid "guestfs_cp"
8239 msgstr ""
8240
8241 #. type: verbatim
8242 #: ../src/guestfs-actions.pod:1190
8243 #, no-wrap
8244 msgid ""
8245 " int\n"
8246 " guestfs_cp (guestfs_h *g,\n"
8247 "             const char *src,\n"
8248 "             const char *dest);\n"
8249 "\n"
8250 msgstr ""
8251
8252 #. type: textblock
8253 #: ../src/guestfs-actions.pod:1195 ../fish/guestfish-actions.pod:794
8254 msgid ""
8255 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8256 "destination filename or destination directory."
8257 msgstr ""
8258
8259 #. type: textblock
8260 #: ../src/guestfs-actions.pod:1200 ../src/guestfs-actions.pod:1214
8261 #: ../src/guestfs-actions.pod:1286 ../src/guestfs-actions.pod:1360
8262 #: ../src/guestfs-actions.pod:1474 ../src/guestfs-actions.pod:5103
8263 #: ../src/guestfs-actions.pod:5572
8264 msgid "(Added in 1.0.18)"
8265 msgstr ""
8266
8267 #. type: =head2
8268 #: ../src/guestfs-actions.pod:1202
8269 msgid "guestfs_cp_a"
8270 msgstr ""
8271
8272 #. type: verbatim
8273 #: ../src/guestfs-actions.pod:1204
8274 #, no-wrap
8275 msgid ""
8276 " int\n"
8277 " guestfs_cp_a (guestfs_h *g,\n"
8278 "               const char *src,\n"
8279 "               const char *dest);\n"
8280 "\n"
8281 msgstr ""
8282
8283 #. type: textblock
8284 #: ../src/guestfs-actions.pod:1209 ../fish/guestfish-actions.pod:801
8285 msgid ""
8286 "This copies a file or directory from C<src> to C<dest> recursively using the "
8287 "C<cp -a> command."
8288 msgstr ""
8289
8290 #. type: =head2
8291 #: ../src/guestfs-actions.pod:1216
8292 msgid "guestfs_dd"
8293 msgstr ""
8294
8295 #. type: verbatim
8296 #: ../src/guestfs-actions.pod:1218
8297 #, no-wrap
8298 msgid ""
8299 " int\n"
8300 " guestfs_dd (guestfs_h *g,\n"
8301 "             const char *src,\n"
8302 "             const char *dest);\n"
8303 "\n"
8304 msgstr ""
8305
8306 #. type: textblock
8307 #: ../src/guestfs-actions.pod:1223 ../fish/guestfish-actions.pod:808
8308 msgid ""
8309 "This command copies from one source device or file C<src> to another "
8310 "destination device or file C<dest>.  Normally you would use this to copy to "
8311 "or from a device or partition, for example to duplicate a filesystem."
8312 msgstr ""
8313
8314 #. type: textblock
8315 #: ../src/guestfs-actions.pod:1228
8316 msgid ""
8317 "If the destination is a device, it must be as large or larger than the "
8318 "source file or device, otherwise the copy will fail.  This command cannot do "
8319 "partial copies (see C<guestfs_copy_size>)."
8320 msgstr ""
8321
8322 #. type: =head2
8323 #: ../src/guestfs-actions.pod:1236
8324 msgid "guestfs_df"
8325 msgstr ""
8326
8327 #. type: verbatim
8328 #: ../src/guestfs-actions.pod:1238
8329 #, no-wrap
8330 msgid ""
8331 " char *\n"
8332 " guestfs_df (guestfs_h *g);\n"
8333 "\n"
8334 msgstr ""
8335
8336 #. type: textblock
8337 #: ../src/guestfs-actions.pod:1241 ../fish/guestfish-actions.pod:821
8338 msgid "This command runs the C<df> command to report disk space used."
8339 msgstr ""
8340
8341 #. type: textblock
8342 #: ../src/guestfs-actions.pod:1243 ../src/guestfs-actions.pod:1260
8343 msgid ""
8344 "This command is mostly useful for interactive sessions.  It is I<not> "
8345 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8346 "from programs."
8347 msgstr ""
8348
8349 #. type: textblock
8350 #: ../src/guestfs-actions.pod:1250 ../src/guestfs-actions.pod:1267
8351 #: ../src/guestfs-actions.pod:1385 ../src/guestfs-actions.pod:2348
8352 #: ../src/guestfs-actions.pod:2372 ../src/guestfs-actions.pod:2440
8353 #: ../src/guestfs-actions.pod:4459 ../src/guestfs-actions.pod:5003
8354 #: ../src/guestfs-actions.pod:6938 ../src/guestfs-actions.pod:6962
8355 #: ../src/guestfs-actions.pod:7581 ../src/guestfs-actions.pod:7594
8356 #: ../src/guestfs-actions.pod:7607
8357 msgid "(Added in 1.0.54)"
8358 msgstr ""
8359
8360 #. type: =head2
8361 #: ../src/guestfs-actions.pod:1252
8362 msgid "guestfs_df_h"
8363 msgstr ""
8364
8365 #. type: verbatim
8366 #: ../src/guestfs-actions.pod:1254
8367 #, no-wrap
8368 msgid ""
8369 " char *\n"
8370 " guestfs_df_h (guestfs_h *g);\n"
8371 "\n"
8372 msgstr ""
8373
8374 #. type: textblock
8375 #: ../src/guestfs-actions.pod:1257 ../fish/guestfish-actions.pod:831
8376 msgid ""
8377 "This command runs the C<df -h> command to report disk space used in human-"
8378 "readable format."
8379 msgstr ""
8380
8381 #. type: =head2
8382 #: ../src/guestfs-actions.pod:1269
8383 msgid "guestfs_dmesg"
8384 msgstr ""
8385
8386 #. type: verbatim
8387 #: ../src/guestfs-actions.pod:1271
8388 #, no-wrap
8389 msgid ""
8390 " char *\n"
8391 " guestfs_dmesg (guestfs_h *g);\n"
8392 "\n"
8393 msgstr ""
8394
8395 #. type: textblock
8396 #: ../src/guestfs-actions.pod:1274 ../fish/guestfish-actions.pod:842
8397 msgid ""
8398 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8399 "This is sometimes useful for extended debugging of problems."
8400 msgstr ""
8401
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:1278
8404 msgid ""
8405 "Another way to get the same information is to enable verbose messages with "
8406 "C<guestfs_set_verbose> or by setting the environment variable "
8407 "C<LIBGUESTFS_DEBUG=1> before running the program."
8408 msgstr ""
8409
8410 #. type: =head2
8411 #: ../src/guestfs-actions.pod:1288
8412 msgid "guestfs_download"
8413 msgstr ""
8414
8415 #. type: verbatim
8416 #: ../src/guestfs-actions.pod:1290
8417 #, no-wrap
8418 msgid ""
8419 " int\n"
8420 " guestfs_download (guestfs_h *g,\n"
8421 "                   const char *remotefilename,\n"
8422 "                   const char *filename);\n"
8423 "\n"
8424 msgstr ""
8425
8426 #. type: textblock
8427 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1320
8428 #: ../fish/guestfish-actions.pod:855 ../fish/guestfish-actions.pod:868
8429 msgid ""
8430 "Download file C<remotefilename> and save it as C<filename> on the local "
8431 "machine."
8432 msgstr ""
8433
8434 #. type: textblock
8435 #: ../src/guestfs-actions.pod:1298 ../src/guestfs-actions.pod:7194
8436 #: ../fish/guestfish-actions.pod:858 ../fish/guestfish-actions.pod:4776
8437 msgid "C<filename> can also be a named pipe."
8438 msgstr ""
8439
8440 #. type: textblock
8441 #: ../src/guestfs-actions.pod:1300
8442 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8443 msgstr ""
8444
8445 #. type: =head2
8446 #: ../src/guestfs-actions.pod:1311
8447 msgid "guestfs_download_offset"
8448 msgstr ""
8449
8450 #. type: verbatim
8451 #: ../src/guestfs-actions.pod:1313
8452 #, no-wrap
8453 msgid ""
8454 " int\n"
8455 " guestfs_download_offset (guestfs_h *g,\n"
8456 "                          const char *remotefilename,\n"
8457 "                          const char *filename,\n"
8458 "                          int64_t offset,\n"
8459 "                          int64_t size);\n"
8460 "\n"
8461 msgstr ""
8462
8463 #. type: textblock
8464 #: ../src/guestfs-actions.pod:1323 ../fish/guestfish-actions.pod:871
8465 msgid ""
8466 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8467 "region must be within the file or device)."
8468 msgstr ""
8469
8470 #. type: textblock
8471 #: ../src/guestfs-actions.pod:1326
8472 msgid ""
8473 "Note that there is no limit on the amount of data that can be downloaded "
8474 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8475 "full amount unless an error occurs."
8476 msgstr ""
8477
8478 #. type: textblock
8479 #: ../src/guestfs-actions.pod:1331
8480 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8481 msgstr ""
8482
8483 #. type: textblock
8484 #: ../src/guestfs-actions.pod:1340 ../src/guestfs-actions.pod:7239
8485 msgid "(Added in 1.5.17)"
8486 msgstr ""
8487
8488 #. type: =head2
8489 #: ../src/guestfs-actions.pod:1342
8490 msgid "guestfs_drop_caches"
8491 msgstr ""
8492
8493 #. type: verbatim
8494 #: ../src/guestfs-actions.pod:1344
8495 #, no-wrap
8496 msgid ""
8497 " int\n"
8498 " guestfs_drop_caches (guestfs_h *g,\n"
8499 "                      int whattodrop);\n"
8500 "\n"
8501 msgstr ""
8502
8503 #. type: textblock
8504 #: ../src/guestfs-actions.pod:1348 ../fish/guestfish-actions.pod:887
8505 msgid ""
8506 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8507 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8508 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8509 msgstr ""
8510
8511 #. type: textblock
8512 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:892
8513 msgid "Setting C<whattodrop> to 3 should drop everything."
8514 msgstr ""
8515
8516 #. type: textblock
8517 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:894
8518 msgid ""
8519 "This automatically calls L<sync(2)> before the operation, so that the "
8520 "maximum guest memory is freed."
8521 msgstr ""
8522
8523 #. type: =head2
8524 #: ../src/guestfs-actions.pod:1362
8525 msgid "guestfs_du"
8526 msgstr ""
8527
8528 #. type: verbatim
8529 #: ../src/guestfs-actions.pod:1364
8530 #, no-wrap
8531 msgid ""
8532 " int64_t\n"
8533 " guestfs_du (guestfs_h *g,\n"
8534 "             const char *path);\n"
8535 "\n"
8536 msgstr ""
8537
8538 #. type: textblock
8539 #: ../src/guestfs-actions.pod:1368 ../fish/guestfish-actions.pod:901
8540 msgid ""
8541 "This command runs the C<du -s> command to estimate file space usage for "
8542 "C<path>."
8543 msgstr ""
8544
8545 #. type: textblock
8546 #: ../src/guestfs-actions.pod:1371 ../fish/guestfish-actions.pod:904
8547 msgid ""
8548 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8549 "estimate includes the contents of the directory and all subdirectories "
8550 "(recursively)."
8551 msgstr ""
8552
8553 #. type: textblock
8554 #: ../src/guestfs-actions.pod:1375 ../fish/guestfish-actions.pod:908
8555 msgid ""
8556 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8557 msgstr ""
8558
8559 #. type: =head2
8560 #: ../src/guestfs-actions.pod:1387
8561 msgid "guestfs_e2fsck_f"
8562 msgstr ""
8563
8564 #. type: verbatim
8565 #: ../src/guestfs-actions.pod:1389
8566 #, no-wrap
8567 msgid ""
8568 " int\n"
8569 " guestfs_e2fsck_f (guestfs_h *g,\n"
8570 "                   const char *device);\n"
8571 "\n"
8572 msgstr ""
8573
8574 #. type: textblock
8575 #: ../src/guestfs-actions.pod:1393 ../fish/guestfish-actions.pod:915
8576 msgid ""
8577 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8578 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8579 "clean (I<-f>)."
8580 msgstr ""
8581
8582 #. type: textblock
8583 #: ../src/guestfs-actions.pod:1397
8584 msgid ""
8585 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8586 "Normally you should use C<guestfs_fsck>."
8587 msgstr ""
8588
8589 #. type: textblock
8590 #: ../src/guestfs-actions.pod:1402
8591 msgid "(Added in 1.0.29)"
8592 msgstr ""
8593
8594 #. type: =head2
8595 #: ../src/guestfs-actions.pod:1404
8596 msgid "guestfs_echo_daemon"
8597 msgstr ""
8598
8599 #. type: verbatim
8600 #: ../src/guestfs-actions.pod:1406
8601 #, no-wrap
8602 msgid ""
8603 " char *\n"
8604 " guestfs_echo_daemon (guestfs_h *g,\n"
8605 "                      char *const *words);\n"
8606 "\n"
8607 msgstr ""
8608
8609 #. type: textblock
8610 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:926
8611 msgid ""
8612 "This command concatenates the list of C<words> passed with single spaces "
8613 "between them and returns the resulting string."
8614 msgstr ""
8615
8616 #. type: textblock
8617 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:929
8618 msgid "You can use this command to test the connection through to the daemon."
8619 msgstr ""
8620
8621 #. type: textblock
8622 #: ../src/guestfs-actions.pod:1415
8623 msgid "See also C<guestfs_ping_daemon>."
8624 msgstr ""
8625
8626 #. type: textblock
8627 #: ../src/guestfs-actions.pod:1420 ../src/guestfs-actions.pod:2156
8628 #: ../src/guestfs-actions.pod:6410
8629 msgid "(Added in 1.0.69)"
8630 msgstr ""
8631
8632 #. type: =head2
8633 #: ../src/guestfs-actions.pod:1422
8634 msgid "guestfs_egrep"
8635 msgstr ""
8636
8637 #. type: verbatim
8638 #: ../src/guestfs-actions.pod:1424
8639 #, no-wrap
8640 msgid ""
8641 " char **\n"
8642 " guestfs_egrep (guestfs_h *g,\n"
8643 "                const char *regex,\n"
8644 "                const char *path);\n"
8645 "\n"
8646 msgstr ""
8647
8648 #. type: textblock
8649 #: ../src/guestfs-actions.pod:1429 ../fish/guestfish-actions.pod:937
8650 msgid ""
8651 "This calls the external C<egrep> program and returns the matching lines."
8652 msgstr ""
8653
8654 #. type: textblock
8655 #: ../src/guestfs-actions.pod:1439 ../src/guestfs-actions.pod:1458
8656 #: ../src/guestfs-actions.pod:1515 ../src/guestfs-actions.pod:1561
8657 #: ../src/guestfs-actions.pod:1580 ../src/guestfs-actions.pod:2286
8658 #: ../src/guestfs-actions.pod:2305 ../src/guestfs-actions.pod:2461
8659 #: ../src/guestfs-actions.pod:2474 ../src/guestfs-actions.pod:2489
8660 #: ../src/guestfs-actions.pod:2535 ../src/guestfs-actions.pod:2557
8661 #: ../src/guestfs-actions.pod:2570 ../src/guestfs-actions.pod:3839
8662 #: ../src/guestfs-actions.pod:3853 ../src/guestfs-actions.pod:3866
8663 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:4881
8664 #: ../src/guestfs-actions.pod:5906 ../src/guestfs-actions.pod:5955
8665 #: ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:6818
8666 #: ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6844
8667 #: ../src/guestfs-actions.pod:6866 ../src/guestfs-actions.pod:6879
8668 #: ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6905
8669 #: ../src/guestfs-actions.pod:7677 ../src/guestfs-actions.pod:7696
8670 #: ../src/guestfs-actions.pod:7782 ../src/guestfs-actions.pod:7801
8671 #: ../src/guestfs-actions.pod:7847 ../src/guestfs-actions.pod:7866
8672 msgid "(Added in 1.0.66)"
8673 msgstr ""
8674
8675 #. type: =head2
8676 #: ../src/guestfs-actions.pod:1441
8677 msgid "guestfs_egrepi"
8678 msgstr ""
8679
8680 #. type: verbatim
8681 #: ../src/guestfs-actions.pod:1443
8682 #, no-wrap
8683 msgid ""
8684 " char **\n"
8685 " guestfs_egrepi (guestfs_h *g,\n"
8686 "                 const char *regex,\n"
8687 "                 const char *path);\n"
8688 "\n"
8689 msgstr ""
8690
8691 #. type: textblock
8692 #: ../src/guestfs-actions.pod:1448 ../fish/guestfish-actions.pod:947
8693 msgid ""
8694 "This calls the external C<egrep -i> program and returns the matching lines."
8695 msgstr ""
8696
8697 #. type: =head2
8698 #: ../src/guestfs-actions.pod:1460
8699 msgid "guestfs_equal"
8700 msgstr ""
8701
8702 #. type: verbatim
8703 #: ../src/guestfs-actions.pod:1462
8704 #, no-wrap
8705 msgid ""
8706 " int\n"
8707 " guestfs_equal (guestfs_h *g,\n"
8708 "                const char *file1,\n"
8709 "                const char *file2);\n"
8710 "\n"
8711 msgstr ""
8712
8713 #. type: textblock
8714 #: ../src/guestfs-actions.pod:1467 ../fish/guestfish-actions.pod:957
8715 msgid ""
8716 "This compares the two files C<file1> and C<file2> and returns true if their "
8717 "content is exactly equal, or false otherwise."
8718 msgstr ""
8719
8720 #. type: textblock
8721 #: ../src/guestfs-actions.pod:1470 ../fish/guestfish-actions.pod:960
8722 msgid "The external L<cmp(1)> program is used for the comparison."
8723 msgstr ""
8724
8725 #. type: =head2
8726 #: ../src/guestfs-actions.pod:1476
8727 msgid "guestfs_exists"
8728 msgstr ""
8729
8730 #. type: verbatim
8731 #: ../src/guestfs-actions.pod:1478
8732 #, no-wrap
8733 msgid ""
8734 " int\n"
8735 " guestfs_exists (guestfs_h *g,\n"
8736 "                 const char *path);\n"
8737 "\n"
8738 msgstr ""
8739
8740 #. type: textblock
8741 #: ../src/guestfs-actions.pod:1482 ../fish/guestfish-actions.pod:966
8742 msgid ""
8743 "This returns C<true> if and only if there is a file, directory (or anything) "
8744 "with the given C<path> name."
8745 msgstr ""
8746
8747 #. type: textblock
8748 #: ../src/guestfs-actions.pod:1485
8749 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8750 msgstr ""
8751
8752 #. type: =head2
8753 #: ../src/guestfs-actions.pod:1491
8754 msgid "guestfs_fallocate"
8755 msgstr ""
8756
8757 #. type: verbatim
8758 #: ../src/guestfs-actions.pod:1493
8759 #, no-wrap
8760 msgid ""
8761 " int\n"
8762 " guestfs_fallocate (guestfs_h *g,\n"
8763 "                    const char *path,\n"
8764 "                    int len);\n"
8765 "\n"
8766 msgstr ""
8767
8768 #. type: textblock
8769 #: ../src/guestfs-actions.pod:1498 ../src/guestfs-actions.pod:1524
8770 #: ../fish/guestfish-actions.pod:975 ../fish/guestfish-actions.pod:994
8771 msgid ""
8772 "This command preallocates a file (containing zero bytes) named C<path> of "
8773 "size C<len> bytes.  If the file exists already, it is overwritten."
8774 msgstr ""
8775
8776 #. type: textblock
8777 #: ../src/guestfs-actions.pod:1502 ../fish/guestfish-actions.pod:979
8778 msgid ""
8779 "Do not confuse this with the guestfish-specific C<alloc> command which "
8780 "allocates a file in the host and attaches it as a device."
8781 msgstr ""
8782
8783 #. type: textblock
8784 #: ../src/guestfs-actions.pod:1508 ../fish/guestfish-actions.pod:983
8785 msgid ""
8786 "This function is deprecated.  In new code, use the C<fallocate64> call "
8787 "instead."
8788 msgstr ""
8789
8790 #. type: =head2
8791 #: ../src/guestfs-actions.pod:1517
8792 msgid "guestfs_fallocate64"
8793 msgstr ""
8794
8795 #. type: verbatim
8796 #: ../src/guestfs-actions.pod:1519
8797 #, no-wrap
8798 msgid ""
8799 " int\n"
8800 " guestfs_fallocate64 (guestfs_h *g,\n"
8801 "                      const char *path,\n"
8802 "                      int64_t len);\n"
8803 "\n"
8804 msgstr ""
8805
8806 #. type: textblock
8807 #: ../src/guestfs-actions.pod:1528
8808 msgid ""
8809 "Note that this call allocates disk blocks for the file.  To create a sparse "
8810 "file use C<guestfs_truncate_size> instead."
8811 msgstr ""
8812
8813 #. type: textblock
8814 #: ../src/guestfs-actions.pod:1531
8815 msgid ""
8816 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8817 "oversight it only allowed 30 bit lengths to be specified, effectively "
8818 "limiting the maximum size of files created through that call to 1GB."
8819 msgstr ""
8820
8821 #. type: textblock
8822 #: ../src/guestfs-actions.pod:1536 ../fish/guestfish-actions.pod:1006
8823 msgid ""
8824 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8825 "commands which create a file in the host and attach it as a device."
8826 msgstr ""
8827
8828 #. type: textblock
8829 #: ../src/guestfs-actions.pod:1542
8830 msgid "(Added in 1.3.17)"
8831 msgstr ""
8832
8833 #. type: =head2
8834 #: ../src/guestfs-actions.pod:1544
8835 msgid "guestfs_fgrep"
8836 msgstr ""
8837
8838 #. type: verbatim
8839 #: ../src/guestfs-actions.pod:1546
8840 #, no-wrap
8841 msgid ""
8842 " char **\n"
8843 " guestfs_fgrep (guestfs_h *g,\n"
8844 "                const char *pattern,\n"
8845 "                const char *path);\n"
8846 "\n"
8847 msgstr ""
8848
8849 #. type: textblock
8850 #: ../src/guestfs-actions.pod:1551 ../fish/guestfish-actions.pod:1014
8851 msgid ""
8852 "This calls the external C<fgrep> program and returns the matching lines."
8853 msgstr ""
8854
8855 #. type: =head2
8856 #: ../src/guestfs-actions.pod:1563
8857 msgid "guestfs_fgrepi"
8858 msgstr ""
8859
8860 #. type: verbatim
8861 #: ../src/guestfs-actions.pod:1565
8862 #, no-wrap
8863 msgid ""
8864 " char **\n"
8865 " guestfs_fgrepi (guestfs_h *g,\n"
8866 "                 const char *pattern,\n"
8867 "                 const char *path);\n"
8868 "\n"
8869 msgstr ""
8870
8871 #. type: textblock
8872 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1024
8873 msgid ""
8874 "This calls the external C<fgrep -i> program and returns the matching lines."
8875 msgstr ""
8876
8877 #. type: =head2
8878 #: ../src/guestfs-actions.pod:1582
8879 msgid "guestfs_file"
8880 msgstr ""
8881
8882 #. type: verbatim
8883 #: ../src/guestfs-actions.pod:1584
8884 #, no-wrap
8885 msgid ""
8886 " char *\n"
8887 " guestfs_file (guestfs_h *g,\n"
8888 "               const char *path);\n"
8889 "\n"
8890 msgstr ""
8891
8892 #. type: textblock
8893 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1034
8894 msgid ""
8895 "This call uses the standard L<file(1)> command to determine the type or "
8896 "contents of the file."
8897 msgstr ""
8898
8899 #. type: textblock
8900 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1037
8901 msgid ""
8902 "This call will also transparently look inside various types of compressed "
8903 "file."
8904 msgstr ""
8905
8906 #. type: textblock
8907 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1040
8908 msgid ""
8909 "The exact command which runs is C<file -zb path>.  Note in particular that "
8910 "the filename is not prepended to the output (the I<-b> option)."
8911 msgstr ""
8912
8913 #. type: textblock
8914 #: ../src/guestfs-actions.pod:1598 ../fish/guestfish-actions.pod:1044
8915 msgid ""
8916 "The output depends on the output of the underlying L<file(1)> command and it "
8917 "can change in future in ways beyond our control.  In other words, the output "
8918 "is not guaranteed by the ABI."
8919 msgstr ""
8920
8921 #. type: textblock
8922 #: ../src/guestfs-actions.pod:1602
8923 msgid ""
8924 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8925 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8926 msgstr ""
8927
8928 #. type: =head2
8929 #: ../src/guestfs-actions.pod:1610
8930 msgid "guestfs_file_architecture"
8931 msgstr ""
8932
8933 #. type: verbatim
8934 #: ../src/guestfs-actions.pod:1612
8935 #, no-wrap
8936 msgid ""
8937 " char *\n"
8938 " guestfs_file_architecture (guestfs_h *g,\n"
8939 "                            const char *filename);\n"
8940 "\n"
8941 msgstr ""
8942
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1055
8945 msgid ""
8946 "This detects the architecture of the binary C<filename>, and returns it if "
8947 "known."
8948 msgstr ""
8949
8950 #. type: textblock
8951 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1058
8952 msgid "Currently defined architectures are:"
8953 msgstr ""
8954
8955 #. type: =item
8956 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1062
8957 msgid "\"i386\""
8958 msgstr "\"i386\""
8959
8960 #. type: textblock
8961 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1064
8962 msgid ""
8963 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8964 "irrespective of the precise processor requirements of the binary."
8965 msgstr ""
8966
8967 #. type: =item
8968 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1067
8969 msgid "\"x86_64\""
8970 msgstr "\"x86_64\""
8971
8972 #. type: textblock
8973 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1069
8974 msgid "64 bit x86-64."
8975 msgstr ""
8976
8977 #. type: =item
8978 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1071
8979 msgid "\"sparc\""
8980 msgstr ""
8981
8982 #. type: textblock
8983 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1073
8984 msgid "32 bit SPARC."
8985 msgstr ""
8986
8987 #. type: =item
8988 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1075
8989 msgid "\"sparc64\""
8990 msgstr ""
8991
8992 #. type: textblock
8993 #: ../src/guestfs-actions.pod:1638 ../fish/guestfish-actions.pod:1077
8994 msgid "64 bit SPARC V9 and above."
8995 msgstr ""
8996
8997 #. type: =item
8998 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1079
8999 msgid "\"ia64\""
9000 msgstr "\"ia64\""
9001
9002 #. type: textblock
9003 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1081
9004 msgid "Intel Itanium."
9005 msgstr "Intel Itanium."
9006
9007 #. type: =item
9008 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1083
9009 msgid "\"ppc\""
9010 msgstr ""
9011
9012 #. type: textblock
9013 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1085
9014 msgid "32 bit Power PC."
9015 msgstr ""
9016
9017 #. type: =item
9018 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1087
9019 msgid "\"ppc64\""
9020 msgstr ""
9021
9022 #. type: textblock
9023 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1089
9024 msgid "64 bit Power PC."
9025 msgstr ""
9026
9027 #. type: textblock
9028 #: ../src/guestfs-actions.pod:1654 ../fish/guestfish-actions.pod:1093
9029 msgid "Libguestfs may return other architecture strings in future."
9030 msgstr ""
9031
9032 #. type: textblock
9033 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1095
9034 msgid "The function works on at least the following types of files:"
9035 msgstr ""
9036
9037 #. type: textblock
9038 #: ../src/guestfs-actions.pod:1662 ../fish/guestfish-actions.pod:1101
9039 msgid "many types of Un*x and Linux binary"
9040 msgstr ""
9041
9042 #. type: textblock
9043 #: ../src/guestfs-actions.pod:1666 ../fish/guestfish-actions.pod:1105
9044 msgid "many types of Un*x and Linux shared library"
9045 msgstr ""
9046
9047 #. type: textblock
9048 #: ../src/guestfs-actions.pod:1670 ../fish/guestfish-actions.pod:1109
9049 msgid "Windows Win32 and Win64 binaries"
9050 msgstr ""
9051
9052 #. type: textblock
9053 #: ../src/guestfs-actions.pod:1674 ../fish/guestfish-actions.pod:1113
9054 msgid "Windows Win32 and Win64 DLLs"
9055 msgstr ""
9056
9057 #. type: textblock
9058 #: ../src/guestfs-actions.pod:1676 ../fish/guestfish-actions.pod:1115
9059 msgid "Win32 binaries and DLLs return C<i386>."
9060 msgstr ""
9061
9062 #. type: textblock
9063 #: ../src/guestfs-actions.pod:1678 ../fish/guestfish-actions.pod:1117
9064 msgid "Win64 binaries and DLLs return C<x86_64>."
9065 msgstr ""
9066
9067 #. type: textblock
9068 #: ../src/guestfs-actions.pod:1682 ../fish/guestfish-actions.pod:1121
9069 msgid "Linux kernel modules"
9070 msgstr ""
9071
9072 #. type: textblock
9073 #: ../src/guestfs-actions.pod:1686 ../fish/guestfish-actions.pod:1125
9074 msgid "Linux new-style initrd images"
9075 msgstr ""
9076
9077 #. type: textblock
9078 #: ../src/guestfs-actions.pod:1690 ../fish/guestfish-actions.pod:1129
9079 msgid "some non-x86 Linux vmlinuz kernels"
9080 msgstr ""
9081
9082 #. type: textblock
9083 #: ../src/guestfs-actions.pod:1694 ../fish/guestfish-actions.pod:1133
9084 msgid "What it can't do currently:"
9085 msgstr ""
9086
9087 #. type: textblock
9088 #: ../src/guestfs-actions.pod:1700 ../fish/guestfish-actions.pod:1139
9089 msgid "static libraries (libfoo.a)"
9090 msgstr ""
9091
9092 #. type: textblock
9093 #: ../src/guestfs-actions.pod:1704 ../fish/guestfish-actions.pod:1143
9094 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9095 msgstr ""
9096
9097 #. type: textblock
9098 #: ../src/guestfs-actions.pod:1708 ../fish/guestfish-actions.pod:1147
9099 msgid "x86 Linux vmlinuz kernels"
9100 msgstr ""
9101
9102 #. type: textblock
9103 #: ../src/guestfs-actions.pod:1710 ../fish/guestfish-actions.pod:1149
9104 msgid ""
9105 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9106 "compressed code, and are horribly hard to unpack.  If you want to find the "
9107 "architecture of a kernel, use the architecture of the associated initrd or "
9108 "kernel module(s) instead."
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:1720 ../src/guestfs-actions.pod:1883
9113 #: ../src/guestfs-actions.pod:1900 ../src/guestfs-actions.pod:2590
9114 #: ../src/guestfs-actions.pod:2680 ../src/guestfs-actions.pod:2746
9115 #: ../src/guestfs-actions.pod:2933 ../src/guestfs-actions.pod:2951
9116 #: ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3066
9117 #: ../src/guestfs-actions.pod:3159 ../src/guestfs-actions.pod:3396
9118 #: ../src/guestfs-actions.pod:3528
9119 msgid "(Added in 1.5.3)"
9120 msgstr ""
9121
9122 #. type: =head2
9123 #: ../src/guestfs-actions.pod:1722
9124 msgid "guestfs_filesize"
9125 msgstr ""
9126
9127 #. type: verbatim
9128 #: ../src/guestfs-actions.pod:1724
9129 #, no-wrap
9130 msgid ""
9131 " int64_t\n"
9132 " guestfs_filesize (guestfs_h *g,\n"
9133 "                   const char *file);\n"
9134 "\n"
9135 msgstr ""
9136
9137 #. type: textblock
9138 #: ../src/guestfs-actions.pod:1728 ../fish/guestfish-actions.pod:1160
9139 msgid "This command returns the size of C<file> in bytes."
9140 msgstr ""
9141
9142 #. type: textblock
9143 #: ../src/guestfs-actions.pod:1730
9144 msgid ""
9145 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9146 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9147 "devices, use C<guestfs_blockdev_getsize64>."
9148 msgstr ""
9149
9150 #. type: textblock
9151 #: ../src/guestfs-actions.pod:1736
9152 msgid "(Added in 1.0.82)"
9153 msgstr ""
9154
9155 #. type: =head2
9156 #: ../src/guestfs-actions.pod:1738
9157 msgid "guestfs_fill"
9158 msgstr ""
9159
9160 #. type: verbatim
9161 #: ../src/guestfs-actions.pod:1740
9162 #, no-wrap
9163 msgid ""
9164 " int\n"
9165 " guestfs_fill (guestfs_h *g,\n"
9166 "               int c,\n"
9167 "               int len,\n"
9168 "               const char *path);\n"
9169 "\n"
9170 msgstr ""
9171
9172 #. type: textblock
9173 #: ../src/guestfs-actions.pod:1746 ../fish/guestfish-actions.pod:1170
9174 msgid ""
9175 "This command creates a new file called C<path>.  The initial content of the "
9176 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9177 "[0..255]>."
9178 msgstr ""
9179
9180 #. type: textblock
9181 #: ../src/guestfs-actions.pod:1750
9182 msgid ""
9183 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9184 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9185 "bytes use C<guestfs_fill_pattern>."
9186 msgstr ""
9187
9188 #. type: textblock
9189 #: ../src/guestfs-actions.pod:1762
9190 msgid "(Added in 1.0.79)"
9191 msgstr ""
9192
9193 #. type: =head2
9194 #: ../src/guestfs-actions.pod:1764
9195 msgid "guestfs_fill_pattern"
9196 msgstr ""
9197
9198 #. type: verbatim
9199 #: ../src/guestfs-actions.pod:1766
9200 #, no-wrap
9201 msgid ""
9202 " int\n"
9203 " guestfs_fill_pattern (guestfs_h *g,\n"
9204 "                       const char *pattern,\n"
9205 "                       int len,\n"
9206 "                       const char *path);\n"
9207 "\n"
9208 msgstr ""
9209
9210 #. type: textblock
9211 #: ../src/guestfs-actions.pod:1772
9212 msgid ""
9213 "This function is like C<guestfs_fill> except that it creates a new file of "
9214 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9215 "pattern is truncated if necessary to ensure the length of the file is "
9216 "exactly C<len> bytes."
9217 msgstr ""
9218
9219 #. type: textblock
9220 #: ../src/guestfs-actions.pod:1784
9221 msgid "(Added in 1.3.12)"
9222 msgstr ""
9223
9224 #. type: =head2
9225 #: ../src/guestfs-actions.pod:1786
9226 msgid "guestfs_find"
9227 msgstr ""
9228
9229 #. type: verbatim
9230 #: ../src/guestfs-actions.pod:1788
9231 #, no-wrap
9232 msgid ""
9233 " char **\n"
9234 " guestfs_find (guestfs_h *g,\n"
9235 "               const char *directory);\n"
9236 "\n"
9237 msgstr ""
9238
9239 #. type: textblock
9240 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1192
9241 msgid ""
9242 "This command lists out all files and directories, recursively, starting at "
9243 "C<directory>.  It is essentially equivalent to running the shell command "
9244 "C<find directory -print> but some post-processing happens on the output, "
9245 "described below."
9246 msgstr ""
9247
9248 #. type: textblock
9249 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1197
9250 msgid ""
9251 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9252 "structure was:"
9253 msgstr ""
9254
9255 #. type: verbatim
9256 #: ../src/guestfs-actions.pod:1800 ../fish/guestfish-actions.pod:1200
9257 #, no-wrap
9258 msgid ""
9259 " /tmp/a\n"
9260 " /tmp/b\n"
9261 " /tmp/c/d\n"
9262 "\n"
9263 msgstr ""
9264
9265 #. type: textblock
9266 #: ../src/guestfs-actions.pod:1804
9267 msgid ""
9268 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9269 msgstr ""
9270
9271 #. type: verbatim
9272 #: ../src/guestfs-actions.pod:1807 ../fish/guestfish-actions.pod:1207
9273 #, no-wrap
9274 msgid ""
9275 " a\n"
9276 " b\n"
9277 " c\n"
9278 " c/d\n"
9279 "\n"
9280 msgstr ""
9281
9282 #. type: textblock
9283 #: ../src/guestfs-actions.pod:1812 ../fish/guestfish-actions.pod:1212
9284 msgid "If C<directory> is not a directory, then this command returns an error."
9285 msgstr ""
9286
9287 #. type: textblock
9288 #: ../src/guestfs-actions.pod:1815 ../fish/guestfish-actions.pod:1215
9289 msgid "The returned list is sorted."
9290 msgstr ""
9291
9292 #. type: textblock
9293 #: ../src/guestfs-actions.pod:1817
9294 msgid "See also C<guestfs_find0>."
9295 msgstr ""
9296
9297 #. type: textblock
9298 #: ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:4286
9299 #: ../src/guestfs-actions.pod:5990
9300 msgid "(Added in 1.0.27)"
9301 msgstr ""
9302
9303 #. type: =head2
9304 #: ../src/guestfs-actions.pod:1828
9305 msgid "guestfs_find0"
9306 msgstr ""
9307
9308 #. type: verbatim
9309 #: ../src/guestfs-actions.pod:1830
9310 #, no-wrap
9311 msgid ""
9312 " int\n"
9313 " guestfs_find0 (guestfs_h *g,\n"
9314 "                const char *directory,\n"
9315 "                const char *files);\n"
9316 "\n"
9317 msgstr ""
9318
9319 #. type: textblock
9320 #: ../src/guestfs-actions.pod:1835 ../fish/guestfish-actions.pod:1226
9321 msgid ""
9322 "This command lists out all files and directories, recursively, starting at "
9323 "C<directory>, placing the resulting list in the external file called "
9324 "C<files>."
9325 msgstr ""
9326
9327 #. type: textblock
9328 #: ../src/guestfs-actions.pod:1839
9329 msgid ""
9330 "This command works the same way as C<guestfs_find> with the following "
9331 "exceptions:"
9332 msgstr ""
9333
9334 #. type: textblock
9335 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1237
9336 msgid "The resulting list is written to an external file."
9337 msgstr ""
9338
9339 #. type: textblock
9340 #: ../src/guestfs-actions.pod:1850 ../fish/guestfish-actions.pod:1241
9341 msgid ""
9342 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9343 "L<find(1)> option I<-print0>."
9344 msgstr ""
9345
9346 #. type: textblock
9347 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1246
9348 msgid "This command is not limited in the number of names that it can return."
9349 msgstr ""
9350
9351 #. type: textblock
9352 #: ../src/guestfs-actions.pod:1860 ../fish/guestfish-actions.pod:1251
9353 msgid "The result list is not sorted."
9354 msgstr ""
9355
9356 #. type: textblock
9357 #: ../src/guestfs-actions.pod:1866
9358 msgid "(Added in 1.0.74)"
9359 msgstr ""
9360
9361 #. type: =head2
9362 #: ../src/guestfs-actions.pod:1868
9363 msgid "guestfs_findfs_label"
9364 msgstr ""
9365
9366 #. type: verbatim
9367 #: ../src/guestfs-actions.pod:1870
9368 #, no-wrap
9369 msgid ""
9370 " char *\n"
9371 " guestfs_findfs_label (guestfs_h *g,\n"
9372 "                       const char *label);\n"
9373 "\n"
9374 msgstr ""
9375
9376 #. type: textblock
9377 #: ../src/guestfs-actions.pod:1874 ../fish/guestfish-actions.pod:1261
9378 msgid ""
9379 "This command searches the filesystems and returns the one which has the "
9380 "given label.  An error is returned if no such filesystem can be found."
9381 msgstr ""
9382
9383 #. type: textblock
9384 #: ../src/guestfs-actions.pod:1878
9385 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9386 msgstr ""
9387
9388 #. type: =head2
9389 #: ../src/guestfs-actions.pod:1885
9390 msgid "guestfs_findfs_uuid"
9391 msgstr ""
9392
9393 #. type: verbatim
9394 #: ../src/guestfs-actions.pod:1887
9395 #, no-wrap
9396 msgid ""
9397 " char *\n"
9398 " guestfs_findfs_uuid (guestfs_h *g,\n"
9399 "                      const char *uuid);\n"
9400 "\n"
9401 msgstr ""
9402
9403 #. type: textblock
9404 #: ../src/guestfs-actions.pod:1891 ../fish/guestfish-actions.pod:1271
9405 msgid ""
9406 "This command searches the filesystems and returns the one which has the "
9407 "given UUID.  An error is returned if no such filesystem can be found."
9408 msgstr ""
9409
9410 #. type: textblock
9411 #: ../src/guestfs-actions.pod:1895
9412 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9413 msgstr ""
9414
9415 #. type: =head2
9416 #: ../src/guestfs-actions.pod:1902
9417 msgid "guestfs_fsck"
9418 msgstr ""
9419
9420 #. type: verbatim
9421 #: ../src/guestfs-actions.pod:1904
9422 #, no-wrap
9423 msgid ""
9424 " int\n"
9425 " guestfs_fsck (guestfs_h *g,\n"
9426 "               const char *fstype,\n"
9427 "               const char *device);\n"
9428 "\n"
9429 msgstr ""
9430
9431 #. type: textblock
9432 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1281
9433 msgid ""
9434 "This runs the filesystem checker (fsck) on C<device> which should have "
9435 "filesystem type C<fstype>."
9436 msgstr ""
9437
9438 #. type: textblock
9439 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1284
9440 msgid ""
9441 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9442 "codes from C<fsck>."
9443 msgstr ""
9444
9445 #. type: textblock
9446 #: ../src/guestfs-actions.pod:1921 ../fish/guestfish-actions.pod:1293
9447 msgid "Multiple status codes can be summed together."
9448 msgstr ""
9449
9450 #. type: textblock
9451 #: ../src/guestfs-actions.pod:1925 ../fish/guestfish-actions.pod:1297
9452 msgid ""
9453 "A non-zero return code can mean \"success\", for example if errors have been "
9454 "corrected on the filesystem."
9455 msgstr ""
9456
9457 #. type: textblock
9458 #: ../src/guestfs-actions.pod:1930 ../fish/guestfish-actions.pod:1302
9459 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9460 msgstr ""
9461
9462 #. type: textblock
9463 #: ../src/guestfs-actions.pod:1935 ../fish/guestfish-actions.pod:1307
9464 msgid ""
9465 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9466 msgstr ""
9467
9468 #. type: textblock
9469 #: ../src/guestfs-actions.pod:1939 ../src/guestfs-actions.pod:7720
9470 msgid "(Added in 1.0.16)"
9471 msgstr ""
9472
9473 #. type: =head2
9474 #: ../src/guestfs-actions.pod:1941
9475 msgid "guestfs_get_append"
9476 msgstr ""
9477
9478 #. type: verbatim
9479 #: ../src/guestfs-actions.pod:1943
9480 #, no-wrap
9481 msgid ""
9482 " const char *\n"
9483 " guestfs_get_append (guestfs_h *g);\n"
9484 "\n"
9485 msgstr ""
9486
9487 #. type: textblock
9488 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1313
9489 msgid ""
9490 "Return the additional kernel options which are added to the guest kernel "
9491 "command line."
9492 msgstr ""
9493
9494 #. type: textblock
9495 #: ../src/guestfs-actions.pod:1949 ../fish/guestfish-actions.pod:1316
9496 msgid "If C<NULL> then no options are added."
9497 msgstr ""
9498
9499 #. type: textblock
9500 #: ../src/guestfs-actions.pod:1951
9501 msgid ""
9502 "This function returns a string which may be NULL.  There is no way to return "
9503 "an error from this function.  The string is owned by the guest handle and "
9504 "must I<not> be freed."
9505 msgstr ""
9506
9507 #. type: textblock
9508 #: ../src/guestfs-actions.pod:1955 ../src/guestfs-actions.pod:5668
9509 #: ../src/guestfs-actions.pod:6150 ../src/guestfs-actions.pod:6573
9510 #: ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:6608
9511 #: ../src/guestfs-actions.pod:6632 ../src/guestfs-actions.pod:7386
9512 #: ../src/guestfs-actions.pod:7401 ../src/guestfs-actions.pod:7763
9513 msgid "(Added in 1.0.26)"
9514 msgstr ""
9515
9516 #. type: =head2
9517 #: ../src/guestfs-actions.pod:1957
9518 msgid "guestfs_get_attach_method"
9519 msgstr ""
9520
9521 #. type: verbatim
9522 #: ../src/guestfs-actions.pod:1959
9523 #, no-wrap
9524 msgid ""
9525 " char *\n"
9526 " guestfs_get_attach_method (guestfs_h *g);\n"
9527 "\n"
9528 msgstr ""
9529
9530 #. type: textblock
9531 #: ../src/guestfs-actions.pod:1962
9532 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9533 msgstr ""
9534
9535 #. type: textblock
9536 #: ../src/guestfs-actions.pod:1967 ../src/guestfs-actions.pod:6180
9537 msgid "(Added in 1.9.8)"
9538 msgstr ""
9539
9540 #. type: =head2
9541 #: ../src/guestfs-actions.pod:1969
9542 msgid "guestfs_get_autosync"
9543 msgstr ""
9544
9545 #. type: verbatim
9546 #: ../src/guestfs-actions.pod:1971
9547 #, no-wrap
9548 msgid ""
9549 " int\n"
9550 " guestfs_get_autosync (guestfs_h *g);\n"
9551 "\n"
9552 msgstr ""
9553
9554 #. type: textblock
9555 #: ../src/guestfs-actions.pod:1974 ../fish/guestfish-actions.pod:1328
9556 msgid "Get the autosync flag."
9557 msgstr ""
9558
9559 #. type: =head2
9560 #: ../src/guestfs-actions.pod:1980
9561 msgid "guestfs_get_direct"
9562 msgstr ""
9563
9564 #. type: verbatim
9565 #: ../src/guestfs-actions.pod:1982
9566 #, no-wrap
9567 msgid ""
9568 " int\n"
9569 " guestfs_get_direct (guestfs_h *g);\n"
9570 "\n"
9571 msgstr ""
9572
9573 #. type: textblock
9574 #: ../src/guestfs-actions.pod:1985 ../fish/guestfish-actions.pod:1334
9575 msgid "Return the direct appliance mode flag."
9576 msgstr ""
9577
9578 #. type: textblock
9579 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:6221
9580 msgid "(Added in 1.0.72)"
9581 msgstr ""
9582
9583 #. type: =head2
9584 #: ../src/guestfs-actions.pod:1991
9585 msgid "guestfs_get_e2label"
9586 msgstr ""
9587
9588 #. type: verbatim
9589 #: ../src/guestfs-actions.pod:1993
9590 #, no-wrap
9591 msgid ""
9592 " char *\n"
9593 " guestfs_get_e2label (guestfs_h *g,\n"
9594 "                      const char *device);\n"
9595 "\n"
9596 msgstr ""
9597
9598 #. type: textblock
9599 #: ../src/guestfs-actions.pod:1997 ../fish/guestfish-actions.pod:1340
9600 msgid ""
9601 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9602 msgstr ""
9603
9604 #. type: textblock
9605 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1343
9606 msgid ""
9607 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9608 msgstr ""
9609
9610 #. type: textblock
9611 #: ../src/guestfs-actions.pod:2010 ../src/guestfs-actions.pod:2031
9612 #: ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6258
9613 msgid "(Added in 1.0.15)"
9614 msgstr ""
9615
9616 #. type: =head2
9617 #: ../src/guestfs-actions.pod:2012
9618 msgid "guestfs_get_e2uuid"
9619 msgstr ""
9620
9621 #. type: verbatim
9622 #: ../src/guestfs-actions.pod:2014
9623 #, no-wrap
9624 msgid ""
9625 " char *\n"
9626 " guestfs_get_e2uuid (guestfs_h *g,\n"
9627 "                     const char *device);\n"
9628 "\n"
9629 msgstr ""
9630
9631 #. type: textblock
9632 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1354
9633 msgid ""
9634 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9635 msgstr ""
9636
9637 #. type: textblock
9638 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1357
9639 msgid ""
9640 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9641 msgstr ""
9642
9643 #. type: =head2
9644 #: ../src/guestfs-actions.pod:2033
9645 msgid "guestfs_get_memsize"
9646 msgstr ""
9647
9648 #. type: verbatim
9649 #: ../src/guestfs-actions.pod:2035
9650 #, no-wrap
9651 msgid ""
9652 " int\n"
9653 " guestfs_get_memsize (guestfs_h *g);\n"
9654 "\n"
9655 msgstr ""
9656
9657 #. type: textblock
9658 #: ../src/guestfs-actions.pod:2038 ../fish/guestfish-actions.pod:1368
9659 msgid ""
9660 "This gets the memory size in megabytes allocated to the qemu subprocess."
9661 msgstr ""
9662
9663 #. type: textblock
9664 #: ../src/guestfs-actions.pod:2041
9665 msgid ""
9666 "If C<guestfs_set_memsize> was not called on this handle, and if "
9667 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9668 "value for memsize."
9669 msgstr ""
9670
9671 #. type: textblock
9672 #: ../src/guestfs-actions.pod:2045 ../src/guestfs-actions.pod:2126
9673 #: ../src/guestfs-actions.pod:6274 ../src/guestfs-actions.pod:6381
9674 #: ../fish/guestfish-actions.pod:1375 ../fish/guestfish-actions.pod:1426
9675 #: ../fish/guestfish-actions.pod:4151 ../fish/guestfish-actions.pod:4238
9676 msgid ""
9677 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9678 msgstr ""
9679
9680 #. type: textblock
9681 #: ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:4577
9682 #: ../src/guestfs-actions.pod:4786 ../src/guestfs-actions.pod:4805
9683 #: ../src/guestfs-actions.pod:4824 ../src/guestfs-actions.pod:4836
9684 #: ../src/guestfs-actions.pod:4853 ../src/guestfs-actions.pod:4866
9685 #: ../src/guestfs-actions.pod:5893 ../src/guestfs-actions.pod:6279
9686 #: ../src/guestfs-actions.pod:6540 ../src/guestfs-actions.pod:7155
9687 msgid "(Added in 1.0.55)"
9688 msgstr ""
9689
9690 #. type: =head2
9691 #: ../src/guestfs-actions.pod:2052
9692 msgid "guestfs_get_network"
9693 msgstr ""
9694
9695 #. type: verbatim
9696 #: ../src/guestfs-actions.pod:2054
9697 #, no-wrap
9698 msgid ""
9699 " int\n"
9700 " guestfs_get_network (guestfs_h *g);\n"
9701 "\n"
9702 msgstr ""
9703
9704 #. type: textblock
9705 #: ../src/guestfs-actions.pod:2057 ../fish/guestfish-actions.pod:1382
9706 msgid "This returns the enable network flag."
9707 msgstr ""
9708
9709 #. type: textblock
9710 #: ../src/guestfs-actions.pod:2061 ../src/guestfs-actions.pod:6298
9711 msgid "(Added in 1.5.4)"
9712 msgstr ""
9713
9714 #. type: =head2
9715 #: ../src/guestfs-actions.pod:2063
9716 msgid "guestfs_get_path"
9717 msgstr ""
9718
9719 #. type: verbatim
9720 #: ../src/guestfs-actions.pod:2065
9721 #, no-wrap
9722 msgid ""
9723 " const char *\n"
9724 " guestfs_get_path (guestfs_h *g);\n"
9725 "\n"
9726 msgstr ""
9727
9728 #. type: textblock
9729 #: ../src/guestfs-actions.pod:2068 ../fish/guestfish-actions.pod:1388
9730 msgid "Return the current search path."
9731 msgstr ""
9732
9733 #. type: textblock
9734 #: ../src/guestfs-actions.pod:2070 ../fish/guestfish-actions.pod:1390
9735 msgid ""
9736 "This is always non-NULL.  If it wasn't set already, then this will return "
9737 "the default path."
9738 msgstr ""
9739
9740 #. type: textblock
9741 #: ../src/guestfs-actions.pod:2073 ../src/guestfs-actions.pod:2102
9742 msgid ""
9743 "This function returns a string, or NULL on error.  The string is owned by "
9744 "the guest handle and must I<not> be freed."
9745 msgstr ""
9746
9747 #. type: =head2
9748 #: ../src/guestfs-actions.pod:2078
9749 msgid "guestfs_get_pid"
9750 msgstr ""
9751
9752 #. type: verbatim
9753 #: ../src/guestfs-actions.pod:2080
9754 #, no-wrap
9755 msgid ""
9756 " int\n"
9757 " guestfs_get_pid (guestfs_h *g);\n"
9758 "\n"
9759 msgstr ""
9760
9761 #. type: textblock
9762 #: ../src/guestfs-actions.pod:2083 ../fish/guestfish-actions.pod:1399
9763 msgid ""
9764 "Return the process ID of the qemu subprocess.  If there is no qemu "
9765 "subprocess, then this will return an error."
9766 msgstr ""
9767
9768 #. type: textblock
9769 #: ../src/guestfs-actions.pod:2086 ../fish/guestfish-actions.pod:1402
9770 msgid "This is an internal call used for debugging and testing."
9771 msgstr ""
9772
9773 #. type: textblock
9774 #: ../src/guestfs-actions.pod:2090
9775 msgid "(Added in 1.0.56)"
9776 msgstr ""
9777
9778 #. type: =head2
9779 #: ../src/guestfs-actions.pod:2092
9780 msgid "guestfs_get_qemu"
9781 msgstr ""
9782
9783 #. type: verbatim
9784 #: ../src/guestfs-actions.pod:2094
9785 #, no-wrap
9786 msgid ""
9787 " const char *\n"
9788 " guestfs_get_qemu (guestfs_h *g);\n"
9789 "\n"
9790 msgstr ""
9791
9792 #. type: textblock
9793 #: ../src/guestfs-actions.pod:2097 ../fish/guestfish-actions.pod:1408
9794 msgid "Return the current qemu binary."
9795 msgstr ""
9796
9797 #. type: textblock
9798 #: ../src/guestfs-actions.pod:2099 ../fish/guestfish-actions.pod:1410
9799 msgid ""
9800 "This is always non-NULL.  If it wasn't set already, then this will return "
9801 "the default qemu binary name."
9802 msgstr ""
9803
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:2105 ../src/guestfs-actions.pod:6343
9806 msgid "(Added in 1.0.6)"
9807 msgstr ""
9808
9809 #. type: =head2
9810 #: ../src/guestfs-actions.pod:2107
9811 msgid "guestfs_get_recovery_proc"
9812 msgstr ""
9813
9814 #. type: verbatim
9815 #: ../src/guestfs-actions.pod:2109
9816 #, no-wrap
9817 msgid ""
9818 " int\n"
9819 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9820 "\n"
9821 msgstr ""
9822
9823 #. type: textblock
9824 #: ../src/guestfs-actions.pod:2112 ../fish/guestfish-actions.pod:1417
9825 msgid "Return the recovery process enabled flag."
9826 msgstr ""
9827
9828 #. type: textblock
9829 #: ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:3650
9830 #: ../src/guestfs-actions.pod:3981 ../src/guestfs-actions.pod:4384
9831 #: ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:5598
9832 #: ../src/guestfs-actions.pod:5941 ../src/guestfs-actions.pod:6367
9833 #: ../src/guestfs-actions.pod:7058 ../src/guestfs-actions.pod:7078
9834 #: ../src/guestfs-actions.pod:7270
9835 msgid "(Added in 1.0.77)"
9836 msgstr ""
9837
9838 #. type: =head2
9839 #: ../src/guestfs-actions.pod:2118
9840 msgid "guestfs_get_selinux"
9841 msgstr ""
9842
9843 #. type: verbatim
9844 #: ../src/guestfs-actions.pod:2120
9845 #, no-wrap
9846 msgid ""
9847 " int\n"
9848 " guestfs_get_selinux (guestfs_h *g);\n"
9849 "\n"
9850 msgstr ""
9851
9852 #. type: textblock
9853 #: ../src/guestfs-actions.pod:2123
9854 msgid ""
9855 "This returns the current setting of the selinux flag which is passed to the "
9856 "appliance at boot time.  See C<guestfs_set_selinux>."
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2131 ../src/guestfs-actions.pod:2194
9861 #: ../src/guestfs-actions.pod:6386 ../src/guestfs-actions.pod:6444
9862 msgid "(Added in 1.0.67)"
9863 msgstr ""
9864
9865 #. type: =head2
9866 #: ../src/guestfs-actions.pod:2133
9867 msgid "guestfs_get_state"
9868 msgstr ""
9869
9870 #. type: verbatim
9871 #: ../src/guestfs-actions.pod:2135
9872 #, no-wrap
9873 msgid ""
9874 " int\n"
9875 " guestfs_get_state (guestfs_h *g);\n"
9876 "\n"
9877 msgstr ""
9878
9879 #. type: textblock
9880 #: ../src/guestfs-actions.pod:2138 ../fish/guestfish-actions.pod:1433
9881 msgid ""
9882 "This returns the current state as an opaque integer.  This is only useful "
9883 "for printing debug and internal error messages."
9884 msgstr ""
9885
9886 #. type: textblock
9887 #: ../src/guestfs-actions.pod:2141 ../src/guestfs-actions.pod:3421
9888 #: ../src/guestfs-actions.pod:3450 ../src/guestfs-actions.pod:3511
9889 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:1436
9890 #: ../fish/guestfish-actions.pod:2356 ../fish/guestfish-actions.pod:2374
9891 #: ../fish/guestfish-actions.pod:2412 ../fish/guestfish-actions.pod:2428
9892 msgid "For more information on states, see L<guestfs(3)>."
9893 msgstr ""
9894
9895 #. type: =head2
9896 #: ../src/guestfs-actions.pod:2147
9897 msgid "guestfs_get_trace"
9898 msgstr ""
9899
9900 #. type: verbatim
9901 #: ../src/guestfs-actions.pod:2149
9902 #, no-wrap
9903 msgid ""
9904 " int\n"
9905 " guestfs_get_trace (guestfs_h *g);\n"
9906 "\n"
9907 msgstr ""
9908
9909 #. type: textblock
9910 #: ../src/guestfs-actions.pod:2152 ../fish/guestfish-actions.pod:1442
9911 msgid "Return the command trace flag."
9912 msgstr ""
9913
9914 #. type: =head2
9915 #: ../src/guestfs-actions.pod:2158
9916 msgid "guestfs_get_umask"
9917 msgstr ""
9918
9919 #. type: verbatim
9920 #: ../src/guestfs-actions.pod:2160
9921 #, no-wrap
9922 msgid ""
9923 " int\n"
9924 " guestfs_get_umask (guestfs_h *g);\n"
9925 "\n"
9926 msgstr ""
9927
9928 #. type: textblock
9929 #: ../src/guestfs-actions.pod:2163
9930 msgid ""
9931 "Return the current umask.  By default the umask is C<022> unless it has been "
9932 "set by calling C<guestfs_umask>."
9933 msgstr ""
9934
9935 #. type: =head2
9936 #: ../src/guestfs-actions.pod:2170
9937 msgid "guestfs_get_verbose"
9938 msgstr ""
9939
9940 #. type: verbatim
9941 #: ../src/guestfs-actions.pod:2172
9942 #, no-wrap
9943 msgid ""
9944 " int\n"
9945 " guestfs_get_verbose (guestfs_h *g);\n"
9946 "\n"
9947 msgstr ""
9948
9949 #. type: textblock
9950 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1455
9951 msgid "This returns the verbose messages flag."
9952 msgstr ""
9953
9954 #. type: =head2
9955 #: ../src/guestfs-actions.pod:2181
9956 msgid "guestfs_getcon"
9957 msgstr ""
9958
9959 #. type: verbatim
9960 #: ../src/guestfs-actions.pod:2183
9961 #, no-wrap
9962 msgid ""
9963 " char *\n"
9964 " guestfs_getcon (guestfs_h *g);\n"
9965 "\n"
9966 msgstr ""
9967
9968 #. type: textblock
9969 #: ../src/guestfs-actions.pod:2186 ../fish/guestfish-actions.pod:1461
9970 msgid "This gets the SELinux security context of the daemon."
9971 msgstr ""
9972
9973 #. type: textblock
9974 #: ../src/guestfs-actions.pod:2188
9975 msgid ""
9976 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9977 msgstr ""
9978
9979 #. type: =head2
9980 #: ../src/guestfs-actions.pod:2196
9981 msgid "guestfs_getxattr"
9982 msgstr ""
9983
9984 #. type: verbatim
9985 #: ../src/guestfs-actions.pod:2198
9986 #, no-wrap
9987 msgid ""
9988 " char *\n"
9989 " guestfs_getxattr (guestfs_h *g,\n"
9990 "                   const char *path,\n"
9991 "                   const char *name,\n"
9992 "                   size_t *size_r);\n"
9993 "\n"
9994 msgstr ""
9995
9996 #. type: textblock
9997 #: ../src/guestfs-actions.pod:2204
9998 msgid ""
9999 "Get a single extended attribute from file C<path> named C<name>.  This call "
10000 "follows symlinks.  If you want to lookup an extended attribute for the "
10001 "symlink itself, use C<guestfs_lgetxattr>."
10002 msgstr ""
10003
10004 #. type: textblock
10005 #: ../src/guestfs-actions.pod:2208 ../src/guestfs-actions.pod:3664
10006 msgid ""
10007 "Normally it is better to get all extended attributes from a file in one go "
10008 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10009 "implementations are buggy and do not provide a way to list out attributes.  "
10010 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10011 "extended attributes you want in advance and call this function."
10012 msgstr ""
10013
10014 #. type: textblock
10015 #: ../src/guestfs-actions.pod:2215 ../src/guestfs-actions.pod:3671
10016 #: ../fish/guestfish-actions.pod:1481 ../fish/guestfish-actions.pod:2508
10017 msgid ""
10018 "Extended attribute values are blobs of binary data.  If there is no extended "
10019 "attribute named C<name>, this returns an error."
10020 msgstr ""
10021
10022 #. type: textblock
10023 #: ../src/guestfs-actions.pod:2218
10024 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10025 msgstr ""
10026
10027 #. type: textblock
10028 #: ../src/guestfs-actions.pod:2220 ../src/guestfs-actions.pod:2411
10029 #: ../src/guestfs-actions.pod:2881 ../src/guestfs-actions.pod:3676
10030 #: ../src/guestfs-actions.pod:5591 ../src/guestfs-actions.pod:5617
10031 #: ../src/guestfs-actions.pod:5798
10032 msgid ""
10033 "This function returns a buffer, or NULL on error.  The size of the returned "
10034 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
10035 "after use>."
10036 msgstr ""
10037
10038 #. type: textblock
10039 #: ../src/guestfs-actions.pod:2224 ../src/guestfs-actions.pod:3680
10040 msgid "(Added in 1.7.24)"
10041 msgstr ""
10042
10043 #. type: =head2
10044 #: ../src/guestfs-actions.pod:2226
10045 msgid "guestfs_getxattrs"
10046 msgstr ""
10047
10048 #. type: verbatim
10049 #: ../src/guestfs-actions.pod:2228
10050 #, no-wrap
10051 msgid ""
10052 " struct guestfs_xattr_list *\n"
10053 " guestfs_getxattrs (guestfs_h *g,\n"
10054 "                    const char *path);\n"
10055 "\n"
10056 msgstr ""
10057
10058 #. type: textblock
10059 #: ../src/guestfs-actions.pod:2232 ../fish/guestfish-actions.pod:1490
10060 msgid ""
10061 "This call lists the extended attributes of the file or directory C<path>."
10062 msgstr ""
10063
10064 #. type: textblock
10065 #: ../src/guestfs-actions.pod:2235 ../fish/guestfish-actions.pod:1493
10066 msgid ""
10067 "At the system call level, this is a combination of the L<listxattr(2)> and "
10068 "L<getxattr(2)> calls."
10069 msgstr ""
10070
10071 #. type: textblock
10072 #: ../src/guestfs-actions.pod:2238
10073 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10074 msgstr ""
10075
10076 #. type: textblock
10077 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:3692
10078 #: ../src/guestfs-actions.pod:4380
10079 msgid ""
10080 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
10081 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10082 msgstr ""
10083
10084 #. type: textblock
10085 #: ../src/guestfs-actions.pod:2244 ../src/guestfs-actions.pod:3696
10086 #: ../src/guestfs-actions.pod:3895 ../src/guestfs-actions.pod:3931
10087 #: ../src/guestfs-actions.pod:5971 ../src/guestfs-actions.pod:6463
10088 #: ../src/guestfs-actions.pod:7828
10089 msgid "(Added in 1.0.59)"
10090 msgstr ""
10091
10092 #. type: =head2
10093 #: ../src/guestfs-actions.pod:2246
10094 msgid "guestfs_glob_expand"
10095 msgstr ""
10096
10097 #. type: verbatim
10098 #: ../src/guestfs-actions.pod:2248
10099 #, no-wrap
10100 msgid ""
10101 " char **\n"
10102 " guestfs_glob_expand (guestfs_h *g,\n"
10103 "                      const char *pattern);\n"
10104 "\n"
10105 msgstr ""
10106
10107 #. type: textblock
10108 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1502
10109 msgid ""
10110 "This command searches for all the pathnames matching C<pattern> according to "
10111 "the wildcard expansion rules used by the shell."
10112 msgstr ""
10113
10114 #. type: textblock
10115 #: ../src/guestfs-actions.pod:2256 ../fish/guestfish-actions.pod:1506
10116 msgid ""
10117 "If no paths match, then this returns an empty list (note: not an error)."
10118 msgstr ""
10119
10120 #. type: textblock
10121 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1509
10122 msgid ""
10123 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10124 "GLOB_BRACE>.  See that manual page for more details."
10125 msgstr ""
10126
10127 #. type: textblock
10128 #: ../src/guestfs-actions.pod:2267 ../src/guestfs-actions.pod:6656
10129 #: ../src/guestfs-actions.pod:6673
10130 msgid "(Added in 1.0.50)"
10131 msgstr ""
10132
10133 #. type: =head2
10134 #: ../src/guestfs-actions.pod:2269
10135 msgid "guestfs_grep"
10136 msgstr ""
10137
10138 #. type: verbatim
10139 #: ../src/guestfs-actions.pod:2271
10140 #, no-wrap
10141 msgid ""
10142 " char **\n"
10143 " guestfs_grep (guestfs_h *g,\n"
10144 "               const char *regex,\n"
10145 "               const char *path);\n"
10146 "\n"
10147 msgstr ""
10148
10149 #. type: textblock
10150 #: ../src/guestfs-actions.pod:2276 ../fish/guestfish-actions.pod:1517
10151 msgid "This calls the external C<grep> program and returns the matching lines."
10152 msgstr ""
10153
10154 #. type: =head2
10155 #: ../src/guestfs-actions.pod:2288
10156 msgid "guestfs_grepi"
10157 msgstr ""
10158
10159 #. type: verbatim
10160 #: ../src/guestfs-actions.pod:2290
10161 #, no-wrap
10162 msgid ""
10163 " char **\n"
10164 " guestfs_grepi (guestfs_h *g,\n"
10165 "                const char *regex,\n"
10166 "                const char *path);\n"
10167 "\n"
10168 msgstr ""
10169
10170 #. type: textblock
10171 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1527
10172 msgid ""
10173 "This calls the external C<grep -i> program and returns the matching lines."
10174 msgstr ""
10175
10176 #. type: =head2
10177 #: ../src/guestfs-actions.pod:2307
10178 msgid "guestfs_grub_install"
10179 msgstr ""
10180
10181 #. type: verbatim
10182 #: ../src/guestfs-actions.pod:2309
10183 #, no-wrap
10184 msgid ""
10185 " int\n"
10186 " guestfs_grub_install (guestfs_h *g,\n"
10187 "                       const char *root,\n"
10188 "                       const char *device);\n"
10189 "\n"
10190 msgstr ""
10191
10192 #. type: textblock
10193 #: ../src/guestfs-actions.pod:2314 ../fish/guestfish-actions.pod:1537
10194 msgid ""
10195 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10196 "the root directory being C<root>."
10197 msgstr ""
10198
10199 #. type: textblock
10200 #: ../src/guestfs-actions.pod:2317 ../fish/guestfish-actions.pod:1540
10201 msgid ""
10202 "Note: If grub-install reports the error \"No suitable drive was found in the "
10203 "generated device map.\" it may be that you need to create a C</boot/grub/"
10204 "device.map> file first that contains the mapping between grub device names "
10205 "and Linux device names.  It is usually sufficient to create a file "
10206 "containing:"
10207 msgstr ""
10208
10209 #. type: verbatim
10210 #: ../src/guestfs-actions.pod:2324 ../fish/guestfish-actions.pod:1547
10211 #, no-wrap
10212 msgid ""
10213 " (hd0) /dev/vda\n"
10214 "\n"
10215 msgstr ""
10216
10217 #. type: textblock
10218 #: ../src/guestfs-actions.pod:2326 ../fish/guestfish-actions.pod:1549
10219 msgid "replacing C</dev/vda> with the name of the installation device."
10220 msgstr ""
10221
10222 #. type: textblock
10223 #: ../src/guestfs-actions.pod:2330
10224 msgid "(Added in 1.0.17)"
10225 msgstr ""
10226
10227 #. type: =head2
10228 #: ../src/guestfs-actions.pod:2332
10229 msgid "guestfs_head"
10230 msgstr ""
10231
10232 #. type: verbatim
10233 #: ../src/guestfs-actions.pod:2334
10234 #, no-wrap
10235 msgid ""
10236 " char **\n"
10237 " guestfs_head (guestfs_h *g,\n"
10238 "               const char *path);\n"
10239 "\n"
10240 msgstr ""
10241
10242 #. type: textblock
10243 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1555
10244 msgid ""
10245 "This command returns up to the first 10 lines of a file as a list of strings."
10246 msgstr ""
10247
10248 #. type: =head2
10249 #: ../src/guestfs-actions.pod:2350
10250 msgid "guestfs_head_n"
10251 msgstr ""
10252
10253 #. type: verbatim
10254 #: ../src/guestfs-actions.pod:2352
10255 #, no-wrap
10256 msgid ""
10257 " char **\n"
10258 " guestfs_head_n (guestfs_h *g,\n"
10259 "                 int nrlines,\n"
10260 "                 const char *path);\n"
10261 "\n"
10262 msgstr ""
10263
10264 #. type: textblock
10265 #: ../src/guestfs-actions.pod:2357 ../fish/guestfish-actions.pod:1565
10266 msgid ""
10267 "If the parameter C<nrlines> is a positive number, this returns the first "
10268 "C<nrlines> lines of the file C<path>."
10269 msgstr ""
10270
10271 #. type: textblock
10272 #: ../src/guestfs-actions.pod:2360 ../fish/guestfish-actions.pod:1568
10273 msgid ""
10274 "If the parameter C<nrlines> is a negative number, this returns lines from "
10275 "the file C<path>, excluding the last C<nrlines> lines."
10276 msgstr ""
10277
10278 #. type: textblock
10279 #: ../src/guestfs-actions.pod:2363 ../src/guestfs-actions.pod:6953
10280 #: ../fish/guestfish-actions.pod:1571 ../fish/guestfish-actions.pod:4616
10281 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10282 msgstr ""
10283
10284 #. type: =head2
10285 #: ../src/guestfs-actions.pod:2374
10286 msgid "guestfs_hexdump"
10287 msgstr ""
10288
10289 #. type: verbatim
10290 #: ../src/guestfs-actions.pod:2376
10291 #, no-wrap
10292 msgid ""
10293 " char *\n"
10294 " guestfs_hexdump (guestfs_h *g,\n"
10295 "                  const char *path);\n"
10296 "\n"
10297 msgstr ""
10298
10299 #. type: textblock
10300 #: ../src/guestfs-actions.pod:2380 ../fish/guestfish-actions.pod:1580
10301 msgid ""
10302 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10303 "readable, canonical hex dump of the file."
10304 msgstr ""
10305
10306 #. type: textblock
10307 #: ../src/guestfs-actions.pod:2389 ../src/guestfs-actions.pod:6737
10308 #: ../src/guestfs-actions.pod:6792
10309 msgid "(Added in 1.0.22)"
10310 msgstr ""
10311
10312 #. type: =head2
10313 #: ../src/guestfs-actions.pod:2391
10314 msgid "guestfs_initrd_cat"
10315 msgstr ""
10316
10317 #. type: verbatim
10318 #: ../src/guestfs-actions.pod:2393
10319 #, no-wrap
10320 msgid ""
10321 " char *\n"
10322 " guestfs_initrd_cat (guestfs_h *g,\n"
10323 "                     const char *initrdpath,\n"
10324 "                     const char *filename,\n"
10325 "                     size_t *size_r);\n"
10326 "\n"
10327 msgstr ""
10328
10329 #. type: textblock
10330 #: ../src/guestfs-actions.pod:2399 ../fish/guestfish-actions.pod:1590
10331 msgid ""
10332 "This command unpacks the file C<filename> from the initrd file called "
10333 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10334 "character."
10335 msgstr ""
10336
10337 #. type: textblock
10338 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1594
10339 msgid ""
10340 "For example, in guestfish you could use the following command to examine the "
10341 "boot script (usually called C</init>)  contained in a Linux initrd or "
10342 "initramfs image:"
10343 msgstr ""
10344
10345 #. type: verbatim
10346 #: ../src/guestfs-actions.pod:2407 ../fish/guestfish-actions.pod:1598
10347 #, no-wrap
10348 msgid ""
10349 " initrd-cat /boot/initrd-<version>.img init\n"
10350 "\n"
10351 msgstr ""
10352
10353 #. type: textblock
10354 #: ../src/guestfs-actions.pod:2409
10355 msgid "See also C<guestfs_initrd_list>."
10356 msgstr ""
10357
10358 #. type: =head2
10359 #: ../src/guestfs-actions.pod:2420
10360 msgid "guestfs_initrd_list"
10361 msgstr ""
10362
10363 #. type: verbatim
10364 #: ../src/guestfs-actions.pod:2422
10365 #, no-wrap
10366 msgid ""
10367 " char **\n"
10368 " guestfs_initrd_list (guestfs_h *g,\n"
10369 "                      const char *path);\n"
10370 "\n"
10371 msgstr ""
10372
10373 #. type: textblock
10374 #: ../src/guestfs-actions.pod:2426 ../fish/guestfish-actions.pod:1609
10375 msgid "This command lists out files contained in an initrd."
10376 msgstr ""
10377
10378 #. type: textblock
10379 #: ../src/guestfs-actions.pod:2428 ../fish/guestfish-actions.pod:1611
10380 msgid ""
10381 "The files are listed without any initial C</> character.  The files are "
10382 "listed in the order they appear (not necessarily alphabetical).  Directory "
10383 "names are listed as separate items."
10384 msgstr ""
10385
10386 #. type: textblock
10387 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1615
10388 msgid ""
10389 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10390 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10391 "files)."
10392 msgstr ""
10393
10394 #. type: =head2
10395 #: ../src/guestfs-actions.pod:2442
10396 msgid "guestfs_inotify_add_watch"
10397 msgstr ""
10398
10399 #. type: verbatim
10400 #: ../src/guestfs-actions.pod:2444
10401 #, no-wrap
10402 msgid ""
10403 " int64_t\n"
10404 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10405 "                            const char *path,\n"
10406 "                            int mask);\n"
10407 "\n"
10408 msgstr ""
10409
10410 #. type: textblock
10411 #: ../src/guestfs-actions.pod:2449 ../fish/guestfish-actions.pod:1623
10412 msgid "Watch C<path> for the events listed in C<mask>."
10413 msgstr ""
10414
10415 #. type: textblock
10416 #: ../src/guestfs-actions.pod:2451 ../fish/guestfish-actions.pod:1625
10417 msgid ""
10418 "Note that if C<path> is a directory then events within that directory are "
10419 "watched, but this does I<not> happen recursively (in subdirectories)."
10420 msgstr ""
10421
10422 #. type: textblock
10423 #: ../src/guestfs-actions.pod:2455 ../fish/guestfish-actions.pod:1629
10424 msgid ""
10425 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10426 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10427 msgstr ""
10428
10429 #. type: =head2
10430 #: ../src/guestfs-actions.pod:2463
10431 msgid "guestfs_inotify_close"
10432 msgstr ""
10433
10434 #. type: verbatim
10435 #: ../src/guestfs-actions.pod:2465
10436 #, no-wrap
10437 msgid ""
10438 " int\n"
10439 " guestfs_inotify_close (guestfs_h *g);\n"
10440 "\n"
10441 msgstr ""
10442
10443 #. type: textblock
10444 #: ../src/guestfs-actions.pod:2468 ../fish/guestfish-actions.pod:1637
10445 msgid ""
10446 "This closes the inotify handle which was previously opened by inotify_init.  "
10447 "It removes all watches, throws away any pending events, and deallocates all "
10448 "resources."
10449 msgstr ""
10450
10451 #. type: =head2
10452 #: ../src/guestfs-actions.pod:2476
10453 msgid "guestfs_inotify_files"
10454 msgstr ""
10455
10456 #. type: verbatim
10457 #: ../src/guestfs-actions.pod:2478
10458 #, no-wrap
10459 msgid ""
10460 " char **\n"
10461 " guestfs_inotify_files (guestfs_h *g);\n"
10462 "\n"
10463 msgstr ""
10464
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:2481
10467 msgid ""
10468 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10469 "returns a list of pathnames of objects that were touched.  The returned "
10470 "pathnames are sorted and deduplicated."
10471 msgstr ""
10472
10473 #. type: =head2
10474 #: ../src/guestfs-actions.pod:2491
10475 msgid "guestfs_inotify_init"
10476 msgstr ""
10477
10478 #. type: verbatim
10479 #: ../src/guestfs-actions.pod:2493
10480 #, no-wrap
10481 msgid ""
10482 " int\n"
10483 " guestfs_inotify_init (guestfs_h *g,\n"
10484 "                       int maxevents);\n"
10485 "\n"
10486 msgstr ""
10487
10488 #. type: textblock
10489 #: ../src/guestfs-actions.pod:2497 ../fish/guestfish-actions.pod:1653
10490 msgid ""
10491 "This command creates a new inotify handle.  The inotify subsystem can be "
10492 "used to notify events which happen to objects in the guest filesystem."
10493 msgstr ""
10494
10495 #. type: textblock
10496 #: ../src/guestfs-actions.pod:2501
10497 msgid ""
10498 "C<maxevents> is the maximum number of events which will be queued up between "
10499 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10500 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10501 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10502 "throws away events, but records the fact that it threw them away by setting "
10503 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10504 "C<guestfs_inotify_read>)."
10505 msgstr ""
10506
10507 #. type: textblock
10508 #: ../src/guestfs-actions.pod:2511
10509 msgid ""
10510 "Before any events are generated, you have to add some watches to the "
10511 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10512 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10513 msgstr ""
10514
10515 #. type: textblock
10516 #: ../src/guestfs-actions.pod:2517
10517 msgid ""
10518 "Queued up events should be read periodically by calling "
10519 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10520 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10521 "often enough then you risk the internal queue overflowing."
10522 msgstr ""
10523
10524 #. type: textblock
10525 #: ../src/guestfs-actions.pod:2524
10526 msgid ""
10527 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10528 "This also removes any watches automatically."
10529 msgstr ""
10530
10531 #. type: textblock
10532 #: ../src/guestfs-actions.pod:2528 ../fish/guestfish-actions.pod:1684
10533 msgid ""
10534 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10535 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10536 "that there is one global inotify handle per libguestfs instance."
10537 msgstr ""
10538
10539 #. type: =head2
10540 #: ../src/guestfs-actions.pod:2537
10541 msgid "guestfs_inotify_read"
10542 msgstr ""
10543
10544 #. type: verbatim
10545 #: ../src/guestfs-actions.pod:2539
10546 #, no-wrap
10547 msgid ""
10548 " struct guestfs_inotify_event_list *\n"
10549 " guestfs_inotify_read (guestfs_h *g);\n"
10550 "\n"
10551 msgstr ""
10552
10553 #. type: textblock
10554 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1693
10555 msgid ""
10556 "Return the complete queue of events that have happened since the previous "
10557 "read call."
10558 msgstr ""
10559
10560 #. type: textblock
10561 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1696
10562 msgid "If no events have happened, this returns an empty list."
10563 msgstr ""
10564
10565 #. type: textblock
10566 #: ../src/guestfs-actions.pod:2547 ../fish/guestfish-actions.pod:1698
10567 msgid ""
10568 "I<Note>: In order to make sure that all events have been read, you must call "
10569 "this function repeatedly until it returns an empty list.  The reason is that "
10570 "the call will read events up to the maximum appliance-to-host message size "
10571 "and leave remaining events in the queue."
10572 msgstr ""
10573
10574 #. type: textblock
10575 #: ../src/guestfs-actions.pod:2553
10576 msgid ""
10577 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10578 "there was an error.  I<The caller must call "
10579 "C<guestfs_free_inotify_event_list> after use>."
10580 msgstr ""
10581
10582 #. type: =head2
10583 #: ../src/guestfs-actions.pod:2559
10584 msgid "guestfs_inotify_rm_watch"
10585 msgstr ""
10586
10587 #. type: verbatim
10588 #: ../src/guestfs-actions.pod:2561
10589 #, no-wrap
10590 msgid ""
10591 " int\n"
10592 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10593 "                           int wd);\n"
10594 "\n"
10595 msgstr ""
10596
10597 #. type: textblock
10598 #: ../src/guestfs-actions.pod:2565
10599 msgid ""
10600 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10601 msgstr ""
10602
10603 #. type: =head2
10604 #: ../src/guestfs-actions.pod:2572
10605 msgid "guestfs_inspect_get_arch"
10606 msgstr ""
10607
10608 #. type: verbatim
10609 #: ../src/guestfs-actions.pod:2574
10610 #, no-wrap
10611 msgid ""
10612 " char *\n"
10613 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10614 "                           const char *root);\n"
10615 "\n"
10616 msgstr ""
10617
10618 #. type: textblock
10619 #: ../src/guestfs-actions.pod:2578
10620 msgid ""
10621 "This returns the architecture of the inspected operating system.  The "
10622 "possible return values are listed under C<guestfs_file_architecture>."
10623 msgstr ""
10624
10625 #. type: textblock
10626 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1719
10627 msgid ""
10628 "If the architecture could not be determined, then the string C<unknown> is "
10629 "returned."
10630 msgstr ""
10631
10632 #. type: textblock
10633 #: ../src/guestfs-actions.pod:2585 ../src/guestfs-actions.pod:2675
10634 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2798
10635 #: ../src/guestfs-actions.pod:2929 ../src/guestfs-actions.pod:3012
10636 #: ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3061
10637 #: ../src/guestfs-actions.pod:3114 ../src/guestfs-actions.pod:3154
10638 #: ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3194
10639 #: ../src/guestfs-actions.pod:3211 ../src/guestfs-actions.pod:3227
10640 #: ../src/guestfs-actions.pod:3245 ../src/guestfs-actions.pod:3347
10641 #: ../src/guestfs-actions.pod:3388 ../fish/guestfish-actions.pod:1722
10642 #: ../fish/guestfish-actions.pod:1805 ../fish/guestfish-actions.pod:1884
10643 #: ../fish/guestfish-actions.pod:1896 ../fish/guestfish-actions.pod:1980
10644 #: ../fish/guestfish-actions.pod:2041 ../fish/guestfish-actions.pod:2062
10645 #: ../fish/guestfish-actions.pod:2076 ../fish/guestfish-actions.pod:2116
10646 #: ../fish/guestfish-actions.pod:2148 ../fish/guestfish-actions.pod:2161
10647 #: ../fish/guestfish-actions.pod:2174 ../fish/guestfish-actions.pod:2184
10648 #: ../fish/guestfish-actions.pod:2194 ../fish/guestfish-actions.pod:2206
10649 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2336
10650 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10651 msgstr ""
10652
10653 #. type: =head2
10654 #: ../src/guestfs-actions.pod:2592
10655 msgid "guestfs_inspect_get_distro"
10656 msgstr ""
10657
10658 #. type: verbatim
10659 #: ../src/guestfs-actions.pod:2594
10660 #, no-wrap
10661 msgid ""
10662 " char *\n"
10663 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10664 "                             const char *root);\n"
10665 "\n"
10666 msgstr ""
10667
10668 #. type: textblock
10669 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1728
10670 msgid ""
10671 "This returns the distro (distribution) of the inspected operating system."
10672 msgstr ""
10673
10674 #. type: textblock
10675 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1731
10676 msgid "Currently defined distros are:"
10677 msgstr ""
10678
10679 #. type: =item
10680 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1735
10681 msgid "\"archlinux\""
10682 msgstr "\"archlinux\""
10683
10684 #. type: textblock
10685 #: ../src/guestfs-actions.pod:2607 ../fish/guestfish-actions.pod:1737
10686 msgid "Arch Linux."
10687 msgstr "Arch Linux."
10688
10689 #. type: =item
10690 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1739
10691 #, fuzzy
10692 #| msgid "\"gentoo\""
10693 msgid "\"centos\""
10694 msgstr "\"gentoo\""
10695
10696 #. type: textblock
10697 #: ../src/guestfs-actions.pod:2611 ../fish/guestfish-actions.pod:1741
10698 msgid "CentOS."
10699 msgstr ""
10700
10701 #. type: =item
10702 #: ../src/guestfs-actions.pod:2613 ../fish/guestfish-actions.pod:1743
10703 msgid "\"debian\""
10704 msgstr "\"debian\""
10705
10706 #. type: textblock
10707 #: ../src/guestfs-actions.pod:2615 ../fish/guestfish-actions.pod:1745
10708 msgid "Debian."
10709 msgstr "Debian."
10710
10711 #. type: =item
10712 #: ../src/guestfs-actions.pod:2617 ../fish/guestfish-actions.pod:1747
10713 msgid "\"fedora\""
10714 msgstr "\"fedora\""
10715
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2619 ../fish/guestfish-actions.pod:1749
10718 msgid "Fedora."
10719 msgstr "Fedora."
10720
10721 #. type: =item
10722 #: ../src/guestfs-actions.pod:2621 ../fish/guestfish-actions.pod:1751
10723 msgid "\"gentoo\""
10724 msgstr "\"gentoo\""
10725
10726 #. type: textblock
10727 #: ../src/guestfs-actions.pod:2623 ../fish/guestfish-actions.pod:1753
10728 msgid "Gentoo."
10729 msgstr "Gentoo."
10730
10731 #. type: =item
10732 #: ../src/guestfs-actions.pod:2625 ../fish/guestfish-actions.pod:1755
10733 msgid "\"linuxmint\""
10734 msgstr "\"linuxmint\""
10735
10736 #. type: textblock
10737 #: ../src/guestfs-actions.pod:2627 ../fish/guestfish-actions.pod:1757
10738 msgid "Linux Mint."
10739 msgstr "Linux Mint."
10740
10741 #. type: =item
10742 #: ../src/guestfs-actions.pod:2629 ../fish/guestfish-actions.pod:1759
10743 msgid "\"mandriva\""
10744 msgstr "\"mandriva\""
10745
10746 #. type: textblock
10747 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1761
10748 msgid "Mandriva."
10749 msgstr "Mandriva."
10750
10751 #. type: =item
10752 #: ../src/guestfs-actions.pod:2633 ../fish/guestfish-actions.pod:1763
10753 msgid "\"meego\""
10754 msgstr "\"meego\""
10755
10756 #. type: textblock
10757 #: ../src/guestfs-actions.pod:2635 ../fish/guestfish-actions.pod:1765
10758 msgid "MeeGo."
10759 msgstr "MeeGo."
10760
10761 #. type: =item
10762 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1767
10763 msgid "\"pardus\""
10764 msgstr "\"pardus\""
10765
10766 #. type: textblock
10767 #: ../src/guestfs-actions.pod:2639 ../fish/guestfish-actions.pod:1769
10768 msgid "Pardus."
10769 msgstr "Pardus."
10770
10771 #. type: =item
10772 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1771
10773 msgid "\"redhat-based\""
10774 msgstr "\"redhat-based\""
10775
10776 #. type: textblock
10777 #: ../src/guestfs-actions.pod:2643 ../fish/guestfish-actions.pod:1773
10778 msgid "Some Red Hat-derived distro."
10779 msgstr "Дистрибутив, що походить від Red Hat."
10780
10781 #. type: =item
10782 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1775
10783 msgid "\"rhel\""
10784 msgstr "\"rhel\""
10785
10786 #. type: textblock
10787 #: ../src/guestfs-actions.pod:2647 ../fish/guestfish-actions.pod:1777
10788 #, fuzzy
10789 #| msgid "Red Hat Enterprise Linux and some derivatives."
10790 msgid "Red Hat Enterprise Linux."
10791 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10792
10793 #. type: =item
10794 #: ../src/guestfs-actions.pod:2649 ../fish/guestfish-actions.pod:1779
10795 msgid "\"scientificlinux\""
10796 msgstr ""
10797
10798 #. type: textblock
10799 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1781
10800 msgid "Scientific Linux."
10801 msgstr ""
10802
10803 #. type: =item
10804 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1783
10805 msgid "\"slackware\""
10806 msgstr ""
10807
10808 #. type: textblock
10809 #: ../src/guestfs-actions.pod:2655 ../fish/guestfish-actions.pod:1785
10810 msgid "Slackware."
10811 msgstr ""
10812
10813 #. type: =item
10814 #: ../src/guestfs-actions.pod:2657 ../fish/guestfish-actions.pod:1787
10815 msgid "\"ubuntu\""
10816 msgstr "\"ubuntu\""
10817
10818 #. type: textblock
10819 #: ../src/guestfs-actions.pod:2659 ../fish/guestfish-actions.pod:1789
10820 msgid "Ubuntu."
10821 msgstr "Ubuntu."
10822
10823 #. type: =item
10824 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2770
10825 #: ../src/guestfs-actions.pod:3145 ../fish/guestfish-actions.pod:1791
10826 #: ../fish/guestfish-actions.pod:1875 ../fish/guestfish-actions.pod:2139
10827 msgid "\"unknown\""
10828 msgstr "\"unknown\""
10829
10830 #. type: textblock
10831 #: ../src/guestfs-actions.pod:2663 ../fish/guestfish-actions.pod:1793
10832 msgid "The distro could not be determined."
10833 msgstr "Дистрибутив, тип якого не вдалося визначити."
10834
10835 #. type: =item
10836 #: ../src/guestfs-actions.pod:2665 ../src/guestfs-actions.pod:3137
10837 #: ../fish/guestfish-actions.pod:1795 ../fish/guestfish-actions.pod:2131
10838 msgid "\"windows\""
10839 msgstr "\"windows\""
10840
10841 #. type: textblock
10842 #: ../src/guestfs-actions.pod:2667 ../fish/guestfish-actions.pod:1797
10843 msgid ""
10844 "Windows does not have distributions.  This string is returned if the OS type "
10845 "is Windows."
10846 msgstr ""
10847
10848 #. type: textblock
10849 #: ../src/guestfs-actions.pod:2672 ../src/guestfs-actions.pod:2776
10850 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:1802
10851 #: ../fish/guestfish-actions.pod:1881 ../fish/guestfish-actions.pod:2145
10852 msgid ""
10853 "Future versions of libguestfs may return other strings here.  The caller "
10854 "should be prepared to handle any string."
10855 msgstr ""
10856
10857 #. type: =head2
10858 #: ../src/guestfs-actions.pod:2682
10859 msgid "guestfs_inspect_get_drive_mappings"
10860 msgstr ""
10861
10862 #. type: verbatim
10863 #: ../src/guestfs-actions.pod:2684
10864 #, no-wrap
10865 msgid ""
10866 " char **\n"
10867 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10868 "                                     const char *root);\n"
10869 "\n"
10870 msgstr ""
10871
10872 #. type: textblock
10873 #: ../src/guestfs-actions.pod:2688 ../fish/guestfish-actions.pod:1811
10874 msgid ""
10875 "This call is useful for Windows which uses a primitive system of assigning "
10876 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10877 "Windows Registry to find out how disks/partitions are mapped to drive "
10878 "letters, and returns a hash table as in the example below:"
10879 msgstr ""
10880
10881 #. type: verbatim
10882 #: ../src/guestfs-actions.pod:2694 ../fish/guestfish-actions.pod:1817
10883 #, no-wrap
10884 msgid ""
10885 " C      =>     /dev/vda2\n"
10886 " E      =>     /dev/vdb1\n"
10887 " F      =>     /dev/vdc1\n"
10888 "\n"
10889 msgstr ""
10890
10891 #. type: textblock
10892 #: ../src/guestfs-actions.pod:2698 ../fish/guestfish-actions.pod:1821
10893 msgid ""
10894 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10895 "and just contains the drive letter, without the customary colon separator "
10896 "character."
10897 msgstr ""
10898
10899 #. type: textblock
10900 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1825
10901 msgid ""
10902 "In future we may support other operating systems that also used drive "
10903 "letters, but the keys for those might not be case insensitive and might be "
10904 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10905 "C<h1> etc."
10906 msgstr ""
10907
10908 #. type: textblock
10909 #: ../src/guestfs-actions.pod:2707 ../fish/guestfish-actions.pod:1830
10910 msgid ""
10911 "For Windows guests, currently only hard drive mappings are returned.  "
10912 "Removable disks (eg. DVD-ROMs) are ignored."
10913 msgstr ""
10914
10915 #. type: textblock
10916 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1833
10917 msgid ""
10918 "For guests that do not use drive mappings, or if the drive mappings could "
10919 "not be determined, this returns an empty hash table."
10920 msgstr ""
10921
10922 #. type: textblock
10923 #: ../src/guestfs-actions.pod:2713
10924 msgid ""
10925 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10926 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10927 msgstr ""
10928
10929 #. type: textblock
10930 #: ../src/guestfs-actions.pod:2717 ../src/guestfs-actions.pod:2985
10931 #: ../src/guestfs-actions.pod:3783 ../src/guestfs-actions.pod:5065
10932 #: ../src/guestfs-actions.pod:7094
10933 msgid ""
10934 "This function returns a NULL-terminated array of strings, or NULL if there "
10935 "was an error.  The array of strings will always have length C<2n+1>, where "
10936 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10937 "caller must free the strings and the array after use>."
10938 msgstr ""
10939
10940 #. type: textblock
10941 #: ../src/guestfs-actions.pod:2723 ../src/guestfs-actions.pod:3179
10942 msgid "(Added in 1.9.17)"
10943 msgstr ""
10944
10945 #. type: =head2
10946 #: ../src/guestfs-actions.pod:2725
10947 msgid "guestfs_inspect_get_filesystems"
10948 msgstr ""
10949
10950 #. type: verbatim
10951 #: ../src/guestfs-actions.pod:2727
10952 #, no-wrap
10953 msgid ""
10954 " char **\n"
10955 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10956 "                                  const char *root);\n"
10957 "\n"
10958 msgstr ""
10959
10960 #. type: textblock
10961 #: ../src/guestfs-actions.pod:2731 ../fish/guestfish-actions.pod:1844
10962 msgid ""
10963 "This returns a list of all the filesystems that we think are associated with "
10964 "this operating system.  This includes the root filesystem, other ordinary "
10965 "filesystems, and non-mounted devices like swap partitions."
10966 msgstr ""
10967
10968 #. type: textblock
10969 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1849
10970 msgid ""
10971 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10972 "to be shared between operating systems."
10973 msgstr ""
10974
10975 #. type: textblock
10976 #: ../src/guestfs-actions.pod:2739
10977 msgid ""
10978 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10979 "C<guestfs_inspect_get_mountpoints>."
10980 msgstr ""
10981
10982 #. type: =head2
10983 #: ../src/guestfs-actions.pod:2748
10984 msgid "guestfs_inspect_get_format"
10985 msgstr ""
10986
10987 #. type: verbatim
10988 #: ../src/guestfs-actions.pod:2750
10989 #, no-wrap
10990 msgid ""
10991 " char *\n"
10992 " guestfs_inspect_get_format (guestfs_h *g,\n"
10993 "                             const char *root);\n"
10994 "\n"
10995 msgstr ""
10996
10997 #. type: textblock
10998 #: ../src/guestfs-actions.pod:2754 ../fish/guestfish-actions.pod:1859
10999 msgid ""
11000 "This returns the format of the inspected operating system.  You can use it "
11001 "to detect install images, live CDs and similar."
11002 msgstr ""
11003
11004 #. type: textblock
11005 #: ../src/guestfs-actions.pod:2757 ../fish/guestfish-actions.pod:1862
11006 msgid "Currently defined formats are:"
11007 msgstr ""
11008
11009 #. type: =item
11010 #: ../src/guestfs-actions.pod:2761 ../fish/guestfish-actions.pod:1866
11011 msgid "\"installed\""
11012 msgstr "\"installed\""
11013
11014 #. type: textblock
11015 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1868
11016 msgid "This is an installed operating system."
11017 msgstr "Це встановлена операційна система."
11018
11019 #. type: =item
11020 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1870
11021 msgid "\"installer\""
11022 msgstr ""
11023
11024 #. type: textblock
11025 #: ../src/guestfs-actions.pod:2767 ../fish/guestfish-actions.pod:1872
11026 msgid ""
11027 "The disk image being inspected is not an installed operating system, but a "
11028 "I<bootable> install disk, live CD, or similar."
11029 msgstr ""
11030
11031 #. type: textblock
11032 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1877
11033 msgid "The format of this disk image is not known."
11034 msgstr ""
11035
11036 #. type: textblock
11037 #: ../src/guestfs-actions.pod:2784 ../src/guestfs-actions.pod:3215
11038 #: ../src/guestfs-actions.pod:3231 ../src/guestfs-actions.pod:3249
11039 #: ../src/guestfs-actions.pod:6009
11040 msgid "(Added in 1.9.4)"
11041 msgstr ""
11042
11043 #. type: =head2
11044 #: ../src/guestfs-actions.pod:2786
11045 msgid "guestfs_inspect_get_hostname"
11046 msgstr ""
11047
11048 #. type: verbatim
11049 #: ../src/guestfs-actions.pod:2788
11050 #, no-wrap
11051 msgid ""
11052 " char *\n"
11053 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
11054 "                               const char *root);\n"
11055 "\n"
11056 msgstr ""
11057
11058 #. type: textblock
11059 #: ../src/guestfs-actions.pod:2792 ../fish/guestfish-actions.pod:1890
11060 msgid ""
11061 "This function returns the hostname of the operating system as found by "
11062 "inspection of the guest's configuration files."
11063 msgstr ""
11064
11065 #. type: textblock
11066 #: ../src/guestfs-actions.pod:2795 ../fish/guestfish-actions.pod:1893
11067 msgid ""
11068 "If the hostname could not be determined, then the string C<unknown> is "
11069 "returned."
11070 msgstr ""
11071
11072 #. type: textblock
11073 #: ../src/guestfs-actions.pod:2803
11074 msgid "(Added in 1.7.9)"
11075 msgstr ""
11076
11077 #. type: =head2
11078 #: ../src/guestfs-actions.pod:2805
11079 msgid "guestfs_inspect_get_icon"
11080 msgstr ""
11081
11082 #. type: verbatim
11083 #: ../src/guestfs-actions.pod:2807
11084 #, no-wrap
11085 msgid ""
11086 " char *\n"
11087 " guestfs_inspect_get_icon (guestfs_h *g,\n"
11088 "                           const char *root,\n"
11089 "                           size_t *size_r,\n"
11090 "                           ...);\n"
11091 "\n"
11092 msgstr ""
11093
11094 #. type: verbatim
11095 #: ../src/guestfs-actions.pod:2818
11096 #, no-wrap
11097 msgid ""
11098 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
11099 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
11100 "\n"
11101 msgstr ""
11102
11103 #. type: textblock
11104 #: ../src/guestfs-actions.pod:2821 ../fish/guestfish-actions.pod:1902
11105 msgid ""
11106 "This function returns an icon corresponding to the inspected operating "
11107 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
11108 "to PNG if necessary)."
11109 msgstr ""
11110
11111 #. type: textblock
11112 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1906
11113 msgid ""
11114 "If it was not possible to get an icon this function returns a zero-length "
11115 "(non-NULL) buffer.  I<Callers must check for this case>."
11116 msgstr ""
11117
11118 #. type: textblock
11119 #: ../src/guestfs-actions.pod:2828 ../fish/guestfish-actions.pod:1909
11120 msgid ""
11121 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11122 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11123 "this file will be returned.  You can disable favicons by passing the "
11124 "optional C<favicon> boolean as false (default is true)."
11125 msgstr ""
11126
11127 #. type: textblock
11128 #: ../src/guestfs-actions.pod:2834 ../fish/guestfish-actions.pod:1915
11129 msgid ""
11130 "If finding the favicon fails, then we look in other places in the guest for "
11131 "a suitable icon."
11132 msgstr ""
11133
11134 #. type: textblock
11135 #: ../src/guestfs-actions.pod:2837 ../fish/guestfish-actions.pod:1918
11136 msgid ""
11137 "If the optional C<highquality> boolean is true then only high quality icons "
11138 "are returned, which means only icons of high resolution with an alpha "
11139 "channel.  The default (false) is to return any icon we can, even if it is of "
11140 "substandard quality."
11141 msgstr ""
11142
11143 #. type: textblock
11144 #: ../src/guestfs-actions.pod:2848 ../fish/guestfish-actions.pod:1929
11145 msgid ""
11146 "Unlike most other inspection API calls, the guest's disks must be mounted up "
11147 "before you call this, since it needs to read information from the guest "
11148 "filesystem during the call."
11149 msgstr ""
11150
11151 #. type: textblock
11152 #: ../src/guestfs-actions.pod:2854 ../fish/guestfish-actions.pod:1935
11153 msgid ""
11154 "B<Security:> The icon data comes from the untrusted guest, and should be "
11155 "treated with caution.  PNG files have been known to contain exploits.  "
11156 "Ensure that libpng (or other relevant libraries) are fully up to date before "
11157 "trying to process or display the icon."
11158 msgstr ""
11159
11160 #. type: textblock
11161 #: ../src/guestfs-actions.pod:2862 ../fish/guestfish-actions.pod:1943
11162 msgid ""
11163 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
11164 "tries to return the largest, highest quality icon available.  The "
11165 "application must scale the icon to the required size."
11166 msgstr ""
11167
11168 #. type: textblock
11169 #: ../src/guestfs-actions.pod:2869 ../fish/guestfish-actions.pod:1950
11170 msgid ""
11171 "Extracting icons from Windows guests requires the external C<wrestool> "
11172 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11173 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11174 "installed separately."
11175 msgstr ""
11176
11177 #. type: textblock
11178 #: ../src/guestfs-actions.pod:2876 ../fish/guestfish-actions.pod:1957
11179 msgid ""
11180 "Operating system icons are usually trademarks.  Seek legal advice before "
11181 "using trademarks in applications."
11182 msgstr ""
11183
11184 #. type: textblock
11185 #: ../src/guestfs-actions.pod:2885 ../src/guestfs-actions.pod:3710
11186 #: ../src/guestfs-actions.pod:4964
11187 msgid "(Added in 1.11.12)"
11188 msgstr ""
11189
11190 #. type: =head2
11191 #: ../src/guestfs-actions.pod:2887
11192 msgid "guestfs_inspect_get_icon_va"
11193 msgstr ""
11194
11195 #. type: verbatim
11196 #: ../src/guestfs-actions.pod:2889
11197 #, no-wrap
11198 msgid ""
11199 " char *\n"
11200 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11201 "                              const char *root,\n"
11202 "                              size_t *size_r,\n"
11203 "                              va_list args);\n"
11204 "\n"
11205 msgstr ""
11206
11207 #. type: textblock
11208 #: ../src/guestfs-actions.pod:2895
11209 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11210 msgstr ""
11211
11212 #. type: =head2
11213 #: ../src/guestfs-actions.pod:2899
11214 msgid "guestfs_inspect_get_icon_argv"
11215 msgstr ""
11216
11217 #. type: verbatim
11218 #: ../src/guestfs-actions.pod:2901
11219 #, no-wrap
11220 msgid ""
11221 " char *\n"
11222 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11223 "                                const char *root,\n"
11224 "                                size_t *size_r,\n"
11225 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11226 "\n"
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:2907
11231 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11232 msgstr ""
11233
11234 #. type: =head2
11235 #: ../src/guestfs-actions.pod:2911
11236 msgid "guestfs_inspect_get_major_version"
11237 msgstr ""
11238
11239 #. type: verbatim
11240 #: ../src/guestfs-actions.pod:2913
11241 #, no-wrap
11242 msgid ""
11243 " int\n"
11244 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11245 "                                    const char *root);\n"
11246 "\n"
11247 msgstr ""
11248
11249 #. type: textblock
11250 #: ../src/guestfs-actions.pod:2917 ../fish/guestfish-actions.pod:1968
11251 msgid ""
11252 "This returns the major version number of the inspected operating system."
11253 msgstr ""
11254
11255 #. type: textblock
11256 #: ../src/guestfs-actions.pod:2920 ../fish/guestfish-actions.pod:1971
11257 msgid ""
11258 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11259 "popular public names used by the operating system.  Notably the operating "
11260 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11261 "1).  You can find out the real versions corresponding to releases of Windows "
11262 "by consulting Wikipedia or MSDN."
11263 msgstr ""
11264
11265 #. type: textblock
11266 #: ../src/guestfs-actions.pod:2927 ../src/guestfs-actions.pod:2944
11267 #: ../fish/guestfish-actions.pod:1978 ../fish/guestfish-actions.pod:1989
11268 msgid "If the version could not be determined, then C<0> is returned."
11269 msgstr ""
11270
11271 #. type: =head2
11272 #: ../src/guestfs-actions.pod:2935
11273 msgid "guestfs_inspect_get_minor_version"
11274 msgstr ""
11275
11276 #. type: verbatim
11277 #: ../src/guestfs-actions.pod:2937
11278 #, no-wrap
11279 msgid ""
11280 " int\n"
11281 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11282 "                                    const char *root);\n"
11283 "\n"
11284 msgstr ""
11285
11286 #. type: textblock
11287 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:1986
11288 msgid ""
11289 "This returns the minor version number of the inspected operating system."
11290 msgstr ""
11291
11292 #. type: textblock
11293 #: ../src/guestfs-actions.pod:2946
11294 msgid ""
11295 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11296 "C<guestfs_inspect_get_major_version>."
11297 msgstr ""
11298
11299 #. type: =head2
11300 #: ../src/guestfs-actions.pod:2953
11301 msgid "guestfs_inspect_get_mountpoints"
11302 msgstr ""
11303
11304 #. type: verbatim
11305 #: ../src/guestfs-actions.pod:2955
11306 #, no-wrap
11307 msgid ""
11308 " char **\n"
11309 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11310 "                                  const char *root);\n"
11311 "\n"
11312 msgstr ""
11313
11314 #. type: textblock
11315 #: ../src/guestfs-actions.pod:2959 ../fish/guestfish-actions.pod:1998
11316 msgid ""
11317 "This returns a hash of where we think the filesystems associated with this "
11318 "operating system should be mounted.  Callers should note that this is at "
11319 "best an educated guess made by reading configuration files such as C</etc/"
11320 "fstab>.  I<In particular note> that this may return filesystems which are "
11321 "non-existent or not mountable and callers should be prepared to handle or "
11322 "ignore failures if they try to mount them."
11323 msgstr ""
11324
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:2968 ../fish/guestfish-actions.pod:2007
11327 msgid ""
11328 "Each element in the returned hashtable has a key which is the path of the "
11329 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11330 "mounted there (eg. C</dev/sda1>)."
11331 msgstr ""
11332
11333 #. type: textblock
11334 #: ../src/guestfs-actions.pod:2973 ../fish/guestfish-actions.pod:2012
11335 msgid ""
11336 "Non-mounted devices such as swap devices are I<not> returned in this list."
11337 msgstr ""
11338
11339 #. type: textblock
11340 #: ../src/guestfs-actions.pod:2976
11341 msgid ""
11342 "For operating systems like Windows which still use drive letters, this call "
11343 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11344 "information about the mapping of drive letters to partitions, see "
11345 "C<guestfs_inspect_get_drive_mappings>."
11346 msgstr ""
11347
11348 #. type: textblock
11349 #: ../src/guestfs-actions.pod:2982
11350 msgid ""
11351 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11352 "C<guestfs_inspect_get_filesystems>."
11353 msgstr ""
11354
11355 #. type: =head2
11356 #: ../src/guestfs-actions.pod:2993
11357 msgid "guestfs_inspect_get_package_format"
11358 msgstr ""
11359
11360 #. type: verbatim
11361 #: ../src/guestfs-actions.pod:2995
11362 #, no-wrap
11363 msgid ""
11364 " char *\n"
11365 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11366 "                                     const char *root);\n"
11367 "\n"
11368 msgstr ""
11369
11370 #. type: textblock
11371 #: ../src/guestfs-actions.pod:2999
11372 msgid ""
11373 "This function and C<guestfs_inspect_get_package_management> return the "
11374 "package format and package management tool used by the inspected operating "
11375 "system.  For example for Fedora these functions would return C<rpm> (package "
11376 "format) and C<yum> (package management)."
11377 msgstr ""
11378
11379 #. type: textblock
11380 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:2034
11381 msgid ""
11382 "This returns the string C<unknown> if we could not determine the package "
11383 "format I<or> if the operating system does not have a real packaging system "
11384 "(eg. Windows)."
11385 msgstr ""
11386
11387 #. type: textblock
11388 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2038
11389 msgid ""
11390 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11391 "Future versions of libguestfs may return other strings."
11392 msgstr ""
11393
11394 #. type: textblock
11395 #: ../src/guestfs-actions.pod:3017 ../src/guestfs-actions.pod:3045
11396 msgid "(Added in 1.7.5)"
11397 msgstr ""
11398
11399 #. type: =head2
11400 #: ../src/guestfs-actions.pod:3019
11401 msgid "guestfs_inspect_get_package_management"
11402 msgstr ""
11403
11404 #. type: verbatim
11405 #: ../src/guestfs-actions.pod:3021
11406 #, no-wrap
11407 msgid ""
11408 " char *\n"
11409 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11410 "                                         const char *root);\n"
11411 "\n"
11412 msgstr ""
11413
11414 #. type: textblock
11415 #: ../src/guestfs-actions.pod:3025
11416 msgid ""
11417 "C<guestfs_inspect_get_package_format> and this function return the package "
11418 "format and package management tool used by the inspected operating system.  "
11419 "For example for Fedora these functions would return C<rpm> (package format) "
11420 "and C<yum> (package management)."
11421 msgstr ""
11422
11423 #. type: textblock
11424 #: ../src/guestfs-actions.pod:3031 ../fish/guestfish-actions.pod:2053
11425 msgid ""
11426 "This returns the string C<unknown> if we could not determine the package "
11427 "management tool I<or> if the operating system does not have a real packaging "
11428 "system (eg. Windows)."
11429 msgstr ""
11430
11431 #. type: textblock
11432 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2057
11433 msgid ""
11434 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11435 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11436 "libguestfs may return other strings."
11437 msgstr ""
11438
11439 #. type: =head2
11440 #: ../src/guestfs-actions.pod:3047
11441 msgid "guestfs_inspect_get_product_name"
11442 msgstr ""
11443
11444 #. type: verbatim
11445 #: ../src/guestfs-actions.pod:3049
11446 #, no-wrap
11447 msgid ""
11448 " char *\n"
11449 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11450 "                                   const char *root);\n"
11451 "\n"
11452 msgstr ""
11453
11454 #. type: textblock
11455 #: ../src/guestfs-actions.pod:3053 ../fish/guestfish-actions.pod:2068
11456 msgid ""
11457 "This returns the product name of the inspected operating system.  The "
11458 "product name is generally some freeform string which can be displayed to the "
11459 "user, but should not be parsed by programs."
11460 msgstr ""
11461
11462 #. type: textblock
11463 #: ../src/guestfs-actions.pod:3058 ../fish/guestfish-actions.pod:2073
11464 msgid ""
11465 "If the product name could not be determined, then the string C<unknown> is "
11466 "returned."
11467 msgstr ""
11468
11469 #. type: =head2
11470 #: ../src/guestfs-actions.pod:3068
11471 msgid "guestfs_inspect_get_product_variant"
11472 msgstr ""
11473
11474 #. type: verbatim
11475 #: ../src/guestfs-actions.pod:3070
11476 #, no-wrap
11477 msgid ""
11478 " char *\n"
11479 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11480 "                                      const char *root);\n"
11481 "\n"
11482 msgstr ""
11483
11484 #. type: textblock
11485 #: ../src/guestfs-actions.pod:3074 ../fish/guestfish-actions.pod:2082
11486 #, fuzzy
11487 #| msgid "This is an installed operating system."
11488 msgid "This returns the product variant of the inspected operating system."
11489 msgstr "Це встановлена операційна система."
11490
11491 #. type: textblock
11492 #: ../src/guestfs-actions.pod:3077 ../fish/guestfish-actions.pod:2085
11493 msgid ""
11494 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11495 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11496 "is usually a string such as C<Client> or C<Server> (other values are "
11497 "possible).  This can be used to distinguish consumer and enterprise versions "
11498 "of Windows that have the same version number (for example, Windows 7 and "
11499 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11500 "the latter is C<Server>)."
11501 msgstr ""
11502
11503 #. type: textblock
11504 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2094
11505 msgid ""
11506 "For enterprise Linux guests, in future we intend this to return the product "
11507 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11508 "implemented at present."
11509 msgstr ""
11510
11511 #. type: textblock
11512 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2098
11513 msgid ""
11514 "If the product variant could not be determined, then the string C<unknown> "
11515 "is returned."
11516 msgstr ""
11517
11518 #. type: textblock
11519 #: ../src/guestfs-actions.pod:3093
11520 msgid ""
11521 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11522 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11523 msgstr ""
11524
11525 #. type: textblock
11526 #: ../src/guestfs-actions.pod:3100
11527 msgid "(Added in 1.9.13)"
11528 msgstr ""
11529
11530 #. type: =head2
11531 #: ../src/guestfs-actions.pod:3102
11532 msgid "guestfs_inspect_get_roots"
11533 msgstr ""
11534
11535 #. type: verbatim
11536 #: ../src/guestfs-actions.pod:3104
11537 #, no-wrap
11538 msgid ""
11539 " char **\n"
11540 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11541 "\n"
11542 msgstr ""
11543
11544 #. type: textblock
11545 #: ../src/guestfs-actions.pod:3107
11546 msgid ""
11547 "This function is a convenient way to get the list of root devices, as "
11548 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11549 "the whole inspection process."
11550 msgstr ""
11551
11552 #. type: textblock
11553 #: ../src/guestfs-actions.pod:3111
11554 msgid ""
11555 "This returns an empty list if either no root devices were found or the "
11556 "caller has not called C<guestfs_inspect_os>."
11557 msgstr ""
11558
11559 #. type: textblock
11560 #: ../src/guestfs-actions.pod:3120
11561 msgid "(Added in 1.7.3)"
11562 msgstr ""
11563
11564 #. type: =head2
11565 #: ../src/guestfs-actions.pod:3122
11566 msgid "guestfs_inspect_get_type"
11567 msgstr ""
11568
11569 #. type: verbatim
11570 #: ../src/guestfs-actions.pod:3124
11571 #, no-wrap
11572 msgid ""
11573 " char *\n"
11574 " guestfs_inspect_get_type (guestfs_h *g,\n"
11575 "                           const char *root);\n"
11576 "\n"
11577 msgstr ""
11578
11579 #. type: textblock
11580 #: ../src/guestfs-actions.pod:3128 ../fish/guestfish-actions.pod:2122
11581 msgid ""
11582 "This returns the type of the inspected operating system.  Currently defined "
11583 "types are:"
11584 msgstr ""
11585
11586 #. type: =item
11587 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2127
11588 msgid "\"linux\""
11589 msgstr "\"linux\""
11590
11591 #. type: textblock
11592 #: ../src/guestfs-actions.pod:3135 ../fish/guestfish-actions.pod:2129
11593 msgid "Any Linux-based operating system."
11594 msgstr ""
11595
11596 #. type: textblock
11597 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2133
11598 msgid "Any Microsoft Windows operating system."
11599 msgstr ""
11600
11601 #. type: =item
11602 #: ../src/guestfs-actions.pod:3141 ../fish/guestfish-actions.pod:2135
11603 msgid "\"freebsd\""
11604 msgstr "\"freebsd\""
11605
11606 #. type: textblock
11607 #: ../src/guestfs-actions.pod:3143 ../fish/guestfish-actions.pod:2137
11608 msgid "FreeBSD."
11609 msgstr "FreeBSD."
11610
11611 #. type: textblock
11612 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2141
11613 msgid "The operating system type could not be determined."
11614 msgstr ""
11615
11616 #. type: =head2
11617 #: ../src/guestfs-actions.pod:3161
11618 msgid "guestfs_inspect_get_windows_current_control_set"
11619 msgstr ""
11620
11621 #. type: verbatim
11622 #: ../src/guestfs-actions.pod:3163
11623 #, no-wrap
11624 msgid ""
11625 " char *\n"
11626 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11627 "                                                  const char *root);\n"
11628 "\n"
11629 msgstr ""
11630
11631 #. type: textblock
11632 #: ../src/guestfs-actions.pod:3167 ../fish/guestfish-actions.pod:2154
11633 msgid ""
11634 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11635 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11636 msgstr ""
11637
11638 #. type: textblock
11639 #: ../src/guestfs-actions.pod:3170 ../fish/guestfish-actions.pod:2157
11640 msgid ""
11641 "This call assumes that the guest is Windows and that the Registry could be "
11642 "examined by inspection.  If this is not the case then an error is returned."
11643 msgstr ""
11644
11645 #. type: =head2
11646 #: ../src/guestfs-actions.pod:3181
11647 msgid "guestfs_inspect_get_windows_systemroot"
11648 msgstr ""
11649
11650 #. type: verbatim
11651 #: ../src/guestfs-actions.pod:3183
11652 #, no-wrap
11653 msgid ""
11654 " char *\n"
11655 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11656 "                                         const char *root);\n"
11657 "\n"
11658 msgstr ""
11659
11660 #. type: textblock
11661 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2167
11662 msgid ""
11663 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11664 "is a directory path such as C</WINDOWS>."
11665 msgstr ""
11666
11667 #. type: textblock
11668 #: ../src/guestfs-actions.pod:3190 ../fish/guestfish-actions.pod:2170
11669 msgid ""
11670 "This call assumes that the guest is Windows and that the systemroot could be "
11671 "determined by inspection.  If this is not the case then an error is returned."
11672 msgstr ""
11673
11674 #. type: textblock
11675 #: ../src/guestfs-actions.pod:3199
11676 msgid "(Added in 1.5.25)"
11677 msgstr ""
11678
11679 #. type: =head2
11680 #: ../src/guestfs-actions.pod:3201
11681 msgid "guestfs_inspect_is_live"
11682 msgstr ""
11683
11684 #. type: verbatim
11685 #: ../src/guestfs-actions.pod:3203
11686 #, no-wrap
11687 msgid ""
11688 " int\n"
11689 " guestfs_inspect_is_live (guestfs_h *g,\n"
11690 "                          const char *root);\n"
11691 "\n"
11692 msgstr ""
11693
11694 #. type: textblock
11695 #: ../src/guestfs-actions.pod:3207
11696 msgid ""
11697 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11698 "disk), then this returns true if a live image was detected on the disk."
11699 msgstr ""
11700
11701 #. type: =head2
11702 #: ../src/guestfs-actions.pod:3217
11703 msgid "guestfs_inspect_is_multipart"
11704 msgstr ""
11705
11706 #. type: verbatim
11707 #: ../src/guestfs-actions.pod:3219
11708 #, no-wrap
11709 msgid ""
11710 " int\n"
11711 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11712 "                               const char *root);\n"
11713 "\n"
11714 msgstr ""
11715
11716 #. type: textblock
11717 #: ../src/guestfs-actions.pod:3223
11718 msgid ""
11719 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11720 "disk), then this returns true if the disk is part of a set."
11721 msgstr ""
11722
11723 #. type: =head2
11724 #: ../src/guestfs-actions.pod:3233
11725 msgid "guestfs_inspect_is_netinst"
11726 msgstr ""
11727
11728 #. type: verbatim
11729 #: ../src/guestfs-actions.pod:3235
11730 #, no-wrap
11731 msgid ""
11732 " int\n"
11733 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11734 "                             const char *root);\n"
11735 "\n"
11736 msgstr ""
11737
11738 #. type: textblock
11739 #: ../src/guestfs-actions.pod:3239
11740 msgid ""
11741 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11742 "disk), then this returns true if the disk is a network installer, ie. not a "
11743 "self-contained install CD but one which is likely to require network access "
11744 "to complete the install."
11745 msgstr ""
11746
11747 #. type: =head2
11748 #: ../src/guestfs-actions.pod:3251
11749 msgid "guestfs_inspect_list_applications"
11750 msgstr ""
11751
11752 #. type: verbatim
11753 #: ../src/guestfs-actions.pod:3253
11754 #, no-wrap
11755 msgid ""
11756 " struct guestfs_application_list *\n"
11757 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11758 "                                    const char *root);\n"
11759 "\n"
11760 msgstr ""
11761
11762 #. type: textblock
11763 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2212
11764 msgid "Return the list of applications installed in the operating system."
11765 msgstr ""
11766
11767 #. type: textblock
11768 #: ../src/guestfs-actions.pod:3259
11769 msgid ""
11770 "I<Note:> This call works differently from other parts of the inspection "
11771 "API.  You have to call C<guestfs_inspect_os>, then "
11772 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11773 "this.  Listing applications is a significantly more difficult operation "
11774 "which requires access to the full filesystem.  Also note that unlike the "
11775 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11776 "the libguestfs handle, this call actually reads parts of the mounted "
11777 "filesystems during the call."
11778 msgstr ""
11779
11780 #. type: textblock
11781 #: ../src/guestfs-actions.pod:3269 ../fish/guestfish-actions.pod:2224
11782 msgid ""
11783 "This returns an empty list if the inspection code was not able to determine "
11784 "the list of applications."
11785 msgstr ""
11786
11787 #. type: textblock
11788 #: ../src/guestfs-actions.pod:3272 ../fish/guestfish-actions.pod:2227
11789 msgid "The application structure contains the following fields:"
11790 msgstr ""
11791
11792 #. type: =item
11793 #: ../src/guestfs-actions.pod:3276 ../fish/guestfish-actions.pod:2231
11794 msgid "C<app_name>"
11795 msgstr "C<app_name>"
11796
11797 #. type: textblock
11798 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2233
11799 msgid ""
11800 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11801 "guests, this is the package name."
11802 msgstr ""
11803
11804 #. type: =item
11805 #: ../src/guestfs-actions.pod:3281 ../fish/guestfish-actions.pod:2236
11806 msgid "C<app_display_name>"
11807 msgstr "C<app_display_name>"
11808
11809 #. type: textblock
11810 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2238
11811 msgid ""
11812 "The display name of the application, sometimes localized to the install "
11813 "language of the guest operating system."
11814 msgstr ""
11815
11816 #. type: textblock
11817 #: ../src/guestfs-actions.pod:3286 ../fish/guestfish-actions.pod:2241
11818 msgid ""
11819 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11820 "to display something can use C<app_name> instead."
11821 msgstr ""
11822
11823 #. type: =item
11824 #: ../src/guestfs-actions.pod:3289 ../fish/guestfish-actions.pod:2244
11825 msgid "C<app_epoch>"
11826 msgstr "C<app_epoch>"
11827
11828 #. type: textblock
11829 #: ../src/guestfs-actions.pod:3291 ../fish/guestfish-actions.pod:2246
11830 msgid ""
11831 "For package managers which use epochs, this contains the epoch of the "
11832 "package (an integer).  If unavailable, this is returned as C<0>."
11833 msgstr ""
11834
11835 #. type: =item
11836 #: ../src/guestfs-actions.pod:3294 ../fish/guestfish-actions.pod:2249
11837 msgid "C<app_version>"
11838 msgstr "C<app_version>"
11839
11840 #. type: textblock
11841 #: ../src/guestfs-actions.pod:3296 ../fish/guestfish-actions.pod:2251
11842 msgid ""
11843 "The version string of the application or package.  If unavailable this is "
11844 "returned as an empty string C<\"\">."
11845 msgstr ""
11846
11847 #. type: =item
11848 #: ../src/guestfs-actions.pod:3299 ../fish/guestfish-actions.pod:2254
11849 msgid "C<app_release>"
11850 msgstr "C<app_release>"
11851
11852 #. type: textblock
11853 #: ../src/guestfs-actions.pod:3301 ../fish/guestfish-actions.pod:2256
11854 msgid ""
11855 "The release string of the application or package, for package managers that "
11856 "use this.  If unavailable this is returned as an empty string C<\"\">."
11857 msgstr ""
11858
11859 #. type: =item
11860 #: ../src/guestfs-actions.pod:3305 ../fish/guestfish-actions.pod:2260
11861 msgid "C<app_install_path>"
11862 msgstr "C<app_install_path>"
11863
11864 #. type: textblock
11865 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2262
11866 msgid ""
11867 "The installation path of the application (on operating systems such as "
11868 "Windows which use installation paths).  This path is in the format used by "
11869 "the guest operating system, it is not a libguestfs path."
11870 msgstr ""
11871
11872 #. type: textblock
11873 #: ../src/guestfs-actions.pod:3312 ../fish/guestfish-actions.pod:2267
11874 msgid "If unavailable this is returned as an empty string C<\"\">."
11875 msgstr ""
11876
11877 #. type: =item
11878 #: ../src/guestfs-actions.pod:3314 ../fish/guestfish-actions.pod:2269
11879 msgid "C<app_trans_path>"
11880 msgstr "C<app_trans_path>"
11881
11882 #. type: textblock
11883 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2271
11884 msgid ""
11885 "The install path translated into a libguestfs path.  If unavailable this is "
11886 "returned as an empty string C<\"\">."
11887 msgstr ""
11888
11889 #. type: =item
11890 #: ../src/guestfs-actions.pod:3319 ../fish/guestfish-actions.pod:2274
11891 msgid "C<app_publisher>"
11892 msgstr "C<app_publisher>"
11893
11894 #. type: textblock
11895 #: ../src/guestfs-actions.pod:3321 ../fish/guestfish-actions.pod:2276
11896 msgid ""
11897 "The name of the publisher of the application, for package managers that use "
11898 "this.  If unavailable this is returned as an empty string C<\"\">."
11899 msgstr ""
11900
11901 #. type: =item
11902 #: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2280
11903 msgid "C<app_url>"
11904 msgstr "C<app_url>"
11905
11906 #. type: textblock
11907 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2282
11908 msgid ""
11909 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11910 "returned as an empty string C<\"\">."
11911 msgstr ""
11912
11913 #. type: =item
11914 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2285
11915 msgid "C<app_source_package>"
11916 msgstr ""
11917
11918 #. type: textblock
11919 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2287
11920 msgid ""
11921 "For packaging systems which support this, the name of the source package.  "
11922 "If unavailable this is returned as an empty string C<\"\">."
11923 msgstr ""
11924
11925 #. type: =item
11926 #: ../src/guestfs-actions.pod:3335 ../fish/guestfish-actions.pod:2290
11927 msgid "C<app_summary>"
11928 msgstr ""
11929
11930 #. type: textblock
11931 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2292
11932 msgid ""
11933 "A short (usually one line) description of the application or package.  If "
11934 "unavailable this is returned as an empty string C<\"\">."
11935 msgstr ""
11936
11937 #. type: =item
11938 #: ../src/guestfs-actions.pod:3340 ../fish/guestfish-actions.pod:2295
11939 msgid "C<app_description>"
11940 msgstr ""
11941
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:3342 ../fish/guestfish-actions.pod:2297
11944 msgid ""
11945 "A longer description of the application or package.  If unavailable this is "
11946 "returned as an empty string C<\"\">."
11947 msgstr ""
11948
11949 #. type: textblock
11950 #: ../src/guestfs-actions.pod:3349
11951 msgid ""
11952 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11953 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11954 "after use>."
11955 msgstr ""
11956
11957 #. type: textblock
11958 #: ../src/guestfs-actions.pod:3353
11959 msgid "(Added in 1.7.8)"
11960 msgstr ""
11961
11962 #. type: =head2
11963 #: ../src/guestfs-actions.pod:3355
11964 msgid "guestfs_inspect_os"
11965 msgstr ""
11966
11967 #. type: verbatim
11968 #: ../src/guestfs-actions.pod:3357
11969 #, no-wrap
11970 msgid ""
11971 " char **\n"
11972 " guestfs_inspect_os (guestfs_h *g);\n"
11973 "\n"
11974 msgstr ""
11975
11976 #. type: textblock
11977 #: ../src/guestfs-actions.pod:3360 ../fish/guestfish-actions.pod:2308
11978 msgid ""
11979 "This function uses other libguestfs functions and certain heuristics to "
11980 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11981 "for operating systems."
11982 msgstr ""
11983
11984 #. type: textblock
11985 #: ../src/guestfs-actions.pod:3364 ../fish/guestfish-actions.pod:2312
11986 msgid "The list returned is empty if no operating systems were found."
11987 msgstr ""
11988
11989 #. type: textblock
11990 #: ../src/guestfs-actions.pod:3366 ../fish/guestfish-actions.pod:2314
11991 msgid ""
11992 "If one operating system was found, then this returns a list with a single "
11993 "element, which is the name of the root filesystem of this operating system.  "
11994 "It is also possible for this function to return a list containing more than "
11995 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11996 "element being the root filesystem of one of the operating systems."
11997 msgstr ""
11998
11999 #. type: textblock
12000 #: ../src/guestfs-actions.pod:3373
12001 msgid ""
12002 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12003 "functions in order to query further information about each operating system, "
12004 "such as the name and version."
12005 msgstr ""
12006
12007 #. type: textblock
12008 #: ../src/guestfs-actions.pod:3378
12009 msgid ""
12010 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
12011 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
12012 "the contents.  This should be called with no disks currently mounted.  The "
12013 "function may also use Augeas, so any existing Augeas handle will be closed."
12014 msgstr ""
12015
12016 #. type: textblock
12017 #: ../src/guestfs-actions.pod:3384 ../fish/guestfish-actions.pod:2332
12018 msgid ""
12019 "This function cannot decrypt encrypted disks.  The caller must do that first "
12020 "(supplying the necessary keys) if the disk is encrypted."
12021 msgstr ""
12022
12023 #. type: textblock
12024 #: ../src/guestfs-actions.pod:3390 ../src/guestfs-actions.pod:3721
12025 #: ../src/guestfs-actions.pod:3803
12026 msgid "See also C<guestfs_list_filesystems>."
12027 msgstr ""
12028
12029 #. type: =head2
12030 #: ../src/guestfs-actions.pod:3398
12031 msgid "guestfs_is_blockdev"
12032 msgstr ""
12033
12034 #. type: verbatim
12035 #: ../src/guestfs-actions.pod:3400
12036 #, no-wrap
12037 msgid ""
12038 " int\n"
12039 " guestfs_is_blockdev (guestfs_h *g,\n"
12040 "                      const char *path);\n"
12041 "\n"
12042 msgstr ""
12043
12044 #. type: textblock
12045 #: ../src/guestfs-actions.pod:3404 ../fish/guestfish-actions.pod:2344
12046 msgid ""
12047 "This returns C<true> if and only if there is a block device with the given "
12048 "C<path> name."
12049 msgstr ""
12050
12051 #. type: textblock
12052 #: ../src/guestfs-actions.pod:3407 ../src/guestfs-actions.pod:3436
12053 #: ../src/guestfs-actions.pod:3466 ../src/guestfs-actions.pod:3481
12054 #: ../src/guestfs-actions.pod:3497 ../src/guestfs-actions.pod:3553
12055 #: ../src/guestfs-actions.pod:3568
12056 msgid "See also C<guestfs_stat>."
12057 msgstr ""
12058
12059 #. type: textblock
12060 #: ../src/guestfs-actions.pod:3411 ../src/guestfs-actions.pod:3440
12061 #: ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:3557
12062 #: ../src/guestfs-actions.pod:3572
12063 msgid "(Added in 1.5.10)"
12064 msgstr ""
12065
12066 #. type: =head2
12067 #: ../src/guestfs-actions.pod:3413
12068 msgid "guestfs_is_busy"
12069 msgstr ""
12070
12071 #. type: verbatim
12072 #: ../src/guestfs-actions.pod:3415
12073 #, no-wrap
12074 msgid ""
12075 " int\n"
12076 " guestfs_is_busy (guestfs_h *g);\n"
12077 "\n"
12078 msgstr ""
12079
12080 #. type: textblock
12081 #: ../src/guestfs-actions.pod:3418 ../fish/guestfish-actions.pod:2353
12082 msgid ""
12083 "This returns true iff this handle is busy processing a command (in the "
12084 "C<BUSY> state)."
12085 msgstr ""
12086
12087 #. type: =head2
12088 #: ../src/guestfs-actions.pod:3427
12089 msgid "guestfs_is_chardev"
12090 msgstr ""
12091
12092 #. type: verbatim
12093 #: ../src/guestfs-actions.pod:3429
12094 #, no-wrap
12095 msgid ""
12096 " int\n"
12097 " guestfs_is_chardev (guestfs_h *g,\n"
12098 "                     const char *path);\n"
12099 "\n"
12100 msgstr ""
12101
12102 #. type: textblock
12103 #: ../src/guestfs-actions.pod:3433 ../fish/guestfish-actions.pod:2362
12104 msgid ""
12105 "This returns C<true> if and only if there is a character device with the "
12106 "given C<path> name."
12107 msgstr ""
12108
12109 #. type: =head2
12110 #: ../src/guestfs-actions.pod:3442
12111 msgid "guestfs_is_config"
12112 msgstr ""
12113
12114 #. type: verbatim
12115 #: ../src/guestfs-actions.pod:3444
12116 #, no-wrap
12117 msgid ""
12118 " int\n"
12119 " guestfs_is_config (guestfs_h *g);\n"
12120 "\n"
12121 msgstr ""
12122
12123 #. type: textblock
12124 #: ../src/guestfs-actions.pod:3447 ../fish/guestfish-actions.pod:2371
12125 msgid ""
12126 "This returns true iff this handle is being configured (in the C<CONFIG> "
12127 "state)."
12128 msgstr ""
12129
12130 #. type: =head2
12131 #: ../src/guestfs-actions.pod:3456
12132 msgid "guestfs_is_dir"
12133 msgstr ""
12134
12135 #. type: verbatim
12136 #: ../src/guestfs-actions.pod:3458
12137 #, no-wrap
12138 msgid ""
12139 " int\n"
12140 " guestfs_is_dir (guestfs_h *g,\n"
12141 "                 const char *path);\n"
12142 "\n"
12143 msgstr ""
12144
12145 #. type: textblock
12146 #: ../src/guestfs-actions.pod:3462 ../fish/guestfish-actions.pod:2380
12147 msgid ""
12148 "This returns C<true> if and only if there is a directory with the given "
12149 "C<path> name.  Note that it returns false for other objects like files."
12150 msgstr ""
12151
12152 #. type: =head2
12153 #: ../src/guestfs-actions.pod:3472
12154 msgid "guestfs_is_fifo"
12155 msgstr ""
12156
12157 #. type: verbatim
12158 #: ../src/guestfs-actions.pod:3474
12159 #, no-wrap
12160 msgid ""
12161 " int\n"
12162 " guestfs_is_fifo (guestfs_h *g,\n"
12163 "                  const char *path);\n"
12164 "\n"
12165 msgstr ""
12166
12167 #. type: textblock
12168 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2390
12169 msgid ""
12170 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12171 "given C<path> name."
12172 msgstr ""
12173
12174 #. type: =head2
12175 #: ../src/guestfs-actions.pod:3487
12176 msgid "guestfs_is_file"
12177 msgstr ""
12178
12179 #. type: verbatim
12180 #: ../src/guestfs-actions.pod:3489
12181 #, no-wrap
12182 msgid ""
12183 " int\n"
12184 " guestfs_is_file (guestfs_h *g,\n"
12185 "                  const char *path);\n"
12186 "\n"
12187 msgstr ""
12188
12189 #. type: textblock
12190 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2399
12191 msgid ""
12192 "This returns C<true> if and only if there is a regular file with the given "
12193 "C<path> name.  Note that it returns false for other objects like directories."
12194 msgstr ""
12195
12196 #. type: =head2
12197 #: ../src/guestfs-actions.pod:3503
12198 msgid "guestfs_is_launching"
12199 msgstr ""
12200
12201 #. type: verbatim
12202 #: ../src/guestfs-actions.pod:3505
12203 #, no-wrap
12204 msgid ""
12205 " int\n"
12206 " guestfs_is_launching (guestfs_h *g);\n"
12207 "\n"
12208 msgstr ""
12209
12210 #. type: textblock
12211 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2409
12212 msgid ""
12213 "This returns true iff this handle is launching the subprocess (in the "
12214 "C<LAUNCHING> state)."
12215 msgstr ""
12216
12217 #. type: =head2
12218 #: ../src/guestfs-actions.pod:3517
12219 msgid "guestfs_is_lv"
12220 msgstr ""
12221
12222 #. type: verbatim
12223 #: ../src/guestfs-actions.pod:3519
12224 #, no-wrap
12225 msgid ""
12226 " int\n"
12227 " guestfs_is_lv (guestfs_h *g,\n"
12228 "                const char *device);\n"
12229 "\n"
12230 msgstr ""
12231
12232 #. type: textblock
12233 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2418
12234 msgid ""
12235 "This command tests whether C<device> is a logical volume, and returns true "
12236 "iff this is the case."
12237 msgstr ""
12238
12239 #. type: =head2
12240 #: ../src/guestfs-actions.pod:3530
12241 msgid "guestfs_is_ready"
12242 msgstr ""
12243
12244 #. type: verbatim
12245 #: ../src/guestfs-actions.pod:3532
12246 #, no-wrap
12247 msgid ""
12248 " int\n"
12249 " guestfs_is_ready (guestfs_h *g);\n"
12250 "\n"
12251 msgstr ""
12252
12253 #. type: textblock
12254 #: ../src/guestfs-actions.pod:3535 ../fish/guestfish-actions.pod:2425
12255 msgid ""
12256 "This returns true iff this handle is ready to accept commands (in the "
12257 "C<READY> state)."
12258 msgstr ""
12259
12260 #. type: =head2
12261 #: ../src/guestfs-actions.pod:3544
12262 msgid "guestfs_is_socket"
12263 msgstr ""
12264
12265 #. type: verbatim
12266 #: ../src/guestfs-actions.pod:3546
12267 #, no-wrap
12268 msgid ""
12269 " int\n"
12270 " guestfs_is_socket (guestfs_h *g,\n"
12271 "                    const char *path);\n"
12272 "\n"
12273 msgstr ""
12274
12275 #. type: textblock
12276 #: ../src/guestfs-actions.pod:3550 ../fish/guestfish-actions.pod:2434
12277 msgid ""
12278 "This returns C<true> if and only if there is a Unix domain socket with the "
12279 "given C<path> name."
12280 msgstr ""
12281
12282 #. type: =head2
12283 #: ../src/guestfs-actions.pod:3559
12284 msgid "guestfs_is_symlink"
12285 msgstr ""
12286
12287 #. type: verbatim
12288 #: ../src/guestfs-actions.pod:3561
12289 #, no-wrap
12290 msgid ""
12291 " int\n"
12292 " guestfs_is_symlink (guestfs_h *g,\n"
12293 "                     const char *path);\n"
12294 "\n"
12295 msgstr ""
12296
12297 #. type: textblock
12298 #: ../src/guestfs-actions.pod:3565 ../fish/guestfish-actions.pod:2443
12299 msgid ""
12300 "This returns C<true> if and only if there is a symbolic link with the given "
12301 "C<path> name."
12302 msgstr ""
12303
12304 #. type: =head2
12305 #: ../src/guestfs-actions.pod:3574
12306 msgid "guestfs_is_zero"
12307 msgstr ""
12308
12309 #. type: verbatim
12310 #: ../src/guestfs-actions.pod:3576
12311 #, no-wrap
12312 msgid ""
12313 " int\n"
12314 " guestfs_is_zero (guestfs_h *g,\n"
12315 "                  const char *path);\n"
12316 "\n"
12317 msgstr ""
12318
12319 #. type: textblock
12320 #: ../src/guestfs-actions.pod:3580 ../fish/guestfish-actions.pod:2452
12321 msgid ""
12322 "This returns true iff the file exists and the file is empty or it contains "
12323 "all zero bytes."
12324 msgstr ""
12325
12326 #. type: textblock
12327 #: ../src/guestfs-actions.pod:3585 ../src/guestfs-actions.pod:3599
12328 msgid "(Added in 1.11.8)"
12329 msgstr ""
12330
12331 #. type: =head2
12332 #: ../src/guestfs-actions.pod:3587
12333 msgid "guestfs_is_zero_device"
12334 msgstr ""
12335
12336 #. type: verbatim
12337 #: ../src/guestfs-actions.pod:3589
12338 #, no-wrap
12339 msgid ""
12340 " int\n"
12341 " guestfs_is_zero_device (guestfs_h *g,\n"
12342 "                         const char *device);\n"
12343 "\n"
12344 msgstr ""
12345
12346 #. type: textblock
12347 #: ../src/guestfs-actions.pod:3593 ../fish/guestfish-actions.pod:2459
12348 msgid "This returns true iff the device exists and contains all zero bytes."
12349 msgstr ""
12350
12351 #. type: textblock
12352 #: ../src/guestfs-actions.pod:3595 ../fish/guestfish-actions.pod:2461
12353 msgid "Note that for large devices this can take a long time to run."
12354 msgstr ""
12355
12356 #. type: =head2
12357 #: ../src/guestfs-actions.pod:3601
12358 msgid "guestfs_kill_subprocess"
12359 msgstr ""
12360
12361 #. type: verbatim
12362 #: ../src/guestfs-actions.pod:3603
12363 #, no-wrap
12364 msgid ""
12365 " int\n"
12366 " guestfs_kill_subprocess (guestfs_h *g);\n"
12367 "\n"
12368 msgstr ""
12369
12370 #. type: textblock
12371 #: ../src/guestfs-actions.pod:3606 ../fish/guestfish-actions.pod:2467
12372 msgid "This kills the qemu subprocess.  You should never need to call this."
12373 msgstr ""
12374
12375 #. type: =head2
12376 #: ../src/guestfs-actions.pod:3612
12377 msgid "guestfs_launch"
12378 msgstr ""
12379
12380 #. type: verbatim
12381 #: ../src/guestfs-actions.pod:3614
12382 #, no-wrap
12383 msgid ""
12384 " int\n"
12385 " guestfs_launch (guestfs_h *g);\n"
12386 "\n"
12387 msgstr ""
12388
12389 #. type: textblock
12390 #: ../src/guestfs-actions.pod:3617 ../fish/guestfish-actions.pod:2475
12391 msgid ""
12392 "Internally libguestfs is implemented by running a virtual machine using "
12393 "L<qemu(1)>."
12394 msgstr ""
12395
12396 #. type: textblock
12397 #: ../src/guestfs-actions.pod:3620 ../fish/guestfish-actions.pod:2478
12398 msgid ""
12399 "You should call this after configuring the handle (eg. adding drives) but "
12400 "before performing any actions."
12401 msgstr ""
12402
12403 #. type: =head2
12404 #: ../src/guestfs-actions.pod:3632
12405 msgid "guestfs_lchown"
12406 msgstr ""
12407
12408 #. type: verbatim
12409 #: ../src/guestfs-actions.pod:3634
12410 #, no-wrap
12411 msgid ""
12412 " int\n"
12413 " guestfs_lchown (guestfs_h *g,\n"
12414 "                 int owner,\n"
12415 "                 int group,\n"
12416 "                 const char *path);\n"
12417 "\n"
12418 msgstr ""
12419
12420 #. type: textblock
12421 #: ../src/guestfs-actions.pod:3640
12422 msgid ""
12423 "Change the file owner to C<owner> and group to C<group>.  This is like "
12424 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12425 "changed, not the target."
12426 msgstr ""
12427
12428 #. type: =head2
12429 #: ../src/guestfs-actions.pod:3652
12430 msgid "guestfs_lgetxattr"
12431 msgstr ""
12432
12433 #. type: verbatim
12434 #: ../src/guestfs-actions.pod:3654
12435 #, no-wrap
12436 msgid ""
12437 " char *\n"
12438 " guestfs_lgetxattr (guestfs_h *g,\n"
12439 "                    const char *path,\n"
12440 "                    const char *name,\n"
12441 "                    size_t *size_r);\n"
12442 "\n"
12443 msgstr ""
12444
12445 #. type: textblock
12446 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2497
12447 msgid ""
12448 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12449 "is a symlink, then this call returns an extended attribute from the symlink."
12450 msgstr ""
12451
12452 #. type: textblock
12453 #: ../src/guestfs-actions.pod:3674
12454 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12455 msgstr ""
12456
12457 #. type: =head2
12458 #: ../src/guestfs-actions.pod:3682
12459 msgid "guestfs_lgetxattrs"
12460 msgstr ""
12461
12462 #. type: verbatim
12463 #: ../src/guestfs-actions.pod:3684
12464 #, no-wrap
12465 msgid ""
12466 " struct guestfs_xattr_list *\n"
12467 " guestfs_lgetxattrs (guestfs_h *g,\n"
12468 "                     const char *path);\n"
12469 "\n"
12470 msgstr ""
12471
12472 #. type: textblock
12473 #: ../src/guestfs-actions.pod:3688
12474 msgid ""
12475 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12476 "then it returns the extended attributes of the link itself."
12477 msgstr ""
12478
12479 #. type: =head2
12480 #: ../src/guestfs-actions.pod:3698
12481 msgid "guestfs_list_9p"
12482 msgstr ""
12483
12484 #. type: verbatim
12485 #: ../src/guestfs-actions.pod:3700
12486 #, no-wrap
12487 msgid ""
12488 " char **\n"
12489 " guestfs_list_9p (guestfs_h *g);\n"
12490 "\n"
12491 msgstr ""
12492
12493 #. type: textblock
12494 #: ../src/guestfs-actions.pod:3703 ../fish/guestfish-actions.pod:2525
12495 msgid ""
12496 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12497 "returned."
12498 msgstr ""
12499
12500 #. type: =head2
12501 #: ../src/guestfs-actions.pod:3712
12502 msgid "guestfs_list_devices"
12503 msgstr ""
12504
12505 #. type: verbatim
12506 #: ../src/guestfs-actions.pod:3714
12507 #, no-wrap
12508 msgid ""
12509 " char **\n"
12510 " guestfs_list_devices (guestfs_h *g);\n"
12511 "\n"
12512 msgstr ""
12513
12514 #. type: textblock
12515 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2532
12516 msgid "List all the block devices."
12517 msgstr ""
12518
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:3719 ../fish/guestfish-actions.pod:2534
12521 msgid "The full block device names are returned, eg. C</dev/sda>."
12522 msgstr ""
12523
12524 #. type: =head2
12525 #: ../src/guestfs-actions.pod:3729
12526 msgid "guestfs_list_dm_devices"
12527 msgstr ""
12528
12529 #. type: verbatim
12530 #: ../src/guestfs-actions.pod:3731
12531 #, no-wrap
12532 msgid ""
12533 " char **\n"
12534 " guestfs_list_dm_devices (guestfs_h *g);\n"
12535 "\n"
12536 msgstr ""
12537
12538 #. type: textblock
12539 #: ../src/guestfs-actions.pod:3734 ../fish/guestfish-actions.pod:2542
12540 msgid "List all device mapper devices."
12541 msgstr ""
12542
12543 #. type: textblock
12544 #: ../src/guestfs-actions.pod:3736
12545 msgid ""
12546 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12547 "previous call to C<guestfs_luks_open>."
12548 msgstr ""
12549
12550 #. type: textblock
12551 #: ../src/guestfs-actions.pod:3739
12552 msgid ""
12553 "Device mapper devices which correspond to logical volumes are I<not> "
12554 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12555 "volumes."
12556 msgstr ""
12557
12558 #. type: textblock
12559 #: ../src/guestfs-actions.pod:3747 ../src/guestfs-actions.pod:5203
12560 msgid "(Added in 1.11.15)"
12561 msgstr ""
12562
12563 #. type: =head2
12564 #: ../src/guestfs-actions.pod:3749
12565 msgid "guestfs_list_filesystems"
12566 msgstr ""
12567
12568 #. type: verbatim
12569 #: ../src/guestfs-actions.pod:3751
12570 #, no-wrap
12571 msgid ""
12572 " char **\n"
12573 " guestfs_list_filesystems (guestfs_h *g);\n"
12574 "\n"
12575 msgstr ""
12576
12577 #. type: textblock
12578 #: ../src/guestfs-actions.pod:3754 ../fish/guestfish-actions.pod:2555
12579 msgid ""
12580 "This inspection command looks for filesystems on partitions, block devices "
12581 "and logical volumes, returning a list of devices containing filesystems and "
12582 "their type."
12583 msgstr ""
12584
12585 #. type: textblock
12586 #: ../src/guestfs-actions.pod:3758 ../fish/guestfish-actions.pod:2559
12587 msgid ""
12588 "The return value is a hash, where the keys are the devices containing "
12589 "filesystems, and the values are the filesystem types.  For example:"
12590 msgstr ""
12591
12592 #. type: verbatim
12593 #: ../src/guestfs-actions.pod:3762 ../fish/guestfish-actions.pod:2563
12594 #, no-wrap
12595 msgid ""
12596 " \"/dev/sda1\" => \"ntfs\"\n"
12597 " \"/dev/sda2\" => \"ext2\"\n"
12598 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12599 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12600 "\n"
12601 msgstr ""
12602
12603 #. type: textblock
12604 #: ../src/guestfs-actions.pod:3767 ../fish/guestfish-actions.pod:2568
12605 msgid ""
12606 "The value can have the special value \"unknown\", meaning the content of the "
12607 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12608 msgstr ""
12609
12610 #. type: textblock
12611 #: ../src/guestfs-actions.pod:3771
12612 msgid ""
12613 "This command runs other libguestfs commands, which might include "
12614 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12615 "soon after launch and only when nothing is mounted."
12616 msgstr ""
12617
12618 #. type: textblock
12619 #: ../src/guestfs-actions.pod:3775
12620 msgid ""
12621 "Not all of the filesystems returned will be mountable.  In particular, swap "
12622 "partitions are returned in the list.  Also this command does not check that "
12623 "each filesystem found is valid and mountable, and some filesystems might be "
12624 "mountable but require special options.  Filesystems may not all belong to a "
12625 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12626 msgstr ""
12627
12628 #. type: textblock
12629 #: ../src/guestfs-actions.pod:3789 ../src/guestfs-actions.pod:5558
12630 msgid "(Added in 1.5.15)"
12631 msgstr ""
12632
12633 #. type: =head2
12634 #: ../src/guestfs-actions.pod:3791
12635 msgid "guestfs_list_partitions"
12636 msgstr ""
12637
12638 #. type: verbatim
12639 #: ../src/guestfs-actions.pod:3793
12640 #, no-wrap
12641 msgid ""
12642 " char **\n"
12643 " guestfs_list_partitions (guestfs_h *g);\n"
12644 "\n"
12645 msgstr ""
12646
12647 #. type: textblock
12648 #: ../src/guestfs-actions.pod:3796 ../fish/guestfish-actions.pod:2588
12649 msgid "List all the partitions detected on all block devices."
12650 msgstr ""
12651
12652 #. type: textblock
12653 #: ../src/guestfs-actions.pod:3798 ../fish/guestfish-actions.pod:2590
12654 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12655 msgstr ""
12656
12657 #. type: textblock
12658 #: ../src/guestfs-actions.pod:3800
12659 msgid ""
12660 "This does not return logical volumes.  For that you will need to call "
12661 "C<guestfs_lvs>."
12662 msgstr ""
12663
12664 #. type: =head2
12665 #: ../src/guestfs-actions.pod:3811
12666 msgid "guestfs_ll"
12667 msgstr ""
12668
12669 #. type: verbatim
12670 #: ../src/guestfs-actions.pod:3813
12671 #, no-wrap
12672 msgid ""
12673 " char *\n"
12674 " guestfs_ll (guestfs_h *g,\n"
12675 "             const char *directory);\n"
12676 "\n"
12677 msgstr ""
12678
12679 #. type: textblock
12680 #: ../src/guestfs-actions.pod:3817 ../fish/guestfish-actions.pod:2601
12681 msgid ""
12682 "List the files in C<directory> (relative to the root directory, there is no "
12683 "cwd) in the format of 'ls -la'."
12684 msgstr ""
12685
12686 #. type: textblock
12687 #: ../src/guestfs-actions.pod:3820 ../fish/guestfish-actions.pod:2604
12688 msgid ""
12689 "This command is mostly useful for interactive sessions.  It is I<not> "
12690 "intended that you try to parse the output string."
12691 msgstr ""
12692
12693 #. type: =head2
12694 #: ../src/guestfs-actions.pod:3828
12695 msgid "guestfs_ln"
12696 msgstr ""
12697
12698 #. type: verbatim
12699 #: ../src/guestfs-actions.pod:3830
12700 #, no-wrap
12701 msgid ""
12702 " int\n"
12703 " guestfs_ln (guestfs_h *g,\n"
12704 "             const char *target,\n"
12705 "             const char *linkname);\n"
12706 "\n"
12707 msgstr ""
12708
12709 #. type: textblock
12710 #: ../src/guestfs-actions.pod:3835 ../fish/guestfish-actions.pod:2611
12711 msgid "This command creates a hard link using the C<ln> command."
12712 msgstr ""
12713
12714 #. type: =head2
12715 #: ../src/guestfs-actions.pod:3841
12716 msgid "guestfs_ln_f"
12717 msgstr ""
12718
12719 #. type: verbatim
12720 #: ../src/guestfs-actions.pod:3843
12721 #, no-wrap
12722 msgid ""
12723 " int\n"
12724 " guestfs_ln_f (guestfs_h *g,\n"
12725 "               const char *target,\n"
12726 "               const char *linkname);\n"
12727 "\n"
12728 msgstr ""
12729
12730 #. type: textblock
12731 #: ../src/guestfs-actions.pod:3848 ../fish/guestfish-actions.pod:2617
12732 msgid ""
12733 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12734 "option removes the link (C<linkname>) if it exists already."
12735 msgstr ""
12736
12737 #. type: =head2
12738 #: ../src/guestfs-actions.pod:3855
12739 msgid "guestfs_ln_s"
12740 msgstr ""
12741
12742 #. type: verbatim
12743 #: ../src/guestfs-actions.pod:3857
12744 #, no-wrap
12745 msgid ""
12746 " int\n"
12747 " guestfs_ln_s (guestfs_h *g,\n"
12748 "               const char *target,\n"
12749 "               const char *linkname);\n"
12750 "\n"
12751 msgstr ""
12752
12753 #. type: textblock
12754 #: ../src/guestfs-actions.pod:3862 ../fish/guestfish-actions.pod:2624
12755 msgid "This command creates a symbolic link using the C<ln -s> command."
12756 msgstr ""
12757
12758 #. type: =head2
12759 #: ../src/guestfs-actions.pod:3868
12760 msgid "guestfs_ln_sf"
12761 msgstr ""
12762
12763 #. type: verbatim
12764 #: ../src/guestfs-actions.pod:3870
12765 #, no-wrap
12766 msgid ""
12767 " int\n"
12768 " guestfs_ln_sf (guestfs_h *g,\n"
12769 "                const char *target,\n"
12770 "                const char *linkname);\n"
12771 "\n"
12772 msgstr ""
12773
12774 #. type: textblock
12775 #: ../src/guestfs-actions.pod:3875 ../fish/guestfish-actions.pod:2630
12776 msgid ""
12777 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12778 "option removes the link (C<linkname>) if it exists already."
12779 msgstr ""
12780
12781 #. type: =head2
12782 #: ../src/guestfs-actions.pod:3882
12783 msgid "guestfs_lremovexattr"
12784 msgstr ""
12785
12786 #. type: verbatim
12787 #: ../src/guestfs-actions.pod:3884
12788 #, no-wrap
12789 msgid ""
12790 " int\n"
12791 " guestfs_lremovexattr (guestfs_h *g,\n"
12792 "                       const char *xattr,\n"
12793 "                       const char *path);\n"
12794 "\n"
12795 msgstr ""
12796
12797 #. type: textblock
12798 #: ../src/guestfs-actions.pod:3889
12799 msgid ""
12800 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12801 "link, then it removes an extended attribute of the link itself."
12802 msgstr ""
12803
12804 #. type: =head2
12805 #: ../src/guestfs-actions.pod:3897
12806 msgid "guestfs_ls"
12807 msgstr ""
12808
12809 #. type: verbatim
12810 #: ../src/guestfs-actions.pod:3899
12811 #, no-wrap
12812 msgid ""
12813 " char **\n"
12814 " guestfs_ls (guestfs_h *g,\n"
12815 "             const char *directory);\n"
12816 "\n"
12817 msgstr ""
12818
12819 #. type: textblock
12820 #: ../src/guestfs-actions.pod:3903 ../fish/guestfish-actions.pod:2645
12821 msgid ""
12822 "List the files in C<directory> (relative to the root directory, there is no "
12823 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12824 msgstr ""
12825
12826 #. type: textblock
12827 #: ../src/guestfs-actions.pod:3907
12828 msgid ""
12829 "This command is mostly useful for interactive sessions.  Programs should "
12830 "probably use C<guestfs_readdir> instead."
12831 msgstr ""
12832
12833 #. type: =head2
12834 #: ../src/guestfs-actions.pod:3916
12835 msgid "guestfs_lsetxattr"
12836 msgstr ""
12837
12838 #. type: verbatim
12839 #: ../src/guestfs-actions.pod:3918
12840 #, no-wrap
12841 msgid ""
12842 " int\n"
12843 " guestfs_lsetxattr (guestfs_h *g,\n"
12844 "                    const char *xattr,\n"
12845 "                    const char *val,\n"
12846 "                    int vallen,\n"
12847 "                    const char *path);\n"
12848 "\n"
12849 msgstr ""
12850
12851 #. type: textblock
12852 #: ../src/guestfs-actions.pod:3925
12853 msgid ""
12854 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12855 "then it sets an extended attribute of the link itself."
12856 msgstr ""
12857
12858 #. type: =head2
12859 #: ../src/guestfs-actions.pod:3933
12860 msgid "guestfs_lstat"
12861 msgstr ""
12862
12863 #. type: verbatim
12864 #: ../src/guestfs-actions.pod:3935
12865 #, no-wrap
12866 msgid ""
12867 " struct guestfs_stat *\n"
12868 " guestfs_lstat (guestfs_h *g,\n"
12869 "                const char *path);\n"
12870 "\n"
12871 msgstr ""
12872
12873 #. type: textblock
12874 #: ../src/guestfs-actions.pod:3939 ../src/guestfs-actions.pod:6693
12875 #: ../fish/guestfish-actions.pod:2664 ../fish/guestfish-actions.pod:4451
12876 msgid "Returns file information for the given C<path>."
12877 msgstr ""
12878
12879 #. type: textblock
12880 #: ../src/guestfs-actions.pod:3941
12881 msgid ""
12882 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12883 "link, then the link is stat-ed, not the file it refers to."
12884 msgstr ""
12885
12886 #. type: textblock
12887 #: ../src/guestfs-actions.pod:3945 ../fish/guestfish-actions.pod:2670
12888 msgid "This is the same as the C<lstat(2)> system call."
12889 msgstr ""
12890
12891 #. type: textblock
12892 #: ../src/guestfs-actions.pod:3947 ../src/guestfs-actions.pod:6697
12893 msgid ""
12894 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12895 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12896 msgstr ""
12897
12898 #. type: textblock
12899 #: ../src/guestfs-actions.pod:3951 ../src/guestfs-actions.pod:6701
12900 #: ../src/guestfs-actions.pod:6719 ../src/guestfs-actions.pod:7100
12901 msgid "(Added in 0.9.2)"
12902 msgstr ""
12903
12904 #. type: =head2
12905 #: ../src/guestfs-actions.pod:3953
12906 msgid "guestfs_lstatlist"
12907 msgstr ""
12908
12909 #. type: verbatim
12910 #: ../src/guestfs-actions.pod:3955
12911 #, no-wrap
12912 msgid ""
12913 " struct guestfs_stat_list *\n"
12914 " guestfs_lstatlist (guestfs_h *g,\n"
12915 "                    const char *path,\n"
12916 "                    char *const *names);\n"
12917 "\n"
12918 msgstr ""
12919
12920 #. type: textblock
12921 #: ../src/guestfs-actions.pod:3960
12922 msgid ""
12923 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12924 "files, where all files are in the directory C<path>.  C<names> is the list "
12925 "of files from this directory."
12926 msgstr ""
12927
12928 #. type: textblock
12929 #: ../src/guestfs-actions.pod:3964 ../fish/guestfish-actions.pod:2680
12930 msgid ""
12931 "On return you get a list of stat structs, with a one-to-one correspondence "
12932 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12933 "then the C<ino> field of that structure is set to C<-1>."
12934 msgstr ""
12935
12936 #. type: textblock
12937 #: ../src/guestfs-actions.pod:3969
12938 msgid ""
12939 "This call is intended for programs that want to efficiently list a directory "
12940 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12941 "for a similarly efficient call for getting extended attributes.  Very long "
12942 "directory listings might cause the protocol message size to be exceeded, "
12943 "causing this call to fail.  The caller must split up such requests into "
12944 "smaller groups of names."
12945 msgstr ""
12946
12947 #. type: textblock
12948 #: ../src/guestfs-actions.pod:3977
12949 msgid ""
12950 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12951 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12952 msgstr ""
12953
12954 #. type: =head2
12955 #: ../src/guestfs-actions.pod:3983
12956 msgid "guestfs_luks_add_key"
12957 msgstr ""
12958
12959 #. type: verbatim
12960 #: ../src/guestfs-actions.pod:3985
12961 #, no-wrap
12962 msgid ""
12963 " int\n"
12964 " guestfs_luks_add_key (guestfs_h *g,\n"
12965 "                       const char *device,\n"
12966 "                       const char *key,\n"
12967 "                       const char *newkey,\n"
12968 "                       int keyslot);\n"
12969 "\n"
12970 msgstr ""
12971
12972 #. type: textblock
12973 #: ../src/guestfs-actions.pod:3992 ../fish/guestfish-actions.pod:2697
12974 msgid ""
12975 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12976 "existing key, and is used to access the device.  C<newkey> is the new key to "
12977 "add.  C<keyslot> is the key slot that will be replaced."
12978 msgstr ""
12979
12980 #. type: textblock
12981 #: ../src/guestfs-actions.pod:3997
12982 msgid ""
12983 "Note that if C<keyslot> already contains a key, then this command will "
12984 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12985 msgstr ""
12986
12987 #. type: textblock
12988 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4043
12989 #: ../src/guestfs-actions.pod:4066 ../src/guestfs-actions.pod:4086
12990 #: ../src/guestfs-actions.pod:4121 ../src/guestfs-actions.pod:4140
12991 msgid ""
12992 "This function takes a key or passphrase parameter which could contain "
12993 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12994 "information."
12995 msgstr ""
12996
12997 #. type: textblock
12998 #: ../src/guestfs-actions.pod:4007 ../src/guestfs-actions.pod:4047
12999 #: ../src/guestfs-actions.pod:4070 ../src/guestfs-actions.pod:4090
13000 msgid "(Added in 1.5.2)"
13001 msgstr ""
13002
13003 #. type: =head2
13004 #: ../src/guestfs-actions.pod:4009
13005 msgid "guestfs_luks_close"
13006 msgstr ""
13007
13008 #. type: verbatim
13009 #: ../src/guestfs-actions.pod:4011
13010 #, no-wrap
13011 msgid ""
13012 " int\n"
13013 " guestfs_luks_close (guestfs_h *g,\n"
13014 "                     const char *device);\n"
13015 "\n"
13016 msgstr ""
13017
13018 #. type: textblock
13019 #: ../src/guestfs-actions.pod:4015
13020 msgid ""
13021 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13022 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
13023 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
13024 "underlying block device."
13025 msgstr ""
13026
13027 #. type: textblock
13028 #: ../src/guestfs-actions.pod:4023 ../src/guestfs-actions.pod:4125
13029 #: ../src/guestfs-actions.pod:4144 ../src/guestfs-actions.pod:4194
13030 #: ../src/guestfs-actions.pod:4242
13031 msgid "(Added in 1.5.1)"
13032 msgstr ""
13033
13034 #. type: =head2
13035 #: ../src/guestfs-actions.pod:4025
13036 msgid "guestfs_luks_format"
13037 msgstr ""
13038
13039 #. type: verbatim
13040 #: ../src/guestfs-actions.pod:4027
13041 #, no-wrap
13042 msgid ""
13043 " int\n"
13044 " guestfs_luks_format (guestfs_h *g,\n"
13045 "                      const char *device,\n"
13046 "                      const char *key,\n"
13047 "                      int keyslot);\n"
13048 "\n"
13049 msgstr ""
13050
13051 #. type: textblock
13052 #: ../src/guestfs-actions.pod:4033 ../fish/guestfish-actions.pod:2723
13053 msgid ""
13054 "This command erases existing data on C<device> and formats the device as a "
13055 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13056 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13057 msgstr ""
13058
13059 #. type: textblock
13060 #: ../src/guestfs-actions.pod:4040 ../src/guestfs-actions.pod:4063
13061 #: ../src/guestfs-actions.pod:4206 ../src/guestfs-actions.pod:5309
13062 #: ../src/guestfs-actions.pod:6091 ../src/guestfs-actions.pod:6500
13063 #: ../src/guestfs-actions.pod:6530 ../src/guestfs-actions.pod:6563
13064 #: ../src/guestfs-actions.pod:7739 ../fish/guestfish-actions.pod:2731
13065 #: ../fish/guestfish-actions.pod:2744 ../fish/guestfish-actions.pod:2831
13066 #: ../fish/guestfish-actions.pod:3492 ../fish/guestfish-actions.pod:4012
13067 #: ../fish/guestfish-actions.pod:4322 ../fish/guestfish-actions.pod:4345
13068 #: ../fish/guestfish-actions.pod:4367 ../fish/guestfish-actions.pod:5091
13069 msgid ""
13070 "B<This command is dangerous.  Without careful use you can easily destroy all "
13071 "your data>."
13072 msgstr ""
13073
13074 #. type: =head2
13075 #: ../src/guestfs-actions.pod:4049
13076 msgid "guestfs_luks_format_cipher"
13077 msgstr ""
13078
13079 #. type: verbatim
13080 #: ../src/guestfs-actions.pod:4051
13081 #, no-wrap
13082 msgid ""
13083 " int\n"
13084 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13085 "                             const char *device,\n"
13086 "                             const char *key,\n"
13087 "                             int keyslot,\n"
13088 "                             const char *cipher);\n"
13089 "\n"
13090 msgstr ""
13091
13092 #. type: textblock
13093 #: ../src/guestfs-actions.pod:4058
13094 msgid ""
13095 "This command is the same as C<guestfs_luks_format> but it also allows you to "
13096 "set the C<cipher> used."
13097 msgstr ""
13098
13099 #. type: =head2
13100 #: ../src/guestfs-actions.pod:4072
13101 msgid "guestfs_luks_kill_slot"
13102 msgstr ""
13103
13104 #. type: verbatim
13105 #: ../src/guestfs-actions.pod:4074
13106 #, no-wrap
13107 msgid ""
13108 " int\n"
13109 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13110 "                         const char *device,\n"
13111 "                         const char *key,\n"
13112 "                         int keyslot);\n"
13113 "\n"
13114 msgstr ""
13115
13116 #. type: textblock
13117 #: ../src/guestfs-actions.pod:4080 ../fish/guestfish-actions.pod:2751
13118 msgid ""
13119 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13120 "device C<device>.  C<key> must be one of the I<other> keys."
13121 msgstr ""
13122
13123 #. type: =head2
13124 #: ../src/guestfs-actions.pod:4092
13125 msgid "guestfs_luks_open"
13126 msgstr ""
13127
13128 #. type: verbatim
13129 #: ../src/guestfs-actions.pod:4094
13130 #, no-wrap
13131 msgid ""
13132 " int\n"
13133 " guestfs_luks_open (guestfs_h *g,\n"
13134 "                    const char *device,\n"
13135 "                    const char *key,\n"
13136 "                    const char *mapname);\n"
13137 "\n"
13138 msgstr ""
13139
13140 #. type: textblock
13141 #: ../src/guestfs-actions.pod:4100 ../fish/guestfish-actions.pod:2762
13142 msgid ""
13143 "This command opens a block device which has been encrypted according to the "
13144 "Linux Unified Key Setup (LUKS) standard."
13145 msgstr ""
13146
13147 #. type: textblock
13148 #: ../src/guestfs-actions.pod:4103 ../fish/guestfish-actions.pod:2765
13149 msgid "C<device> is the encrypted block device or partition."
13150 msgstr ""
13151
13152 #. type: textblock
13153 #: ../src/guestfs-actions.pod:4105 ../fish/guestfish-actions.pod:2767
13154 msgid ""
13155 "The caller must supply one of the keys associated with the LUKS block "
13156 "device, in the C<key> parameter."
13157 msgstr ""
13158
13159 #. type: textblock
13160 #: ../src/guestfs-actions.pod:4108 ../fish/guestfish-actions.pod:2770
13161 msgid ""
13162 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13163 "writes to this block device are decrypted from and encrypted to the "
13164 "underlying C<device> respectively."
13165 msgstr ""
13166
13167 #. type: textblock
13168 #: ../src/guestfs-actions.pod:4112
13169 msgid ""
13170 "If this block device contains LVM volume groups, then calling "
13171 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13172 "visible."
13173 msgstr ""
13174
13175 #. type: textblock
13176 #: ../src/guestfs-actions.pod:4116
13177 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
13178 msgstr ""
13179
13180 #. type: =head2
13181 #: ../src/guestfs-actions.pod:4127
13182 msgid "guestfs_luks_open_ro"
13183 msgstr ""
13184
13185 #. type: verbatim
13186 #: ../src/guestfs-actions.pod:4129
13187 #, no-wrap
13188 msgid ""
13189 " int\n"
13190 " guestfs_luks_open_ro (guestfs_h *g,\n"
13191 "                       const char *device,\n"
13192 "                       const char *key,\n"
13193 "                       const char *mapname);\n"
13194 "\n"
13195 msgstr ""
13196
13197 #. type: textblock
13198 #: ../src/guestfs-actions.pod:4135
13199 msgid ""
13200 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13201 "created."
13202 msgstr ""
13203
13204 #. type: =head2
13205 #: ../src/guestfs-actions.pod:4146
13206 msgid "guestfs_lvcreate"
13207 msgstr ""
13208
13209 #. type: verbatim
13210 #: ../src/guestfs-actions.pod:4148
13211 #, no-wrap
13212 msgid ""
13213 " int\n"
13214 " guestfs_lvcreate (guestfs_h *g,\n"
13215 "                   const char *logvol,\n"
13216 "                   const char *volgroup,\n"
13217 "                   int mbytes);\n"
13218 "\n"
13219 msgstr ""
13220
13221 #. type: textblock
13222 #: ../src/guestfs-actions.pod:4154 ../fish/guestfish-actions.pod:2798
13223 msgid ""
13224 "This creates an LVM logical volume called C<logvol> on the volume group "
13225 "C<volgroup>, with C<size> megabytes."
13226 msgstr ""
13227
13228 #. type: =head2
13229 #: ../src/guestfs-actions.pod:4161
13230 msgid "guestfs_lvm_canonical_lv_name"
13231 msgstr ""
13232
13233 #. type: verbatim
13234 #: ../src/guestfs-actions.pod:4163
13235 #, no-wrap
13236 msgid ""
13237 " char *\n"
13238 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13239 "                                const char *lvname);\n"
13240 "\n"
13241 msgstr ""
13242
13243 #. type: textblock
13244 #: ../src/guestfs-actions.pod:4167 ../fish/guestfish-actions.pod:2805
13245 msgid ""
13246 "This converts alternative naming schemes for LVs that you might find to the "
13247 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13248 "LV>."
13249 msgstr ""
13250
13251 #. type: textblock
13252 #: ../src/guestfs-actions.pod:4171 ../fish/guestfish-actions.pod:2809
13253 msgid ""
13254 "This command returns an error if the C<lvname> parameter does not refer to a "
13255 "logical volume."
13256 msgstr ""
13257
13258 #. type: textblock
13259 #: ../src/guestfs-actions.pod:4174
13260 msgid "See also C<guestfs_is_lv>."
13261 msgstr ""
13262
13263 #. type: textblock
13264 #: ../src/guestfs-actions.pod:4179
13265 msgid "(Added in 1.5.24)"
13266 msgstr ""
13267
13268 #. type: =head2
13269 #: ../src/guestfs-actions.pod:4181
13270 msgid "guestfs_lvm_clear_filter"
13271 msgstr ""
13272
13273 #. type: verbatim
13274 #: ../src/guestfs-actions.pod:4183
13275 #, no-wrap
13276 msgid ""
13277 " int\n"
13278 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13279 "\n"
13280 msgstr ""
13281
13282 #. type: textblock
13283 #: ../src/guestfs-actions.pod:4186
13284 msgid ""
13285 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13286 "see every block device."
13287 msgstr ""
13288
13289 #. type: textblock
13290 #: ../src/guestfs-actions.pod:4189 ../src/guestfs-actions.pod:4231
13291 #: ../fish/guestfish-actions.pod:2821 ../fish/guestfish-actions.pod:2852
13292 msgid ""
13293 "This command also clears the LVM cache and performs a volume group scan."
13294 msgstr ""
13295
13296 #. type: =head2
13297 #: ../src/guestfs-actions.pod:4196
13298 msgid "guestfs_lvm_remove_all"
13299 msgstr ""
13300
13301 #. type: verbatim
13302 #: ../src/guestfs-actions.pod:4198
13303 #, no-wrap
13304 msgid ""
13305 " int\n"
13306 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13307 "\n"
13308 msgstr ""
13309
13310 #. type: textblock
13311 #: ../src/guestfs-actions.pod:4201 ../fish/guestfish-actions.pod:2828
13312 msgid ""
13313 "This command removes all LVM logical volumes, volume groups and physical "
13314 "volumes."
13315 msgstr ""
13316
13317 #. type: =head2
13318 #: ../src/guestfs-actions.pod:4211
13319 msgid "guestfs_lvm_set_filter"
13320 msgstr ""
13321
13322 #. type: verbatim
13323 #: ../src/guestfs-actions.pod:4213
13324 #, no-wrap
13325 msgid ""
13326 " int\n"
13327 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13328 "                         char *const *devices);\n"
13329 "\n"
13330 msgstr ""
13331
13332 #. type: textblock
13333 #: ../src/guestfs-actions.pod:4217 ../fish/guestfish-actions.pod:2838
13334 msgid ""
13335 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
13336 "block devices in the list C<devices>, and will ignore all other attached "
13337 "block devices."
13338 msgstr ""
13339
13340 #. type: textblock
13341 #: ../src/guestfs-actions.pod:4221 ../fish/guestfish-actions.pod:2842
13342 msgid ""
13343 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13344 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
13345 "there are two types of duplication possible: either cloned PVs/VGs which "
13346 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
13347 "same name.  In normal operation you cannot create this situation, but you "
13348 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13349 "inside the LVM metadata."
13350 msgstr ""
13351
13352 #. type: textblock
13353 #: ../src/guestfs-actions.pod:4234 ../fish/guestfish-actions.pod:2855
13354 msgid "You can filter whole block devices or individual partitions."
13355 msgstr ""
13356
13357 #. type: textblock
13358 #: ../src/guestfs-actions.pod:4236 ../fish/guestfish-actions.pod:2857
13359 msgid ""
13360 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13361 "filesystem), even if you are not filtering out that VG."
13362 msgstr ""
13363
13364 #. type: =head2
13365 #: ../src/guestfs-actions.pod:4244
13366 msgid "guestfs_lvremove"
13367 msgstr ""
13368
13369 #. type: verbatim
13370 #: ../src/guestfs-actions.pod:4246
13371 #, no-wrap
13372 msgid ""
13373 " int\n"
13374 " guestfs_lvremove (guestfs_h *g,\n"
13375 "                   const char *device);\n"
13376 "\n"
13377 msgstr ""
13378
13379 #. type: textblock
13380 #: ../src/guestfs-actions.pod:4250 ../fish/guestfish-actions.pod:2865
13381 msgid ""
13382 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13383 "LV, such as C</dev/VG/LV>."
13384 msgstr ""
13385
13386 #. type: textblock
13387 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2868
13388 msgid ""
13389 "You can also remove all LVs in a volume group by specifying the VG name, C</"
13390 "dev/VG>."
13391 msgstr ""
13392
13393 #. type: textblock
13394 #: ../src/guestfs-actions.pod:4258 ../src/guestfs-actions.pod:5655
13395 #: ../src/guestfs-actions.pod:7470
13396 msgid "(Added in 1.0.13)"
13397 msgstr ""
13398
13399 #. type: =head2
13400 #: ../src/guestfs-actions.pod:4260
13401 msgid "guestfs_lvrename"
13402 msgstr ""
13403
13404 #. type: verbatim
13405 #: ../src/guestfs-actions.pod:4262
13406 #, no-wrap
13407 msgid ""
13408 " int\n"
13409 " guestfs_lvrename (guestfs_h *g,\n"
13410 "                   const char *logvol,\n"
13411 "                   const char *newlogvol);\n"
13412 "\n"
13413 msgstr ""
13414
13415 #. type: textblock
13416 #: ../src/guestfs-actions.pod:4267 ../fish/guestfish-actions.pod:2875
13417 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13418 msgstr ""
13419
13420 #. type: textblock
13421 #: ../src/guestfs-actions.pod:4271 ../src/guestfs-actions.pod:7483
13422 msgid "(Added in 1.0.83)"
13423 msgstr ""
13424
13425 #. type: =head2
13426 #: ../src/guestfs-actions.pod:4273
13427 msgid "guestfs_lvresize"
13428 msgstr ""
13429
13430 #. type: verbatim
13431 #: ../src/guestfs-actions.pod:4275
13432 #, no-wrap
13433 msgid ""
13434 " int\n"
13435 " guestfs_lvresize (guestfs_h *g,\n"
13436 "                   const char *device,\n"
13437 "                   int mbytes);\n"
13438 "\n"
13439 msgstr ""
13440
13441 #. type: textblock
13442 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2881
13443 msgid ""
13444 "This resizes (expands or shrinks) an existing LVM logical volume to "
13445 "C<mbytes>.  When reducing, data in the reduced part is lost."
13446 msgstr ""
13447
13448 #. type: =head2
13449 #: ../src/guestfs-actions.pod:4288
13450 msgid "guestfs_lvresize_free"
13451 msgstr ""
13452
13453 #. type: verbatim
13454 #: ../src/guestfs-actions.pod:4290
13455 #, no-wrap
13456 msgid ""
13457 " int\n"
13458 " guestfs_lvresize_free (guestfs_h *g,\n"
13459 "                        const char *lv,\n"
13460 "                        int percent);\n"
13461 "\n"
13462 msgstr ""
13463
13464 #. type: textblock
13465 #: ../src/guestfs-actions.pod:4295 ../fish/guestfish-actions.pod:2889
13466 msgid ""
13467 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13468 "remaining free space in the volume group.  Commonly you would call this with "
13469 "pc = 100 which expands the logical volume as much as possible, using all "
13470 "remaining free space in the volume group."
13471 msgstr ""
13472
13473 #. type: textblock
13474 #: ../src/guestfs-actions.pod:4303
13475 msgid "(Added in 1.3.3)"
13476 msgstr ""
13477
13478 #. type: =head2
13479 #: ../src/guestfs-actions.pod:4305
13480 msgid "guestfs_lvs"
13481 msgstr ""
13482
13483 #. type: verbatim
13484 #: ../src/guestfs-actions.pod:4307
13485 #, no-wrap
13486 msgid ""
13487 " char **\n"
13488 " guestfs_lvs (guestfs_h *g);\n"
13489 "\n"
13490 msgstr ""
13491
13492 #. type: textblock
13493 #: ../src/guestfs-actions.pod:4310 ../fish/guestfish-actions.pod:2899
13494 msgid ""
13495 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13496 "(8)> command."
13497 msgstr ""
13498
13499 #. type: textblock
13500 #: ../src/guestfs-actions.pod:4313 ../fish/guestfish-actions.pod:2902
13501 msgid ""
13502 "This returns a list of the logical volume device names (eg. C</dev/"
13503 "VolGroup00/LogVol00>)."
13504 msgstr ""
13505
13506 #. type: textblock
13507 #: ../src/guestfs-actions.pod:4316
13508 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13509 msgstr ""
13510
13511 #. type: =head2
13512 #: ../src/guestfs-actions.pod:4324
13513 msgid "guestfs_lvs_full"
13514 msgstr ""
13515
13516 #. type: verbatim
13517 #: ../src/guestfs-actions.pod:4326
13518 #, no-wrap
13519 msgid ""
13520 " struct guestfs_lvm_lv_list *\n"
13521 " guestfs_lvs_full (guestfs_h *g);\n"
13522 "\n"
13523 msgstr ""
13524
13525 #. type: textblock
13526 #: ../src/guestfs-actions.pod:4329 ../fish/guestfish-actions.pod:2911
13527 msgid ""
13528 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13529 "(8)> command.  The \"full\" version includes all fields."
13530 msgstr ""
13531
13532 #. type: textblock
13533 #: ../src/guestfs-actions.pod:4332
13534 msgid ""
13535 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13536 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13537 msgstr ""
13538
13539 #. type: =head2
13540 #: ../src/guestfs-actions.pod:4338
13541 msgid "guestfs_lvuuid"
13542 msgstr ""
13543
13544 #. type: verbatim
13545 #: ../src/guestfs-actions.pod:4340
13546 #, no-wrap
13547 msgid ""
13548 " char *\n"
13549 " guestfs_lvuuid (guestfs_h *g,\n"
13550 "                 const char *device);\n"
13551 "\n"
13552 msgstr ""
13553
13554 #. type: textblock
13555 #: ../src/guestfs-actions.pod:4344 ../fish/guestfish-actions.pod:2918
13556 msgid "This command returns the UUID of the LVM LV C<device>."
13557 msgstr ""
13558
13559 #. type: =head2
13560 #: ../src/guestfs-actions.pod:4351
13561 msgid "guestfs_lxattrlist"
13562 msgstr ""
13563
13564 #. type: verbatim
13565 #: ../src/guestfs-actions.pod:4353
13566 #, no-wrap
13567 msgid ""
13568 " struct guestfs_xattr_list *\n"
13569 " guestfs_lxattrlist (guestfs_h *g,\n"
13570 "                     const char *path,\n"
13571 "                     char *const *names);\n"
13572 "\n"
13573 msgstr ""
13574
13575 #. type: textblock
13576 #: ../src/guestfs-actions.pod:4358 ../fish/guestfish-actions.pod:2924
13577 msgid ""
13578 "This call allows you to get the extended attributes of multiple files, where "
13579 "all files are in the directory C<path>.  C<names> is the list of files from "
13580 "this directory."
13581 msgstr ""
13582
13583 #. type: textblock
13584 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2928
13585 msgid ""
13586 "On return you get a flat list of xattr structs which must be interpreted "
13587 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13588 "C<attrval> in this struct is zero-length to indicate there was an error "
13589 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13590 "number (the number of following attributes for this file, which could be C<"
13591 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13592 "for the first named file.  This repeats for the second and subsequent files."
13593 msgstr ""
13594
13595 #. type: textblock
13596 #: ../src/guestfs-actions.pod:4372
13597 msgid ""
13598 "This call is intended for programs that want to efficiently list a directory "
13599 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13600 "a similarly efficient call for getting standard stats.  Very long directory "
13601 "listings might cause the protocol message size to be exceeded, causing this "
13602 "call to fail.  The caller must split up such requests into smaller groups of "
13603 "names."
13604 msgstr ""
13605
13606 #. type: =head2
13607 #: ../src/guestfs-actions.pod:4386
13608 msgid "guestfs_mkdir"
13609 msgstr ""
13610
13611 #. type: verbatim
13612 #: ../src/guestfs-actions.pod:4388
13613 #, no-wrap
13614 msgid ""
13615 " int\n"
13616 " guestfs_mkdir (guestfs_h *g,\n"
13617 "                const char *path);\n"
13618 "\n"
13619 msgstr ""
13620
13621 #. type: textblock
13622 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2950
13623 msgid "Create a directory named C<path>."
13624 msgstr ""
13625
13626 #. type: =head2
13627 #: ../src/guestfs-actions.pod:4398
13628 msgid "guestfs_mkdir_mode"
13629 msgstr ""
13630
13631 #. type: verbatim
13632 #: ../src/guestfs-actions.pod:4400
13633 #, no-wrap
13634 msgid ""
13635 " int\n"
13636 " guestfs_mkdir_mode (guestfs_h *g,\n"
13637 "                     const char *path,\n"
13638 "                     int mode);\n"
13639 "\n"
13640 msgstr ""
13641
13642 #. type: textblock
13643 #: ../src/guestfs-actions.pod:4405 ../fish/guestfish-actions.pod:2956
13644 msgid ""
13645 "This command creates a directory, setting the initial permissions of the "
13646 "directory to C<mode>."
13647 msgstr ""
13648
13649 #. type: textblock
13650 #: ../src/guestfs-actions.pod:4408 ../fish/guestfish-actions.pod:2959
13651 msgid ""
13652 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13653 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13654 "other ways."
13655 msgstr ""
13656
13657 #. type: textblock
13658 #: ../src/guestfs-actions.pod:4412
13659 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13660 msgstr ""
13661
13662 #. type: =head2
13663 #: ../src/guestfs-actions.pod:4418
13664 msgid "guestfs_mkdir_p"
13665 msgstr ""
13666
13667 #. type: verbatim
13668 #: ../src/guestfs-actions.pod:4420
13669 #, no-wrap
13670 msgid ""
13671 " int\n"
13672 " guestfs_mkdir_p (guestfs_h *g,\n"
13673 "                  const char *path);\n"
13674 "\n"
13675 msgstr ""
13676
13677 #. type: textblock
13678 #: ../src/guestfs-actions.pod:4424 ../fish/guestfish-actions.pod:2969
13679 msgid ""
13680 "Create a directory named C<path>, creating any parent directories as "
13681 "necessary.  This is like the C<mkdir -p> shell command."
13682 msgstr ""
13683
13684 #. type: =head2
13685 #: ../src/guestfs-actions.pod:4431
13686 msgid "guestfs_mkdtemp"
13687 msgstr ""
13688
13689 #. type: verbatim
13690 #: ../src/guestfs-actions.pod:4433
13691 #, no-wrap
13692 msgid ""
13693 " char *\n"
13694 " guestfs_mkdtemp (guestfs_h *g,\n"
13695 "                  const char *template);\n"
13696 "\n"
13697 msgstr ""
13698
13699 #. type: textblock
13700 #: ../src/guestfs-actions.pod:4437 ../fish/guestfish-actions.pod:2976
13701 msgid ""
13702 "This command creates a temporary directory.  The C<template> parameter "
13703 "should be a full pathname for the temporary directory name with the final "
13704 "six characters being \"XXXXXX\"."
13705 msgstr ""
13706
13707 #. type: textblock
13708 #: ../src/guestfs-actions.pod:4442 ../fish/guestfish-actions.pod:2981
13709 msgid ""
13710 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13711 "being suitable for Windows filesystems."
13712 msgstr ""
13713
13714 #. type: textblock
13715 #: ../src/guestfs-actions.pod:4445 ../fish/guestfish-actions.pod:2984
13716 msgid "The name of the temporary directory that was created is returned."
13717 msgstr ""
13718
13719 #. type: textblock
13720 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2987
13721 msgid "The temporary directory is created with mode 0700 and is owned by root."
13722 msgstr ""
13723
13724 #. type: textblock
13725 #: ../src/guestfs-actions.pod:4451 ../fish/guestfish-actions.pod:2990
13726 msgid ""
13727 "The caller is responsible for deleting the temporary directory and its "
13728 "contents after use."
13729 msgstr ""
13730
13731 #. type: textblock
13732 #: ../src/guestfs-actions.pod:4454 ../fish/guestfish-actions.pod:2993
13733 msgid "See also: L<mkdtemp(3)>"
13734 msgstr ""
13735
13736 #. type: =head2
13737 #: ../src/guestfs-actions.pod:4461
13738 msgid "guestfs_mke2fs_J"
13739 msgstr ""
13740
13741 #. type: verbatim
13742 #: ../src/guestfs-actions.pod:4463
13743 #, no-wrap
13744 msgid ""
13745 " int\n"
13746 " guestfs_mke2fs_J (guestfs_h *g,\n"
13747 "                   const char *fstype,\n"
13748 "                   int blocksize,\n"
13749 "                   const char *device,\n"
13750 "                   const char *journal);\n"
13751 "\n"
13752 msgstr ""
13753
13754 #. type: textblock
13755 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:2999
13756 msgid ""
13757 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13758 "C<journal>.  It is equivalent to the command:"
13759 msgstr ""
13760
13761 #. type: verbatim
13762 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3003
13763 #, no-wrap
13764 msgid ""
13765 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13766 "\n"
13767 msgstr ""
13768
13769 #. type: textblock
13770 #: ../src/guestfs-actions.pod:4476
13771 msgid "See also C<guestfs_mke2journal>."
13772 msgstr ""
13773
13774 #. type: textblock
13775 #: ../src/guestfs-actions.pod:4480 ../src/guestfs-actions.pod:4498
13776 #: ../src/guestfs-actions.pod:4516 ../src/guestfs-actions.pod:4532
13777 #: ../src/guestfs-actions.pod:4546 ../src/guestfs-actions.pod:4560
13778 #: ../src/guestfs-actions.pod:4619 ../src/guestfs-actions.pod:4896
13779 msgid "(Added in 1.0.68)"
13780 msgstr ""
13781
13782 #. type: =head2
13783 #: ../src/guestfs-actions.pod:4482
13784 msgid "guestfs_mke2fs_JL"
13785 msgstr ""
13786
13787 #. type: verbatim
13788 #: ../src/guestfs-actions.pod:4484
13789 #, no-wrap
13790 msgid ""
13791 " int\n"
13792 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13793 "                    const char *fstype,\n"
13794 "                    int blocksize,\n"
13795 "                    const char *device,\n"
13796 "                    const char *label);\n"
13797 "\n"
13798 msgstr ""
13799
13800 #. type: textblock
13801 #: ../src/guestfs-actions.pod:4491 ../fish/guestfish-actions.pod:3011
13802 msgid ""
13803 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13804 "the journal labeled C<label>."
13805 msgstr ""
13806
13807 #. type: textblock
13808 #: ../src/guestfs-actions.pod:4494
13809 msgid "See also C<guestfs_mke2journal_L>."
13810 msgstr ""
13811
13812 #. type: =head2
13813 #: ../src/guestfs-actions.pod:4500
13814 msgid "guestfs_mke2fs_JU"
13815 msgstr ""
13816
13817 #. type: verbatim
13818 #: ../src/guestfs-actions.pod:4502
13819 #, no-wrap
13820 msgid ""
13821 " int\n"
13822 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13823 "                    const char *fstype,\n"
13824 "                    int blocksize,\n"
13825 "                    const char *device,\n"
13826 "                    const char *uuid);\n"
13827 "\n"
13828 msgstr ""
13829
13830 #. type: textblock
13831 #: ../src/guestfs-actions.pod:4509 ../fish/guestfish-actions.pod:3020
13832 msgid ""
13833 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13834 "the journal with UUID C<uuid>."
13835 msgstr ""
13836
13837 #. type: textblock
13838 #: ../src/guestfs-actions.pod:4512
13839 msgid "See also C<guestfs_mke2journal_U>."
13840 msgstr ""
13841
13842 #. type: =head2
13843 #: ../src/guestfs-actions.pod:4518
13844 msgid "guestfs_mke2journal"
13845 msgstr ""
13846
13847 #. type: verbatim
13848 #: ../src/guestfs-actions.pod:4520
13849 #, no-wrap
13850 msgid ""
13851 " int\n"
13852 " guestfs_mke2journal (guestfs_h *g,\n"
13853 "                      int blocksize,\n"
13854 "                      const char *device);\n"
13855 "\n"
13856 msgstr ""
13857
13858 #. type: textblock
13859 #: ../src/guestfs-actions.pod:4525 ../fish/guestfish-actions.pod:3029
13860 msgid ""
13861 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13862 "command:"
13863 msgstr ""
13864
13865 #. type: verbatim
13866 #: ../src/guestfs-actions.pod:4528 ../fish/guestfish-actions.pod:3032
13867 #, no-wrap
13868 msgid ""
13869 " mke2fs -O journal_dev -b blocksize device\n"
13870 "\n"
13871 msgstr ""
13872
13873 #. type: =head2
13874 #: ../src/guestfs-actions.pod:4534
13875 msgid "guestfs_mke2journal_L"
13876 msgstr ""
13877
13878 #. type: verbatim
13879 #: ../src/guestfs-actions.pod:4536
13880 #, no-wrap
13881 msgid ""
13882 " int\n"
13883 " guestfs_mke2journal_L (guestfs_h *g,\n"
13884 "                        int blocksize,\n"
13885 "                        const char *label,\n"
13886 "                        const char *device);\n"
13887 "\n"
13888 msgstr ""
13889
13890 #. type: textblock
13891 #: ../src/guestfs-actions.pod:4542 ../fish/guestfish-actions.pod:3038
13892 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13893 msgstr ""
13894
13895 #. type: =head2
13896 #: ../src/guestfs-actions.pod:4548
13897 msgid "guestfs_mke2journal_U"
13898 msgstr ""
13899
13900 #. type: verbatim
13901 #: ../src/guestfs-actions.pod:4550
13902 #, no-wrap
13903 msgid ""
13904 " int\n"
13905 " guestfs_mke2journal_U (guestfs_h *g,\n"
13906 "                        int blocksize,\n"
13907 "                        const char *uuid,\n"
13908 "                        const char *device);\n"
13909 "\n"
13910 msgstr ""
13911
13912 #. type: textblock
13913 #: ../src/guestfs-actions.pod:4556 ../fish/guestfish-actions.pod:3044
13914 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13915 msgstr ""
13916
13917 #. type: =head2
13918 #: ../src/guestfs-actions.pod:4562
13919 msgid "guestfs_mkfifo"
13920 msgstr ""
13921
13922 #. type: verbatim
13923 #: ../src/guestfs-actions.pod:4564
13924 #, no-wrap
13925 msgid ""
13926 " int\n"
13927 " guestfs_mkfifo (guestfs_h *g,\n"
13928 "                 int mode,\n"
13929 "                 const char *path);\n"
13930 "\n"
13931 msgstr ""
13932
13933 #. type: textblock
13934 #: ../src/guestfs-actions.pod:4569
13935 msgid ""
13936 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13937 "is just a convenient wrapper around C<guestfs_mknod>."
13938 msgstr ""
13939
13940 #. type: =head2
13941 #: ../src/guestfs-actions.pod:4579
13942 msgid "guestfs_mkfs"
13943 msgstr ""
13944
13945 #. type: verbatim
13946 #: ../src/guestfs-actions.pod:4581
13947 #, no-wrap
13948 msgid ""
13949 " int\n"
13950 " guestfs_mkfs (guestfs_h *g,\n"
13951 "               const char *fstype,\n"
13952 "               const char *device);\n"
13953 "\n"
13954 msgstr ""
13955
13956 #. type: textblock
13957 #: ../src/guestfs-actions.pod:4586 ../fish/guestfish-actions.pod:3060
13958 msgid ""
13959 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13960 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13961 msgstr ""
13962
13963 #. type: =head2
13964 #: ../src/guestfs-actions.pod:4594
13965 msgid "guestfs_mkfs_b"
13966 msgstr ""
13967
13968 #. type: verbatim
13969 #: ../src/guestfs-actions.pod:4596
13970 #, no-wrap
13971 msgid ""
13972 " int\n"
13973 " guestfs_mkfs_b (guestfs_h *g,\n"
13974 "                 const char *fstype,\n"
13975 "                 int blocksize,\n"
13976 "                 const char *device);\n"
13977 "\n"
13978 msgstr ""
13979
13980 #. type: textblock
13981 #: ../src/guestfs-actions.pod:4602
13982 msgid ""
13983 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13984 "block size of the resulting filesystem.  Supported block sizes depend on the "
13985 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13986 msgstr ""
13987
13988 #. type: textblock
13989 #: ../src/guestfs-actions.pod:4607 ../src/guestfs-actions.pod:4652
13990 #: ../fish/guestfish-actions.pod:3073 ../fish/guestfish-actions.pod:3100
13991 msgid ""
13992 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13993 "cluster size."
13994 msgstr ""
13995
13996 #. type: textblock
13997 #: ../src/guestfs-actions.pod:4612 ../fish/guestfish-actions.pod:3076
13998 msgid ""
13999 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
14000 msgstr ""
14001
14002 #. type: =head2
14003 #: ../src/guestfs-actions.pod:4621
14004 msgid "guestfs_mkfs_opts"
14005 msgstr ""
14006
14007 #. type: verbatim
14008 #: ../src/guestfs-actions.pod:4623
14009 #, no-wrap
14010 msgid ""
14011 " int\n"
14012 " guestfs_mkfs_opts (guestfs_h *g,\n"
14013 "                    const char *fstype,\n"
14014 "                    const char *device,\n"
14015 "                    ...);\n"
14016 "\n"
14017 msgstr ""
14018
14019 #. type: verbatim
14020 #: ../src/guestfs-actions.pod:4634
14021 #, no-wrap
14022 msgid ""
14023 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
14024 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
14025 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
14026 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
14027 "\n"
14028 msgstr ""
14029
14030 #. type: textblock
14031 #: ../src/guestfs-actions.pod:4639 ../fish/guestfish-actions.pod:3087
14032 msgid ""
14033 "This function creates a filesystem on C<device>.  The filesystem type is "
14034 "C<fstype>, for example C<ext3>."
14035 msgstr ""
14036
14037 #. type: =item
14038 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3094
14039 msgid "C<blocksize>"
14040 msgstr ""
14041
14042 #. type: textblock
14043 #: ../src/guestfs-actions.pod:4648 ../fish/guestfish-actions.pod:3096
14044 msgid ""
14045 "The filesystem block size.  Supported block sizes depend on the filesystem "
14046 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
14047 "filesystems."
14048 msgstr ""
14049
14050 #. type: textblock
14051 #: ../src/guestfs-actions.pod:4655 ../fish/guestfish-actions.pod:3103
14052 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
14053 msgstr ""
14054
14055 #. type: =item
14056 #: ../src/guestfs-actions.pod:4657 ../fish/guestfish-actions.pod:3105
14057 msgid "C<features>"
14058 msgstr ""
14059
14060 #. type: textblock
14061 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3107
14062 msgid "This passes the I<-O> parameter to the external mkfs program."
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3109
14067 msgid ""
14068 "For certain filesystem types, this allows extra filesystem features to be "
14069 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
14070 msgstr ""
14071
14072 #. type: textblock
14073 #: ../src/guestfs-actions.pod:4665 ../fish/guestfish-actions.pod:3113
14074 msgid ""
14075 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
14076 "type."
14077 msgstr ""
14078
14079 #. type: =item
14080 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3116
14081 #, fuzzy
14082 #| msgid "C<inspector>"
14083 msgid "C<inode>"
14084 msgstr "C<inspector>"
14085
14086 #. type: textblock
14087 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3118
14088 msgid ""
14089 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
14090 "sets the inode size (only for ext2/3/4 filesystems at present)."
14091 msgstr ""
14092
14093 #. type: =item
14094 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3121
14095 #, fuzzy
14096 #| msgid "C<inspector>"
14097 msgid "C<sectorsize>"
14098 msgstr "C<inspector>"
14099
14100 #. type: textblock
14101 #: ../src/guestfs-actions.pod:4675 ../fish/guestfish-actions.pod:3123
14102 msgid ""
14103 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
14104 "sets sector size for ufs filesystem."
14105 msgstr ""
14106
14107 #. type: textblock
14108 #: ../src/guestfs-actions.pod:4682
14109 msgid "(Added in 1.7.19)"
14110 msgstr ""
14111
14112 #. type: =head2
14113 #: ../src/guestfs-actions.pod:4684
14114 msgid "guestfs_mkfs_opts_va"
14115 msgstr ""
14116
14117 #. type: verbatim
14118 #: ../src/guestfs-actions.pod:4686
14119 #, no-wrap
14120 msgid ""
14121 " int\n"
14122 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14123 "                       const char *fstype,\n"
14124 "                       const char *device,\n"
14125 "                       va_list args);\n"
14126 "\n"
14127 msgstr ""
14128
14129 #. type: textblock
14130 #: ../src/guestfs-actions.pod:4692
14131 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14132 msgstr ""
14133
14134 #. type: =head2
14135 #: ../src/guestfs-actions.pod:4696
14136 msgid "guestfs_mkfs_opts_argv"
14137 msgstr ""
14138
14139 #. type: verbatim
14140 #: ../src/guestfs-actions.pod:4698
14141 #, no-wrap
14142 msgid ""
14143 " int\n"
14144 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14145 "                         const char *fstype,\n"
14146 "                         const char *device,\n"
14147 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14148 "\n"
14149 msgstr ""
14150
14151 #. type: textblock
14152 #: ../src/guestfs-actions.pod:4704
14153 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14154 msgstr ""
14155
14156 #. type: =head2
14157 #: ../src/guestfs-actions.pod:4708
14158 msgid "guestfs_mkmountpoint"
14159 msgstr ""
14160
14161 #. type: verbatim
14162 #: ../src/guestfs-actions.pod:4710
14163 #, no-wrap
14164 msgid ""
14165 " int\n"
14166 " guestfs_mkmountpoint (guestfs_h *g,\n"
14167 "                       const char *exemptpath);\n"
14168 "\n"
14169 msgstr ""
14170
14171 #. type: textblock
14172 #: ../src/guestfs-actions.pod:4714
14173 msgid ""
14174 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14175 "that can be used to create extra mountpoints before mounting the first "
14176 "filesystem."
14177 msgstr ""
14178
14179 #. type: textblock
14180 #: ../src/guestfs-actions.pod:4718 ../fish/guestfish-actions.pod:3138
14181 msgid ""
14182 "These calls are I<only> necessary in some very limited circumstances, mainly "
14183 "the case where you want to mount a mix of unrelated and/or read-only "
14184 "filesystems together."
14185 msgstr ""
14186
14187 #. type: textblock
14188 #: ../src/guestfs-actions.pod:4722 ../fish/guestfish-actions.pod:3142
14189 msgid ""
14190 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14191 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14192 "inside that.  You can unpack this as follows in guestfish:"
14193 msgstr ""
14194
14195 #. type: verbatim
14196 #: ../src/guestfs-actions.pod:4727 ../fish/guestfish-actions.pod:3147
14197 #, no-wrap
14198 msgid ""
14199 " add-ro Fedora-11-i686-Live.iso\n"
14200 " run\n"
14201 " mkmountpoint /cd\n"
14202 " mkmountpoint /sqsh\n"
14203 " mkmountpoint /ext3fs\n"
14204 " mount /dev/sda /cd\n"
14205 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14206 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14207 "\n"
14208 msgstr ""
14209
14210 #. type: textblock
14211 #: ../src/guestfs-actions.pod:4736 ../fish/guestfish-actions.pod:3156
14212 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14213 msgstr ""
14214
14215 #. type: textblock
14216 #: ../src/guestfs-actions.pod:4738
14217 msgid ""
14218 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14219 "may get unexpected errors if you try to mix these calls.  It is safest to "
14220 "manually unmount filesystems and remove mountpoints after use."
14221 msgstr ""
14222
14223 #. type: textblock
14224 #: ../src/guestfs-actions.pod:4742
14225 msgid ""
14226 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14227 "first, so for this to work for manual mountpoints, you must ensure that the "
14228 "innermost mountpoints have the longest pathnames, as in the example code "
14229 "above."
14230 msgstr ""
14231
14232 #. type: textblock
14233 #: ../src/guestfs-actions.pod:4747 ../fish/guestfish-actions.pod:3167
14234 msgid ""
14235 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14236 msgstr ""
14237
14238 #. type: textblock
14239 #: ../src/guestfs-actions.pod:4749
14240 msgid ""
14241 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14242 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
14243 "can also trigger these issues."
14244 msgstr ""
14245
14246 #. type: textblock
14247 #: ../src/guestfs-actions.pod:4755 ../src/guestfs-actions.pod:5071
14248 #: ../src/guestfs-actions.pod:6075
14249 msgid "(Added in 1.0.62)"
14250 msgstr ""
14251
14252 #. type: =head2
14253 #: ../src/guestfs-actions.pod:4757
14254 msgid "guestfs_mknod"
14255 msgstr ""
14256
14257 #. type: verbatim
14258 #: ../src/guestfs-actions.pod:4759
14259 #, no-wrap
14260 msgid ""
14261 " int\n"
14262 " guestfs_mknod (guestfs_h *g,\n"
14263 "                int mode,\n"
14264 "                int devmajor,\n"
14265 "                int devminor,\n"
14266 "                const char *path);\n"
14267 "\n"
14268 msgstr ""
14269
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3177
14272 msgid ""
14273 "This call creates block or character special devices, or named pipes (FIFOs)."
14274 msgstr ""
14275
14276 #. type: textblock
14277 #: ../src/guestfs-actions.pod:4769 ../fish/guestfish-actions.pod:3180
14278 msgid ""
14279 "The C<mode> parameter should be the mode, using the standard constants.  "
14280 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14281 "used when creating block and character special devices."
14282 msgstr ""
14283
14284 #. type: textblock
14285 #: ../src/guestfs-actions.pod:4774
14286 msgid ""
14287 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14288 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14289 "regular file).  These constants are available in the standard Linux header "
14290 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14291 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
14292 "the appropriate constant for you."
14293 msgstr ""
14294
14295 #. type: =head2
14296 #: ../src/guestfs-actions.pod:4788
14297 msgid "guestfs_mknod_b"
14298 msgstr ""
14299
14300 #. type: verbatim
14301 #: ../src/guestfs-actions.pod:4790
14302 #, no-wrap
14303 msgid ""
14304 " int\n"
14305 " guestfs_mknod_b (guestfs_h *g,\n"
14306 "                  int mode,\n"
14307 "                  int devmajor,\n"
14308 "                  int devminor,\n"
14309 "                  const char *path);\n"
14310 "\n"
14311 msgstr ""
14312
14313 #. type: textblock
14314 #: ../src/guestfs-actions.pod:4797
14315 msgid ""
14316 "This call creates a block device node called C<path> with mode C<mode> and "
14317 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14318 "wrapper around C<guestfs_mknod>."
14319 msgstr ""
14320
14321 #. type: =head2
14322 #: ../src/guestfs-actions.pod:4807
14323 msgid "guestfs_mknod_c"
14324 msgstr ""
14325
14326 #. type: verbatim
14327 #: ../src/guestfs-actions.pod:4809
14328 #, no-wrap
14329 msgid ""
14330 " int\n"
14331 " guestfs_mknod_c (guestfs_h *g,\n"
14332 "                  int mode,\n"
14333 "                  int devmajor,\n"
14334 "                  int devminor,\n"
14335 "                  const char *path);\n"
14336 "\n"
14337 msgstr ""
14338
14339 #. type: textblock
14340 #: ../src/guestfs-actions.pod:4816
14341 msgid ""
14342 "This call creates a char device node called C<path> with mode C<mode> and "
14343 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14344 "wrapper around C<guestfs_mknod>."
14345 msgstr ""
14346
14347 #. type: =head2
14348 #: ../src/guestfs-actions.pod:4826
14349 msgid "guestfs_mkswap"
14350 msgstr ""
14351
14352 #. type: verbatim
14353 #: ../src/guestfs-actions.pod:4828
14354 #, no-wrap
14355 msgid ""
14356 " int\n"
14357 " guestfs_mkswap (guestfs_h *g,\n"
14358 "                 const char *device);\n"
14359 "\n"
14360 msgstr ""
14361
14362 #. type: textblock
14363 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3219
14364 msgid "Create a swap partition on C<device>."
14365 msgstr ""
14366
14367 #. type: =head2
14368 #: ../src/guestfs-actions.pod:4838
14369 msgid "guestfs_mkswap_L"
14370 msgstr ""
14371
14372 #. type: verbatim
14373 #: ../src/guestfs-actions.pod:4840
14374 #, no-wrap
14375 msgid ""
14376 " int\n"
14377 " guestfs_mkswap_L (guestfs_h *g,\n"
14378 "                   const char *label,\n"
14379 "                   const char *device);\n"
14380 "\n"
14381 msgstr ""
14382
14383 #. type: textblock
14384 #: ../src/guestfs-actions.pod:4845 ../fish/guestfish-actions.pod:3225
14385 msgid "Create a swap partition on C<device> with label C<label>."
14386 msgstr ""
14387
14388 #. type: textblock
14389 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3227
14390 msgid ""
14391 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
14392 "sda>), just to a partition.  This appears to be a limitation of the kernel "
14393 "or swap tools."
14394 msgstr ""
14395
14396 #. type: =head2
14397 #: ../src/guestfs-actions.pod:4855
14398 msgid "guestfs_mkswap_U"
14399 msgstr ""
14400
14401 #. type: verbatim
14402 #: ../src/guestfs-actions.pod:4857
14403 #, no-wrap
14404 msgid ""
14405 " int\n"
14406 " guestfs_mkswap_U (guestfs_h *g,\n"
14407 "                   const char *uuid,\n"
14408 "                   const char *device);\n"
14409 "\n"
14410 msgstr ""
14411
14412 #. type: textblock
14413 #: ../src/guestfs-actions.pod:4862 ../fish/guestfish-actions.pod:3235
14414 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14415 msgstr ""
14416
14417 #. type: =head2
14418 #: ../src/guestfs-actions.pod:4868
14419 msgid "guestfs_mkswap_file"
14420 msgstr ""
14421
14422 #. type: verbatim
14423 #: ../src/guestfs-actions.pod:4870
14424 #, no-wrap
14425 msgid ""
14426 " int\n"
14427 " guestfs_mkswap_file (guestfs_h *g,\n"
14428 "                      const char *path);\n"
14429 "\n"
14430 msgstr ""
14431
14432 #. type: textblock
14433 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3241
14434 msgid "Create a swap file."
14435 msgstr ""
14436
14437 #. type: textblock
14438 #: ../src/guestfs-actions.pod:4876
14439 msgid ""
14440 "This command just writes a swap file signature to an existing file.  To "
14441 "create the file itself, use something like C<guestfs_fallocate>."
14442 msgstr ""
14443
14444 #. type: =head2
14445 #: ../src/guestfs-actions.pod:4883
14446 msgid "guestfs_modprobe"
14447 msgstr ""
14448
14449 #. type: verbatim
14450 #: ../src/guestfs-actions.pod:4885
14451 #, no-wrap
14452 msgid ""
14453 " int\n"
14454 " guestfs_modprobe (guestfs_h *g,\n"
14455 "                   const char *modulename);\n"
14456 "\n"
14457 msgstr ""
14458
14459 #. type: textblock
14460 #: ../src/guestfs-actions.pod:4889 ../fish/guestfish-actions.pod:3250
14461 msgid "This loads a kernel module in the appliance."
14462 msgstr ""
14463
14464 #. type: textblock
14465 #: ../src/guestfs-actions.pod:4891 ../fish/guestfish-actions.pod:3252
14466 msgid ""
14467 "The kernel module must have been whitelisted when libguestfs was built (see "
14468 "C<appliance/kmod.whitelist.in> in the source)."
14469 msgstr ""
14470
14471 #. type: =head2
14472 #: ../src/guestfs-actions.pod:4898
14473 msgid "guestfs_mount"
14474 msgstr ""
14475
14476 #. type: verbatim
14477 #: ../src/guestfs-actions.pod:4900
14478 #, no-wrap
14479 msgid ""
14480 " int\n"
14481 " guestfs_mount (guestfs_h *g,\n"
14482 "                const char *device,\n"
14483 "                const char *mountpoint);\n"
14484 "\n"
14485 msgstr ""
14486
14487 #. type: textblock
14488 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3259
14489 msgid ""
14490 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14491 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14492 "those block devices contain partitions, they will have the usual names (eg. "
14493 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14494 msgstr ""
14495
14496 #. type: textblock
14497 #: ../src/guestfs-actions.pod:4911 ../fish/guestfish-actions.pod:3265
14498 msgid ""
14499 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14500 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14501 "mounted on directories which already exist."
14502 msgstr ""
14503
14504 #. type: textblock
14505 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3270
14506 msgid ""
14507 "The mounted filesystem is writable, if we have sufficient permissions on the "
14508 "underlying device."
14509 msgstr ""
14510
14511 #. type: textblock
14512 #: ../src/guestfs-actions.pod:4919
14513 msgid ""
14514 "B<Important note:> When you use this call, the filesystem options C<sync> "
14515 "and C<noatime> are set implicitly.  This was originally done because we "
14516 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14517 "very large negative performance impact and negligible effect on "
14518 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14519 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14520 "(use an empty string for the first parameter if you don't want any options)."
14521 msgstr ""
14522
14523 #. type: textblock
14524 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3283
14525 msgid ""
14526 "This function is deprecated.  In new code, use the C<mount_options> call "
14527 "instead."
14528 msgstr ""
14529
14530 #. type: =head2
14531 #: ../src/guestfs-actions.pod:4940
14532 msgid "guestfs_mount_9p"
14533 msgstr ""
14534
14535 #. type: verbatim
14536 #: ../src/guestfs-actions.pod:4942
14537 #, no-wrap
14538 msgid ""
14539 " int\n"
14540 " guestfs_mount_9p (guestfs_h *g,\n"
14541 "                   const char *mounttag,\n"
14542 "                   const char *mountpoint,\n"
14543 "                   ...);\n"
14544 "\n"
14545 msgstr ""
14546
14547 #. type: verbatim
14548 #: ../src/guestfs-actions.pod:4953
14549 #, no-wrap
14550 msgid ""
14551 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14552 "\n"
14553 msgstr ""
14554
14555 #. type: textblock
14556 #: ../src/guestfs-actions.pod:4955 ../fish/guestfish-actions.pod:3294
14557 msgid ""
14558 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14559 "C<mountpoint>."
14560 msgstr ""
14561
14562 #. type: textblock
14563 #: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3297
14564 msgid ""
14565 "If required, C<trans=virtio> will be automatically added to the options.  "
14566 "Any other options required can be passed in the optional C<options> "
14567 "parameter."
14568 msgstr ""
14569
14570 #. type: =head2
14571 #: ../src/guestfs-actions.pod:4966
14572 msgid "guestfs_mount_9p_va"
14573 msgstr ""
14574
14575 #. type: verbatim
14576 #: ../src/guestfs-actions.pod:4968
14577 #, no-wrap
14578 msgid ""
14579 " int\n"
14580 " guestfs_mount_9p_va (guestfs_h *g,\n"
14581 "                      const char *mounttag,\n"
14582 "                      const char *mountpoint,\n"
14583 "                      va_list args);\n"
14584 "\n"
14585 msgstr ""
14586
14587 #. type: textblock
14588 #: ../src/guestfs-actions.pod:4974
14589 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14590 msgstr ""
14591
14592 #. type: =head2
14593 #: ../src/guestfs-actions.pod:4978
14594 msgid "guestfs_mount_9p_argv"
14595 msgstr ""
14596
14597 #. type: verbatim
14598 #: ../src/guestfs-actions.pod:4980
14599 #, no-wrap
14600 msgid ""
14601 " int\n"
14602 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14603 "                        const char *mounttag,\n"
14604 "                        const char *mountpoint,\n"
14605 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14606 "\n"
14607 msgstr ""
14608
14609 #. type: textblock
14610 #: ../src/guestfs-actions.pod:4986
14611 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14612 msgstr ""
14613
14614 #. type: =head2
14615 #: ../src/guestfs-actions.pod:4990
14616 msgid "guestfs_mount_loop"
14617 msgstr ""
14618
14619 #. type: verbatim
14620 #: ../src/guestfs-actions.pod:4992
14621 #, no-wrap
14622 msgid ""
14623 " int\n"
14624 " guestfs_mount_loop (guestfs_h *g,\n"
14625 "                     const char *file,\n"
14626 "                     const char *mountpoint);\n"
14627 "\n"
14628 msgstr ""
14629
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:4997 ../fish/guestfish-actions.pod:3307
14632 msgid ""
14633 "This command lets you mount C<file> (a filesystem image in a file) on a "
14634 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14635 "mountpoint>."
14636 msgstr ""
14637
14638 #. type: =head2
14639 #: ../src/guestfs-actions.pod:5005
14640 msgid "guestfs_mount_options"
14641 msgstr ""
14642
14643 #. type: verbatim
14644 #: ../src/guestfs-actions.pod:5007
14645 #, no-wrap
14646 msgid ""
14647 " int\n"
14648 " guestfs_mount_options (guestfs_h *g,\n"
14649 "                        const char *options,\n"
14650 "                        const char *device,\n"
14651 "                        const char *mountpoint);\n"
14652 "\n"
14653 msgstr ""
14654
14655 #. type: textblock
14656 #: ../src/guestfs-actions.pod:5013
14657 msgid ""
14658 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14659 "the mount options as for the L<mount(8)> I<-o> flag."
14660 msgstr ""
14661
14662 #. type: textblock
14663 #: ../src/guestfs-actions.pod:5017 ../fish/guestfish-actions.pod:3319
14664 msgid ""
14665 "If the C<options> parameter is an empty string, then no options are passed "
14666 "(all options default to whatever the filesystem uses)."
14667 msgstr ""
14668
14669 #. type: textblock
14670 #: ../src/guestfs-actions.pod:5023 ../src/guestfs-actions.pod:5037
14671 #: ../src/guestfs-actions.pod:5054
14672 msgid "(Added in 1.0.10)"
14673 msgstr ""
14674
14675 #. type: =head2
14676 #: ../src/guestfs-actions.pod:5025
14677 msgid "guestfs_mount_ro"
14678 msgstr ""
14679
14680 #. type: verbatim
14681 #: ../src/guestfs-actions.pod:5027
14682 #, no-wrap
14683 msgid ""
14684 " int\n"
14685 " guestfs_mount_ro (guestfs_h *g,\n"
14686 "                   const char *device,\n"
14687 "                   const char *mountpoint);\n"
14688 "\n"
14689 msgstr ""
14690
14691 #. type: textblock
14692 #: ../src/guestfs-actions.pod:5032
14693 msgid ""
14694 "This is the same as the C<guestfs_mount> command, but it mounts the "
14695 "filesystem with the read-only (I<-o ro>) flag."
14696 msgstr ""
14697
14698 #. type: =head2
14699 #: ../src/guestfs-actions.pod:5039
14700 msgid "guestfs_mount_vfs"
14701 msgstr ""
14702
14703 #. type: verbatim
14704 #: ../src/guestfs-actions.pod:5041
14705 #, no-wrap
14706 msgid ""
14707 " int\n"
14708 " guestfs_mount_vfs (guestfs_h *g,\n"
14709 "                    const char *options,\n"
14710 "                    const char *vfstype,\n"
14711 "                    const char *device,\n"
14712 "                    const char *mountpoint);\n"
14713 "\n"
14714 msgstr ""
14715
14716 #. type: textblock
14717 #: ../src/guestfs-actions.pod:5048
14718 msgid ""
14719 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14720 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14721 "t> flags."
14722 msgstr ""
14723
14724 #. type: =head2
14725 #: ../src/guestfs-actions.pod:5056
14726 msgid "guestfs_mountpoints"
14727 msgstr ""
14728
14729 #. type: verbatim
14730 #: ../src/guestfs-actions.pod:5058
14731 #, no-wrap
14732 msgid ""
14733 " char **\n"
14734 " guestfs_mountpoints (guestfs_h *g);\n"
14735 "\n"
14736 msgstr ""
14737
14738 #. type: textblock
14739 #: ../src/guestfs-actions.pod:5061
14740 msgid ""
14741 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14742 "devices.  This one returns a hash table (map) of device name to directory "
14743 "where the device is mounted."
14744 msgstr ""
14745
14746 #. type: =head2
14747 #: ../src/guestfs-actions.pod:5073
14748 msgid "guestfs_mounts"
14749 msgstr ""
14750
14751 #. type: verbatim
14752 #: ../src/guestfs-actions.pod:5075
14753 #, no-wrap
14754 msgid ""
14755 " char **\n"
14756 " guestfs_mounts (guestfs_h *g);\n"
14757 "\n"
14758 msgstr ""
14759
14760 #. type: textblock
14761 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3350
14762 msgid ""
14763 "This returns the list of currently mounted filesystems.  It returns the list "
14764 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14765 msgstr ""
14766
14767 #. type: textblock
14768 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3353
14769 msgid "Some internal mounts are not shown."
14770 msgstr ""
14771
14772 #. type: textblock
14773 #: ../src/guestfs-actions.pod:5083
14774 msgid "See also: C<guestfs_mountpoints>"
14775 msgstr ""
14776
14777 #. type: =head2
14778 #: ../src/guestfs-actions.pod:5091
14779 msgid "guestfs_mv"
14780 msgstr ""
14781
14782 #. type: verbatim
14783 #: ../src/guestfs-actions.pod:5093
14784 #, no-wrap
14785 msgid ""
14786 " int\n"
14787 " guestfs_mv (guestfs_h *g,\n"
14788 "             const char *src,\n"
14789 "             const char *dest);\n"
14790 "\n"
14791 msgstr ""
14792
14793 #. type: textblock
14794 #: ../src/guestfs-actions.pod:5098 ../fish/guestfish-actions.pod:3361
14795 msgid ""
14796 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14797 "destination filename or destination directory."
14798 msgstr ""
14799
14800 #. type: =head2
14801 #: ../src/guestfs-actions.pod:5105
14802 msgid "guestfs_ntfs_3g_probe"
14803 msgstr ""
14804
14805 #. type: verbatim
14806 #: ../src/guestfs-actions.pod:5107
14807 #, no-wrap
14808 msgid ""
14809 " int\n"
14810 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14811 "                        int rw,\n"
14812 "                        const char *device);\n"
14813 "\n"
14814 msgstr ""
14815
14816 #. type: textblock
14817 #: ../src/guestfs-actions.pod:5112 ../fish/guestfish-actions.pod:3368
14818 msgid ""
14819 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14820 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14821 "write, and some cannot be mounted at all)."
14822 msgstr ""
14823
14824 #. type: textblock
14825 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3372
14826 msgid ""
14827 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14828 "can be mounted read-write.  Set it to false if you want to test if the "
14829 "volume can be mounted read-only."
14830 msgstr ""
14831
14832 #. type: textblock
14833 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3376
14834 msgid ""
14835 "The return value is an integer which C<0> if the operation would succeed, or "
14836 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14837 msgstr ""
14838
14839 #. type: textblock
14840 #: ../src/guestfs-actions.pod:5126
14841 msgid "(Added in 1.0.43)"
14842 msgstr ""
14843
14844 #. type: =head2
14845 #: ../src/guestfs-actions.pod:5128
14846 msgid "guestfs_ntfsresize"
14847 msgstr ""
14848
14849 #. type: verbatim
14850 #: ../src/guestfs-actions.pod:5130
14851 #, no-wrap
14852 msgid ""
14853 " int\n"
14854 " guestfs_ntfsresize (guestfs_h *g,\n"
14855 "                     const char *device);\n"
14856 "\n"
14857 msgstr ""
14858
14859 #. type: textblock
14860 #: ../src/guestfs-actions.pod:5134 ../src/guestfs-actions.pod:5173
14861 #: ../fish/guestfish-actions.pod:3384 ../fish/guestfish-actions.pod:3408
14862 msgid ""
14863 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14864 "size of the underlying device."
14865 msgstr ""
14866
14867 #. type: textblock
14868 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3387
14869 msgid ""
14870 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14871 "consistency check (for safety).  You have to boot into Windows to perform "
14872 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14873 "resize filesystems which have been marked in this way.  So in effect it is "
14874 "not possible to call ntfsresize multiple times on a single filesystem "
14875 "without booting into Windows between each resize."
14876 msgstr ""
14877
14878 #. type: textblock
14879 #: ../src/guestfs-actions.pod:5145 ../src/guestfs-actions.pod:5199
14880 #: ../fish/guestfish-actions.pod:3395 ../fish/guestfish-actions.pod:3434
14881 #, fuzzy
14882 #| msgid "See L<guestfish(1)>."
14883 msgid "See also L<ntfsresize(8)>."
14884 msgstr "Див. L<guestfish(1)>."
14885
14886 #. type: textblock
14887 #: ../src/guestfs-actions.pod:5149 ../src/guestfs-actions.pod:5239
14888 #: ../fish/guestfish-actions.pod:3397 ../fish/guestfish-actions.pod:3445
14889 msgid ""
14890 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14891 "instead."
14892 msgstr ""
14893
14894 #. type: =head2
14895 #: ../src/guestfs-actions.pod:5158
14896 msgid "guestfs_ntfsresize_opts"
14897 msgstr ""
14898
14899 #. type: verbatim
14900 #: ../src/guestfs-actions.pod:5160
14901 #, no-wrap
14902 msgid ""
14903 " int\n"
14904 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14905 "                          const char *device,\n"
14906 "                          ...);\n"
14907 "\n"
14908 msgstr ""
14909
14910 #. type: verbatim
14911 #: ../src/guestfs-actions.pod:5170
14912 #, no-wrap
14913 msgid ""
14914 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14915 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14916 "\n"
14917 msgstr ""
14918
14919 #. type: textblock
14920 #: ../src/guestfs-actions.pod:5182 ../fish/guestfish-actions.pod:3417
14921 msgid ""
14922 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14923 "resized to fit the container (eg. partition)."
14924 msgstr ""
14925
14926 #. type: =item
14927 #: ../src/guestfs-actions.pod:5185 ../fish/guestfish-actions.pod:3420
14928 #, fuzzy
14929 #| msgid "C<format>"
14930 msgid "C<force>"
14931 msgstr "C<format>"
14932
14933 #. type: textblock
14934 #: ../src/guestfs-actions.pod:5187 ../fish/guestfish-actions.pod:3422
14935 msgid ""
14936 "If this option is true, then force the resize of the filesystem even if the "
14937 "filesystem is marked as requiring a consistency check."
14938 msgstr ""
14939
14940 #. type: textblock
14941 #: ../src/guestfs-actions.pod:5190
14942 msgid ""
14943 "After the resize operation, the filesystem is always marked as requiring a "
14944 "consistency check (for safety).  You have to boot into Windows to perform "
14945 "this check and clear this condition.  If you I<don't> set the C<force> "
14946 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
14947 "times on a single filesystem without booting into Windows between each "
14948 "resize."
14949 msgstr ""
14950
14951 #. type: =head2
14952 #: ../src/guestfs-actions.pod:5205
14953 msgid "guestfs_ntfsresize_opts_va"
14954 msgstr ""
14955
14956 #. type: verbatim
14957 #: ../src/guestfs-actions.pod:5207
14958 #, no-wrap
14959 msgid ""
14960 " int\n"
14961 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
14962 "                             const char *device,\n"
14963 "                             va_list args);\n"
14964 "\n"
14965 msgstr ""
14966
14967 #. type: textblock
14968 #: ../src/guestfs-actions.pod:5212
14969 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
14970 msgstr ""
14971
14972 #. type: =head2
14973 #: ../src/guestfs-actions.pod:5216
14974 msgid "guestfs_ntfsresize_opts_argv"
14975 msgstr ""
14976
14977 #. type: verbatim
14978 #: ../src/guestfs-actions.pod:5218
14979 #, no-wrap
14980 msgid ""
14981 " int\n"
14982 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
14983 "                               const char *device,\n"
14984 "                               const struct guestfs_ntfsresize_opts_argv *optargs);\n"
14985 "\n"
14986 msgstr ""
14987
14988 #. type: textblock
14989 #: ../src/guestfs-actions.pod:5223
14990 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
14991 msgstr ""
14992
14993 #. type: =head2
14994 #: ../src/guestfs-actions.pod:5227
14995 msgid "guestfs_ntfsresize_size"
14996 msgstr ""
14997
14998 #. type: verbatim
14999 #: ../src/guestfs-actions.pod:5229
15000 #, no-wrap
15001 msgid ""
15002 " int\n"
15003 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15004 "                          const char *device,\n"
15005 "                          int64_t size);\n"
15006 "\n"
15007 msgstr ""
15008
15009 #. type: textblock
15010 #: ../src/guestfs-actions.pod:5234
15011 msgid ""
15012 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15013 "to specify the new size (in bytes) explicitly."
15014 msgstr ""
15015
15016 #. type: textblock
15017 #: ../src/guestfs-actions.pod:5246 ../src/guestfs-actions.pod:5682
15018 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6023
15019 #: ../src/guestfs-actions.pod:7625
15020 msgid "(Added in 1.3.14)"
15021 msgstr ""
15022
15023 #. type: =head2
15024 #: ../src/guestfs-actions.pod:5248
15025 msgid "guestfs_part_add"
15026 msgstr ""
15027
15028 #. type: verbatim
15029 #: ../src/guestfs-actions.pod:5250
15030 #, no-wrap
15031 msgid ""
15032 " int\n"
15033 " guestfs_part_add (guestfs_h *g,\n"
15034 "                   const char *device,\n"
15035 "                   const char *prlogex,\n"
15036 "                   int64_t startsect,\n"
15037 "                   int64_t endsect);\n"
15038 "\n"
15039 msgstr ""
15040
15041 #. type: textblock
15042 #: ../src/guestfs-actions.pod:5257
15043 msgid ""
15044 "This command adds a partition to C<device>.  If there is no partition table "
15045 "on the device, call C<guestfs_part_init> first."
15046 msgstr ""
15047
15048 #. type: textblock
15049 #: ../src/guestfs-actions.pod:5260 ../fish/guestfish-actions.pod:3459
15050 msgid ""
15051 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
15052 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15053 "C<logical>) and C<e> (or C<extended>) partition types."
15054 msgstr ""
15055
15056 #. type: textblock
15057 #: ../src/guestfs-actions.pod:5265 ../fish/guestfish-actions.pod:3464
15058 msgid ""
15059 "C<startsect> and C<endsect> are the start and end of the partition in "
15060 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15061 "from the end of the disk (C<-1> is the last sector)."
15062 msgstr ""
15063
15064 #. type: textblock
15065 #: ../src/guestfs-actions.pod:5269
15066 msgid ""
15067 "Creating a partition which covers the whole disk is not so easy.  Use "
15068 "C<guestfs_part_disk> to do that."
15069 msgstr ""
15070
15071 #. type: textblock
15072 #: ../src/guestfs-actions.pod:5274 ../src/guestfs-actions.pod:5312
15073 #: ../src/guestfs-actions.pod:5365 ../src/guestfs-actions.pod:5443
15074 #: ../src/guestfs-actions.pod:5481 ../src/guestfs-actions.pod:5500
15075 #: ../src/guestfs-actions.pod:5540
15076 msgid "(Added in 1.0.78)"
15077 msgstr ""
15078
15079 #. type: =head2
15080 #: ../src/guestfs-actions.pod:5276
15081 msgid "guestfs_part_del"
15082 msgstr ""
15083
15084 #. type: verbatim
15085 #: ../src/guestfs-actions.pod:5278
15086 #, no-wrap
15087 msgid ""
15088 " int\n"
15089 " guestfs_part_del (guestfs_h *g,\n"
15090 "                   const char *device,\n"
15091 "                   int partnum);\n"
15092 "\n"
15093 msgstr ""
15094
15095 #. type: textblock
15096 #: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3475
15097 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15098 msgstr ""
15099
15100 #. type: textblock
15101 #: ../src/guestfs-actions.pod:5285 ../fish/guestfish-actions.pod:3477
15102 msgid ""
15103 "Note that in the case of MBR partitioning, deleting an extended partition "
15104 "also deletes any logical partitions it contains."
15105 msgstr ""
15106
15107 #. type: =head2
15108 #: ../src/guestfs-actions.pod:5293
15109 msgid "guestfs_part_disk"
15110 msgstr ""
15111
15112 #. type: verbatim
15113 #: ../src/guestfs-actions.pod:5295
15114 #, no-wrap
15115 msgid ""
15116 " int\n"
15117 " guestfs_part_disk (guestfs_h *g,\n"
15118 "                    const char *device,\n"
15119 "                    const char *parttype);\n"
15120 "\n"
15121 msgstr ""
15122
15123 #. type: textblock
15124 #: ../src/guestfs-actions.pod:5300
15125 msgid ""
15126 "This command is simply a combination of C<guestfs_part_init> followed by "
15127 "C<guestfs_part_add> to create a single primary partition covering the whole "
15128 "disk."
15129 msgstr ""
15130
15131 #. type: textblock
15132 #: ../src/guestfs-actions.pod:5304
15133 msgid ""
15134 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
15135 "possible values are described in C<guestfs_part_init>."
15136 msgstr ""
15137
15138 #. type: =head2
15139 #: ../src/guestfs-actions.pod:5314
15140 msgid "guestfs_part_get_bootable"
15141 msgstr ""
15142
15143 #. type: verbatim
15144 #: ../src/guestfs-actions.pod:5316
15145 #, no-wrap
15146 msgid ""
15147 " int\n"
15148 " guestfs_part_get_bootable (guestfs_h *g,\n"
15149 "                            const char *device,\n"
15150 "                            int partnum);\n"
15151 "\n"
15152 msgstr ""
15153
15154 #. type: textblock
15155 #: ../src/guestfs-actions.pod:5321 ../fish/guestfish-actions.pod:3499
15156 msgid ""
15157 "This command returns true if the partition C<partnum> on C<device> has the "
15158 "bootable flag set."
15159 msgstr ""
15160
15161 #. type: textblock
15162 #: ../src/guestfs-actions.pod:5324
15163 msgid "See also C<guestfs_part_set_bootable>."
15164 msgstr ""
15165
15166 #. type: =head2
15167 #: ../src/guestfs-actions.pod:5330
15168 msgid "guestfs_part_get_mbr_id"
15169 msgstr ""
15170
15171 #. type: verbatim
15172 #: ../src/guestfs-actions.pod:5332
15173 #, no-wrap
15174 msgid ""
15175 " int\n"
15176 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15177 "                          const char *device,\n"
15178 "                          int partnum);\n"
15179 "\n"
15180 msgstr ""
15181
15182 #. type: textblock
15183 #: ../src/guestfs-actions.pod:5337 ../fish/guestfish-actions.pod:3508
15184 msgid ""
15185 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15186 "partition C<partnum>."
15187 msgstr ""
15188
15189 #. type: textblock
15190 #: ../src/guestfs-actions.pod:5340 ../src/guestfs-actions.pod:5516
15191 msgid ""
15192 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
15193 "undefined results for other partition table types (see "
15194 "C<guestfs_part_get_parttype>)."
15195 msgstr ""
15196
15197 #. type: =head2
15198 #: ../src/guestfs-actions.pod:5348
15199 msgid "guestfs_part_get_parttype"
15200 msgstr ""
15201
15202 #. type: verbatim
15203 #: ../src/guestfs-actions.pod:5350
15204 #, no-wrap
15205 msgid ""
15206 " char *\n"
15207 " guestfs_part_get_parttype (guestfs_h *g,\n"
15208 "                            const char *device);\n"
15209 "\n"
15210 msgstr ""
15211
15212 #. type: textblock
15213 #: ../src/guestfs-actions.pod:5354 ../fish/guestfish-actions.pod:3519
15214 msgid ""
15215 "This command examines the partition table on C<device> and returns the "
15216 "partition table type (format) being used."
15217 msgstr ""
15218
15219 #. type: textblock
15220 #: ../src/guestfs-actions.pod:5357
15221 msgid ""
15222 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15223 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15224 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15225 msgstr ""
15226
15227 #. type: =head2
15228 #: ../src/guestfs-actions.pod:5367
15229 msgid "guestfs_part_init"
15230 msgstr ""
15231
15232 #. type: verbatim
15233 #: ../src/guestfs-actions.pod:5369
15234 #, no-wrap
15235 msgid ""
15236 " int\n"
15237 " guestfs_part_init (guestfs_h *g,\n"
15238 "                    const char *device,\n"
15239 "                    const char *parttype);\n"
15240 "\n"
15241 msgstr ""
15242
15243 #. type: textblock
15244 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3531
15245 msgid ""
15246 "This creates an empty partition table on C<device> of one of the partition "
15247 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
15248 "(for large disks)."
15249 msgstr ""
15250
15251 #. type: textblock
15252 #: ../src/guestfs-actions.pod:5378
15253 msgid ""
15254 "Initially there are no partitions.  Following this, you should call "
15255 "C<guestfs_part_add> for each partition required."
15256 msgstr ""
15257
15258 #. type: textblock
15259 #: ../src/guestfs-actions.pod:5381 ../fish/guestfish-actions.pod:3538
15260 msgid "Possible values for C<parttype> are:"
15261 msgstr ""
15262
15263 #. type: =item
15264 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3542
15265 msgid "B<efi> | B<gpt>"
15266 msgstr ""
15267
15268 #. type: textblock
15269 #: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3544
15270 msgid "Intel EFI / GPT partition table."
15271 msgstr ""
15272
15273 #. type: textblock
15274 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3546
15275 msgid ""
15276 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15277 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
15278 "the C<mbr> format."
15279 msgstr ""
15280
15281 #. type: =item
15282 #: ../src/guestfs-actions.pod:5393 ../fish/guestfish-actions.pod:3550
15283 msgid "B<mbr> | B<msdos>"
15284 msgstr ""
15285
15286 #. type: textblock
15287 #: ../src/guestfs-actions.pod:5395 ../fish/guestfish-actions.pod:3552
15288 msgid ""
15289 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
15290 "Windows.  This partition type will B<only> work for device sizes up to 2 "
15291 "TB.  For large disks we recommend using C<gpt>."
15292 msgstr ""
15293
15294 #. type: textblock
15295 #: ../src/guestfs-actions.pod:5402 ../fish/guestfish-actions.pod:3559
15296 msgid ""
15297 "Other partition table types that may work but are not supported include:"
15298 msgstr ""
15299
15300 #. type: =item
15301 #: ../src/guestfs-actions.pod:5407 ../fish/guestfish-actions.pod:3564
15302 msgid "B<aix>"
15303 msgstr ""
15304
15305 #. type: textblock
15306 #: ../src/guestfs-actions.pod:5409 ../fish/guestfish-actions.pod:3566
15307 msgid "AIX disk labels."
15308 msgstr ""
15309
15310 #. type: =item
15311 #: ../src/guestfs-actions.pod:5411 ../fish/guestfish-actions.pod:3568
15312 msgid "B<amiga> | B<rdb>"
15313 msgstr ""
15314
15315 #. type: textblock
15316 #: ../src/guestfs-actions.pod:5413 ../fish/guestfish-actions.pod:3570
15317 msgid "Amiga \"Rigid Disk Block\" format."
15318 msgstr ""
15319
15320 #. type: =item
15321 #: ../src/guestfs-actions.pod:5415 ../fish/guestfish-actions.pod:3572
15322 msgid "B<bsd>"
15323 msgstr ""
15324
15325 #. type: textblock
15326 #: ../src/guestfs-actions.pod:5417 ../fish/guestfish-actions.pod:3574
15327 msgid "BSD disk labels."
15328 msgstr ""
15329
15330 #. type: =item
15331 #: ../src/guestfs-actions.pod:5419 ../fish/guestfish-actions.pod:3576
15332 msgid "B<dasd>"
15333 msgstr ""
15334
15335 #. type: textblock
15336 #: ../src/guestfs-actions.pod:5421 ../fish/guestfish-actions.pod:3578
15337 msgid "DASD, used on IBM mainframes."
15338 msgstr ""
15339
15340 #. type: =item
15341 #: ../src/guestfs-actions.pod:5423 ../fish/guestfish-actions.pod:3580
15342 msgid "B<dvh>"
15343 msgstr ""
15344
15345 #. type: textblock
15346 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3582
15347 msgid "MIPS/SGI volumes."
15348 msgstr ""
15349
15350 #. type: =item
15351 #: ../src/guestfs-actions.pod:5427 ../fish/guestfish-actions.pod:3584
15352 msgid "B<mac>"
15353 msgstr ""
15354
15355 #. type: textblock
15356 #: ../src/guestfs-actions.pod:5429 ../fish/guestfish-actions.pod:3586
15357 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15358 msgstr ""
15359
15360 #. type: =item
15361 #: ../src/guestfs-actions.pod:5431 ../fish/guestfish-actions.pod:3588
15362 msgid "B<pc98>"
15363 msgstr ""
15364
15365 #. type: textblock
15366 #: ../src/guestfs-actions.pod:5433 ../fish/guestfish-actions.pod:3590
15367 msgid "NEC PC-98 format, common in Japan apparently."
15368 msgstr ""
15369
15370 #. type: =item
15371 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3592
15372 msgid "B<sun>"
15373 msgstr ""
15374
15375 #. type: textblock
15376 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3594
15377 msgid "Sun disk labels."
15378 msgstr ""
15379
15380 #. type: =head2
15381 #: ../src/guestfs-actions.pod:5445
15382 msgid "guestfs_part_list"
15383 msgstr ""
15384
15385 #. type: verbatim
15386 #: ../src/guestfs-actions.pod:5447
15387 #, no-wrap
15388 msgid ""
15389 " struct guestfs_partition_list *\n"
15390 " guestfs_part_list (guestfs_h *g,\n"
15391 "                    const char *device);\n"
15392 "\n"
15393 msgstr ""
15394
15395 #. type: textblock
15396 #: ../src/guestfs-actions.pod:5451 ../fish/guestfish-actions.pod:3602
15397 msgid ""
15398 "This command parses the partition table on C<device> and returns the list of "
15399 "partitions found."
15400 msgstr ""
15401
15402 #. type: textblock
15403 #: ../src/guestfs-actions.pod:5454 ../fish/guestfish-actions.pod:3605
15404 msgid "The fields in the returned structure are:"
15405 msgstr ""
15406
15407 #. type: =item
15408 #: ../src/guestfs-actions.pod:5458 ../fish/guestfish-actions.pod:3609
15409 msgid "B<part_num>"
15410 msgstr ""
15411
15412 #. type: textblock
15413 #: ../src/guestfs-actions.pod:5460 ../fish/guestfish-actions.pod:3611
15414 msgid "Partition number, counting from 1."
15415 msgstr ""
15416
15417 #. type: =item
15418 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3613
15419 msgid "B<part_start>"
15420 msgstr ""
15421
15422 #. type: textblock
15423 #: ../src/guestfs-actions.pod:5464
15424 msgid ""
15425 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15426 "the device's sector size, see C<guestfs_blockdev_getss>."
15427 msgstr ""
15428
15429 #. type: =item
15430 #: ../src/guestfs-actions.pod:5467 ../fish/guestfish-actions.pod:3618
15431 msgid "B<part_end>"
15432 msgstr ""
15433
15434 #. type: textblock
15435 #: ../src/guestfs-actions.pod:5469 ../fish/guestfish-actions.pod:3620
15436 msgid "End of the partition in bytes."
15437 msgstr ""
15438
15439 #. type: =item
15440 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3622
15441 msgid "B<part_size>"
15442 msgstr ""
15443
15444 #. type: textblock
15445 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3624
15446 msgid "Size of the partition in bytes."
15447 msgstr ""
15448
15449 #. type: textblock
15450 #: ../src/guestfs-actions.pod:5477
15451 msgid ""
15452 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
15453 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15454 "use>."
15455 msgstr ""
15456
15457 #. type: =head2
15458 #: ../src/guestfs-actions.pod:5483
15459 msgid "guestfs_part_set_bootable"
15460 msgstr ""
15461
15462 #. type: verbatim
15463 #: ../src/guestfs-actions.pod:5485
15464 #, no-wrap
15465 msgid ""
15466 " int\n"
15467 " guestfs_part_set_bootable (guestfs_h *g,\n"
15468 "                            const char *device,\n"
15469 "                            int partnum,\n"
15470 "                            int bootable);\n"
15471 "\n"
15472 msgstr ""
15473
15474 #. type: textblock
15475 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3632
15476 msgid ""
15477 "This sets the bootable flag on partition numbered C<partnum> on device "
15478 "C<device>.  Note that partitions are numbered from 1."
15479 msgstr ""
15480
15481 #. type: textblock
15482 #: ../src/guestfs-actions.pod:5494 ../fish/guestfish-actions.pod:3635
15483 msgid ""
15484 "The bootable flag is used by some operating systems (notably Windows) to "
15485 "determine which partition to boot from.  It is by no means universally "
15486 "recognized."
15487 msgstr ""
15488
15489 #. type: =head2
15490 #: ../src/guestfs-actions.pod:5502
15491 msgid "guestfs_part_set_mbr_id"
15492 msgstr ""
15493
15494 #. type: verbatim
15495 #: ../src/guestfs-actions.pod:5504
15496 #, no-wrap
15497 msgid ""
15498 " int\n"
15499 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15500 "                          const char *device,\n"
15501 "                          int partnum,\n"
15502 "                          int idbyte);\n"
15503 "\n"
15504 msgstr ""
15505
15506 #. type: textblock
15507 #: ../src/guestfs-actions.pod:5510 ../fish/guestfish-actions.pod:3643
15508 msgid ""
15509 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
15510 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15511 "documentation are in fact hexadecimal numbers, but usually documented "
15512 "without any leading \"0x\" which might be confusing."
15513 msgstr ""
15514
15515 #. type: =head2
15516 #: ../src/guestfs-actions.pod:5524
15517 msgid "guestfs_part_set_name"
15518 msgstr ""
15519
15520 #. type: verbatim
15521 #: ../src/guestfs-actions.pod:5526
15522 #, no-wrap
15523 msgid ""
15524 " int\n"
15525 " guestfs_part_set_name (guestfs_h *g,\n"
15526 "                        const char *device,\n"
15527 "                        int partnum,\n"
15528 "                        const char *name);\n"
15529 "\n"
15530 msgstr ""
15531
15532 #. type: textblock
15533 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3657
15534 msgid ""
15535 "This sets the partition name on partition numbered C<partnum> on device "
15536 "C<device>.  Note that partitions are numbered from 1."
15537 msgstr ""
15538
15539 #. type: textblock
15540 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3660
15541 msgid ""
15542 "The partition name can only be set on certain types of partition table.  "
15543 "This works on C<gpt> but not on C<mbr> partitions."
15544 msgstr ""
15545
15546 #. type: =head2
15547 #: ../src/guestfs-actions.pod:5542
15548 msgid "guestfs_part_to_dev"
15549 msgstr ""
15550
15551 #. type: verbatim
15552 #: ../src/guestfs-actions.pod:5544
15553 #, no-wrap
15554 msgid ""
15555 " char *\n"
15556 " guestfs_part_to_dev (guestfs_h *g,\n"
15557 "                      const char *partition);\n"
15558 "\n"
15559 msgstr ""
15560
15561 #. type: textblock
15562 #: ../src/guestfs-actions.pod:5548 ../fish/guestfish-actions.pod:3667
15563 msgid ""
15564 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15565 "partition number, returning the device name (eg. \"/dev/sdb\")."
15566 msgstr ""
15567
15568 #. type: textblock
15569 #: ../src/guestfs-actions.pod:5552
15570 msgid ""
15571 "The named partition must exist, for example as a string returned from "
15572 "C<guestfs_list_partitions>."
15573 msgstr ""
15574
15575 #. type: =head2
15576 #: ../src/guestfs-actions.pod:5560
15577 msgid "guestfs_ping_daemon"
15578 msgstr ""
15579
15580 #. type: verbatim
15581 #: ../src/guestfs-actions.pod:5562
15582 #, no-wrap
15583 msgid ""
15584 " int\n"
15585 " guestfs_ping_daemon (guestfs_h *g);\n"
15586 "\n"
15587 msgstr ""
15588
15589 #. type: textblock
15590 #: ../src/guestfs-actions.pod:5565 ../fish/guestfish-actions.pod:3678
15591 msgid ""
15592 "This is a test probe into the guestfs daemon running inside the qemu "
15593 "subprocess.  Calling this function checks that the daemon responds to the "
15594 "ping message, without affecting the daemon or attached block device(s) in "
15595 "any other way."
15596 msgstr ""
15597
15598 #. type: =head2
15599 #: ../src/guestfs-actions.pod:5574
15600 msgid "guestfs_pread"
15601 msgstr ""
15602
15603 #. type: verbatim
15604 #: ../src/guestfs-actions.pod:5576
15605 #, no-wrap
15606 msgid ""
15607 " char *\n"
15608 " guestfs_pread (guestfs_h *g,\n"
15609 "                const char *path,\n"
15610 "                int count,\n"
15611 "                int64_t offset,\n"
15612 "                size_t *size_r);\n"
15613 "\n"
15614 msgstr ""
15615
15616 #. type: textblock
15617 #: ../src/guestfs-actions.pod:5583 ../fish/guestfish-actions.pod:3687
15618 msgid ""
15619 "This command lets you read part of a file.  It reads C<count> bytes of the "
15620 "file, starting at C<offset>, from file C<path>."
15621 msgstr ""
15622
15623 #. type: textblock
15624 #: ../src/guestfs-actions.pod:5586 ../src/guestfs-actions.pod:5612
15625 #: ../fish/guestfish-actions.pod:3690 ../fish/guestfish-actions.pod:3705
15626 msgid ""
15627 "This may read fewer bytes than requested.  For further details see the "
15628 "L<pread(2)> system call."
15629 msgstr ""
15630
15631 #. type: textblock
15632 #: ../src/guestfs-actions.pod:5589
15633 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15634 msgstr ""
15635
15636 #. type: =head2
15637 #: ../src/guestfs-actions.pod:5600
15638 msgid "guestfs_pread_device"
15639 msgstr ""
15640
15641 #. type: verbatim
15642 #: ../src/guestfs-actions.pod:5602
15643 #, no-wrap
15644 msgid ""
15645 " char *\n"
15646 " guestfs_pread_device (guestfs_h *g,\n"
15647 "                       const char *device,\n"
15648 "                       int count,\n"
15649 "                       int64_t offset,\n"
15650 "                       size_t *size_r);\n"
15651 "\n"
15652 msgstr ""
15653
15654 #. type: textblock
15655 #: ../src/guestfs-actions.pod:5609 ../fish/guestfish-actions.pod:3702
15656 msgid ""
15657 "This command lets you read part of a file.  It reads C<count> bytes of "
15658 "C<device>, starting at C<offset>."
15659 msgstr ""
15660
15661 #. type: textblock
15662 #: ../src/guestfs-actions.pod:5615
15663 msgid "See also C<guestfs_pread>."
15664 msgstr ""
15665
15666 #. type: textblock
15667 #: ../src/guestfs-actions.pod:5624
15668 msgid "(Added in 1.5.21)"
15669 msgstr ""
15670
15671 #. type: =head2
15672 #: ../src/guestfs-actions.pod:5626
15673 msgid "guestfs_pvcreate"
15674 msgstr ""
15675
15676 #. type: verbatim
15677 #: ../src/guestfs-actions.pod:5628
15678 #, no-wrap
15679 msgid ""
15680 " int\n"
15681 " guestfs_pvcreate (guestfs_h *g,\n"
15682 "                   const char *device);\n"
15683 "\n"
15684 msgstr ""
15685
15686 #. type: textblock
15687 #: ../src/guestfs-actions.pod:5632 ../fish/guestfish-actions.pod:3717
15688 msgid ""
15689 "This creates an LVM physical volume on the named C<device>, where C<device> "
15690 "should usually be a partition name such as C</dev/sda1>."
15691 msgstr ""
15692
15693 #. type: =head2
15694 #: ../src/guestfs-actions.pod:5640
15695 msgid "guestfs_pvremove"
15696 msgstr ""
15697
15698 #. type: verbatim
15699 #: ../src/guestfs-actions.pod:5642
15700 #, no-wrap
15701 msgid ""
15702 " int\n"
15703 " guestfs_pvremove (guestfs_h *g,\n"
15704 "                   const char *device);\n"
15705 "\n"
15706 msgstr ""
15707
15708 #. type: textblock
15709 #: ../src/guestfs-actions.pod:5646 ../fish/guestfish-actions.pod:3725
15710 msgid ""
15711 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15712 "it."
15713 msgstr ""
15714
15715 #. type: textblock
15716 #: ../src/guestfs-actions.pod:5649 ../fish/guestfish-actions.pod:3728
15717 msgid ""
15718 "The implementation uses the C<pvremove> command which refuses to wipe "
15719 "physical volumes that contain any volume groups, so you have to remove those "
15720 "first."
15721 msgstr ""
15722
15723 #. type: =head2
15724 #: ../src/guestfs-actions.pod:5657
15725 msgid "guestfs_pvresize"
15726 msgstr ""
15727
15728 #. type: verbatim
15729 #: ../src/guestfs-actions.pod:5659
15730 #, no-wrap
15731 msgid ""
15732 " int\n"
15733 " guestfs_pvresize (guestfs_h *g,\n"
15734 "                   const char *device);\n"
15735 "\n"
15736 msgstr ""
15737
15738 #. type: textblock
15739 #: ../src/guestfs-actions.pod:5663 ../fish/guestfish-actions.pod:3736
15740 msgid ""
15741 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15742 "the new size of the underlying device."
15743 msgstr ""
15744
15745 #. type: =head2
15746 #: ../src/guestfs-actions.pod:5670
15747 msgid "guestfs_pvresize_size"
15748 msgstr ""
15749
15750 #. type: verbatim
15751 #: ../src/guestfs-actions.pod:5672
15752 #, no-wrap
15753 msgid ""
15754 " int\n"
15755 " guestfs_pvresize_size (guestfs_h *g,\n"
15756 "                        const char *device,\n"
15757 "                        int64_t size);\n"
15758 "\n"
15759 msgstr ""
15760
15761 #. type: textblock
15762 #: ../src/guestfs-actions.pod:5677
15763 msgid ""
15764 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15765 "specify the new size (in bytes) explicitly."
15766 msgstr ""
15767
15768 #. type: =head2
15769 #: ../src/guestfs-actions.pod:5684
15770 msgid "guestfs_pvs"
15771 msgstr ""
15772
15773 #. type: verbatim
15774 #: ../src/guestfs-actions.pod:5686
15775 #, no-wrap
15776 msgid ""
15777 " char **\n"
15778 " guestfs_pvs (guestfs_h *g);\n"
15779 "\n"
15780 msgstr ""
15781
15782 #. type: textblock
15783 #: ../src/guestfs-actions.pod:5689 ../fish/guestfish-actions.pod:3750
15784 msgid ""
15785 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15786 "(8)> command."
15787 msgstr ""
15788
15789 #. type: textblock
15790 #: ../src/guestfs-actions.pod:5692 ../fish/guestfish-actions.pod:3753
15791 msgid ""
15792 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15793 "sda2>)."
15794 msgstr ""
15795
15796 #. type: textblock
15797 #: ../src/guestfs-actions.pod:5695
15798 msgid "See also C<guestfs_pvs_full>."
15799 msgstr ""
15800
15801 #. type: =head2
15802 #: ../src/guestfs-actions.pod:5703
15803 msgid "guestfs_pvs_full"
15804 msgstr ""
15805
15806 #. type: verbatim
15807 #: ../src/guestfs-actions.pod:5705
15808 #, no-wrap
15809 msgid ""
15810 " struct guestfs_lvm_pv_list *\n"
15811 " guestfs_pvs_full (guestfs_h *g);\n"
15812 "\n"
15813 msgstr ""
15814
15815 #. type: textblock
15816 #: ../src/guestfs-actions.pod:5708 ../fish/guestfish-actions.pod:3762
15817 msgid ""
15818 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15819 "(8)> command.  The \"full\" version includes all fields."
15820 msgstr ""
15821
15822 #. type: textblock
15823 #: ../src/guestfs-actions.pod:5711
15824 msgid ""
15825 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15826 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15827 msgstr ""
15828
15829 #. type: =head2
15830 #: ../src/guestfs-actions.pod:5717
15831 msgid "guestfs_pvuuid"
15832 msgstr ""
15833
15834 #. type: verbatim
15835 #: ../src/guestfs-actions.pod:5719
15836 #, no-wrap
15837 msgid ""
15838 " char *\n"
15839 " guestfs_pvuuid (guestfs_h *g,\n"
15840 "                 const char *device);\n"
15841 "\n"
15842 msgstr ""
15843
15844 #. type: textblock
15845 #: ../src/guestfs-actions.pod:5723 ../fish/guestfish-actions.pod:3769
15846 msgid "This command returns the UUID of the LVM PV C<device>."
15847 msgstr ""
15848
15849 #. type: =head2
15850 #: ../src/guestfs-actions.pod:5730
15851 msgid "guestfs_pwrite"
15852 msgstr ""
15853
15854 #. type: verbatim
15855 #: ../src/guestfs-actions.pod:5732
15856 #, no-wrap
15857 msgid ""
15858 " int\n"
15859 " guestfs_pwrite (guestfs_h *g,\n"
15860 "                 const char *path,\n"
15861 "                 const char *content,\n"
15862 "                 size_t content_size,\n"
15863 "                 int64_t offset);\n"
15864 "\n"
15865 msgstr ""
15866
15867 #. type: textblock
15868 #: ../src/guestfs-actions.pod:5739 ../fish/guestfish-actions.pod:3775
15869 msgid ""
15870 "This command writes to part of a file.  It writes the data buffer C<content> "
15871 "to the file C<path> starting at offset C<offset>."
15872 msgstr ""
15873
15874 #. type: textblock
15875 #: ../src/guestfs-actions.pod:5742 ../fish/guestfish-actions.pod:3778
15876 msgid ""
15877 "This command implements the L<pwrite(2)> system call, and like that system "
15878 "call it may not write the full data requested.  The return value is the "
15879 "number of bytes that were actually written to the file.  This could even be "
15880 "0, although short writes are unlikely for regular files in ordinary "
15881 "circumstances."
15882 msgstr ""
15883
15884 #. type: textblock
15885 #: ../src/guestfs-actions.pod:5748
15886 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15887 msgstr ""
15888
15889 #. type: =head2
15890 #: ../src/guestfs-actions.pod:5757
15891 msgid "guestfs_pwrite_device"
15892 msgstr ""
15893
15894 #. type: verbatim
15895 #: ../src/guestfs-actions.pod:5759
15896 #, no-wrap
15897 msgid ""
15898 " int\n"
15899 " guestfs_pwrite_device (guestfs_h *g,\n"
15900 "                        const char *device,\n"
15901 "                        const char *content,\n"
15902 "                        size_t content_size,\n"
15903 "                        int64_t offset);\n"
15904 "\n"
15905 msgstr ""
15906
15907 #. type: textblock
15908 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3793
15909 msgid ""
15910 "This command writes to part of a device.  It writes the data buffer "
15911 "C<content> to C<device> starting at offset C<offset>."
15912 msgstr ""
15913
15914 #. type: textblock
15915 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3796
15916 msgid ""
15917 "This command implements the L<pwrite(2)> system call, and like that system "
15918 "call it may not write the full data requested (although short writes to disk "
15919 "devices and partitions are probably impossible with standard Linux kernels)."
15920 msgstr ""
15921
15922 #. type: textblock
15923 #: ../src/guestfs-actions.pod:5774
15924 msgid "See also C<guestfs_pwrite>."
15925 msgstr ""
15926
15927 #. type: textblock
15928 #: ../src/guestfs-actions.pod:5781
15929 msgid "(Added in 1.5.20)"
15930 msgstr ""
15931
15932 #. type: =head2
15933 #: ../src/guestfs-actions.pod:5783
15934 msgid "guestfs_read_file"
15935 msgstr ""
15936
15937 #. type: verbatim
15938 #: ../src/guestfs-actions.pod:5785
15939 #, no-wrap
15940 msgid ""
15941 " char *\n"
15942 " guestfs_read_file (guestfs_h *g,\n"
15943 "                    const char *path,\n"
15944 "                    size_t *size_r);\n"
15945 "\n"
15946 msgstr ""
15947
15948 #. type: textblock
15949 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3810
15950 msgid "This calls returns the contents of the file C<path> as a buffer."
15951 msgstr ""
15952
15953 #. type: textblock
15954 #: ../src/guestfs-actions.pod:5793
15955 msgid ""
15956 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15957 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15958 "function is limited in the total size of file that can be handled."
15959 msgstr ""
15960
15961 #. type: textblock
15962 #: ../src/guestfs-actions.pod:5805
15963 msgid "(Added in 1.0.63)"
15964 msgstr ""
15965
15966 #. type: =head2
15967 #: ../src/guestfs-actions.pod:5807
15968 msgid "guestfs_read_lines"
15969 msgstr ""
15970
15971 #. type: verbatim
15972 #: ../src/guestfs-actions.pod:5809
15973 #, no-wrap
15974 msgid ""
15975 " char **\n"
15976 " guestfs_read_lines (guestfs_h *g,\n"
15977 "                     const char *path);\n"
15978 "\n"
15979 msgstr ""
15980
15981 #. type: textblock
15982 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3827
15983 msgid ""
15984 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15985 "C<CRLF> character sequences are I<not> returned."
15986 msgstr ""
15987
15988 #. type: textblock
15989 #: ../src/guestfs-actions.pod:5818
15990 msgid ""
15991 "Note that this function cannot correctly handle binary files (specifically, "
15992 "files containing C<\\0> character which is treated as end of line).  For "
15993 "those you need to use the C<guestfs_read_file> function which has a more "
15994 "complex interface."
15995 msgstr ""
15996
15997 #. type: =head2
15998 #: ../src/guestfs-actions.pod:5829
15999 msgid "guestfs_readdir"
16000 msgstr ""
16001
16002 #. type: verbatim
16003 #: ../src/guestfs-actions.pod:5831
16004 #, no-wrap
16005 msgid ""
16006 " struct guestfs_dirent_list *\n"
16007 " guestfs_readdir (guestfs_h *g,\n"
16008 "                  const char *dir);\n"
16009 "\n"
16010 msgstr ""
16011
16012 #. type: textblock
16013 #: ../src/guestfs-actions.pod:5835 ../fish/guestfish-actions.pod:3839
16014 msgid "This returns the list of directory entries in directory C<dir>."
16015 msgstr ""
16016
16017 #. type: textblock
16018 #: ../src/guestfs-actions.pod:5837 ../fish/guestfish-actions.pod:3841
16019 msgid ""
16020 "All entries in the directory are returned, including C<.> and C<..>.  The "
16021 "entries are I<not> sorted, but returned in the same order as the underlying "
16022 "filesystem."
16023 msgstr ""
16024
16025 #. type: textblock
16026 #: ../src/guestfs-actions.pod:5841 ../fish/guestfish-actions.pod:3845
16027 msgid ""
16028 "Also this call returns basic file type information about each file.  The "
16029 "C<ftyp> field will contain one of the following characters:"
16030 msgstr ""
16031
16032 #. type: =item
16033 #: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3850
16034 msgid "'b'"
16035 msgstr ""
16036
16037 #. type: textblock
16038 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3852
16039 msgid "Block special"
16040 msgstr ""
16041
16042 #. type: =item
16043 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3854
16044 msgid "'c'"
16045 msgstr ""
16046
16047 #. type: textblock
16048 #: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3856
16049 msgid "Char special"
16050 msgstr ""
16051
16052 #. type: =item
16053 #: ../src/guestfs-actions.pod:5854 ../fish/guestfish-actions.pod:3858
16054 msgid "'d'"
16055 msgstr ""
16056
16057 #. type: textblock
16058 #: ../src/guestfs-actions.pod:5856 ../fish/guestfish-actions.pod:3860
16059 msgid "Directory"
16060 msgstr ""
16061
16062 #. type: =item
16063 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3862
16064 msgid "'f'"
16065 msgstr ""
16066
16067 #. type: textblock
16068 #: ../src/guestfs-actions.pod:5860 ../fish/guestfish-actions.pod:3864
16069 msgid "FIFO (named pipe)"
16070 msgstr ""
16071
16072 #. type: =item
16073 #: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3866
16074 msgid "'l'"
16075 msgstr ""
16076
16077 #. type: textblock
16078 #: ../src/guestfs-actions.pod:5864 ../fish/guestfish-actions.pod:3868
16079 msgid "Symbolic link"
16080 msgstr ""
16081
16082 #. type: =item
16083 #: ../src/guestfs-actions.pod:5866 ../fish/guestfish-actions.pod:3870
16084 msgid "'r'"
16085 msgstr ""
16086
16087 #. type: textblock
16088 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3872
16089 msgid "Regular file"
16090 msgstr ""
16091
16092 #. type: =item
16093 #: ../src/guestfs-actions.pod:5870 ../fish/guestfish-actions.pod:3874
16094 msgid "'s'"
16095 msgstr ""
16096
16097 #. type: textblock
16098 #: ../src/guestfs-actions.pod:5872 ../fish/guestfish-actions.pod:3876
16099 msgid "Socket"
16100 msgstr ""
16101
16102 #. type: =item
16103 #: ../src/guestfs-actions.pod:5874 ../fish/guestfish-actions.pod:3878
16104 msgid "'u'"
16105 msgstr ""
16106
16107 #. type: textblock
16108 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3880
16109 msgid "Unknown file type"
16110 msgstr ""
16111
16112 #. type: =item
16113 #: ../src/guestfs-actions.pod:5878 ../fish/guestfish-actions.pod:3882
16114 msgid "'?'"
16115 msgstr ""
16116
16117 #. type: textblock
16118 #: ../src/guestfs-actions.pod:5880 ../fish/guestfish-actions.pod:3884
16119 msgid ""
16120 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16121 msgstr ""
16122
16123 #. type: textblock
16124 #: ../src/guestfs-actions.pod:5885
16125 msgid ""
16126 "This function is primarily intended for use by programs.  To get a simple "
16127 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16128 "consumption, use C<guestfs_ll>."
16129 msgstr ""
16130
16131 #. type: textblock
16132 #: ../src/guestfs-actions.pod:5889
16133 msgid ""
16134 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16135 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
16136 msgstr ""
16137
16138 #. type: =head2
16139 #: ../src/guestfs-actions.pod:5895
16140 msgid "guestfs_readlink"
16141 msgstr ""
16142
16143 #. type: verbatim
16144 #: ../src/guestfs-actions.pod:5897
16145 #, no-wrap
16146 msgid ""
16147 " char *\n"
16148 " guestfs_readlink (guestfs_h *g,\n"
16149 "                   const char *path);\n"
16150 "\n"
16151 msgstr ""
16152
16153 #. type: textblock
16154 #: ../src/guestfs-actions.pod:5901 ../fish/guestfish-actions.pod:3897
16155 msgid "This command reads the target of a symbolic link."
16156 msgstr ""
16157
16158 #. type: =head2
16159 #: ../src/guestfs-actions.pod:5908
16160 msgid "guestfs_readlinklist"
16161 msgstr ""
16162
16163 #. type: verbatim
16164 #: ../src/guestfs-actions.pod:5910
16165 #, no-wrap
16166 msgid ""
16167 " char **\n"
16168 " guestfs_readlinklist (guestfs_h *g,\n"
16169 "                       const char *path,\n"
16170 "                       char *const *names);\n"
16171 "\n"
16172 msgstr ""
16173
16174 #. type: textblock
16175 #: ../src/guestfs-actions.pod:5915 ../fish/guestfish-actions.pod:3903
16176 msgid ""
16177 "This call allows you to do a C<readlink> operation on multiple files, where "
16178 "all files are in the directory C<path>.  C<names> is the list of files from "
16179 "this directory."
16180 msgstr ""
16181
16182 #. type: textblock
16183 #: ../src/guestfs-actions.pod:5919 ../fish/guestfish-actions.pod:3907
16184 msgid ""
16185 "On return you get a list of strings, with a one-to-one correspondence to the "
16186 "C<names> list.  Each string is the value of the symbolic link."
16187 msgstr ""
16188
16189 #. type: textblock
16190 #: ../src/guestfs-actions.pod:5923 ../fish/guestfish-actions.pod:3911
16191 msgid ""
16192 "If the C<readlink(2)> operation fails on any name, then the corresponding "
16193 "result string is the empty string C<\"\">.  However the whole operation is "
16194 "completed even if there were C<readlink(2)> errors, and so you can call this "
16195 "function with names where you don't know if they are symbolic links already "
16196 "(albeit slightly less efficient)."
16197 msgstr ""
16198
16199 #. type: textblock
16200 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3918
16201 msgid ""
16202 "This call is intended for programs that want to efficiently list a directory "
16203 "contents without making many round-trips.  Very long directory listings "
16204 "might cause the protocol message size to be exceeded, causing this call to "
16205 "fail.  The caller must split up such requests into smaller groups of names."
16206 msgstr ""
16207
16208 #. type: =head2
16209 #: ../src/guestfs-actions.pod:5943
16210 msgid "guestfs_realpath"
16211 msgstr ""
16212
16213 #. type: verbatim
16214 #: ../src/guestfs-actions.pod:5945
16215 #, no-wrap
16216 msgid ""
16217 " char *\n"
16218 " guestfs_realpath (guestfs_h *g,\n"
16219 "                   const char *path);\n"
16220 "\n"
16221 msgstr ""
16222
16223 #. type: textblock
16224 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:3929
16225 msgid ""
16226 "Return the canonicalized absolute pathname of C<path>.  The returned path "
16227 "has no C<.>, C<..> or symbolic link path elements."
16228 msgstr ""
16229
16230 #. type: =head2
16231 #: ../src/guestfs-actions.pod:5957
16232 msgid "guestfs_removexattr"
16233 msgstr ""
16234
16235 #. type: verbatim
16236 #: ../src/guestfs-actions.pod:5959
16237 #, no-wrap
16238 msgid ""
16239 " int\n"
16240 " guestfs_removexattr (guestfs_h *g,\n"
16241 "                      const char *xattr,\n"
16242 "                      const char *path);\n"
16243 "\n"
16244 msgstr ""
16245
16246 #. type: textblock
16247 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:3936
16248 msgid ""
16249 "This call removes the extended attribute named C<xattr> of the file C<path>."
16250 msgstr ""
16251
16252 #. type: textblock
16253 #: ../src/guestfs-actions.pod:5967
16254 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
16255 msgstr ""
16256
16257 #. type: =head2
16258 #: ../src/guestfs-actions.pod:5973
16259 msgid "guestfs_resize2fs"
16260 msgstr ""
16261
16262 #. type: verbatim
16263 #: ../src/guestfs-actions.pod:5975
16264 #, no-wrap
16265 msgid ""
16266 " int\n"
16267 " guestfs_resize2fs (guestfs_h *g,\n"
16268 "                    const char *device);\n"
16269 "\n"
16270 msgstr ""
16271
16272 #. type: textblock
16273 #: ../src/guestfs-actions.pod:5979 ../fish/guestfish-actions.pod:3945
16274 msgid ""
16275 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
16276 "underlying device."
16277 msgstr ""
16278
16279 #. type: textblock
16280 #: ../src/guestfs-actions.pod:5982
16281 msgid ""
16282 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
16283 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
16284 "sometimes gives an error about this and sometimes not.  In any case, it is "
16285 "always safe to call C<guestfs_e2fsck_f> before calling this function."
16286 msgstr ""
16287
16288 #. type: =head2
16289 #: ../src/guestfs-actions.pod:5992
16290 msgid "guestfs_resize2fs_M"
16291 msgstr ""
16292
16293 #. type: verbatim
16294 #: ../src/guestfs-actions.pod:5994
16295 #, no-wrap
16296 msgid ""
16297 " int\n"
16298 " guestfs_resize2fs_M (guestfs_h *g,\n"
16299 "                      const char *device);\n"
16300 "\n"
16301 msgstr ""
16302
16303 #. type: textblock
16304 #: ../src/guestfs-actions.pod:5998
16305 msgid ""
16306 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
16307 "resized to its minimum size.  This works like the I<-M> option to the "
16308 "C<resize2fs> command."
16309 msgstr ""
16310
16311 #. type: textblock
16312 #: ../src/guestfs-actions.pod:6002
16313 msgid ""
16314 "To get the resulting size of the filesystem you should call "
16315 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16316 "These two numbers, multiplied together, give the resulting size of the "
16317 "minimal filesystem in bytes."
16318 msgstr ""
16319
16320 #. type: =head2
16321 #: ../src/guestfs-actions.pod:6011
16322 msgid "guestfs_resize2fs_size"
16323 msgstr ""
16324
16325 #. type: verbatim
16326 #: ../src/guestfs-actions.pod:6013
16327 #, no-wrap
16328 msgid ""
16329 " int\n"
16330 " guestfs_resize2fs_size (guestfs_h *g,\n"
16331 "                         const char *device,\n"
16332 "                         int64_t size);\n"
16333 "\n"
16334 msgstr ""
16335
16336 #. type: textblock
16337 #: ../src/guestfs-actions.pod:6018
16338 msgid ""
16339 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16340 "to specify the new size (in bytes) explicitly."
16341 msgstr ""
16342
16343 #. type: =head2
16344 #: ../src/guestfs-actions.pod:6025
16345 msgid "guestfs_rm"
16346 msgstr ""
16347
16348 #. type: verbatim
16349 #: ../src/guestfs-actions.pod:6027
16350 #, no-wrap
16351 msgid ""
16352 " int\n"
16353 " guestfs_rm (guestfs_h *g,\n"
16354 "             const char *path);\n"
16355 "\n"
16356 msgstr ""
16357
16358 #. type: textblock
16359 #: ../src/guestfs-actions.pod:6031 ../fish/guestfish-actions.pod:3978
16360 msgid "Remove the single file C<path>."
16361 msgstr ""
16362
16363 #. type: =head2
16364 #: ../src/guestfs-actions.pod:6037
16365 msgid "guestfs_rm_rf"
16366 msgstr ""
16367
16368 #. type: verbatim
16369 #: ../src/guestfs-actions.pod:6039
16370 #, no-wrap
16371 msgid ""
16372 " int\n"
16373 " guestfs_rm_rf (guestfs_h *g,\n"
16374 "                const char *path);\n"
16375 "\n"
16376 msgstr ""
16377
16378 #. type: textblock
16379 #: ../src/guestfs-actions.pod:6043 ../fish/guestfish-actions.pod:3984
16380 msgid ""
16381 "Remove the file or directory C<path>, recursively removing the contents if "
16382 "its a directory.  This is like the C<rm -rf> shell command."
16383 msgstr ""
16384
16385 #. type: =head2
16386 #: ../src/guestfs-actions.pod:6051
16387 msgid "guestfs_rmdir"
16388 msgstr ""
16389
16390 #. type: verbatim
16391 #: ../src/guestfs-actions.pod:6053
16392 #, no-wrap
16393 msgid ""
16394 " int\n"
16395 " guestfs_rmdir (guestfs_h *g,\n"
16396 "                const char *path);\n"
16397 "\n"
16398 msgstr ""
16399
16400 #. type: textblock
16401 #: ../src/guestfs-actions.pod:6057 ../fish/guestfish-actions.pod:3992
16402 msgid "Remove the single directory C<path>."
16403 msgstr ""
16404
16405 #. type: =head2
16406 #: ../src/guestfs-actions.pod:6063
16407 msgid "guestfs_rmmountpoint"
16408 msgstr ""
16409
16410 #. type: verbatim
16411 #: ../src/guestfs-actions.pod:6065
16412 #, no-wrap
16413 msgid ""
16414 " int\n"
16415 " guestfs_rmmountpoint (guestfs_h *g,\n"
16416 "                       const char *exemptpath);\n"
16417 "\n"
16418 msgstr ""
16419
16420 #. type: textblock
16421 #: ../src/guestfs-actions.pod:6069
16422 msgid ""
16423 "This calls removes a mountpoint that was previously created with "
16424 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16425 msgstr ""
16426
16427 #. type: =head2
16428 #: ../src/guestfs-actions.pod:6077
16429 msgid "guestfs_scrub_device"
16430 msgstr ""
16431
16432 #. type: verbatim
16433 #: ../src/guestfs-actions.pod:6079
16434 #, no-wrap
16435 msgid ""
16436 " int\n"
16437 " guestfs_scrub_device (guestfs_h *g,\n"
16438 "                       const char *device);\n"
16439 "\n"
16440 msgstr ""
16441
16442 #. type: textblock
16443 #: ../src/guestfs-actions.pod:6083 ../fish/guestfish-actions.pod:4006
16444 msgid ""
16445 "This command writes patterns over C<device> to make data retrieval more "
16446 "difficult."
16447 msgstr ""
16448
16449 #. type: textblock
16450 #: ../src/guestfs-actions.pod:6086 ../src/guestfs-actions.pod:6107
16451 #: ../src/guestfs-actions.pod:6126 ../fish/guestfish-actions.pod:4009
16452 #: ../fish/guestfish-actions.pod:4024 ../fish/guestfish-actions.pod:4037
16453 msgid ""
16454 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16455 "more details."
16456 msgstr ""
16457
16458 #. type: textblock
16459 #: ../src/guestfs-actions.pod:6094 ../src/guestfs-actions.pod:6112
16460 #: ../src/guestfs-actions.pod:6131
16461 msgid "(Added in 1.0.52)"
16462 msgstr ""
16463
16464 #. type: =head2
16465 #: ../src/guestfs-actions.pod:6096
16466 msgid "guestfs_scrub_file"
16467 msgstr ""
16468
16469 #. type: verbatim
16470 #: ../src/guestfs-actions.pod:6098
16471 #, no-wrap
16472 msgid ""
16473 " int\n"
16474 " guestfs_scrub_file (guestfs_h *g,\n"
16475 "                     const char *file);\n"
16476 "\n"
16477 msgstr ""
16478
16479 #. type: textblock
16480 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4019
16481 msgid ""
16482 "This command writes patterns over a file to make data retrieval more "
16483 "difficult."
16484 msgstr ""
16485
16486 #. type: textblock
16487 #: ../src/guestfs-actions.pod:6105 ../fish/guestfish-actions.pod:4022
16488 msgid "The file is I<removed> after scrubbing."
16489 msgstr ""
16490
16491 #. type: =head2
16492 #: ../src/guestfs-actions.pod:6114
16493 msgid "guestfs_scrub_freespace"
16494 msgstr ""
16495
16496 #. type: verbatim
16497 #: ../src/guestfs-actions.pod:6116
16498 #, no-wrap
16499 msgid ""
16500 " int\n"
16501 " guestfs_scrub_freespace (guestfs_h *g,\n"
16502 "                          const char *dir);\n"
16503 "\n"
16504 msgstr ""
16505
16506 #. type: textblock
16507 #: ../src/guestfs-actions.pod:6120
16508 msgid ""
16509 "This command creates the directory C<dir> and then fills it with files until "
16510 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16511 "and deletes them.  The intention is to scrub any free space on the partition "
16512 "containing C<dir>."
16513 msgstr ""
16514
16515 #. type: =head2
16516 #: ../src/guestfs-actions.pod:6133
16517 msgid "guestfs_set_append"
16518 msgstr ""
16519
16520 #. type: verbatim
16521 #: ../src/guestfs-actions.pod:6135
16522 #, no-wrap
16523 msgid ""
16524 " int\n"
16525 " guestfs_set_append (guestfs_h *g,\n"
16526 "                     const char *append);\n"
16527 "\n"
16528 msgstr ""
16529
16530 #. type: textblock
16531 #: ../src/guestfs-actions.pod:6139 ../fish/guestfish-actions.pod:4046
16532 msgid ""
16533 "This function is used to add additional options to the guest kernel command "
16534 "line."
16535 msgstr ""
16536
16537 #. type: textblock
16538 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4049
16539 msgid ""
16540 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16541 "environment variable."
16542 msgstr ""
16543
16544 #. type: textblock
16545 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4052
16546 msgid ""
16547 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16548 "(libguestfs always adds a few of its own)."
16549 msgstr ""
16550
16551 #. type: =head2
16552 #: ../src/guestfs-actions.pod:6152
16553 msgid "guestfs_set_attach_method"
16554 msgstr ""
16555
16556 #. type: verbatim
16557 #: ../src/guestfs-actions.pod:6154
16558 #, no-wrap
16559 msgid ""
16560 " int\n"
16561 " guestfs_set_attach_method (guestfs_h *g,\n"
16562 "                            const char *attachmethod);\n"
16563 "\n"
16564 msgstr ""
16565
16566 #. type: textblock
16567 #: ../src/guestfs-actions.pod:6158 ../fish/guestfish-actions.pod:4061
16568 msgid ""
16569 "Set the method that libguestfs uses to connect to the back end guestfsd "
16570 "daemon.  Possible methods are:"
16571 msgstr ""
16572
16573 #. type: textblock
16574 #: ../src/guestfs-actions.pod:6165 ../fish/guestfish-actions.pod:4068
16575 msgid ""
16576 "Launch an appliance and connect to it.  This is the ordinary method and the "
16577 "default."
16578 msgstr ""
16579
16580 #. type: =item
16581 #: ../src/guestfs-actions.pod:6168 ../fish/guestfish-actions.pod:4071
16582 msgid "C<unix:I<path>>"
16583 msgstr ""
16584
16585 #. type: textblock
16586 #: ../src/guestfs-actions.pod:6170 ../fish/guestfish-actions.pod:4073
16587 msgid "Connect to the Unix domain socket I<path>."
16588 msgstr ""
16589
16590 #. type: textblock
16591 #: ../src/guestfs-actions.pod:6172 ../fish/guestfish-actions.pod:4075
16592 msgid ""
16593 "This method lets you connect to an existing daemon or (using virtio-serial) "
16594 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16595 "RUNNING DAEMONS>."
16596 msgstr ""
16597
16598 #. type: =head2
16599 #: ../src/guestfs-actions.pod:6182
16600 msgid "guestfs_set_autosync"
16601 msgstr ""
16602
16603 #. type: verbatim
16604 #: ../src/guestfs-actions.pod:6184
16605 #, no-wrap
16606 msgid ""
16607 " int\n"
16608 " guestfs_set_autosync (guestfs_h *g,\n"
16609 "                       int autosync);\n"
16610 "\n"
16611 msgstr ""
16612
16613 #. type: textblock
16614 #: ../src/guestfs-actions.pod:6188 ../fish/guestfish-actions.pod:4087
16615 msgid ""
16616 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16617 "effort attempt to make filesystems consistent and synchronized when the "
16618 "handle is closed (also if the program exits without closing handles)."
16619 msgstr ""
16620
16621 #. type: textblock
16622 #: ../src/guestfs-actions.pod:6193 ../fish/guestfish-actions.pod:4092
16623 msgid ""
16624 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16625 "disabled by default)."
16626 msgstr ""
16627
16628 #. type: =head2
16629 #: ../src/guestfs-actions.pod:6200
16630 msgid "guestfs_set_direct"
16631 msgstr ""
16632
16633 #. type: verbatim
16634 #: ../src/guestfs-actions.pod:6202
16635 #, no-wrap
16636 msgid ""
16637 " int\n"
16638 " guestfs_set_direct (guestfs_h *g,\n"
16639 "                     int direct);\n"
16640 "\n"
16641 msgstr ""
16642
16643 #. type: textblock
16644 #: ../src/guestfs-actions.pod:6206 ../fish/guestfish-actions.pod:4101
16645 msgid ""
16646 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16647 "passed directly through to the appliance once it is launched."
16648 msgstr ""
16649
16650 #. type: textblock
16651 #: ../src/guestfs-actions.pod:6210
16652 msgid ""
16653 "One consequence of this is that log messages aren't caught by the library "
16654 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16655 "stdout."
16656 msgstr ""
16657
16658 #. type: textblock
16659 #: ../src/guestfs-actions.pod:6214 ../fish/guestfish-actions.pod:4109
16660 msgid "You probably don't want to use this unless you know what you are doing."
16661 msgstr ""
16662
16663 #. type: textblock
16664 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4112
16665 msgid "The default is disabled."
16666 msgstr ""
16667
16668 #. type: =head2
16669 #: ../src/guestfs-actions.pod:6223
16670 msgid "guestfs_set_e2label"
16671 msgstr ""
16672
16673 #. type: verbatim
16674 #: ../src/guestfs-actions.pod:6225
16675 #, no-wrap
16676 msgid ""
16677 " int\n"
16678 " guestfs_set_e2label (guestfs_h *g,\n"
16679 "                      const char *device,\n"
16680 "                      const char *label);\n"
16681 "\n"
16682 msgstr ""
16683
16684 #. type: textblock
16685 #: ../src/guestfs-actions.pod:6230 ../fish/guestfish-actions.pod:4118
16686 msgid ""
16687 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16688 "C<label>.  Filesystem labels are limited to 16 characters."
16689 msgstr ""
16690
16691 #. type: textblock
16692 #: ../src/guestfs-actions.pod:6234
16693 msgid ""
16694 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16695 "the existing label on a filesystem."
16696 msgstr ""
16697
16698 #. type: =head2
16699 #: ../src/guestfs-actions.pod:6241
16700 msgid "guestfs_set_e2uuid"
16701 msgstr ""
16702
16703 #. type: verbatim
16704 #: ../src/guestfs-actions.pod:6243
16705 #, no-wrap
16706 msgid ""
16707 " int\n"
16708 " guestfs_set_e2uuid (guestfs_h *g,\n"
16709 "                     const char *device,\n"
16710 "                     const char *uuid);\n"
16711 "\n"
16712 msgstr ""
16713
16714 #. type: textblock
16715 #: ../src/guestfs-actions.pod:6248 ../fish/guestfish-actions.pod:4129
16716 msgid ""
16717 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16718 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16719 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16720 msgstr ""
16721
16722 #. type: textblock
16723 #: ../src/guestfs-actions.pod:6253
16724 msgid ""
16725 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16726 "the existing UUID of a filesystem."
16727 msgstr ""
16728
16729 #. type: =head2
16730 #: ../src/guestfs-actions.pod:6260
16731 msgid "guestfs_set_memsize"
16732 msgstr ""
16733
16734 #. type: verbatim
16735 #: ../src/guestfs-actions.pod:6262
16736 #, no-wrap
16737 msgid ""
16738 " int\n"
16739 " guestfs_set_memsize (guestfs_h *g,\n"
16740 "                      int memsize);\n"
16741 "\n"
16742 msgstr ""
16743
16744 #. type: textblock
16745 #: ../src/guestfs-actions.pod:6266
16746 msgid ""
16747 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16748 "This only has any effect if called before C<guestfs_launch>."
16749 msgstr ""
16750
16751 #. type: textblock
16752 #: ../src/guestfs-actions.pod:6270 ../fish/guestfish-actions.pod:4147
16753 msgid ""
16754 "You can also change this by setting the environment variable "
16755 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16756 msgstr ""
16757
16758 #. type: =head2
16759 #: ../src/guestfs-actions.pod:6281
16760 msgid "guestfs_set_network"
16761 msgstr ""
16762
16763 #. type: verbatim
16764 #: ../src/guestfs-actions.pod:6283
16765 #, no-wrap
16766 msgid ""
16767 " int\n"
16768 " guestfs_set_network (guestfs_h *g,\n"
16769 "                      int network);\n"
16770 "\n"
16771 msgstr ""
16772
16773 #. type: textblock
16774 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4160
16775 msgid ""
16776 "If C<network> is true, then the network is enabled in the libguestfs "
16777 "appliance.  The default is false."
16778 msgstr ""
16779
16780 #. type: textblock
16781 #: ../src/guestfs-actions.pod:6290 ../fish/guestfish-actions.pod:4163
16782 msgid ""
16783 "This affects whether commands are able to access the network (see L<guestfs"
16784 "(3)/RUNNING COMMANDS>)."
16785 msgstr ""
16786
16787 #. type: textblock
16788 #: ../src/guestfs-actions.pod:6293
16789 msgid ""
16790 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16791 "effect."
16792 msgstr ""
16793
16794 #. type: =head2
16795 #: ../src/guestfs-actions.pod:6300
16796 msgid "guestfs_set_path"
16797 msgstr ""
16798
16799 #. type: verbatim
16800 #: ../src/guestfs-actions.pod:6302
16801 #, no-wrap
16802 msgid ""
16803 " int\n"
16804 " guestfs_set_path (guestfs_h *g,\n"
16805 "                   const char *searchpath);\n"
16806 "\n"
16807 msgstr ""
16808
16809 #. type: textblock
16810 #: ../src/guestfs-actions.pod:6306 ../fish/guestfish-actions.pod:4175
16811 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16812 msgstr ""
16813
16814 #. type: textblock
16815 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4177
16816 msgid ""
16817 "The default is C<$libdir/guestfs> unless overridden by setting "
16818 "C<LIBGUESTFS_PATH> environment variable."
16819 msgstr ""
16820
16821 #. type: textblock
16822 #: ../src/guestfs-actions.pod:6311 ../fish/guestfish-actions.pod:4180
16823 msgid "Setting C<path> to C<NULL> restores the default path."
16824 msgstr ""
16825
16826 #. type: =head2
16827 #: ../src/guestfs-actions.pod:6317
16828 msgid "guestfs_set_qemu"
16829 msgstr ""
16830
16831 #. type: verbatim
16832 #: ../src/guestfs-actions.pod:6319
16833 #, no-wrap
16834 msgid ""
16835 " int\n"
16836 " guestfs_set_qemu (guestfs_h *g,\n"
16837 "                   const char *qemu);\n"
16838 "\n"
16839 msgstr ""
16840
16841 #. type: textblock
16842 #: ../src/guestfs-actions.pod:6323 ../fish/guestfish-actions.pod:4188
16843 msgid "Set the qemu binary that we will use."
16844 msgstr ""
16845
16846 #. type: textblock
16847 #: ../src/guestfs-actions.pod:6325 ../fish/guestfish-actions.pod:4190
16848 msgid ""
16849 "The default is chosen when the library was compiled by the configure script."
16850 msgstr ""
16851
16852 #. type: textblock
16853 #: ../src/guestfs-actions.pod:6328 ../fish/guestfish-actions.pod:4193
16854 msgid ""
16855 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16856 "variable."
16857 msgstr ""
16858
16859 #. type: textblock
16860 #: ../src/guestfs-actions.pod:6331 ../fish/guestfish-actions.pod:4196
16861 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16862 msgstr ""
16863
16864 #. type: textblock
16865 #: ../src/guestfs-actions.pod:6333 ../fish/guestfish-actions.pod:4198
16866 msgid ""
16867 "Note that you should call this function as early as possible after creating "
16868 "the handle.  This is because some pre-launch operations depend on testing "
16869 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16870 "don't retest features, and so you might see inconsistent results.  Using the "
16871 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16872 "the qemu binary at the same time as the handle is created."
16873 msgstr ""
16874
16875 #. type: =head2
16876 #: ../src/guestfs-actions.pod:6345
16877 msgid "guestfs_set_recovery_proc"
16878 msgstr ""
16879
16880 #. type: verbatim
16881 #: ../src/guestfs-actions.pod:6347
16882 #, no-wrap
16883 msgid ""
16884 " int\n"
16885 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16886 "                            int recoveryproc);\n"
16887 "\n"
16888 msgstr ""
16889
16890 #. type: textblock
16891 #: ../src/guestfs-actions.pod:6351
16892 msgid ""
16893 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16894 "not create a recovery process.  The purpose of the recovery process is to "
16895 "stop runaway qemu processes in the case where the main program aborts "
16896 "abruptly."
16897 msgstr ""
16898
16899 #. type: textblock
16900 #: ../src/guestfs-actions.pod:6356
16901 msgid ""
16902 "This only has any effect if called before C<guestfs_launch>, and the default "
16903 "is true."
16904 msgstr ""
16905
16906 #. type: textblock
16907 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4220
16908 msgid ""
16909 "About the only time when you would want to disable this is if the main "
16910 "process will fork itself into the background (\"daemonize\" itself).  In "
16911 "this case the recovery process thinks that the main program has disappeared "
16912 "and so kills qemu, which is not very helpful."
16913 msgstr ""
16914
16915 #. type: =head2
16916 #: ../src/guestfs-actions.pod:6369
16917 msgid "guestfs_set_selinux"
16918 msgstr ""
16919
16920 #. type: verbatim
16921 #: ../src/guestfs-actions.pod:6371
16922 #, no-wrap
16923 msgid ""
16924 " int\n"
16925 " guestfs_set_selinux (guestfs_h *g,\n"
16926 "                      int selinux);\n"
16927 "\n"
16928 msgstr ""
16929
16930 #. type: textblock
16931 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4232
16932 msgid ""
16933 "This sets the selinux flag that is passed to the appliance at boot time.  "
16934 "The default is C<selinux=0> (disabled)."
16935 msgstr ""
16936
16937 #. type: textblock
16938 #: ../src/guestfs-actions.pod:6378 ../fish/guestfish-actions.pod:4235
16939 msgid ""
16940 "Note that if SELinux is enabled, it is always in Permissive mode "
16941 "(C<enforcing=0>)."
16942 msgstr ""
16943
16944 #. type: =head2
16945 #: ../src/guestfs-actions.pod:6388
16946 msgid "guestfs_set_trace"
16947 msgstr ""
16948
16949 #. type: verbatim
16950 #: ../src/guestfs-actions.pod:6390
16951 #, no-wrap
16952 msgid ""
16953 " int\n"
16954 " guestfs_set_trace (guestfs_h *g,\n"
16955 "                    int trace);\n"
16956 "\n"
16957 msgstr ""
16958
16959 #. type: textblock
16960 #: ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4247
16961 msgid ""
16962 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16963 "return values are traced."
16964 msgstr ""
16965
16966 #. type: textblock
16967 #: ../src/guestfs-actions.pod:6397 ../fish/guestfish-actions.pod:4250
16968 msgid ""
16969 "If you want to trace C API calls into libguestfs (and other libraries) then "
16970 "possibly a better way is to use the external ltrace(1) command."
16971 msgstr ""
16972
16973 #. type: textblock
16974 #: ../src/guestfs-actions.pod:6401 ../fish/guestfish-actions.pod:4254
16975 msgid ""
16976 "Command traces are disabled unless the environment variable "
16977 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16978 msgstr ""
16979
16980 #. type: textblock
16981 #: ../src/guestfs-actions.pod:6404
16982 msgid ""
16983 "Trace messages are normally sent to C<stderr>, unless you register a "
16984 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16985 msgstr ""
16986
16987 #. type: =head2
16988 #: ../src/guestfs-actions.pod:6412
16989 msgid "guestfs_set_verbose"
16990 msgstr ""
16991
16992 #. type: verbatim
16993 #: ../src/guestfs-actions.pod:6414
16994 #, no-wrap
16995 msgid ""
16996 " int\n"
16997 " guestfs_set_verbose (guestfs_h *g,\n"
16998 "                      int verbose);\n"
16999 "\n"
17000 msgstr ""
17001
17002 #. type: textblock
17003 #: ../src/guestfs-actions.pod:6418 ../fish/guestfish-actions.pod:4267
17004 msgid "If C<verbose> is true, this turns on verbose messages."
17005 msgstr ""
17006
17007 #. type: textblock
17008 #: ../src/guestfs-actions.pod:6420 ../fish/guestfish-actions.pod:4269
17009 msgid ""
17010 "Verbose messages are disabled unless the environment variable "
17011 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
17012 msgstr ""
17013
17014 #. type: textblock
17015 #: ../src/guestfs-actions.pod:6423
17016 msgid ""
17017 "Verbose messages are normally sent to C<stderr>, unless you register a "
17018 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17019 msgstr ""
17020
17021 #. type: =head2
17022 #: ../src/guestfs-actions.pod:6431
17023 msgid "guestfs_setcon"
17024 msgstr ""
17025
17026 #. type: verbatim
17027 #: ../src/guestfs-actions.pod:6433
17028 #, no-wrap
17029 msgid ""
17030 " int\n"
17031 " guestfs_setcon (guestfs_h *g,\n"
17032 "                 const char *context);\n"
17033 "\n"
17034 msgstr ""
17035
17036 #. type: textblock
17037 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4280
17038 msgid ""
17039 "This sets the SELinux security context of the daemon to the string "
17040 "C<context>."
17041 msgstr ""
17042
17043 #. type: textblock
17044 #: ../src/guestfs-actions.pod:6440 ../fish/guestfish-actions.pod:4283
17045 msgid "See the documentation about SELINUX in L<guestfs(3)>."
17046 msgstr ""
17047
17048 #. type: =head2
17049 #: ../src/guestfs-actions.pod:6446
17050 msgid "guestfs_setxattr"
17051 msgstr ""
17052
17053 #. type: verbatim
17054 #: ../src/guestfs-actions.pod:6448
17055 #, no-wrap
17056 msgid ""
17057 " int\n"
17058 " guestfs_setxattr (guestfs_h *g,\n"
17059 "                   const char *xattr,\n"
17060 "                   const char *val,\n"
17061 "                   int vallen,\n"
17062 "                   const char *path);\n"
17063 "\n"
17064 msgstr ""
17065
17066 #. type: textblock
17067 #: ../src/guestfs-actions.pod:6455 ../fish/guestfish-actions.pod:4289
17068 msgid ""
17069 "This call sets the extended attribute named C<xattr> of the file C<path> to "
17070 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
17071 msgstr ""
17072
17073 #. type: textblock
17074 #: ../src/guestfs-actions.pod:6459
17075 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
17076 msgstr ""
17077
17078 #. type: =head2
17079 #: ../src/guestfs-actions.pod:6465
17080 msgid "guestfs_sfdisk"
17081 msgstr ""
17082
17083 #. type: verbatim
17084 #: ../src/guestfs-actions.pod:6467
17085 #, no-wrap
17086 msgid ""
17087 " int\n"
17088 " guestfs_sfdisk (guestfs_h *g,\n"
17089 "                 const char *device,\n"
17090 "                 int cyls,\n"
17091 "                 int heads,\n"
17092 "                 int sectors,\n"
17093 "                 char *const *lines);\n"
17094 "\n"
17095 msgstr ""
17096
17097 #. type: textblock
17098 #: ../src/guestfs-actions.pod:6475 ../fish/guestfish-actions.pod:4299
17099 msgid ""
17100 "This is a direct interface to the L<sfdisk(8)> program for creating "
17101 "partitions on block devices."
17102 msgstr ""
17103
17104 #. type: textblock
17105 #: ../src/guestfs-actions.pod:6478 ../fish/guestfish-actions.pod:4302
17106 msgid "C<device> should be a block device, for example C</dev/sda>."
17107 msgstr ""
17108
17109 #. type: textblock
17110 #: ../src/guestfs-actions.pod:6480 ../fish/guestfish-actions.pod:4304
17111 msgid ""
17112 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
17113 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
17114 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
17115 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
17116 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
17117 "the kernel) cannot work out the right geometry and you will need to tell it."
17118 msgstr ""
17119
17120 #. type: textblock
17121 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4312
17122 msgid ""
17123 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
17124 "refer to the L<sfdisk(8)> manpage."
17125 msgstr ""
17126
17127 #. type: textblock
17128 #: ../src/guestfs-actions.pod:6491 ../fish/guestfish-actions.pod:4315
17129 msgid ""
17130 "To create a single partition occupying the whole disk, you would pass "
17131 "C<lines> as a single element list, when the single element being the string "
17132 "C<,> (comma)."
17133 msgstr ""
17134
17135 #. type: textblock
17136 #: ../src/guestfs-actions.pod:6495
17137 msgid ""
17138 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
17139 msgstr ""
17140
17141 #. type: textblock
17142 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-actions.pod:6533
17143 #: ../src/guestfs-actions.pod:6566 ../fish/guestfish-actions.pod:4325
17144 #: ../fish/guestfish-actions.pod:4348 ../fish/guestfish-actions.pod:4370
17145 msgid ""
17146 "This function is deprecated.  In new code, use the C<part_add> call instead."
17147 msgstr ""
17148
17149 #. type: =head2
17150 #: ../src/guestfs-actions.pod:6512
17151 msgid "guestfs_sfdiskM"
17152 msgstr ""
17153
17154 #. type: verbatim
17155 #: ../src/guestfs-actions.pod:6514
17156 #, no-wrap
17157 msgid ""
17158 " int\n"
17159 " guestfs_sfdiskM (guestfs_h *g,\n"
17160 "                  const char *device,\n"
17161 "                  char *const *lines);\n"
17162 "\n"
17163 msgstr ""
17164
17165 #. type: textblock
17166 #: ../src/guestfs-actions.pod:6519
17167 msgid ""
17168 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
17169 "partition sizes are specified in megabytes only (rounded to the nearest "
17170 "cylinder) and you don't need to specify the cyls, heads and sectors "
17171 "parameters which were rarely if ever used anyway."
17172 msgstr ""
17173
17174 #. type: textblock
17175 #: ../src/guestfs-actions.pod:6525
17176 msgid ""
17177 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
17178 "C<guestfs_part_disk>"
17179 msgstr ""
17180
17181 #. type: =head2
17182 #: ../src/guestfs-actions.pod:6542
17183 msgid "guestfs_sfdisk_N"
17184 msgstr ""
17185
17186 #. type: verbatim
17187 #: ../src/guestfs-actions.pod:6544
17188 #, no-wrap
17189 msgid ""
17190 " int\n"
17191 " guestfs_sfdisk_N (guestfs_h *g,\n"
17192 "                   const char *device,\n"
17193 "                   int partnum,\n"
17194 "                   int cyls,\n"
17195 "                   int heads,\n"
17196 "                   int sectors,\n"
17197 "                   const char *line);\n"
17198 "\n"
17199 msgstr ""
17200
17201 #. type: textblock
17202 #: ../src/guestfs-actions.pod:6553 ../fish/guestfish-actions.pod:4359
17203 msgid ""
17204 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
17205 "(note: C<n> counts from 1)."
17206 msgstr ""
17207
17208 #. type: textblock
17209 #: ../src/guestfs-actions.pod:6556
17210 msgid ""
17211 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
17212 "for the cyls/heads/sectors parameters."
17213 msgstr ""
17214
17215 #. type: textblock
17216 #: ../src/guestfs-actions.pod:6559
17217 msgid "See also: C<guestfs_part_add>"
17218 msgstr ""
17219
17220 #. type: =head2
17221 #: ../src/guestfs-actions.pod:6575
17222 msgid "guestfs_sfdisk_disk_geometry"
17223 msgstr ""
17224
17225 #. type: verbatim
17226 #: ../src/guestfs-actions.pod:6577
17227 #, no-wrap
17228 msgid ""
17229 " char *\n"
17230 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
17231 "                               const char *device);\n"
17232 "\n"
17233 msgstr ""
17234
17235 #. type: textblock
17236 #: ../src/guestfs-actions.pod:6581
17237 msgid ""
17238 "This displays the disk geometry of C<device> read from the partition table.  "
17239 "Especially in the case where the underlying block device has been resized, "
17240 "this can be different from the kernel's idea of the geometry (see "
17241 "C<guestfs_sfdisk_kernel_geometry>)."
17242 msgstr ""
17243
17244 #. type: textblock
17245 #: ../src/guestfs-actions.pod:6586 ../src/guestfs-actions.pod:6602
17246 #: ../fish/guestfish-actions.pod:4386 ../fish/guestfish-actions.pod:4395
17247 msgid "The result is in human-readable format, and not designed to be parsed."
17248 msgstr ""
17249
17250 #. type: =head2
17251 #: ../src/guestfs-actions.pod:6594
17252 msgid "guestfs_sfdisk_kernel_geometry"
17253 msgstr ""
17254
17255 #. type: verbatim
17256 #: ../src/guestfs-actions.pod:6596
17257 #, no-wrap
17258 msgid ""
17259 " char *\n"
17260 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
17261 "                                 const char *device);\n"
17262 "\n"
17263 msgstr ""
17264
17265 #. type: textblock
17266 #: ../src/guestfs-actions.pod:6600 ../fish/guestfish-actions.pod:4393
17267 msgid "This displays the kernel's idea of the geometry of C<device>."
17268 msgstr ""
17269
17270 #. type: =head2
17271 #: ../src/guestfs-actions.pod:6610
17272 msgid "guestfs_sfdisk_l"
17273 msgstr ""
17274
17275 #. type: verbatim
17276 #: ../src/guestfs-actions.pod:6612
17277 #, no-wrap
17278 msgid ""
17279 " char *\n"
17280 " guestfs_sfdisk_l (guestfs_h *g,\n"
17281 "                   const char *device);\n"
17282 "\n"
17283 msgstr ""
17284
17285 #. type: textblock
17286 #: ../src/guestfs-actions.pod:6616 ../fish/guestfish-actions.pod:4402
17287 msgid ""
17288 "This displays the partition table on C<device>, in the human-readable output "
17289 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
17290 msgstr ""
17291
17292 #. type: textblock
17293 #: ../src/guestfs-actions.pod:6620
17294 msgid "See also: C<guestfs_part_list>"
17295 msgstr ""
17296
17297 #. type: textblock
17298 #: ../src/guestfs-actions.pod:6625 ../fish/guestfish-actions.pod:4408
17299 msgid ""
17300 "This function is deprecated.  In new code, use the C<part_list> call instead."
17301 msgstr ""
17302
17303 #. type: =head2
17304 #: ../src/guestfs-actions.pod:6634
17305 msgid "guestfs_sh"
17306 msgstr ""
17307
17308 #. type: verbatim
17309 #: ../src/guestfs-actions.pod:6636
17310 #, no-wrap
17311 msgid ""
17312 " char *\n"
17313 " guestfs_sh (guestfs_h *g,\n"
17314 "             const char *command);\n"
17315 "\n"
17316 msgstr ""
17317
17318 #. type: textblock
17319 #: ../src/guestfs-actions.pod:6640 ../fish/guestfish-actions.pod:4419
17320 msgid ""
17321 "This call runs a command from the guest filesystem via the guest's C</bin/"
17322 "sh>."
17323 msgstr ""
17324
17325 #. type: textblock
17326 #: ../src/guestfs-actions.pod:6643
17327 msgid "This is like C<guestfs_command>, but passes the command to:"
17328 msgstr ""
17329
17330 #. type: verbatim
17331 #: ../src/guestfs-actions.pod:6645 ../fish/guestfish-actions.pod:4424
17332 #, no-wrap
17333 msgid ""
17334 " /bin/sh -c \"command\"\n"
17335 "\n"
17336 msgstr ""
17337
17338 #. type: textblock
17339 #: ../src/guestfs-actions.pod:6647 ../fish/guestfish-actions.pod:4426
17340 msgid ""
17341 "Depending on the guest's shell, this usually results in wildcards being "
17342 "expanded, shell expressions being interpolated and so on."
17343 msgstr ""
17344
17345 #. type: textblock
17346 #: ../src/guestfs-actions.pod:6651
17347 msgid "All the provisos about C<guestfs_command> apply to this call."
17348 msgstr ""
17349
17350 #. type: =head2
17351 #: ../src/guestfs-actions.pod:6658
17352 msgid "guestfs_sh_lines"
17353 msgstr ""
17354
17355 #. type: verbatim
17356 #: ../src/guestfs-actions.pod:6660
17357 #, no-wrap
17358 msgid ""
17359 " char **\n"
17360 " guestfs_sh_lines (guestfs_h *g,\n"
17361 "                   const char *command);\n"
17362 "\n"
17363 msgstr ""
17364
17365 #. type: textblock
17366 #: ../src/guestfs-actions.pod:6664
17367 msgid ""
17368 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17369 "lines."
17370 msgstr ""
17371
17372 #. type: textblock
17373 #: ../src/guestfs-actions.pod:6667
17374 msgid "See also: C<guestfs_command_lines>"
17375 msgstr ""
17376
17377 #. type: =head2
17378 #: ../src/guestfs-actions.pod:6675
17379 msgid "guestfs_sleep"
17380 msgstr ""
17381
17382 #. type: verbatim
17383 #: ../src/guestfs-actions.pod:6677
17384 #, no-wrap
17385 msgid ""
17386 " int\n"
17387 " guestfs_sleep (guestfs_h *g,\n"
17388 "                int secs);\n"
17389 "\n"
17390 msgstr ""
17391
17392 #. type: textblock
17393 #: ../src/guestfs-actions.pod:6681 ../fish/guestfish-actions.pod:4445
17394 msgid "Sleep for C<secs> seconds."
17395 msgstr ""
17396
17397 #. type: textblock
17398 #: ../src/guestfs-actions.pod:6685
17399 msgid "(Added in 1.0.41)"
17400 msgstr ""
17401
17402 #. type: =head2
17403 #: ../src/guestfs-actions.pod:6687 ../src/guestfs-structs.pod:109
17404 msgid "guestfs_stat"
17405 msgstr ""
17406
17407 #. type: verbatim
17408 #: ../src/guestfs-actions.pod:6689
17409 #, no-wrap
17410 msgid ""
17411 " struct guestfs_stat *\n"
17412 " guestfs_stat (guestfs_h *g,\n"
17413 "               const char *path);\n"
17414 "\n"
17415 msgstr ""
17416
17417 #. type: textblock
17418 #: ../src/guestfs-actions.pod:6695 ../fish/guestfish-actions.pod:4453
17419 msgid "This is the same as the C<stat(2)> system call."
17420 msgstr ""
17421
17422 #. type: =head2
17423 #: ../src/guestfs-actions.pod:6703 ../src/guestfs-structs.pod:135
17424 msgid "guestfs_statvfs"
17425 msgstr ""
17426
17427 #. type: verbatim
17428 #: ../src/guestfs-actions.pod:6705
17429 #, no-wrap
17430 msgid ""
17431 " struct guestfs_statvfs *\n"
17432 " guestfs_statvfs (guestfs_h *g,\n"
17433 "                  const char *path);\n"
17434 "\n"
17435 msgstr ""
17436
17437 #. type: textblock
17438 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4459
17439 msgid ""
17440 "Returns file system statistics for any mounted file system.  C<path> should "
17441 "be a file or directory in the mounted file system (typically it is the mount "
17442 "point itself, but it doesn't need to be)."
17443 msgstr ""
17444
17445 #. type: textblock
17446 #: ../src/guestfs-actions.pod:6713 ../fish/guestfish-actions.pod:4463
17447 msgid "This is the same as the C<statvfs(2)> system call."
17448 msgstr ""
17449
17450 #. type: textblock
17451 #: ../src/guestfs-actions.pod:6715
17452 msgid ""
17453 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
17454 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17455 msgstr ""
17456
17457 #. type: =head2
17458 #: ../src/guestfs-actions.pod:6721
17459 msgid "guestfs_strings"
17460 msgstr ""
17461
17462 #. type: verbatim
17463 #: ../src/guestfs-actions.pod:6723
17464 #, no-wrap
17465 msgid ""
17466 " char **\n"
17467 " guestfs_strings (guestfs_h *g,\n"
17468 "                  const char *path);\n"
17469 "\n"
17470 msgstr ""
17471
17472 #. type: textblock
17473 #: ../src/guestfs-actions.pod:6727 ../fish/guestfish-actions.pod:4469
17474 msgid ""
17475 "This runs the L<strings(1)> command on a file and returns the list of "
17476 "printable strings found."
17477 msgstr ""
17478
17479 #. type: =head2
17480 #: ../src/guestfs-actions.pod:6739
17481 msgid "guestfs_strings_e"
17482 msgstr ""
17483
17484 #. type: verbatim
17485 #: ../src/guestfs-actions.pod:6741
17486 #, no-wrap
17487 msgid ""
17488 " char **\n"
17489 " guestfs_strings_e (guestfs_h *g,\n"
17490 "                    const char *encoding,\n"
17491 "                    const char *path);\n"
17492 "\n"
17493 msgstr ""
17494
17495 #. type: textblock
17496 #: ../src/guestfs-actions.pod:6746
17497 msgid ""
17498 "This is like the C<guestfs_strings> command, but allows you to specify the "
17499 "encoding of strings that are looked for in the source file C<path>."
17500 msgstr ""
17501
17502 #. type: textblock
17503 #: ../src/guestfs-actions.pod:6750 ../fish/guestfish-actions.pod:4483
17504 msgid "Allowed encodings are:"
17505 msgstr ""
17506
17507 #. type: =item
17508 #: ../src/guestfs-actions.pod:6754 ../fish/guestfish-actions.pod:4487
17509 msgid "s"
17510 msgstr ""
17511
17512 #. type: textblock
17513 #: ../src/guestfs-actions.pod:6756
17514 msgid ""
17515 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17516 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17517 msgstr ""
17518
17519 #. type: =item
17520 #: ../src/guestfs-actions.pod:6759 ../fish/guestfish-actions.pod:4492
17521 msgid "S"
17522 msgstr ""
17523
17524 #. type: textblock
17525 #: ../src/guestfs-actions.pod:6761 ../fish/guestfish-actions.pod:4494
17526 msgid "Single 8-bit-byte characters."
17527 msgstr ""
17528
17529 #. type: =item
17530 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4496
17531 msgid "b"
17532 msgstr ""
17533
17534 #. type: textblock
17535 #: ../src/guestfs-actions.pod:6765 ../fish/guestfish-actions.pod:4498
17536 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17537 msgstr ""
17538
17539 #. type: =item
17540 #: ../src/guestfs-actions.pod:6768 ../fish/guestfish-actions.pod:4501
17541 msgid "l (lower case letter L)"
17542 msgstr ""
17543
17544 #. type: textblock
17545 #: ../src/guestfs-actions.pod:6770 ../fish/guestfish-actions.pod:4503
17546 msgid ""
17547 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17548 "examining binaries in Windows guests."
17549 msgstr ""
17550
17551 #. type: =item
17552 #: ../src/guestfs-actions.pod:6773 ../fish/guestfish-actions.pod:4506
17553 msgid "B"
17554 msgstr ""
17555
17556 #. type: textblock
17557 #: ../src/guestfs-actions.pod:6775 ../fish/guestfish-actions.pod:4508
17558 msgid "32-bit big endian such as UCS-4BE."
17559 msgstr ""
17560
17561 #. type: =item
17562 #: ../src/guestfs-actions.pod:6777 ../fish/guestfish-actions.pod:4510
17563 msgid "L"
17564 msgstr ""
17565
17566 #. type: textblock
17567 #: ../src/guestfs-actions.pod:6779 ../fish/guestfish-actions.pod:4512
17568 msgid "32-bit little endian such as UCS-4LE."
17569 msgstr ""
17570
17571 #. type: textblock
17572 #: ../src/guestfs-actions.pod:6783 ../fish/guestfish-actions.pod:4516
17573 msgid "The returned strings are transcoded to UTF-8."
17574 msgstr ""
17575
17576 #. type: =head2
17577 #: ../src/guestfs-actions.pod:6794
17578 msgid "guestfs_swapoff_device"
17579 msgstr ""
17580
17581 #. type: verbatim
17582 #: ../src/guestfs-actions.pod:6796
17583 #, no-wrap
17584 msgid ""
17585 " int\n"
17586 " guestfs_swapoff_device (guestfs_h *g,\n"
17587 "                         const char *device);\n"
17588 "\n"
17589 msgstr ""
17590
17591 #. type: textblock
17592 #: ../src/guestfs-actions.pod:6800
17593 msgid ""
17594 "This command disables the libguestfs appliance swap device or partition "
17595 "named C<device>.  See C<guestfs_swapon_device>."
17596 msgstr ""
17597
17598 #. type: =head2
17599 #: ../src/guestfs-actions.pod:6808
17600 msgid "guestfs_swapoff_file"
17601 msgstr ""
17602
17603 #. type: verbatim
17604 #: ../src/guestfs-actions.pod:6810
17605 #, no-wrap
17606 msgid ""
17607 " int\n"
17608 " guestfs_swapoff_file (guestfs_h *g,\n"
17609 "                       const char *file);\n"
17610 "\n"
17611 msgstr ""
17612
17613 #. type: textblock
17614 #: ../src/guestfs-actions.pod:6814 ../fish/guestfish-actions.pod:4533
17615 msgid "This command disables the libguestfs appliance swap on file."
17616 msgstr ""
17617
17618 #. type: =head2
17619 #: ../src/guestfs-actions.pod:6820
17620 msgid "guestfs_swapoff_label"
17621 msgstr ""
17622
17623 #. type: verbatim
17624 #: ../src/guestfs-actions.pod:6822
17625 #, no-wrap
17626 msgid ""
17627 " int\n"
17628 " guestfs_swapoff_label (guestfs_h *g,\n"
17629 "                        const char *label);\n"
17630 "\n"
17631 msgstr ""
17632
17633 #. type: textblock
17634 #: ../src/guestfs-actions.pod:6826 ../fish/guestfish-actions.pod:4539
17635 msgid ""
17636 "This command disables the libguestfs appliance swap on labeled swap "
17637 "partition."
17638 msgstr ""
17639
17640 #. type: =head2
17641 #: ../src/guestfs-actions.pod:6833
17642 msgid "guestfs_swapoff_uuid"
17643 msgstr ""
17644
17645 #. type: verbatim
17646 #: ../src/guestfs-actions.pod:6835
17647 #, no-wrap
17648 msgid ""
17649 " int\n"
17650 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17651 "                       const char *uuid);\n"
17652 "\n"
17653 msgstr ""
17654
17655 #. type: textblock
17656 #: ../src/guestfs-actions.pod:6839 ../fish/guestfish-actions.pod:4546
17657 msgid ""
17658 "This command disables the libguestfs appliance swap partition with the given "
17659 "UUID."
17660 msgstr ""
17661
17662 #. type: =head2
17663 #: ../src/guestfs-actions.pod:6846
17664 msgid "guestfs_swapon_device"
17665 msgstr ""
17666
17667 #. type: verbatim
17668 #: ../src/guestfs-actions.pod:6848
17669 #, no-wrap
17670 msgid ""
17671 " int\n"
17672 " guestfs_swapon_device (guestfs_h *g,\n"
17673 "                        const char *device);\n"
17674 "\n"
17675 msgstr ""
17676
17677 #. type: textblock
17678 #: ../src/guestfs-actions.pod:6852
17679 msgid ""
17680 "This command enables the libguestfs appliance to use the swap device or "
17681 "partition named C<device>.  The increased memory is made available for all "
17682 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17683 msgstr ""
17684
17685 #. type: textblock
17686 #: ../src/guestfs-actions.pod:6857 ../fish/guestfish-actions.pod:4558
17687 msgid ""
17688 "Note that you should not swap to existing guest swap partitions unless you "
17689 "know what you are doing.  They may contain hibernation information, or other "
17690 "information that the guest doesn't want you to trash.  You also risk leaking "
17691 "information about the host to the guest this way.  Instead, attach a new "
17692 "host device to the guest and swap on that."
17693 msgstr ""
17694
17695 #. type: =head2
17696 #: ../src/guestfs-actions.pod:6868
17697 msgid "guestfs_swapon_file"
17698 msgstr ""
17699
17700 #. type: verbatim
17701 #: ../src/guestfs-actions.pod:6870
17702 #, no-wrap
17703 msgid ""
17704 " int\n"
17705 " guestfs_swapon_file (guestfs_h *g,\n"
17706 "                      const char *file);\n"
17707 "\n"
17708 msgstr ""
17709
17710 #. type: textblock
17711 #: ../src/guestfs-actions.pod:6874
17712 msgid ""
17713 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17714 "notes."
17715 msgstr ""
17716
17717 #. type: =head2
17718 #: ../src/guestfs-actions.pod:6881
17719 msgid "guestfs_swapon_label"
17720 msgstr ""
17721
17722 #. type: verbatim
17723 #: ../src/guestfs-actions.pod:6883
17724 #, no-wrap
17725 msgid ""
17726 " int\n"
17727 " guestfs_swapon_label (guestfs_h *g,\n"
17728 "                       const char *label);\n"
17729 "\n"
17730 msgstr ""
17731
17732 #. type: textblock
17733 #: ../src/guestfs-actions.pod:6887
17734 msgid ""
17735 "This command enables swap to a labeled swap partition.  See "
17736 "C<guestfs_swapon_device> for other notes."
17737 msgstr ""
17738
17739 #. type: =head2
17740 #: ../src/guestfs-actions.pod:6894
17741 msgid "guestfs_swapon_uuid"
17742 msgstr ""
17743
17744 #. type: verbatim
17745 #: ../src/guestfs-actions.pod:6896
17746 #, no-wrap
17747 msgid ""
17748 " int\n"
17749 " guestfs_swapon_uuid (guestfs_h *g,\n"
17750 "                      const char *uuid);\n"
17751 "\n"
17752 msgstr ""
17753
17754 #. type: textblock
17755 #: ../src/guestfs-actions.pod:6900
17756 msgid ""
17757 "This command enables swap to a swap partition with the given UUID.  See "
17758 "C<guestfs_swapon_device> for other notes."
17759 msgstr ""
17760
17761 #. type: =head2
17762 #: ../src/guestfs-actions.pod:6907
17763 msgid "guestfs_sync"
17764 msgstr ""
17765
17766 #. type: verbatim
17767 #: ../src/guestfs-actions.pod:6909
17768 #, no-wrap
17769 msgid ""
17770 " int\n"
17771 " guestfs_sync (guestfs_h *g);\n"
17772 "\n"
17773 msgstr ""
17774
17775 #. type: textblock
17776 #: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4590
17777 msgid ""
17778 "This syncs the disk, so that any writes are flushed through to the "
17779 "underlying disk image."
17780 msgstr ""
17781
17782 #. type: textblock
17783 #: ../src/guestfs-actions.pod:6915 ../fish/guestfish-actions.pod:4593
17784 msgid ""
17785 "You should always call this if you have modified a disk image, before "
17786 "closing the handle."
17787 msgstr ""
17788
17789 #. type: =head2
17790 #: ../src/guestfs-actions.pod:6922
17791 msgid "guestfs_tail"
17792 msgstr ""
17793
17794 #. type: verbatim
17795 #: ../src/guestfs-actions.pod:6924
17796 #, no-wrap
17797 msgid ""
17798 " char **\n"
17799 " guestfs_tail (guestfs_h *g,\n"
17800 "               const char *path);\n"
17801 "\n"
17802 msgstr ""
17803
17804 #. type: textblock
17805 #: ../src/guestfs-actions.pod:6928 ../fish/guestfish-actions.pod:4600
17806 msgid ""
17807 "This command returns up to the last 10 lines of a file as a list of strings."
17808 msgstr ""
17809
17810 #. type: =head2
17811 #: ../src/guestfs-actions.pod:6940
17812 msgid "guestfs_tail_n"
17813 msgstr ""
17814
17815 #. type: verbatim
17816 #: ../src/guestfs-actions.pod:6942
17817 #, no-wrap
17818 msgid ""
17819 " char **\n"
17820 " guestfs_tail_n (guestfs_h *g,\n"
17821 "                 int nrlines,\n"
17822 "                 const char *path);\n"
17823 "\n"
17824 msgstr ""
17825
17826 #. type: textblock
17827 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4610
17828 msgid ""
17829 "If the parameter C<nrlines> is a positive number, this returns the last "
17830 "C<nrlines> lines of the file C<path>."
17831 msgstr ""
17832
17833 #. type: textblock
17834 #: ../src/guestfs-actions.pod:6950 ../fish/guestfish-actions.pod:4613
17835 msgid ""
17836 "If the parameter C<nrlines> is a negative number, this returns lines from "
17837 "the file C<path>, starting with the C<-nrlines>th line."
17838 msgstr ""
17839
17840 #. type: =head2
17841 #: ../src/guestfs-actions.pod:6964
17842 msgid "guestfs_tar_in"
17843 msgstr ""
17844
17845 #. type: verbatim
17846 #: ../src/guestfs-actions.pod:6966
17847 #, no-wrap
17848 msgid ""
17849 " int\n"
17850 " guestfs_tar_in (guestfs_h *g,\n"
17851 "                 const char *tarfile,\n"
17852 "                 const char *directory);\n"
17853 "\n"
17854 msgstr ""
17855
17856 #. type: textblock
17857 #: ../src/guestfs-actions.pod:6971 ../fish/guestfish-actions.pod:4625
17858 msgid ""
17859 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17860 "tar file) into C<directory>."
17861 msgstr ""
17862
17863 #. type: textblock
17864 #: ../src/guestfs-actions.pod:6974
17865 msgid ""
17866 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17867 msgstr ""
17868
17869 #. type: textblock
17870 #: ../src/guestfs-actions.pod:6979 ../src/guestfs-actions.pod:6996
17871 #: ../src/guestfs-actions.pod:7012 ../src/guestfs-actions.pod:7028
17872 msgid "(Added in 1.0.3)"
17873 msgstr ""
17874
17875 #. type: =head2
17876 #: ../src/guestfs-actions.pod:6981
17877 msgid "guestfs_tar_out"
17878 msgstr ""
17879
17880 #. type: verbatim
17881 #: ../src/guestfs-actions.pod:6983
17882 #, no-wrap
17883 msgid ""
17884 " int\n"
17885 " guestfs_tar_out (guestfs_h *g,\n"
17886 "                  const char *directory,\n"
17887 "                  const char *tarfile);\n"
17888 "\n"
17889 msgstr ""
17890
17891 #. type: textblock
17892 #: ../src/guestfs-actions.pod:6988 ../fish/guestfish-actions.pod:4637
17893 msgid ""
17894 "This command packs the contents of C<directory> and downloads it to local "
17895 "file C<tarfile>."
17896 msgstr ""
17897
17898 #. type: textblock
17899 #: ../src/guestfs-actions.pod:6991
17900 msgid ""
17901 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17902 "C<guestfs_txz_out>."
17903 msgstr ""
17904
17905 #. type: =head2
17906 #: ../src/guestfs-actions.pod:6998
17907 msgid "guestfs_tgz_in"
17908 msgstr ""
17909
17910 #. type: verbatim
17911 #: ../src/guestfs-actions.pod:7000
17912 #, no-wrap
17913 msgid ""
17914 " int\n"
17915 " guestfs_tgz_in (guestfs_h *g,\n"
17916 "                 const char *tarball,\n"
17917 "                 const char *directory);\n"
17918 "\n"
17919 msgstr ""
17920
17921 #. type: textblock
17922 #: ../src/guestfs-actions.pod:7005 ../fish/guestfish-actions.pod:4649
17923 msgid ""
17924 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17925 "tar file) into C<directory>."
17926 msgstr ""
17927
17928 #. type: textblock
17929 #: ../src/guestfs-actions.pod:7008
17930 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17931 msgstr ""
17932
17933 #. type: =head2
17934 #: ../src/guestfs-actions.pod:7014
17935 msgid "guestfs_tgz_out"
17936 msgstr ""
17937
17938 #. type: verbatim
17939 #: ../src/guestfs-actions.pod:7016
17940 #, no-wrap
17941 msgid ""
17942 " int\n"
17943 " guestfs_tgz_out (guestfs_h *g,\n"
17944 "                  const char *directory,\n"
17945 "                  const char *tarball);\n"
17946 "\n"
17947 msgstr ""
17948
17949 #. type: textblock
17950 #: ../src/guestfs-actions.pod:7021 ../fish/guestfish-actions.pod:4660
17951 msgid ""
17952 "This command packs the contents of C<directory> and downloads it to local "
17953 "file C<tarball>."
17954 msgstr ""
17955
17956 #. type: textblock
17957 #: ../src/guestfs-actions.pod:7024
17958 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17959 msgstr ""
17960
17961 #. type: =head2
17962 #: ../src/guestfs-actions.pod:7030
17963 msgid "guestfs_touch"
17964 msgstr ""
17965
17966 #. type: verbatim
17967 #: ../src/guestfs-actions.pod:7032
17968 #, no-wrap
17969 msgid ""
17970 " int\n"
17971 " guestfs_touch (guestfs_h *g,\n"
17972 "                const char *path);\n"
17973 "\n"
17974 msgstr ""
17975
17976 #. type: textblock
17977 #: ../src/guestfs-actions.pod:7036 ../fish/guestfish-actions.pod:4671
17978 msgid ""
17979 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17980 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17981 "length file."
17982 msgstr ""
17983
17984 #. type: textblock
17985 #: ../src/guestfs-actions.pod:7040 ../fish/guestfish-actions.pod:4675
17986 msgid ""
17987 "This command only works on regular files, and will fail on other file types "
17988 "such as directories, symbolic links, block special etc."
17989 msgstr ""
17990
17991 #. type: =head2
17992 #: ../src/guestfs-actions.pod:7047
17993 msgid "guestfs_truncate"
17994 msgstr ""
17995
17996 #. type: verbatim
17997 #: ../src/guestfs-actions.pod:7049
17998 #, no-wrap
17999 msgid ""
18000 " int\n"
18001 " guestfs_truncate (guestfs_h *g,\n"
18002 "                   const char *path);\n"
18003 "\n"
18004 msgstr ""
18005
18006 #. type: textblock
18007 #: ../src/guestfs-actions.pod:7053 ../fish/guestfish-actions.pod:4682
18008 msgid ""
18009 "This command truncates C<path> to a zero-length file.  The file must exist "
18010 "already."
18011 msgstr ""
18012
18013 #. type: =head2
18014 #: ../src/guestfs-actions.pod:7060
18015 msgid "guestfs_truncate_size"
18016 msgstr ""
18017
18018 #. type: verbatim
18019 #: ../src/guestfs-actions.pod:7062
18020 #, no-wrap
18021 msgid ""
18022 " int\n"
18023 " guestfs_truncate_size (guestfs_h *g,\n"
18024 "                        const char *path,\n"
18025 "                        int64_t size);\n"
18026 "\n"
18027 msgstr ""
18028
18029 #. type: textblock
18030 #: ../src/guestfs-actions.pod:7067 ../fish/guestfish-actions.pod:4689
18031 msgid ""
18032 "This command truncates C<path> to size C<size> bytes.  The file must exist "
18033 "already."
18034 msgstr ""
18035
18036 #. type: textblock
18037 #: ../src/guestfs-actions.pod:7070
18038 msgid ""
18039 "If the current file size is less than C<size> then the file is extended to "
18040 "the required size with zero bytes.  This creates a sparse file (ie. disk "
18041 "blocks are not allocated for the file until you write to it).  To create a "
18042 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
18043 msgstr ""
18044
18045 #. type: =head2
18046 #: ../src/guestfs-actions.pod:7080
18047 msgid "guestfs_tune2fs_l"
18048 msgstr ""
18049
18050 #. type: verbatim
18051 #: ../src/guestfs-actions.pod:7082
18052 #, no-wrap
18053 msgid ""
18054 " char **\n"
18055 " guestfs_tune2fs_l (guestfs_h *g,\n"
18056 "                    const char *device);\n"
18057 "\n"
18058 msgstr ""
18059
18060 #. type: textblock
18061 #: ../src/guestfs-actions.pod:7086 ../fish/guestfish-actions.pod:4702
18062 msgid ""
18063 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
18064 "C<device>."
18065 msgstr ""
18066
18067 #. type: textblock
18068 #: ../src/guestfs-actions.pod:7089 ../fish/guestfish-actions.pod:4705
18069 msgid ""
18070 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
18071 "for more details.  The list of fields returned isn't clearly defined, and "
18072 "depends on both the version of C<tune2fs> that libguestfs was built against, "
18073 "and the filesystem itself."
18074 msgstr ""
18075
18076 #. type: =head2
18077 #: ../src/guestfs-actions.pod:7102
18078 msgid "guestfs_txz_in"
18079 msgstr ""
18080
18081 #. type: verbatim
18082 #: ../src/guestfs-actions.pod:7104
18083 #, no-wrap
18084 msgid ""
18085 " int\n"
18086 " guestfs_txz_in (guestfs_h *g,\n"
18087 "                 const char *tarball,\n"
18088 "                 const char *directory);\n"
18089 "\n"
18090 msgstr ""
18091
18092 #. type: textblock
18093 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4714
18094 msgid ""
18095 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
18096 "tar file) into C<directory>."
18097 msgstr ""
18098
18099 #. type: =head2
18100 #: ../src/guestfs-actions.pod:7116
18101 msgid "guestfs_txz_out"
18102 msgstr ""
18103
18104 #. type: verbatim
18105 #: ../src/guestfs-actions.pod:7118
18106 #, no-wrap
18107 msgid ""
18108 " int\n"
18109 " guestfs_txz_out (guestfs_h *g,\n"
18110 "                  const char *directory,\n"
18111 "                  const char *tarball);\n"
18112 "\n"
18113 msgstr ""
18114
18115 #. type: textblock
18116 #: ../src/guestfs-actions.pod:7123 ../fish/guestfish-actions.pod:4723
18117 msgid ""
18118 "This command packs the contents of C<directory> and downloads it to local "
18119 "file C<tarball> (as an xz compressed tar archive)."
18120 msgstr ""
18121
18122 #. type: =head2
18123 #: ../src/guestfs-actions.pod:7130
18124 msgid "guestfs_umask"
18125 msgstr ""
18126
18127 #. type: verbatim
18128 #: ../src/guestfs-actions.pod:7132
18129 #, no-wrap
18130 msgid ""
18131 " int\n"
18132 " guestfs_umask (guestfs_h *g,\n"
18133 "                int mask);\n"
18134 "\n"
18135 msgstr ""
18136
18137 #. type: textblock
18138 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4732
18139 msgid ""
18140 "This function sets the mask used for creating new files and device nodes to "
18141 "C<mask & 0777>."
18142 msgstr ""
18143
18144 #. type: textblock
18145 #: ../src/guestfs-actions.pod:7139 ../fish/guestfish-actions.pod:4735
18146 msgid ""
18147 "Typical umask values would be C<022> which creates new files with "
18148 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
18149 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
18150 msgstr ""
18151
18152 #. type: textblock
18153 #: ../src/guestfs-actions.pod:7144 ../fish/guestfish-actions.pod:4740
18154 msgid ""
18155 "The default umask is C<022>.  This is important because it means that "
18156 "directories and device nodes will be created with C<0644> or C<0755> mode "
18157 "even if you specify C<0777>."
18158 msgstr ""
18159
18160 #. type: textblock
18161 #: ../src/guestfs-actions.pod:7148
18162 msgid ""
18163 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
18164 "C<guestfs_mkdir>."
18165 msgstr ""
18166
18167 #. type: textblock
18168 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4747
18169 msgid "This call returns the previous umask."
18170 msgstr ""
18171
18172 #. type: =head2
18173 #: ../src/guestfs-actions.pod:7157
18174 msgid "guestfs_umount"
18175 msgstr ""
18176
18177 #. type: verbatim
18178 #: ../src/guestfs-actions.pod:7159
18179 #, no-wrap
18180 msgid ""
18181 " int\n"
18182 " guestfs_umount (guestfs_h *g,\n"
18183 "                 const char *pathordevice);\n"
18184 "\n"
18185 msgstr ""
18186
18187 #. type: textblock
18188 #: ../src/guestfs-actions.pod:7163 ../fish/guestfish-actions.pod:4755
18189 msgid ""
18190 "This unmounts the given filesystem.  The filesystem may be specified either "
18191 "by its mountpoint (path) or the device which contains the filesystem."
18192 msgstr ""
18193
18194 #. type: =head2
18195 #: ../src/guestfs-actions.pod:7171
18196 msgid "guestfs_umount_all"
18197 msgstr ""
18198
18199 #. type: verbatim
18200 #: ../src/guestfs-actions.pod:7173
18201 #, no-wrap
18202 msgid ""
18203 " int\n"
18204 " guestfs_umount_all (guestfs_h *g);\n"
18205 "\n"
18206 msgstr ""
18207
18208 #. type: textblock
18209 #: ../src/guestfs-actions.pod:7176 ../fish/guestfish-actions.pod:4765
18210 msgid "This unmounts all mounted filesystems."
18211 msgstr ""
18212
18213 #. type: textblock
18214 #: ../src/guestfs-actions.pod:7178 ../fish/guestfish-actions.pod:4767
18215 msgid "Some internal mounts are not unmounted by this call."
18216 msgstr ""
18217
18218 #. type: =head2
18219 #: ../src/guestfs-actions.pod:7184
18220 msgid "guestfs_upload"
18221 msgstr ""
18222
18223 #. type: verbatim
18224 #: ../src/guestfs-actions.pod:7186
18225 #, no-wrap
18226 msgid ""
18227 " int\n"
18228 " guestfs_upload (guestfs_h *g,\n"
18229 "                 const char *filename,\n"
18230 "                 const char *remotefilename);\n"
18231 "\n"
18232 msgstr ""
18233
18234 #. type: textblock
18235 #: ../src/guestfs-actions.pod:7191 ../src/guestfs-actions.pod:7215
18236 #: ../fish/guestfish-actions.pod:4773 ../fish/guestfish-actions.pod:4786
18237 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
18238 msgstr ""
18239
18240 #. type: textblock
18241 #: ../src/guestfs-actions.pod:7196
18242 msgid "See also C<guestfs_download>."
18243 msgstr ""
18244
18245 #. type: =head2
18246 #: ../src/guestfs-actions.pod:7207
18247 msgid "guestfs_upload_offset"
18248 msgstr ""
18249
18250 #. type: verbatim
18251 #: ../src/guestfs-actions.pod:7209
18252 #, no-wrap
18253 msgid ""
18254 " int\n"
18255 " guestfs_upload_offset (guestfs_h *g,\n"
18256 "                        const char *filename,\n"
18257 "                        const char *remotefilename,\n"
18258 "                        int64_t offset);\n"
18259 "\n"
18260 msgstr ""
18261
18262 #. type: textblock
18263 #: ../src/guestfs-actions.pod:7218 ../fish/guestfish-actions.pod:4789
18264 msgid ""
18265 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
18266 "The intention is to overwrite parts of existing files or devices, although "
18267 "if a non-existant file is specified then it is created with a \"hole\" "
18268 "before C<offset>.  The size of the data written is implicit in the size of "
18269 "the source C<filename>."
18270 msgstr ""
18271
18272 #. type: textblock
18273 #: ../src/guestfs-actions.pod:7225
18274 msgid ""
18275 "Note that there is no limit on the amount of data that can be uploaded with "
18276 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
18277 "full amount unless an error occurs."
18278 msgstr ""
18279
18280 #. type: textblock
18281 #: ../src/guestfs-actions.pod:7230
18282 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
18283 msgstr ""
18284
18285 #. type: =head2
18286 #: ../src/guestfs-actions.pod:7241
18287 msgid "guestfs_utimens"
18288 msgstr ""
18289
18290 #. type: verbatim
18291 #: ../src/guestfs-actions.pod:7243
18292 #, no-wrap
18293 msgid ""
18294 " int\n"
18295 " guestfs_utimens (guestfs_h *g,\n"
18296 "                  const char *path,\n"
18297 "                  int64_t atsecs,\n"
18298 "                  int64_t atnsecs,\n"
18299 "                  int64_t mtsecs,\n"
18300 "                  int64_t mtnsecs);\n"
18301 "\n"
18302 msgstr ""
18303
18304 #. type: textblock
18305 #: ../src/guestfs-actions.pod:7251 ../fish/guestfish-actions.pod:4809
18306 msgid "This command sets the timestamps of a file with nanosecond precision."
18307 msgstr ""
18308
18309 #. type: textblock
18310 #: ../src/guestfs-actions.pod:7254 ../fish/guestfish-actions.pod:4812
18311 msgid ""
18312 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
18313 "from the epoch."
18314 msgstr ""
18315
18316 #. type: textblock
18317 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4815
18318 msgid ""
18319 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18320 "nanoseconds from the epoch."
18321 msgstr ""
18322
18323 #. type: textblock
18324 #: ../src/guestfs-actions.pod:7260 ../fish/guestfish-actions.pod:4818
18325 msgid ""
18326 "If the C<*nsecs> field contains the special value C<-1> then the "
18327 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18328 "ignored in this case)."
18329 msgstr ""
18330
18331 #. type: textblock
18332 #: ../src/guestfs-actions.pod:7264 ../fish/guestfish-actions.pod:4822
18333 msgid ""
18334 "If the C<*nsecs> field contains the special value C<-2> then the "
18335 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18336 "in this case)."
18337 msgstr ""
18338
18339 #. type: =head2
18340 #: ../src/guestfs-actions.pod:7272 ../src/guestfs-structs.pod:175
18341 msgid "guestfs_version"
18342 msgstr ""
18343
18344 #. type: verbatim
18345 #: ../src/guestfs-actions.pod:7274
18346 #, no-wrap
18347 msgid ""
18348 " struct guestfs_version *\n"
18349 " guestfs_version (guestfs_h *g);\n"
18350 "\n"
18351 msgstr ""
18352
18353 #. type: textblock
18354 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4830
18355 msgid ""
18356 "Return the libguestfs version number that the program is linked against."
18357 msgstr ""
18358
18359 #. type: textblock
18360 #: ../src/guestfs-actions.pod:7280 ../fish/guestfish-actions.pod:4833
18361 msgid ""
18362 "Note that because of dynamic linking this is not necessarily the version of "
18363 "libguestfs that you compiled against.  You can compile the program, and then "
18364 "at runtime dynamically link against a completely different C<libguestfs.so> "
18365 "library."
18366 msgstr ""
18367
18368 #. type: textblock
18369 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4838
18370 msgid ""
18371 "This call was added in version C<1.0.58>.  In previous versions of "
18372 "libguestfs there was no way to get the version number.  From C code you can "
18373 "use dynamic linker functions to find out if this symbol exists (if it "
18374 "doesn't, then it's an earlier version)."
18375 msgstr ""
18376
18377 #. type: textblock
18378 #: ../src/guestfs-actions.pod:7291 ../fish/guestfish-actions.pod:4844
18379 msgid ""
18380 "The call returns a structure with four elements.  The first three (C<major>, "
18381 "C<minor> and C<release>) are numbers and correspond to the usual version "
18382 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18383 "but may be used for distro-specific information."
18384 msgstr ""
18385
18386 #. type: textblock
18387 #: ../src/guestfs-actions.pod:7297 ../fish/guestfish-actions.pod:4850
18388 msgid ""
18389 "To construct the original version string: C<$major.$minor.$release$extra>"
18390 msgstr ""
18391
18392 #. type: textblock
18393 #: ../src/guestfs-actions.pod:7300 ../fish/guestfish-actions.pod:4853
18394 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18395 msgstr ""
18396
18397 #. type: textblock
18398 #: ../src/guestfs-actions.pod:7302
18399 msgid ""
18400 "I<Note:> Don't use this call to test for availability of features.  In "
18401 "enterprise distributions we backport features from later versions into "
18402 "earlier versions, making this an unreliable way to test for features.  Use "
18403 "C<guestfs_available> instead."
18404 msgstr ""
18405
18406 #. type: textblock
18407 #: ../src/guestfs-actions.pod:7308
18408 msgid ""
18409 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
18410 "error.  I<The caller must call C<guestfs_free_version> after use>."
18411 msgstr ""
18412
18413 #. type: textblock
18414 #: ../src/guestfs-actions.pod:7312
18415 msgid "(Added in 1.0.58)"
18416 msgstr ""
18417
18418 #. type: =head2
18419 #: ../src/guestfs-actions.pod:7314
18420 msgid "guestfs_vfs_label"
18421 msgstr ""
18422
18423 #. type: verbatim
18424 #: ../src/guestfs-actions.pod:7316
18425 #, no-wrap
18426 msgid ""
18427 " char *\n"
18428 " guestfs_vfs_label (guestfs_h *g,\n"
18429 "                    const char *device);\n"
18430 "\n"
18431 msgstr ""
18432
18433 #. type: textblock
18434 #: ../src/guestfs-actions.pod:7320 ../fish/guestfish-actions.pod:4865
18435 msgid "This returns the filesystem label of the filesystem on C<device>."
18436 msgstr ""
18437
18438 #. type: textblock
18439 #: ../src/guestfs-actions.pod:7323 ../fish/guestfish-actions.pod:4868
18440 msgid "If the filesystem is unlabeled, this returns the empty string."
18441 msgstr ""
18442
18443 #. type: textblock
18444 #: ../src/guestfs-actions.pod:7325
18445 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18446 msgstr ""
18447
18448 #. type: textblock
18449 #: ../src/guestfs-actions.pod:7330 ../src/guestfs-actions.pod:7367
18450 msgid "(Added in 1.3.18)"
18451 msgstr ""
18452
18453 #. type: =head2
18454 #: ../src/guestfs-actions.pod:7332
18455 msgid "guestfs_vfs_type"
18456 msgstr ""
18457
18458 #. type: verbatim
18459 #: ../src/guestfs-actions.pod:7334
18460 #, no-wrap
18461 msgid ""
18462 " char *\n"
18463 " guestfs_vfs_type (guestfs_h *g,\n"
18464 "                   const char *device);\n"
18465 "\n"
18466 msgstr ""
18467
18468 #. type: textblock
18469 #: ../src/guestfs-actions.pod:7338 ../fish/guestfish-actions.pod:4876
18470 msgid ""
18471 "This command gets the filesystem type corresponding to the filesystem on "
18472 "C<device>."
18473 msgstr ""
18474
18475 #. type: textblock
18476 #: ../src/guestfs-actions.pod:7341 ../fish/guestfish-actions.pod:4879
18477 msgid ""
18478 "For most filesystems, the result is the name of the Linux VFS module which "
18479 "would be used to mount this filesystem if you mounted it without specifying "
18480 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18481 msgstr ""
18482
18483 #. type: =head2
18484 #: ../src/guestfs-actions.pod:7351
18485 msgid "guestfs_vfs_uuid"
18486 msgstr ""
18487
18488 #. type: verbatim
18489 #: ../src/guestfs-actions.pod:7353
18490 #, no-wrap
18491 msgid ""
18492 " char *\n"
18493 " guestfs_vfs_uuid (guestfs_h *g,\n"
18494 "                   const char *device);\n"
18495 "\n"
18496 msgstr ""
18497
18498 #. type: textblock
18499 #: ../src/guestfs-actions.pod:7357 ../fish/guestfish-actions.pod:4888
18500 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18501 msgstr ""
18502
18503 #. type: textblock
18504 #: ../src/guestfs-actions.pod:7360 ../fish/guestfish-actions.pod:4891
18505 msgid "If the filesystem does not have a UUID, this returns the empty string."
18506 msgstr ""
18507
18508 #. type: textblock
18509 #: ../src/guestfs-actions.pod:7362
18510 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18511 msgstr ""
18512
18513 #. type: =head2
18514 #: ../src/guestfs-actions.pod:7369
18515 msgid "guestfs_vg_activate"
18516 msgstr ""
18517
18518 #. type: verbatim
18519 #: ../src/guestfs-actions.pod:7371
18520 #, no-wrap
18521 msgid ""
18522 " int\n"
18523 " guestfs_vg_activate (guestfs_h *g,\n"
18524 "                      int activate,\n"
18525 "                      char *const *volgroups);\n"
18526 "\n"
18527 msgstr ""
18528
18529 #. type: textblock
18530 #: ../src/guestfs-actions.pod:7376 ../fish/guestfish-actions.pod:4899
18531 msgid ""
18532 "This command activates or (if C<activate> is false) deactivates all logical "
18533 "volumes in the listed volume groups C<volgroups>."
18534 msgstr ""
18535
18536 #. type: textblock
18537 #: ../src/guestfs-actions.pod:7379 ../fish/guestfish-actions.pod:4902
18538 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18539 msgstr ""
18540
18541 #. type: textblock
18542 #: ../src/guestfs-actions.pod:7381 ../fish/guestfish-actions.pod:4904
18543 msgid ""
18544 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18545 "activated or deactivated."
18546 msgstr ""
18547
18548 #. type: =head2
18549 #: ../src/guestfs-actions.pod:7388
18550 msgid "guestfs_vg_activate_all"
18551 msgstr ""
18552
18553 #. type: verbatim
18554 #: ../src/guestfs-actions.pod:7390
18555 #, no-wrap
18556 msgid ""
18557 " int\n"
18558 " guestfs_vg_activate_all (guestfs_h *g,\n"
18559 "                          int activate);\n"
18560 "\n"
18561 msgstr ""
18562
18563 #. type: textblock
18564 #: ../src/guestfs-actions.pod:7394 ../fish/guestfish-actions.pod:4911
18565 msgid ""
18566 "This command activates or (if C<activate> is false) deactivates all logical "
18567 "volumes in all volume groups."
18568 msgstr ""
18569
18570 #. type: textblock
18571 #: ../src/guestfs-actions.pod:7397 ../fish/guestfish-actions.pod:4914
18572 msgid "This command is the same as running C<vgchange -a y|n>"
18573 msgstr ""
18574
18575 #. type: =head2
18576 #: ../src/guestfs-actions.pod:7403
18577 msgid "guestfs_vgcreate"
18578 msgstr ""
18579
18580 #. type: verbatim
18581 #: ../src/guestfs-actions.pod:7405
18582 #, no-wrap
18583 msgid ""
18584 " int\n"
18585 " guestfs_vgcreate (guestfs_h *g,\n"
18586 "                   const char *volgroup,\n"
18587 "                   char *const *physvols);\n"
18588 "\n"
18589 msgstr ""
18590
18591 #. type: textblock
18592 #: ../src/guestfs-actions.pod:7410 ../fish/guestfish-actions.pod:4920
18593 msgid ""
18594 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18595 "of physical volumes C<physvols>."
18596 msgstr ""
18597
18598 #. type: =head2
18599 #: ../src/guestfs-actions.pod:7417
18600 msgid "guestfs_vglvuuids"
18601 msgstr ""
18602
18603 #. type: verbatim
18604 #: ../src/guestfs-actions.pod:7419
18605 #, no-wrap
18606 msgid ""
18607 " char **\n"
18608 " guestfs_vglvuuids (guestfs_h *g,\n"
18609 "                    const char *vgname);\n"
18610 "\n"
18611 msgstr ""
18612
18613 #. type: textblock
18614 #: ../src/guestfs-actions.pod:7423 ../fish/guestfish-actions.pod:4927
18615 msgid ""
18616 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18617 "volumes created in this volume group."
18618 msgstr ""
18619
18620 #. type: textblock
18621 #: ../src/guestfs-actions.pod:7426
18622 msgid ""
18623 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18624 "associate logical volumes and volume groups."
18625 msgstr ""
18626
18627 #. type: textblock
18628 #: ../src/guestfs-actions.pod:7429
18629 msgid "See also C<guestfs_vgpvuuids>."
18630 msgstr ""
18631
18632 #. type: =head2
18633 #: ../src/guestfs-actions.pod:7437
18634 msgid "guestfs_vgpvuuids"
18635 msgstr ""
18636
18637 #. type: verbatim
18638 #: ../src/guestfs-actions.pod:7439
18639 #, no-wrap
18640 msgid ""
18641 " char **\n"
18642 " guestfs_vgpvuuids (guestfs_h *g,\n"
18643 "                    const char *vgname);\n"
18644 "\n"
18645 msgstr ""
18646
18647 #. type: textblock
18648 #: ../src/guestfs-actions.pod:7443 ../fish/guestfish-actions.pod:4939
18649 msgid ""
18650 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18651 "volumes that this volume group resides on."
18652 msgstr ""
18653
18654 #. type: textblock
18655 #: ../src/guestfs-actions.pod:7446
18656 msgid ""
18657 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18658 "associate physical volumes and volume groups."
18659 msgstr ""
18660
18661 #. type: textblock
18662 #: ../src/guestfs-actions.pod:7449
18663 msgid "See also C<guestfs_vglvuuids>."
18664 msgstr ""
18665
18666 #. type: =head2
18667 #: ../src/guestfs-actions.pod:7457
18668 msgid "guestfs_vgremove"
18669 msgstr ""
18670
18671 #. type: verbatim
18672 #: ../src/guestfs-actions.pod:7459
18673 #, no-wrap
18674 msgid ""
18675 " int\n"
18676 " guestfs_vgremove (guestfs_h *g,\n"
18677 "                   const char *vgname);\n"
18678 "\n"
18679 msgstr ""
18680
18681 #. type: textblock
18682 #: ../src/guestfs-actions.pod:7463 ../fish/guestfish-actions.pod:4951
18683 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18684 msgstr ""
18685
18686 #. type: textblock
18687 #: ../src/guestfs-actions.pod:7465 ../fish/guestfish-actions.pod:4953
18688 msgid ""
18689 "This also forcibly removes all logical volumes in the volume group (if any)."
18690 msgstr ""
18691
18692 #. type: =head2
18693 #: ../src/guestfs-actions.pod:7472
18694 msgid "guestfs_vgrename"
18695 msgstr ""
18696
18697 #. type: verbatim
18698 #: ../src/guestfs-actions.pod:7474
18699 #, no-wrap
18700 msgid ""
18701 " int\n"
18702 " guestfs_vgrename (guestfs_h *g,\n"
18703 "                   const char *volgroup,\n"
18704 "                   const char *newvolgroup);\n"
18705 "\n"
18706 msgstr ""
18707
18708 #. type: textblock
18709 #: ../src/guestfs-actions.pod:7479 ../fish/guestfish-actions.pod:4960
18710 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18711 msgstr ""
18712
18713 #. type: =head2
18714 #: ../src/guestfs-actions.pod:7485
18715 msgid "guestfs_vgs"
18716 msgstr ""
18717
18718 #. type: verbatim
18719 #: ../src/guestfs-actions.pod:7487
18720 #, no-wrap
18721 msgid ""
18722 " char **\n"
18723 " guestfs_vgs (guestfs_h *g);\n"
18724 "\n"
18725 msgstr ""
18726
18727 #. type: textblock
18728 #: ../src/guestfs-actions.pod:7490 ../fish/guestfish-actions.pod:4966
18729 msgid ""
18730 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18731 "> command."
18732 msgstr ""
18733
18734 #. type: textblock
18735 #: ../src/guestfs-actions.pod:7493 ../fish/guestfish-actions.pod:4969
18736 msgid ""
18737 "This returns a list of just the volume group names that were detected (eg. "
18738 "C<VolGroup00>)."
18739 msgstr ""
18740
18741 #. type: textblock
18742 #: ../src/guestfs-actions.pod:7496
18743 msgid "See also C<guestfs_vgs_full>."
18744 msgstr ""
18745
18746 #. type: =head2
18747 #: ../src/guestfs-actions.pod:7504
18748 msgid "guestfs_vgs_full"
18749 msgstr ""
18750
18751 #. type: verbatim
18752 #: ../src/guestfs-actions.pod:7506
18753 #, no-wrap
18754 msgid ""
18755 " struct guestfs_lvm_vg_list *\n"
18756 " guestfs_vgs_full (guestfs_h *g);\n"
18757 "\n"
18758 msgstr ""
18759
18760 #. type: textblock
18761 #: ../src/guestfs-actions.pod:7509 ../fish/guestfish-actions.pod:4978
18762 msgid ""
18763 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18764 "> command.  The \"full\" version includes all fields."
18765 msgstr ""
18766
18767 #. type: textblock
18768 #: ../src/guestfs-actions.pod:7512
18769 msgid ""
18770 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18771 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18772 msgstr ""
18773
18774 #. type: =head2
18775 #: ../src/guestfs-actions.pod:7518
18776 msgid "guestfs_vgscan"
18777 msgstr ""
18778
18779 #. type: verbatim
18780 #: ../src/guestfs-actions.pod:7520
18781 #, no-wrap
18782 msgid ""
18783 " int\n"
18784 " guestfs_vgscan (guestfs_h *g);\n"
18785 "\n"
18786 msgstr ""
18787
18788 #. type: textblock
18789 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:4985
18790 msgid ""
18791 "This rescans all block devices and rebuilds the list of LVM physical "
18792 "volumes, volume groups and logical volumes."
18793 msgstr ""
18794
18795 #. type: =head2
18796 #: ../src/guestfs-actions.pod:7530
18797 msgid "guestfs_vguuid"
18798 msgstr ""
18799
18800 #. type: verbatim
18801 #: ../src/guestfs-actions.pod:7532
18802 #, no-wrap
18803 msgid ""
18804 " char *\n"
18805 " guestfs_vguuid (guestfs_h *g,\n"
18806 "                 const char *vgname);\n"
18807 "\n"
18808 msgstr ""
18809
18810 #. type: textblock
18811 #: ../src/guestfs-actions.pod:7536 ../fish/guestfish-actions.pod:4992
18812 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18813 msgstr ""
18814
18815 #. type: =head2
18816 #: ../src/guestfs-actions.pod:7543
18817 msgid "guestfs_wait_ready"
18818 msgstr ""
18819
18820 #. type: verbatim
18821 #: ../src/guestfs-actions.pod:7545
18822 #, no-wrap
18823 msgid ""
18824 " int\n"
18825 " guestfs_wait_ready (guestfs_h *g);\n"
18826 "\n"
18827 msgstr ""
18828
18829 #. type: textblock
18830 #: ../src/guestfs-actions.pod:7548
18831 msgid "This function is a no op."
18832 msgstr ""
18833
18834 #. type: textblock
18835 #: ../src/guestfs-actions.pod:7550
18836 msgid ""
18837 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18838 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18839 "is no longer necessary because C<guestfs_launch> now does the waiting."
18840 msgstr ""
18841
18842 #. type: textblock
18843 #: ../src/guestfs-actions.pod:7555
18844 msgid ""
18845 "If you see any calls to this function in code then you can just remove them, "
18846 "unless you want to retain compatibility with older versions of the API."
18847 msgstr ""
18848
18849 #. type: textblock
18850 #: ../src/guestfs-actions.pod:7561
18851 msgid ""
18852 "This function is deprecated.  In new code, use the C<launch> call instead."
18853 msgstr ""
18854
18855 #. type: =head2
18856 #: ../src/guestfs-actions.pod:7570
18857 msgid "guestfs_wc_c"
18858 msgstr ""
18859
18860 #. type: verbatim
18861 #: ../src/guestfs-actions.pod:7572
18862 #, no-wrap
18863 msgid ""
18864 " int\n"
18865 " guestfs_wc_c (guestfs_h *g,\n"
18866 "               const char *path);\n"
18867 "\n"
18868 msgstr ""
18869
18870 #. type: textblock
18871 #: ../src/guestfs-actions.pod:7576 ../fish/guestfish-actions.pod:4998
18872 msgid ""
18873 "This command counts the characters in a file, using the C<wc -c> external "
18874 "command."
18875 msgstr ""
18876
18877 #. type: =head2
18878 #: ../src/guestfs-actions.pod:7583
18879 msgid "guestfs_wc_l"
18880 msgstr ""
18881
18882 #. type: verbatim
18883 #: ../src/guestfs-actions.pod:7585
18884 #, no-wrap
18885 msgid ""
18886 " int\n"
18887 " guestfs_wc_l (guestfs_h *g,\n"
18888 "               const char *path);\n"
18889 "\n"
18890 msgstr ""
18891
18892 #. type: textblock
18893 #: ../src/guestfs-actions.pod:7589 ../fish/guestfish-actions.pod:5005
18894 msgid ""
18895 "This command counts the lines in a file, using the C<wc -l> external command."
18896 msgstr ""
18897
18898 #. type: =head2
18899 #: ../src/guestfs-actions.pod:7596
18900 msgid "guestfs_wc_w"
18901 msgstr ""
18902
18903 #. type: verbatim
18904 #: ../src/guestfs-actions.pod:7598
18905 #, no-wrap
18906 msgid ""
18907 " int\n"
18908 " guestfs_wc_w (guestfs_h *g,\n"
18909 "               const char *path);\n"
18910 "\n"
18911 msgstr ""
18912
18913 #. type: textblock
18914 #: ../src/guestfs-actions.pod:7602 ../fish/guestfish-actions.pod:5012
18915 msgid ""
18916 "This command counts the words in a file, using the C<wc -w> external command."
18917 msgstr ""
18918
18919 #. type: =head2
18920 #: ../src/guestfs-actions.pod:7609
18921 msgid "guestfs_write"
18922 msgstr ""
18923
18924 #. type: verbatim
18925 #: ../src/guestfs-actions.pod:7611
18926 #, no-wrap
18927 msgid ""
18928 " int\n"
18929 " guestfs_write (guestfs_h *g,\n"
18930 "                const char *path,\n"
18931 "                const char *content,\n"
18932 "                size_t content_size);\n"
18933 "\n"
18934 msgstr ""
18935
18936 #. type: textblock
18937 #: ../src/guestfs-actions.pod:7617 ../fish/guestfish-actions.pod:5019
18938 msgid ""
18939 "This call creates a file called C<path>.  The content of the file is the "
18940 "string C<content> (which can contain any 8 bit data)."
18941 msgstr ""
18942
18943 #. type: =head2
18944 #: ../src/guestfs-actions.pod:7627
18945 msgid "guestfs_write_file"
18946 msgstr ""
18947
18948 #. type: verbatim
18949 #: ../src/guestfs-actions.pod:7629
18950 #, no-wrap
18951 msgid ""
18952 " int\n"
18953 " guestfs_write_file (guestfs_h *g,\n"
18954 "                     const char *path,\n"
18955 "                     const char *content,\n"
18956 "                     int size);\n"
18957 "\n"
18958 msgstr ""
18959
18960 #. type: textblock
18961 #: ../src/guestfs-actions.pod:7635 ../fish/guestfish-actions.pod:5029
18962 msgid ""
18963 "This call creates a file called C<path>.  The contents of the file is the "
18964 "string C<content> (which can contain any 8 bit data), with length C<size>."
18965 msgstr ""
18966
18967 #. type: textblock
18968 #: ../src/guestfs-actions.pod:7639 ../fish/guestfish-actions.pod:5033
18969 msgid ""
18970 "As a special case, if C<size> is C<0> then the length is calculated using "
18971 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18972 msgstr ""
18973
18974 #. type: textblock
18975 #: ../src/guestfs-actions.pod:7643 ../fish/guestfish-actions.pod:5037
18976 msgid ""
18977 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18978 "I<not> work, even if the length is specified."
18979 msgstr ""
18980
18981 #. type: textblock
18982 #: ../src/guestfs-actions.pod:7651 ../fish/guestfish-actions.pod:5043
18983 msgid ""
18984 "This function is deprecated.  In new code, use the C<write> call instead."
18985 msgstr ""
18986
18987 #. type: =head2
18988 #: ../src/guestfs-actions.pod:7660
18989 msgid "guestfs_zegrep"
18990 msgstr ""
18991
18992 #. type: verbatim
18993 #: ../src/guestfs-actions.pod:7662
18994 #, no-wrap
18995 msgid ""
18996 " char **\n"
18997 " guestfs_zegrep (guestfs_h *g,\n"
18998 "                 const char *regex,\n"
18999 "                 const char *path);\n"
19000 "\n"
19001 msgstr ""
19002
19003 #. type: textblock
19004 #: ../src/guestfs-actions.pod:7667 ../fish/guestfish-actions.pod:5054
19005 msgid ""
19006 "This calls the external C<zegrep> program and returns the matching lines."
19007 msgstr ""
19008
19009 #. type: =head2
19010 #: ../src/guestfs-actions.pod:7679
19011 msgid "guestfs_zegrepi"
19012 msgstr ""
19013
19014 #. type: verbatim
19015 #: ../src/guestfs-actions.pod:7681
19016 #, no-wrap
19017 msgid ""
19018 " char **\n"
19019 " guestfs_zegrepi (guestfs_h *g,\n"
19020 "                  const char *regex,\n"
19021 "                  const char *path);\n"
19022 "\n"
19023 msgstr ""
19024
19025 #. type: textblock
19026 #: ../src/guestfs-actions.pod:7686 ../fish/guestfish-actions.pod:5064
19027 msgid ""
19028 "This calls the external C<zegrep -i> program and returns the matching lines."
19029 msgstr ""
19030
19031 #. type: =head2
19032 #: ../src/guestfs-actions.pod:7698
19033 msgid "guestfs_zero"
19034 msgstr ""
19035
19036 #. type: verbatim
19037 #: ../src/guestfs-actions.pod:7700
19038 #, no-wrap
19039 msgid ""
19040 " int\n"
19041 " guestfs_zero (guestfs_h *g,\n"
19042 "               const char *device);\n"
19043 "\n"
19044 msgstr ""
19045
19046 #. type: textblock
19047 #: ../src/guestfs-actions.pod:7704 ../fish/guestfish-actions.pod:5074
19048 msgid "This command writes zeroes over the first few blocks of C<device>."
19049 msgstr ""
19050
19051 #. type: textblock
19052 #: ../src/guestfs-actions.pod:7706 ../fish/guestfish-actions.pod:5076
19053 msgid ""
19054 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
19055 "securely wipe the device).  It should be sufficient to remove any partition "
19056 "tables, filesystem superblocks and so on."
19057 msgstr ""
19058
19059 #. type: textblock
19060 #: ../src/guestfs-actions.pod:7710
19061 msgid ""
19062 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
19063 "C<guestfs_is_zero_device>"
19064 msgstr ""
19065
19066 #. type: =head2
19067 #: ../src/guestfs-actions.pod:7722
19068 msgid "guestfs_zero_device"
19069 msgstr ""
19070
19071 #. type: verbatim
19072 #: ../src/guestfs-actions.pod:7724
19073 #, no-wrap
19074 msgid ""
19075 " int\n"
19076 " guestfs_zero_device (guestfs_h *g,\n"
19077 "                      const char *device);\n"
19078 "\n"
19079 msgstr ""
19080
19081 #. type: textblock
19082 #: ../src/guestfs-actions.pod:7728
19083 msgid ""
19084 "This command writes zeroes over the entire C<device>.  Compare with "
19085 "C<guestfs_zero> which just zeroes the first few blocks of a device."
19086 msgstr ""
19087
19088 #. type: textblock
19089 #: ../src/guestfs-actions.pod:7742
19090 msgid "(Added in 1.3.1)"
19091 msgstr ""
19092
19093 #. type: =head2
19094 #: ../src/guestfs-actions.pod:7744
19095 msgid "guestfs_zerofree"
19096 msgstr ""
19097
19098 #. type: verbatim
19099 #: ../src/guestfs-actions.pod:7746
19100 #, no-wrap
19101 msgid ""
19102 " int\n"
19103 " guestfs_zerofree (guestfs_h *g,\n"
19104 "                   const char *device);\n"
19105 "\n"
19106 msgstr ""
19107
19108 #. type: textblock
19109 #: ../src/guestfs-actions.pod:7750 ../fish/guestfish-actions.pod:5098
19110 msgid ""
19111 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
19112 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
19113 "possible to compress the filesystem more effectively."
19114 msgstr ""
19115
19116 #. type: textblock
19117 #: ../src/guestfs-actions.pod:7755 ../fish/guestfish-actions.pod:5103
19118 msgid "You should B<not> run this program if the filesystem is mounted."
19119 msgstr ""
19120
19121 #. type: textblock
19122 #: ../src/guestfs-actions.pod:7758 ../fish/guestfish-actions.pod:5106
19123 msgid ""
19124 "It is possible that using this program can damage the filesystem or data on "
19125 "the filesystem."
19126 msgstr ""
19127
19128 #. type: =head2
19129 #: ../src/guestfs-actions.pod:7765
19130 msgid "guestfs_zfgrep"
19131 msgstr ""
19132
19133 #. type: verbatim
19134 #: ../src/guestfs-actions.pod:7767
19135 #, no-wrap
19136 msgid ""
19137 " char **\n"
19138 " guestfs_zfgrep (guestfs_h *g,\n"
19139 "                 const char *pattern,\n"
19140 "                 const char *path);\n"
19141 "\n"
19142 msgstr ""
19143
19144 #. type: textblock
19145 #: ../src/guestfs-actions.pod:7772 ../fish/guestfish-actions.pod:5113
19146 msgid ""
19147 "This calls the external C<zfgrep> program and returns the matching lines."
19148 msgstr ""
19149
19150 #. type: =head2
19151 #: ../src/guestfs-actions.pod:7784
19152 msgid "guestfs_zfgrepi"
19153 msgstr ""
19154
19155 #. type: verbatim
19156 #: ../src/guestfs-actions.pod:7786
19157 #, no-wrap
19158 msgid ""
19159 " char **\n"
19160 " guestfs_zfgrepi (guestfs_h *g,\n"
19161 "                  const char *pattern,\n"
19162 "                  const char *path);\n"
19163 "\n"
19164 msgstr ""
19165
19166 #. type: textblock
19167 #: ../src/guestfs-actions.pod:7791 ../fish/guestfish-actions.pod:5123
19168 msgid ""
19169 "This calls the external C<zfgrep -i> program and returns the matching lines."
19170 msgstr ""
19171
19172 #. type: =head2
19173 #: ../src/guestfs-actions.pod:7803
19174 msgid "guestfs_zfile"
19175 msgstr ""
19176
19177 #. type: verbatim
19178 #: ../src/guestfs-actions.pod:7805
19179 #, no-wrap
19180 msgid ""
19181 " char *\n"
19182 " guestfs_zfile (guestfs_h *g,\n"
19183 "                const char *meth,\n"
19184 "                const char *path);\n"
19185 "\n"
19186 msgstr ""
19187
19188 #. type: textblock
19189 #: ../src/guestfs-actions.pod:7810 ../fish/guestfish-actions.pod:5133
19190 msgid ""
19191 "This command runs C<file> after first decompressing C<path> using C<method>."
19192 msgstr ""
19193
19194 #. type: textblock
19195 #: ../src/guestfs-actions.pod:7813 ../fish/guestfish-actions.pod:5136
19196 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
19197 msgstr ""
19198
19199 #. type: textblock
19200 #: ../src/guestfs-actions.pod:7815
19201 msgid ""
19202 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
19203 "files."
19204 msgstr ""
19205
19206 #. type: textblock
19207 #: ../src/guestfs-actions.pod:7821 ../fish/guestfish-actions.pod:5141
19208 msgid ""
19209 "This function is deprecated.  In new code, use the C<file> call instead."
19210 msgstr ""
19211
19212 #. type: =head2
19213 #: ../src/guestfs-actions.pod:7830
19214 msgid "guestfs_zgrep"
19215 msgstr ""
19216
19217 #. type: verbatim
19218 #: ../src/guestfs-actions.pod:7832
19219 #, no-wrap
19220 msgid ""
19221 " char **\n"
19222 " guestfs_zgrep (guestfs_h *g,\n"
19223 "                const char *regex,\n"
19224 "                const char *path);\n"
19225 "\n"
19226 msgstr ""
19227
19228 #. type: textblock
19229 #: ../src/guestfs-actions.pod:7837 ../fish/guestfish-actions.pod:5152
19230 msgid ""
19231 "This calls the external C<zgrep> program and returns the matching lines."
19232 msgstr ""
19233
19234 #. type: =head2
19235 #: ../src/guestfs-actions.pod:7849
19236 msgid "guestfs_zgrepi"
19237 msgstr ""
19238
19239 #. type: verbatim
19240 #: ../src/guestfs-actions.pod:7851
19241 #, no-wrap
19242 msgid ""
19243 " char **\n"
19244 " guestfs_zgrepi (guestfs_h *g,\n"
19245 "                 const char *regex,\n"
19246 "                 const char *path);\n"
19247 "\n"
19248 msgstr ""
19249
19250 #. type: textblock
19251 #: ../src/guestfs-actions.pod:7856 ../fish/guestfish-actions.pod:5162
19252 msgid ""
19253 "This calls the external C<zgrep -i> program and returns the matching lines."
19254 msgstr ""
19255
19256 #. type: =item
19257 #: ../src/guestfs-availability.pod:3
19258 msgid "B<augeas>"
19259 msgstr ""
19260
19261 #. type: textblock
19262 #: ../src/guestfs-availability.pod:5
19263 msgid ""
19264 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
19265 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
19266 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
19267 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
19268 "L</guestfs_aug_save> L</guestfs_aug_set>"
19269 msgstr ""
19270
19271 #. type: =item
19272 #: ../src/guestfs-availability.pod:21
19273 msgid "B<btrfs>"
19274 msgstr ""
19275
19276 #. type: textblock
19277 #: ../src/guestfs-availability.pod:23
19278 msgid "The following functions: L</guestfs_btrfs_filesystem_resize>"
19279 msgstr ""
19280
19281 #. type: =item
19282 #: ../src/guestfs-availability.pod:26
19283 msgid "B<inotify>"
19284 msgstr ""
19285
19286 #. type: textblock
19287 #: ../src/guestfs-availability.pod:28
19288 msgid ""
19289 "The following functions: L</guestfs_inotify_add_watch> L</"
19290 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
19291 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
19292 msgstr ""
19293
19294 #. type: =item
19295 #: ../src/guestfs-availability.pod:36
19296 msgid "B<linuxfsuuid>"
19297 msgstr ""
19298
19299 #. type: textblock
19300 #: ../src/guestfs-availability.pod:38
19301 msgid ""
19302 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
19303 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
19304 msgstr ""
19305
19306 #. type: =item
19307 #: ../src/guestfs-availability.pod:45
19308 msgid "B<linuxmodules>"
19309 msgstr ""
19310
19311 #. type: textblock
19312 #: ../src/guestfs-availability.pod:47
19313 msgid "The following functions: L</guestfs_modprobe>"
19314 msgstr ""
19315
19316 #. type: =item
19317 #: ../src/guestfs-availability.pod:50
19318 msgid "B<linuxxattrs>"
19319 msgstr ""
19320
19321 #. type: textblock
19322 #: ../src/guestfs-availability.pod:52
19323 msgid ""
19324 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
19325 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
19326 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
19327 "guestfs_setxattr>"
19328 msgstr ""
19329
19330 #. type: =item
19331 #: ../src/guestfs-availability.pod:63
19332 msgid "B<luks>"
19333 msgstr ""
19334
19335 #. type: textblock
19336 #: ../src/guestfs-availability.pod:65
19337 msgid ""
19338 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
19339 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
19340 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19341 msgstr ""
19342
19343 #. type: =item
19344 #: ../src/guestfs-availability.pod:74
19345 msgid "B<lvm2>"
19346 msgstr ""
19347
19348 #. type: textblock
19349 #: ../src/guestfs-availability.pod:76
19350 msgid ""
19351 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
19352 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
19353 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
19354 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
19355 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
19356 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
19357 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
19358 msgstr ""
19359
19360 #. type: =item
19361 #: ../src/guestfs-availability.pod:99
19362 msgid "B<mknod>"
19363 msgstr ""
19364
19365 #. type: textblock
19366 #: ../src/guestfs-availability.pod:101
19367 msgid ""
19368 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
19369 "guestfs_mknod_b> L</guestfs_mknod_c>"
19370 msgstr ""
19371
19372 #. type: =item
19373 #: ../src/guestfs-availability.pod:107
19374 msgid "B<ntfs3g>"
19375 msgstr ""
19376
19377 #. type: textblock
19378 #: ../src/guestfs-availability.pod:109
19379 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19380 msgstr ""
19381
19382 #. type: =item
19383 #: ../src/guestfs-availability.pod:112
19384 msgid "B<ntfsprogs>"
19385 msgstr ""
19386
19387 #. type: textblock
19388 #: ../src/guestfs-availability.pod:114
19389 msgid ""
19390 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
19391 "L</guestfs_ntfsresize_size>"
19392 msgstr ""
19393
19394 #. type: =item
19395 #: ../src/guestfs-availability.pod:119
19396 msgid "B<realpath>"
19397 msgstr ""
19398
19399 #. type: textblock
19400 #: ../src/guestfs-availability.pod:121
19401 msgid "The following functions: L</guestfs_realpath>"
19402 msgstr ""
19403
19404 #. type: =item
19405 #: ../src/guestfs-availability.pod:124
19406 msgid "B<scrub>"
19407 msgstr ""
19408
19409 #. type: textblock
19410 #: ../src/guestfs-availability.pod:126
19411 msgid ""
19412 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
19413 "guestfs_scrub_freespace>"
19414 msgstr ""
19415
19416 #. type: =item
19417 #: ../src/guestfs-availability.pod:131
19418 msgid "B<selinux>"
19419 msgstr ""
19420
19421 #. type: textblock
19422 #: ../src/guestfs-availability.pod:133
19423 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19424 msgstr ""
19425
19426 #. type: =item
19427 #: ../src/guestfs-availability.pod:137
19428 msgid "B<xz>"
19429 msgstr ""
19430
19431 #. type: textblock
19432 #: ../src/guestfs-availability.pod:139
19433 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19434 msgstr ""
19435
19436 #. type: =item
19437 #: ../src/guestfs-availability.pod:143
19438 msgid "B<zerofree>"
19439 msgstr ""
19440
19441 #. type: textblock
19442 #: ../src/guestfs-availability.pod:145
19443 msgid "The following functions: L</guestfs_zerofree>"
19444 msgstr ""
19445
19446 #. type: =head2
19447 #: ../src/guestfs-structs.pod:1
19448 msgid "guestfs_int_bool"
19449 msgstr ""
19450
19451 #. type: verbatim
19452 #: ../src/guestfs-structs.pod:3
19453 #, no-wrap
19454 msgid ""
19455 " struct guestfs_int_bool {\n"
19456 "   int32_t i;\n"
19457 "   int32_t b;\n"
19458 " };\n"
19459 " \n"
19460 msgstr ""
19461
19462 #. type: verbatim
19463 #: ../src/guestfs-structs.pod:8
19464 #, no-wrap
19465 msgid ""
19466 " struct guestfs_int_bool_list {\n"
19467 "   uint32_t len; /* Number of elements in list. */\n"
19468 "   struct guestfs_int_bool *val; /* Elements. */\n"
19469 " };\n"
19470 " \n"
19471 msgstr ""
19472
19473 #. type: verbatim
19474 #: ../src/guestfs-structs.pod:13
19475 #, no-wrap
19476 msgid ""
19477 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19478 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19479 "\n"
19480 msgstr ""
19481
19482 #. type: =head2
19483 #: ../src/guestfs-structs.pod:16
19484 msgid "guestfs_lvm_pv"
19485 msgstr ""
19486
19487 #. type: verbatim
19488 #: ../src/guestfs-structs.pod:18
19489 #, no-wrap
19490 msgid ""
19491 " struct guestfs_lvm_pv {\n"
19492 "   char *pv_name;\n"
19493 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19494 "   char pv_uuid[32];\n"
19495 "   char *pv_fmt;\n"
19496 "   uint64_t pv_size;\n"
19497 "   uint64_t dev_size;\n"
19498 "   uint64_t pv_free;\n"
19499 "   uint64_t pv_used;\n"
19500 "   char *pv_attr;\n"
19501 "   int64_t pv_pe_count;\n"
19502 "   int64_t pv_pe_alloc_count;\n"
19503 "   char *pv_tags;\n"
19504 "   uint64_t pe_start;\n"
19505 "   int64_t pv_mda_count;\n"
19506 "   uint64_t pv_mda_free;\n"
19507 " };\n"
19508 " \n"
19509 msgstr ""
19510
19511 #. type: verbatim
19512 #: ../src/guestfs-structs.pod:36
19513 #, no-wrap
19514 msgid ""
19515 " struct guestfs_lvm_pv_list {\n"
19516 "   uint32_t len; /* Number of elements in list. */\n"
19517 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19518 " };\n"
19519 " \n"
19520 msgstr ""
19521
19522 #. type: verbatim
19523 #: ../src/guestfs-structs.pod:41
19524 #, no-wrap
19525 msgid ""
19526 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19527 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19528 "\n"
19529 msgstr ""
19530
19531 #. type: =head2
19532 #: ../src/guestfs-structs.pod:44
19533 msgid "guestfs_lvm_vg"
19534 msgstr ""
19535
19536 #. type: verbatim
19537 #: ../src/guestfs-structs.pod:46
19538 #, no-wrap
19539 msgid ""
19540 " struct guestfs_lvm_vg {\n"
19541 "   char *vg_name;\n"
19542 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19543 "   char vg_uuid[32];\n"
19544 "   char *vg_fmt;\n"
19545 "   char *vg_attr;\n"
19546 "   uint64_t vg_size;\n"
19547 "   uint64_t vg_free;\n"
19548 "   char *vg_sysid;\n"
19549 "   uint64_t vg_extent_size;\n"
19550 "   int64_t vg_extent_count;\n"
19551 "   int64_t vg_free_count;\n"
19552 "   int64_t max_lv;\n"
19553 "   int64_t max_pv;\n"
19554 "   int64_t pv_count;\n"
19555 "   int64_t lv_count;\n"
19556 "   int64_t snap_count;\n"
19557 "   int64_t vg_seqno;\n"
19558 "   char *vg_tags;\n"
19559 "   int64_t vg_mda_count;\n"
19560 "   uint64_t vg_mda_free;\n"
19561 " };\n"
19562 " \n"
19563 msgstr ""
19564
19565 #. type: verbatim
19566 #: ../src/guestfs-structs.pod:69
19567 #, no-wrap
19568 msgid ""
19569 " struct guestfs_lvm_vg_list {\n"
19570 "   uint32_t len; /* Number of elements in list. */\n"
19571 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19572 " };\n"
19573 " \n"
19574 msgstr ""
19575
19576 #. type: verbatim
19577 #: ../src/guestfs-structs.pod:74
19578 #, no-wrap
19579 msgid ""
19580 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19581 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19582 "\n"
19583 msgstr ""
19584
19585 #. type: =head2
19586 #: ../src/guestfs-structs.pod:77
19587 msgid "guestfs_lvm_lv"
19588 msgstr ""
19589
19590 #. type: verbatim
19591 #: ../src/guestfs-structs.pod:79
19592 #, no-wrap
19593 msgid ""
19594 " struct guestfs_lvm_lv {\n"
19595 "   char *lv_name;\n"
19596 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19597 "   char lv_uuid[32];\n"
19598 "   char *lv_attr;\n"
19599 "   int64_t lv_major;\n"
19600 "   int64_t lv_minor;\n"
19601 "   int64_t lv_kernel_major;\n"
19602 "   int64_t lv_kernel_minor;\n"
19603 "   uint64_t lv_size;\n"
19604 "   int64_t seg_count;\n"
19605 "   char *origin;\n"
19606 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19607 "   float snap_percent;\n"
19608 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19609 "   float copy_percent;\n"
19610 "   char *move_pv;\n"
19611 "   char *lv_tags;\n"
19612 "   char *mirror_log;\n"
19613 "   char *modules;\n"
19614 " };\n"
19615 " \n"
19616 msgstr ""
19617
19618 #. type: verbatim
19619 #: ../src/guestfs-structs.pod:101
19620 #, no-wrap
19621 msgid ""
19622 " struct guestfs_lvm_lv_list {\n"
19623 "   uint32_t len; /* Number of elements in list. */\n"
19624 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19625 " };\n"
19626 " \n"
19627 msgstr ""
19628
19629 #. type: verbatim
19630 #: ../src/guestfs-structs.pod:106
19631 #, no-wrap
19632 msgid ""
19633 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19634 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19635 "\n"
19636 msgstr ""
19637
19638 #. type: verbatim
19639 #: ../src/guestfs-structs.pod:111
19640 #, no-wrap
19641 msgid ""
19642 " struct guestfs_stat {\n"
19643 "   int64_t dev;\n"
19644 "   int64_t ino;\n"
19645 "   int64_t mode;\n"
19646 "   int64_t nlink;\n"
19647 "   int64_t uid;\n"
19648 "   int64_t gid;\n"
19649 "   int64_t rdev;\n"
19650 "   int64_t size;\n"
19651 "   int64_t blksize;\n"
19652 "   int64_t blocks;\n"
19653 "   int64_t atime;\n"
19654 "   int64_t mtime;\n"
19655 "   int64_t ctime;\n"
19656 " };\n"
19657 " \n"
19658 msgstr ""
19659
19660 #. type: verbatim
19661 #: ../src/guestfs-structs.pod:127
19662 #, no-wrap
19663 msgid ""
19664 " struct guestfs_stat_list {\n"
19665 "   uint32_t len; /* Number of elements in list. */\n"
19666 "   struct guestfs_stat *val; /* Elements. */\n"
19667 " };\n"
19668 " \n"
19669 msgstr ""
19670
19671 #. type: verbatim
19672 #: ../src/guestfs-structs.pod:132
19673 #, no-wrap
19674 msgid ""
19675 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19676 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19677 "\n"
19678 msgstr ""
19679
19680 #. type: verbatim
19681 #: ../src/guestfs-structs.pod:137
19682 #, no-wrap
19683 msgid ""
19684 " struct guestfs_statvfs {\n"
19685 "   int64_t bsize;\n"
19686 "   int64_t frsize;\n"
19687 "   int64_t blocks;\n"
19688 "   int64_t bfree;\n"
19689 "   int64_t bavail;\n"
19690 "   int64_t files;\n"
19691 "   int64_t ffree;\n"
19692 "   int64_t favail;\n"
19693 "   int64_t fsid;\n"
19694 "   int64_t flag;\n"
19695 "   int64_t namemax;\n"
19696 " };\n"
19697 " \n"
19698 msgstr ""
19699
19700 #. type: verbatim
19701 #: ../src/guestfs-structs.pod:151
19702 #, no-wrap
19703 msgid ""
19704 " struct guestfs_statvfs_list {\n"
19705 "   uint32_t len; /* Number of elements in list. */\n"
19706 "   struct guestfs_statvfs *val; /* Elements. */\n"
19707 " };\n"
19708 " \n"
19709 msgstr ""
19710
19711 #. type: verbatim
19712 #: ../src/guestfs-structs.pod:156
19713 #, no-wrap
19714 msgid ""
19715 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19716 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19717 "\n"
19718 msgstr ""
19719
19720 #. type: =head2
19721 #: ../src/guestfs-structs.pod:159
19722 msgid "guestfs_dirent"
19723 msgstr ""
19724
19725 #. type: verbatim
19726 #: ../src/guestfs-structs.pod:161
19727 #, no-wrap
19728 msgid ""
19729 " struct guestfs_dirent {\n"
19730 "   int64_t ino;\n"
19731 "   char ftyp;\n"
19732 "   char *name;\n"
19733 " };\n"
19734 " \n"
19735 msgstr ""
19736
19737 #. type: verbatim
19738 #: ../src/guestfs-structs.pod:167
19739 #, no-wrap
19740 msgid ""
19741 " struct guestfs_dirent_list {\n"
19742 "   uint32_t len; /* Number of elements in list. */\n"
19743 "   struct guestfs_dirent *val; /* Elements. */\n"
19744 " };\n"
19745 " \n"
19746 msgstr ""
19747
19748 #. type: verbatim
19749 #: ../src/guestfs-structs.pod:172
19750 #, no-wrap
19751 msgid ""
19752 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19753 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19754 "\n"
19755 msgstr ""
19756
19757 #. type: verbatim
19758 #: ../src/guestfs-structs.pod:177
19759 #, no-wrap
19760 msgid ""
19761 " struct guestfs_version {\n"
19762 "   int64_t major;\n"
19763 "   int64_t minor;\n"
19764 "   int64_t release;\n"
19765 "   char *extra;\n"
19766 " };\n"
19767 " \n"
19768 msgstr ""
19769
19770 #. type: verbatim
19771 #: ../src/guestfs-structs.pod:184
19772 #, no-wrap
19773 msgid ""
19774 " struct guestfs_version_list {\n"
19775 "   uint32_t len; /* Number of elements in list. */\n"
19776 "   struct guestfs_version *val; /* Elements. */\n"
19777 " };\n"
19778 " \n"
19779 msgstr ""
19780
19781 #. type: verbatim
19782 #: ../src/guestfs-structs.pod:189
19783 #, no-wrap
19784 msgid ""
19785 " void guestfs_free_version (struct guestfs_free_version *);\n"
19786 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19787 "\n"
19788 msgstr ""
19789
19790 #. type: =head2
19791 #: ../src/guestfs-structs.pod:192
19792 msgid "guestfs_xattr"
19793 msgstr ""
19794
19795 #. type: verbatim
19796 #: ../src/guestfs-structs.pod:194
19797 #, no-wrap
19798 msgid ""
19799 " struct guestfs_xattr {\n"
19800 "   char *attrname;\n"
19801 "   /* The next two fields describe a byte array. */\n"
19802 "   uint32_t attrval_len;\n"
19803 "   char *attrval;\n"
19804 " };\n"
19805 " \n"
19806 msgstr ""
19807
19808 #. type: verbatim
19809 #: ../src/guestfs-structs.pod:201
19810 #, no-wrap
19811 msgid ""
19812 " struct guestfs_xattr_list {\n"
19813 "   uint32_t len; /* Number of elements in list. */\n"
19814 "   struct guestfs_xattr *val; /* Elements. */\n"
19815 " };\n"
19816 " \n"
19817 msgstr ""
19818
19819 #. type: verbatim
19820 #: ../src/guestfs-structs.pod:206
19821 #, no-wrap
19822 msgid ""
19823 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19824 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19825 "\n"
19826 msgstr ""
19827
19828 #. type: =head2
19829 #: ../src/guestfs-structs.pod:209
19830 msgid "guestfs_inotify_event"
19831 msgstr ""
19832
19833 #. type: verbatim
19834 #: ../src/guestfs-structs.pod:211
19835 #, no-wrap
19836 msgid ""
19837 " struct guestfs_inotify_event {\n"
19838 "   int64_t in_wd;\n"
19839 "   uint32_t in_mask;\n"
19840 "   uint32_t in_cookie;\n"
19841 "   char *in_name;\n"
19842 " };\n"
19843 " \n"
19844 msgstr ""
19845
19846 #. type: verbatim
19847 #: ../src/guestfs-structs.pod:218
19848 #, no-wrap
19849 msgid ""
19850 " struct guestfs_inotify_event_list {\n"
19851 "   uint32_t len; /* Number of elements in list. */\n"
19852 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19853 " };\n"
19854 " \n"
19855 msgstr ""
19856
19857 #. type: verbatim
19858 #: ../src/guestfs-structs.pod:223
19859 #, no-wrap
19860 msgid ""
19861 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19862 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19863 "\n"
19864 msgstr ""
19865
19866 #. type: =head2
19867 #: ../src/guestfs-structs.pod:226
19868 msgid "guestfs_partition"
19869 msgstr ""
19870
19871 #. type: verbatim
19872 #: ../src/guestfs-structs.pod:228
19873 #, no-wrap
19874 msgid ""
19875 " struct guestfs_partition {\n"
19876 "   int32_t part_num;\n"
19877 "   uint64_t part_start;\n"
19878 "   uint64_t part_end;\n"
19879 "   uint64_t part_size;\n"
19880 " };\n"
19881 " \n"
19882 msgstr ""
19883
19884 #. type: verbatim
19885 #: ../src/guestfs-structs.pod:235
19886 #, no-wrap
19887 msgid ""
19888 " struct guestfs_partition_list {\n"
19889 "   uint32_t len; /* Number of elements in list. */\n"
19890 "   struct guestfs_partition *val; /* Elements. */\n"
19891 " };\n"
19892 " \n"
19893 msgstr ""
19894
19895 #. type: verbatim
19896 #: ../src/guestfs-structs.pod:240
19897 #, no-wrap
19898 msgid ""
19899 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19900 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19901 "\n"
19902 msgstr ""
19903
19904 #. type: =head2
19905 #: ../src/guestfs-structs.pod:243
19906 msgid "guestfs_application"
19907 msgstr ""
19908
19909 #. type: verbatim
19910 #: ../src/guestfs-structs.pod:245
19911 #, no-wrap
19912 msgid ""
19913 " struct guestfs_application {\n"
19914 "   char *app_name;\n"
19915 "   char *app_display_name;\n"
19916 "   int32_t app_epoch;\n"
19917 "   char *app_version;\n"
19918 "   char *app_release;\n"
19919 "   char *app_install_path;\n"
19920 "   char *app_trans_path;\n"
19921 "   char *app_publisher;\n"
19922 "   char *app_url;\n"
19923 "   char *app_source_package;\n"
19924 "   char *app_summary;\n"
19925 "   char *app_description;\n"
19926 " };\n"
19927 " \n"
19928 msgstr ""
19929
19930 #. type: verbatim
19931 #: ../src/guestfs-structs.pod:260
19932 #, no-wrap
19933 msgid ""
19934 " struct guestfs_application_list {\n"
19935 "   uint32_t len; /* Number of elements in list. */\n"
19936 "   struct guestfs_application *val; /* Elements. */\n"
19937 " };\n"
19938 " \n"
19939 msgstr ""
19940
19941 #. type: verbatim
19942 #: ../src/guestfs-structs.pod:265
19943 #, no-wrap
19944 msgid ""
19945 " void guestfs_free_application (struct guestfs_free_application *);\n"
19946 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19947 "\n"
19948 msgstr ""
19949
19950 #. type: textblock
19951 #: ../fish/guestfish.pod:5
19952 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19953 msgstr ""
19954
19955 #. type: verbatim
19956 #: ../fish/guestfish.pod:9
19957 #, no-wrap
19958 msgid ""
19959 " guestfish [--options] [commands]\n"
19960 "\n"
19961 msgstr ""
19962
19963 #. type: verbatim
19964 #: ../fish/guestfish.pod:11
19965 #, no-wrap
19966 msgid ""
19967 " guestfish\n"
19968 "\n"
19969 msgstr ""
19970
19971 #. type: verbatim
19972 #: ../fish/guestfish.pod:13
19973 #, no-wrap
19974 msgid ""
19975 " guestfish [--ro|--rw] -a disk.img\n"
19976 "\n"
19977 msgstr ""
19978
19979 #. type: verbatim
19980 #: ../fish/guestfish.pod:15
19981 #, no-wrap
19982 msgid ""
19983 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19984 "\n"
19985 msgstr ""
19986
19987 #. type: verbatim
19988 #: ../fish/guestfish.pod:17
19989 #, no-wrap
19990 msgid ""
19991 " guestfish -d libvirt-domain\n"
19992 "\n"
19993 msgstr ""
19994
19995 #. type: verbatim
19996 #: ../fish/guestfish.pod:19
19997 #, no-wrap
19998 msgid ""
19999 " guestfish [--ro|--rw] -a disk.img -i\n"
20000 "\n"
20001 msgstr ""
20002
20003 #. type: verbatim
20004 #: ../fish/guestfish.pod:21
20005 #, no-wrap
20006 msgid ""
20007 " guestfish -d libvirt-domain -i\n"
20008 "\n"
20009 msgstr ""
20010
20011 #. type: =head1
20012 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
20013 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
20014 msgid "WARNING"
20015 msgstr ""
20016
20017 #. type: textblock
20018 #: ../fish/guestfish.pod:25
20019 msgid ""
20020 "Using guestfish in read/write mode on live virtual machines can be "
20021 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
20022 "option to use guestfish safely if the disk image or virtual machine might be "
20023 "live."
20024 msgstr ""
20025
20026 #. type: textblock
20027 #: ../fish/guestfish.pod:32
20028 msgid ""
20029 "Guestfish is a shell and command-line tool for examining and modifying "
20030 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
20031 "functionality of the guestfs API, see L<guestfs(3)>."
20032 msgstr ""
20033
20034 #. type: textblock
20035 #: ../fish/guestfish.pod:36
20036 msgid ""
20037 "Guestfish gives you structured access to the libguestfs API, from shell "
20038 "scripts or the command line or interactively.  If you want to rescue a "
20039 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
20040 "command."
20041 msgstr ""
20042
20043 #. type: =head1
20044 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949
20045 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
20046 msgid "EXAMPLES"
20047 msgstr ""
20048
20049 #. type: =head2
20050 #: ../fish/guestfish.pod:43
20051 msgid "As an interactive shell"
20052 msgstr ""
20053
20054 #. type: verbatim
20055 #: ../fish/guestfish.pod:45
20056 #, no-wrap
20057 msgid ""
20058 " $ guestfish\n"
20059 " \n"
20060 msgstr ""
20061
20062 #. type: verbatim
20063 #: ../fish/guestfish.pod:47
20064 #, no-wrap
20065 msgid ""
20066 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
20067 " editing virtual machine filesystems.\n"
20068 " \n"
20069 msgstr ""
20070
20071 #. type: verbatim
20072 #: ../fish/guestfish.pod:50
20073 #, no-wrap
20074 msgid ""
20075 " Type: 'help' for a list of commands\n"
20076 "       'man' to read the manual\n"
20077 "       'quit' to quit the shell\n"
20078 " \n"
20079 msgstr ""
20080
20081 #. type: verbatim
20082 #: ../fish/guestfish.pod:54
20083 #, no-wrap
20084 msgid ""
20085 " ><fs> add-ro disk.img\n"
20086 " ><fs> run\n"
20087 " ><fs> list-filesystems\n"
20088 " /dev/sda1: ext4\n"
20089 " /dev/vg_guest/lv_root: ext4\n"
20090 " /dev/vg_guest/lv_swap: swap\n"
20091 " ><fs> mount /dev/vg_guest/lv_root /\n"
20092 " ><fs> cat /etc/fstab\n"
20093 " # /etc/fstab\n"
20094 " # Created by anaconda\n"
20095 " [...]\n"
20096 " ><fs> exit\n"
20097 "\n"
20098 msgstr ""
20099
20100 #. type: =head2
20101 #: ../fish/guestfish.pod:67
20102 msgid "From shell scripts"
20103 msgstr ""
20104
20105 #. type: textblock
20106 #: ../fish/guestfish.pod:69
20107 msgid "Create a new C</etc/motd> file in a guest or disk image:"
20108 msgstr ""
20109
20110 #. type: verbatim
20111 #: ../fish/guestfish.pod:71
20112 #, no-wrap
20113 msgid ""
20114 " guestfish <<_EOF_\n"
20115 " add disk.img\n"
20116 " run\n"
20117 " mount /dev/vg_guest/lv_root /\n"
20118 " write /etc/motd \"Welcome, new users\"\n"
20119 " _EOF_\n"
20120 "\n"
20121 msgstr ""
20122
20123 #. type: textblock
20124 #: ../fish/guestfish.pod:78
20125 msgid "List the LVM logical volumes in a disk image:"
20126 msgstr ""
20127
20128 #. type: verbatim
20129 #: ../fish/guestfish.pod:80
20130 #, no-wrap
20131 msgid ""
20132 " guestfish -a disk.img --ro <<_EOF_\n"
20133 " run\n"
20134 " lvs\n"
20135 " _EOF_\n"
20136 "\n"
20137 msgstr ""
20138
20139 #. type: textblock
20140 #: ../fish/guestfish.pod:85
20141 msgid "List all the filesystems in a disk image:"
20142 msgstr ""
20143
20144 #. type: verbatim
20145 #: ../fish/guestfish.pod:87
20146 #, no-wrap
20147 msgid ""
20148 " guestfish -a disk.img --ro <<_EOF_\n"
20149 " run\n"
20150 " list-filesystems\n"
20151 " _EOF_\n"
20152 "\n"
20153 msgstr ""
20154
20155 #. type: =head2
20156 #: ../fish/guestfish.pod:92
20157 msgid "On one command line"
20158 msgstr ""
20159
20160 #. type: textblock
20161 #: ../fish/guestfish.pod:94
20162 msgid "Update C</etc/resolv.conf> in a guest:"
20163 msgstr ""
20164
20165 #. type: verbatim
20166 #: ../fish/guestfish.pod:96
20167 #, no-wrap
20168 msgid ""
20169 " guestfish \\\n"
20170 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
20171 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
20172 "\n"
20173 msgstr ""
20174
20175 #. type: textblock
20176 #: ../fish/guestfish.pod:100
20177 msgid "Edit C</boot/grub/grub.conf> interactively:"
20178 msgstr ""
20179
20180 #. type: verbatim
20181 #: ../fish/guestfish.pod:102
20182 #, no-wrap
20183 msgid ""
20184 " guestfish --rw --add disk.img \\\n"
20185 "   --mount /dev/vg_guest/lv_root \\\n"
20186 "   --mount /dev/sda1:/boot \\\n"
20187 "   edit /boot/grub/grub.conf\n"
20188 "\n"
20189 msgstr ""
20190
20191 #. type: =head2
20192 #: ../fish/guestfish.pod:107
20193 msgid "Mount disks automatically"
20194 msgstr ""
20195
20196 #. type: textblock
20197 #: ../fish/guestfish.pod:109
20198 msgid ""
20199 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
20200 msgstr ""
20201
20202 #. type: verbatim
20203 #: ../fish/guestfish.pod:112
20204 #, no-wrap
20205 msgid ""
20206 " guestfish --ro -a disk.img -i cat /etc/group\n"
20207 "\n"
20208 msgstr ""
20209
20210 #. type: verbatim
20211 #: ../fish/guestfish.pod:114
20212 #, no-wrap
20213 msgid ""
20214 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
20215 "\n"
20216 msgstr ""
20217
20218 #. type: textblock
20219 #: ../fish/guestfish.pod:116
20220 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
20221 msgstr ""
20222
20223 #. type: verbatim
20224 #: ../fish/guestfish.pod:118
20225 #, no-wrap
20226 msgid ""
20227 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
20228 "\n"
20229 msgstr ""
20230
20231 #. type: =head2
20232 #: ../fish/guestfish.pod:120
20233 msgid "As a script interpreter"
20234 msgstr ""
20235
20236 #. type: textblock
20237 #: ../fish/guestfish.pod:122
20238 msgid "Create a 100MB disk containing an ext2-formatted partition:"
20239 msgstr ""
20240
20241 #. type: verbatim
20242 #: ../fish/guestfish.pod:124
20243 #, no-wrap
20244 msgid ""
20245 " #!/usr/bin/guestfish -f\n"
20246 " sparse test1.img 100M\n"
20247 " run\n"
20248 " part-disk /dev/sda mbr\n"
20249 " mkfs ext2 /dev/sda1\n"
20250 "\n"
20251 msgstr ""
20252
20253 #. type: =head2
20254 #: ../fish/guestfish.pod:130
20255 msgid "Start with a prepared disk"
20256 msgstr ""
20257
20258 #. type: textblock
20259 #: ../fish/guestfish.pod:132
20260 msgid ""
20261 "An alternate way to create a 100MB disk called C<test1.img> containing a "
20262 "single ext2-formatted partition:"
20263 msgstr ""
20264
20265 #. type: verbatim
20266 #: ../fish/guestfish.pod:135
20267 #, no-wrap
20268 msgid ""
20269 " guestfish -N fs\n"
20270 "\n"
20271 msgstr ""
20272
20273 #. type: textblock
20274 #: ../fish/guestfish.pod:137
20275 msgid "To list what is available do:"
20276 msgstr ""
20277
20278 #. type: verbatim
20279 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
20280 #, no-wrap
20281 msgid ""
20282 " guestfish -N help | less\n"
20283 "\n"
20284 msgstr ""
20285
20286 #. type: =head2
20287 #: ../fish/guestfish.pod:141
20288 msgid "Remote control"
20289 msgstr ""
20290
20291 #. type: verbatim
20292 #: ../fish/guestfish.pod:143
20293 #, no-wrap
20294 msgid ""
20295 " eval \"`guestfish --listen`\"\n"
20296 " guestfish --remote add-ro disk.img\n"
20297 " guestfish --remote run\n"
20298 " guestfish --remote lvs\n"
20299 "\n"
20300 msgstr ""
20301
20302 #. type: =head1
20303 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
20304 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
20305 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
20306 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
20307 msgid "OPTIONS"
20308 msgstr ""
20309
20310 #. type: =item
20311 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
20312 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
20313 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
20314 #: ../tools/virt-list-partitions.pl:62
20315 msgid "B<--help>"
20316 msgstr ""
20317
20318 #. type: textblock
20319 #: ../fish/guestfish.pod:154
20320 msgid "Displays general help on options."
20321 msgstr ""
20322
20323 #. type: =item
20324 #: ../fish/guestfish.pod:156
20325 msgid "B<-h>"
20326 msgstr ""
20327
20328 #. type: =item
20329 #: ../fish/guestfish.pod:158
20330 msgid "B<--cmd-help>"
20331 msgstr ""
20332
20333 #. type: textblock
20334 #: ../fish/guestfish.pod:160
20335 msgid "Lists all available guestfish commands."
20336 msgstr ""
20337
20338 #. type: =item
20339 #: ../fish/guestfish.pod:162
20340 msgid "B<-h cmd>"
20341 msgstr ""
20342
20343 #. type: =item
20344 #: ../fish/guestfish.pod:164
20345 msgid "B<--cmd-help cmd>"
20346 msgstr ""
20347
20348 #. type: textblock
20349 #: ../fish/guestfish.pod:166
20350 msgid "Displays detailed help on a single command C<cmd>."
20351 msgstr ""
20352
20353 #. type: =item
20354 #: ../fish/guestfish.pod:168
20355 msgid "B<-a image>"
20356 msgstr ""
20357
20358 #. type: =item
20359 #: ../fish/guestfish.pod:170
20360 msgid "B<--add image>"
20361 msgstr ""
20362
20363 #. type: textblock
20364 #: ../fish/guestfish.pod:172
20365 msgid "Add a block device or virtual machine image to the shell."
20366 msgstr ""
20367
20368 #. type: textblock
20369 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20370 msgid ""
20371 "The format of the disk image is auto-detected.  To override this and force a "
20372 "particular format use the I<--format=..> option."
20373 msgstr ""
20374
20375 #. type: textblock
20376 #: ../fish/guestfish.pod:177
20377 msgid ""
20378 "Using this flag is mostly equivalent to using the C<add> command, with "
20379 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20380 "the I<--format=...> flag was given."
20381 msgstr ""
20382
20383 #. type: =item
20384 #: ../fish/guestfish.pod:181
20385 msgid "B<-c URI>"
20386 msgstr ""
20387
20388 #. type: =item
20389 #: ../fish/guestfish.pod:183
20390 msgid "B<--connect URI>"
20391 msgstr ""
20392
20393 #. type: textblock
20394 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20395 msgid ""
20396 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20397 "URI to use.  The default is to use the default libvirt connection."
20398 msgstr ""
20399
20400 #. type: =item
20401 #: ../fish/guestfish.pod:189
20402 msgid "B<--csh>"
20403 msgstr ""
20404
20405 #. type: textblock
20406 #: ../fish/guestfish.pod:191
20407 msgid ""
20408 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20409 "section L</REMOTE CONTROL AND CSH> below."
20410 msgstr ""
20411
20412 #. type: =item
20413 #: ../fish/guestfish.pod:194
20414 msgid "B<-d libvirt-domain>"
20415 msgstr ""
20416
20417 #. type: =item
20418 #: ../fish/guestfish.pod:196
20419 msgid "B<--domain libvirt-domain>"
20420 msgstr ""
20421
20422 #. type: textblock
20423 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20424 msgid ""
20425 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20426 "used, then any libvirt domain can be used.  However in write mode, only "
20427 "libvirt domains which are shut down can be named here."
20428 msgstr ""
20429
20430 #. type: textblock
20431 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20432 msgid "Domain UUIDs can be used instead of names."
20433 msgstr ""
20434
20435 #. type: textblock
20436 #: ../fish/guestfish.pod:204
20437 msgid ""
20438 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20439 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20440 "if the I<--format:...> flag was given."
20441 msgstr ""
20442
20443 #. type: =item
20444 #: ../fish/guestfish.pod:208
20445 msgid "B<-D>"
20446 msgstr ""
20447
20448 #. type: =item
20449 #: ../fish/guestfish.pod:210
20450 msgid "B<--no-dest-paths>"
20451 msgstr ""
20452
20453 #. type: textblock
20454 #: ../fish/guestfish.pod:212
20455 msgid ""
20456 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20457 "to hit the tab key to complete paths on the guest filesystem, but this "
20458 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20459 "allow this feature to be disabled."
20460 msgstr ""
20461
20462 #. type: =item
20463 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20464 msgid "B<--echo-keys>"
20465 msgstr ""
20466
20467 #. type: textblock
20468 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20469 msgid ""
20470 "When prompting for keys and passphrases, guestfish normally turns echoing "
20471 "off so you cannot see what you are typing.  If you are not worried about "
20472 "Tempest attacks and there is no one else in the room you can specify this "
20473 "flag to see what you are typing."
20474 msgstr ""
20475
20476 #. type: =item
20477 #: ../fish/guestfish.pod:224
20478 msgid "B<-f file>"
20479 msgstr ""
20480
20481 #. type: =item
20482 #: ../fish/guestfish.pod:226
20483 msgid "B<--file file>"
20484 msgstr ""
20485
20486 #. type: textblock
20487 #: ../fish/guestfish.pod:228
20488 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20489 msgstr ""
20490
20491 #. type: verbatim
20492 #: ../fish/guestfish.pod:231
20493 #, no-wrap
20494 msgid ""
20495 " #!/usr/bin/guestfish -f\n"
20496 "\n"
20497 msgstr ""
20498
20499 #. type: =item
20500 #: ../fish/guestfish.pod:233
20501 msgid "B<--format=raw|qcow2|..>"
20502 msgstr ""
20503
20504 #. type: =item
20505 #: ../fish/guestfish.pod:235
20506 msgid "B<--format>"
20507 msgstr ""
20508
20509 #. type: textblock
20510 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20511 msgid ""
20512 "The default for the I<-a> option is to auto-detect the format of the disk "
20513 "image.  Using this forces the disk format for I<-a> options which follow on "
20514 "the command line.  Using I<--format> with no argument switches back to auto-"
20515 "detection for subsequent I<-a> options."
20516 msgstr ""
20517
20518 #. type: verbatim
20519 #: ../fish/guestfish.pod:244
20520 #, no-wrap
20521 msgid ""
20522 " guestfish --format=raw -a disk.img\n"
20523 "\n"
20524 msgstr ""
20525
20526 #. type: textblock
20527 #: ../fish/guestfish.pod:246
20528 msgid "forces raw format (no auto-detection) for C<disk.img>."
20529 msgstr ""
20530
20531 #. type: verbatim
20532 #: ../fish/guestfish.pod:248
20533 #, no-wrap
20534 msgid ""
20535 " guestfish --format=raw -a disk.img --format -a another.img\n"
20536 "\n"
20537 msgstr ""
20538
20539 #. type: textblock
20540 #: ../fish/guestfish.pod:250
20541 msgid ""
20542 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20543 "detection for C<another.img>."
20544 msgstr ""
20545
20546 #. type: textblock
20547 #: ../fish/guestfish.pod:253
20548 msgid ""
20549 "If you have untrusted raw-format guest disk images, you should use this "
20550 "option to specify the disk format.  This avoids a possible security problem "
20551 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20552 msgstr ""
20553
20554 #. type: =item
20555 #: ../fish/guestfish.pod:258
20556 msgid "B<-i>"
20557 msgstr ""
20558
20559 #. type: =item
20560 #: ../fish/guestfish.pod:260
20561 msgid "B<--inspector>"
20562 msgstr ""
20563
20564 #. type: textblock
20565 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20566 msgid ""
20567 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20568 "system and mount filesystems as they would be mounted on the real virtual "
20569 "machine."
20570 msgstr ""
20571
20572 #. type: textblock
20573 #: ../fish/guestfish.pod:266
20574 msgid "Typical usage is either:"
20575 msgstr ""
20576
20577 #. type: verbatim
20578 #: ../fish/guestfish.pod:268
20579 #, no-wrap
20580 msgid ""
20581 " guestfish -d myguest -i\n"
20582 "\n"
20583 msgstr ""
20584
20585 #. type: textblock
20586 #: ../fish/guestfish.pod:270
20587 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20588 msgstr ""
20589
20590 #. type: verbatim
20591 #: ../fish/guestfish.pod:272
20592 #, no-wrap
20593 msgid ""
20594 " guestfish --ro -d myguest -i\n"
20595 "\n"
20596 msgstr ""
20597
20598 #. type: textblock
20599 #: ../fish/guestfish.pod:274
20600 msgid "(for active domains, readonly), or specify the block device directly:"
20601 msgstr ""
20602
20603 #. type: verbatim
20604 #: ../fish/guestfish.pod:276
20605 #, no-wrap
20606 msgid ""
20607 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20608 "\n"
20609 msgstr ""
20610
20611 #. type: textblock
20612 #: ../fish/guestfish.pod:278
20613 msgid ""
20614 "Note that the command line syntax changed slightly over older versions of "
20615 "guestfish.  You can still use the old syntax:"
20616 msgstr ""
20617
20618 #. type: verbatim
20619 #: ../fish/guestfish.pod:281
20620 #, no-wrap
20621 msgid ""
20622 " guestfish [--ro] -i disk.img\n"
20623 "\n"
20624 msgstr ""
20625
20626 #. type: verbatim
20627 #: ../fish/guestfish.pod:283
20628 #, no-wrap
20629 msgid ""
20630 " guestfish [--ro] -i libvirt-domain\n"
20631 "\n"
20632 msgstr ""
20633
20634 #. type: textblock
20635 #: ../fish/guestfish.pod:285
20636 msgid ""
20637 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20638 "then using other commands to mount the filesystems that were found."
20639 msgstr ""
20640
20641 #. type: =item
20642 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20643 msgid "B<--keys-from-stdin>"
20644 msgstr ""
20645
20646 #. type: textblock
20647 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20648 msgid ""
20649 "Read key or passphrase parameters from stdin.  The default is to try to read "
20650 "passphrases from the user by opening C</dev/tty>."
20651 msgstr ""
20652
20653 #. type: =item
20654 #: ../fish/guestfish.pod:294
20655 msgid "B<--listen>"
20656 msgstr ""
20657
20658 #. type: textblock
20659 #: ../fish/guestfish.pod:296
20660 msgid ""
20661 "Fork into the background and listen for remote commands.  See section L</"
20662 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20663 msgstr ""
20664
20665 #. type: =item
20666 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20667 msgid "B<--live>"
20668 msgstr ""
20669
20670 #. type: textblock
20671 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20672 msgid ""
20673 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20674 "ATTACHING TO RUNNING DAEMONS>)."
20675 msgstr ""
20676
20677 #. type: =item
20678 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20679 msgid "B<-m dev[:mountpoint[:options]]>"
20680 msgstr ""
20681
20682 #. type: =item
20683 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20684 msgid "B<--mount dev[:mountpoint[:options]]>"
20685 msgstr ""
20686
20687 #. type: textblock
20688 #: ../fish/guestfish.pod:308
20689 msgid "Mount the named partition or logical volume on the given mountpoint."
20690 msgstr ""
20691
20692 #. type: textblock
20693 #: ../fish/guestfish.pod:310
20694 msgid "If the mountpoint is omitted, it defaults to C</>."
20695 msgstr ""
20696
20697 #. type: textblock
20698 #: ../fish/guestfish.pod:312
20699 msgid "You have to mount something on C</> before most commands will work."
20700 msgstr ""
20701
20702 #. type: textblock
20703 #: ../fish/guestfish.pod:314
20704 msgid ""
20705 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20706 "launched."
20707 msgstr ""
20708
20709 #. type: textblock
20710 #: ../fish/guestfish.pod:317
20711 msgid ""
20712 "If you don't know what filesystems a disk image contains, you can either run "
20713 "guestfish without this option, then list the partitions, filesystems and LVs "
20714 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20715 "commands), or you can use the L<virt-filesystems(1)> program."
20716 msgstr ""
20717
20718 #. type: textblock
20719 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20720 msgid ""
20721 "The third (and rarely used) part of the mount parameter is the list of mount "
20722 "options used to mount the underlying filesystem.  If this is not given, then "
20723 "the mount options are either the empty string or C<ro> (the latter if the "
20724 "I<--ro> flag is used).  By specifying the mount options, you override this "
20725 "default choice.  Probably the only time you would use this is to enable ACLs "
20726 "and/or extended attributes if the filesystem can support them:"
20727 msgstr ""
20728
20729 #. type: verbatim
20730 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20731 #, no-wrap
20732 msgid ""
20733 " -m /dev/sda1:/:acl,user_xattr\n"
20734 "\n"
20735 msgstr ""
20736
20737 #. type: textblock
20738 #: ../fish/guestfish.pod:333
20739 msgid "Using this flag is equivalent to using the C<mount-options> command."
20740 msgstr ""
20741
20742 #. type: =item
20743 #: ../fish/guestfish.pod:335
20744 msgid "B<-n>"
20745 msgstr ""
20746
20747 #. type: =item
20748 #: ../fish/guestfish.pod:337
20749 msgid "B<--no-sync>"
20750 msgstr ""
20751
20752 #. type: textblock
20753 #: ../fish/guestfish.pod:339
20754 msgid ""
20755 "Disable autosync.  This is enabled by default.  See the discussion of "
20756 "autosync in the L<guestfs(3)> manpage."
20757 msgstr ""
20758
20759 #. type: =item
20760 #: ../fish/guestfish.pod:342
20761 msgid "B<-N type>"
20762 msgstr ""
20763
20764 #. type: =item
20765 #: ../fish/guestfish.pod:344
20766 msgid "B<--new type>"
20767 msgstr ""
20768
20769 #. type: =item
20770 #: ../fish/guestfish.pod:346
20771 msgid "B<-N help>"
20772 msgstr ""
20773
20774 #. type: textblock
20775 #: ../fish/guestfish.pod:348
20776 msgid ""
20777 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20778 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20779 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20780 "IMAGES> below."
20781 msgstr ""
20782
20783 #. type: =item
20784 #: ../fish/guestfish.pod:353
20785 msgid "B<--progress-bars>"
20786 msgstr ""
20787
20788 #. type: textblock
20789 #: ../fish/guestfish.pod:355
20790 msgid "Enable progress bars, even when guestfish is used non-interactively."
20791 msgstr ""
20792
20793 #. type: textblock
20794 #: ../fish/guestfish.pod:357
20795 msgid ""
20796 "Progress bars are enabled by default when guestfish is used as an "
20797 "interactive shell."
20798 msgstr ""
20799
20800 #. type: =item
20801 #: ../fish/guestfish.pod:360
20802 msgid "B<--no-progress-bars>"
20803 msgstr ""
20804
20805 #. type: textblock
20806 #: ../fish/guestfish.pod:362
20807 msgid "Disable progress bars."
20808 msgstr ""
20809
20810 #. type: =item
20811 #: ../fish/guestfish.pod:364
20812 msgid "B<--remote[=pid]>"
20813 msgstr ""
20814
20815 #. type: textblock
20816 #: ../fish/guestfish.pod:366
20817 msgid ""
20818 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20819 "CONTROL GUESTFISH OVER A SOCKET> below."
20820 msgstr ""
20821
20822 #. type: =item
20823 #: ../fish/guestfish.pod:369
20824 msgid "B<-r>"
20825 msgstr ""
20826
20827 #. type: =item
20828 #: ../fish/guestfish.pod:371
20829 msgid "B<--ro>"
20830 msgstr ""
20831
20832 #. type: textblock
20833 #: ../fish/guestfish.pod:373
20834 msgid ""
20835 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20836 "mounts are done read-only."
20837 msgstr ""
20838
20839 #. type: textblock
20840 #: ../fish/guestfish.pod:376
20841 msgid ""
20842 "The option must always be used if the disk image or virtual machine might be "
20843 "running, and is generally recommended in cases where you don't need write "
20844 "access to the disk."
20845 msgstr ""
20846
20847 #. type: textblock
20848 #: ../fish/guestfish.pod:380
20849 msgid ""
20850 "Note that prepared disk images created with I<-N> are not affected by this "
20851 "option.  Also commands like C<add> are not affected - you have to specify "
20852 "the C<readonly:true> option explicitly if you need it."
20853 msgstr ""
20854
20855 #. type: textblock
20856 #: ../fish/guestfish.pod:384
20857 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20858 msgstr ""
20859
20860 #. type: =item
20861 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20862 msgid "B<--selinux>"
20863 msgstr ""
20864
20865 #. type: textblock
20866 #: ../fish/guestfish.pod:388
20867 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20868 msgstr ""
20869
20870 #. type: =item
20871 #: ../fish/guestfish.pod:390
20872 msgid "B<-v>"
20873 msgstr ""
20874
20875 #. type: =item
20876 #: ../fish/guestfish.pod:392
20877 msgid "B<--verbose>"
20878 msgstr ""
20879
20880 #. type: textblock
20881 #: ../fish/guestfish.pod:394
20882 msgid ""
20883 "Enable very verbose messages.  This is particularly useful if you find a bug."
20884 msgstr ""
20885
20886 #. type: =item
20887 #: ../fish/guestfish.pod:397
20888 msgid "B<-V>"
20889 msgstr ""
20890
20891 #. type: =item
20892 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
20893 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
20894 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
20895 msgid "B<--version>"
20896 msgstr ""
20897
20898 #. type: textblock
20899 #: ../fish/guestfish.pod:401
20900 msgid "Display the guestfish / libguestfs version number and exit."
20901 msgstr ""
20902
20903 #. type: =item
20904 #: ../fish/guestfish.pod:403
20905 msgid "B<-w>"
20906 msgstr ""
20907
20908 #. type: =item
20909 #: ../fish/guestfish.pod:405
20910 msgid "B<--rw>"
20911 msgstr ""
20912
20913 #. type: textblock
20914 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20915 msgid ""
20916 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20917 "mounts are done read-write."
20918 msgstr ""
20919
20920 #. type: textblock
20921 #: ../fish/guestfish.pod:410
20922 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20923 msgstr ""
20924
20925 #. type: =item
20926 #: ../fish/guestfish.pod:412
20927 msgid "B<-x>"
20928 msgstr ""
20929
20930 #. type: textblock
20931 #: ../fish/guestfish.pod:414
20932 msgid "Echo each command before executing it."
20933 msgstr ""
20934
20935 #. type: =head1
20936 #: ../fish/guestfish.pod:418
20937 msgid "COMMANDS ON COMMAND LINE"
20938 msgstr ""
20939
20940 #. type: textblock
20941 #: ../fish/guestfish.pod:420
20942 msgid ""
20943 "Any additional (non-option) arguments are treated as commands to execute."
20944 msgstr ""
20945
20946 #. type: textblock
20947 #: ../fish/guestfish.pod:423
20948 msgid ""
20949 "Commands to execute should be separated by a colon (C<:>), where the colon "
20950 "is a separate parameter.  Thus:"
20951 msgstr ""
20952
20953 #. type: verbatim
20954 #: ../fish/guestfish.pod:426
20955 #, no-wrap
20956 msgid ""
20957 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20958 "\n"
20959 msgstr ""
20960
20961 #. type: textblock
20962 #: ../fish/guestfish.pod:428
20963 msgid ""
20964 "If there are no additional arguments, then we enter a shell, either an "
20965 "interactive shell with a prompt (if the input is a terminal) or a non-"
20966 "interactive shell."
20967 msgstr ""
20968
20969 #. type: textblock
20970 #: ../fish/guestfish.pod:432
20971 msgid ""
20972 "In either command line mode or non-interactive shell, the first command that "
20973 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20974 "prompt) if a command fails, you can continue to enter commands."
20975 msgstr ""
20976
20977 #. type: =head1
20978 #: ../fish/guestfish.pod:437
20979 msgid "USING launch (OR run)"
20980 msgstr ""
20981
20982 #. type: textblock
20983 #: ../fish/guestfish.pod:439
20984 msgid ""
20985 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20986 "then launch it, then mount any disks you need, and finally issue actions/"
20987 "commands.  So the general order of the day is:"
20988 msgstr ""
20989
20990 #. type: textblock
20991 #: ../fish/guestfish.pod:447
20992 msgid "add or -a/--add"
20993 msgstr ""
20994
20995 #. type: textblock
20996 #: ../fish/guestfish.pod:451
20997 msgid "launch (aka run)"
20998 msgstr ""
20999
21000 #. type: textblock
21001 #: ../fish/guestfish.pod:455
21002 msgid "mount or -m/--mount"
21003 msgstr ""
21004
21005 #. type: textblock
21006 #: ../fish/guestfish.pod:459
21007 msgid "any other commands"
21008 msgstr ""
21009
21010 #. type: textblock
21011 #: ../fish/guestfish.pod:463
21012 msgid ""
21013 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
21014 "guest before mounting or performing any other commands."
21015 msgstr ""
21016
21017 #. type: textblock
21018 #: ../fish/guestfish.pod:466
21019 msgid ""
21020 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
21021 "I<--new> options were given then C<run> is done automatically, simply "
21022 "because guestfish can't perform the action you asked for without doing this."
21023 msgstr ""
21024
21025 #. type: =head1
21026 #: ../fish/guestfish.pod:471
21027 msgid "OPENING DISKS FOR READ AND WRITE"
21028 msgstr ""
21029
21030 #. type: textblock
21031 #: ../fish/guestfish.pod:473
21032 msgid ""
21033 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
21034 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
21035 "I<-i> and I<-m> open disk images read-only or for writing."
21036 msgstr ""
21037
21038 #. type: textblock
21039 #: ../fish/guestfish.pod:478
21040 msgid ""
21041 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
21042 "opening disk images supplied on the command line for write.  To open a disk "
21043 "image read-only you have to do I<-a image --ro>."
21044 msgstr ""
21045
21046 #. type: textblock
21047 #: ../fish/guestfish.pod:482
21048 msgid ""
21049 "This matters: If you accidentally open a live VM disk image writable then "
21050 "you will cause irreversible disk corruption."
21051 msgstr ""
21052
21053 #. type: textblock
21054 #: ../fish/guestfish.pod:485
21055 msgid ""
21056 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
21057 "images will be opened read-only.  You will have to either specify "
21058 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
21059 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
21060 "access for disk images specified by those other command line options."
21061 msgstr ""
21062
21063 #. type: textblock
21064 #: ../fish/guestfish.pod:492
21065 msgid ""
21066 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
21067 "which does nothing (it is already the default).  However it is highly "
21068 "recommended that you use this option to indicate that you need write access, "
21069 "and prepare your scripts for the day when this option will be required for "
21070 "write access."
21071 msgstr ""
21072
21073 #. type: textblock
21074 #: ../fish/guestfish.pod:498
21075 msgid ""
21076 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
21077 "other libguestfs program apart from guestfish and guestmount."
21078 msgstr ""
21079
21080 #. type: =head1
21081 #: ../fish/guestfish.pod:501
21082 msgid "QUOTING"
21083 msgstr ""
21084
21085 #. type: textblock
21086 #: ../fish/guestfish.pod:503
21087 msgid ""
21088 "You can quote ordinary parameters using either single or double quotes.  For "
21089 "example:"
21090 msgstr ""
21091
21092 #. type: verbatim
21093 #: ../fish/guestfish.pod:506
21094 #, no-wrap
21095 msgid ""
21096 " add \"file with a space.img\"\n"
21097 "\n"
21098 msgstr ""
21099
21100 #. type: verbatim
21101 #: ../fish/guestfish.pod:508
21102 #, no-wrap
21103 msgid ""
21104 " rm '/file name'\n"
21105 "\n"
21106 msgstr ""
21107
21108 #. type: verbatim
21109 #: ../fish/guestfish.pod:510
21110 #, no-wrap
21111 msgid ""
21112 " rm '/\"'\n"
21113 "\n"
21114 msgstr ""
21115
21116 #. type: textblock
21117 #: ../fish/guestfish.pod:512
21118 msgid ""
21119 "A few commands require a list of strings to be passed.  For these, use a "
21120 "whitespace-separated list, enclosed in quotes.  Strings containing "
21121 "whitespace to be passed through must be enclosed in single quotes.  A "
21122 "literal single quote must be escaped with a backslash."
21123 msgstr ""
21124
21125 #. type: verbatim
21126 #: ../fish/guestfish.pod:517
21127 #, no-wrap
21128 msgid ""
21129 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
21130 " command \"/bin/echo 'foo      bar'\"\n"
21131 " command \"/bin/echo \\'foo\\'\"\n"
21132 "\n"
21133 msgstr ""
21134
21135 #. type: =head1
21136 #: ../fish/guestfish.pod:521
21137 msgid "OPTIONAL ARGUMENTS"
21138 msgstr ""
21139
21140 #. type: textblock
21141 #: ../fish/guestfish.pod:523
21142 msgid ""
21143 "Some commands take optional arguments.  These arguments appear in this "
21144 "documentation as C<[argname:..]>.  You can use them as in these examples:"
21145 msgstr ""
21146
21147 #. type: verbatim
21148 #: ../fish/guestfish.pod:527
21149 #, no-wrap
21150 msgid ""
21151 " add-drive-opts filename\n"
21152 "\n"
21153 msgstr ""
21154
21155 #. type: verbatim
21156 #: ../fish/guestfish.pod:529
21157 #, no-wrap
21158 msgid ""
21159 " add-drive-opts filename readonly:true\n"
21160 "\n"
21161 msgstr ""
21162
21163 #. type: verbatim
21164 #: ../fish/guestfish.pod:531
21165 #, no-wrap
21166 msgid ""
21167 " add-drive-opts filename format:qcow2 readonly:false\n"
21168 "\n"
21169 msgstr ""
21170
21171 #. type: textblock
21172 #: ../fish/guestfish.pod:533
21173 msgid ""
21174 "Each optional argument can appear at most once.  All optional arguments must "
21175 "appear after the required ones."
21176 msgstr ""
21177
21178 #. type: =head1
21179 #: ../fish/guestfish.pod:536
21180 msgid "NUMBERS"
21181 msgstr ""
21182
21183 #. type: textblock
21184 #: ../fish/guestfish.pod:538
21185 msgid ""
21186 "This section applies to all commands which can take integers as parameters."
21187 msgstr ""
21188
21189 #. type: =head2
21190 #: ../fish/guestfish.pod:541
21191 msgid "SIZE SUFFIX"
21192 msgstr ""
21193
21194 #. type: textblock
21195 #: ../fish/guestfish.pod:543
21196 msgid ""
21197 "When the command takes a parameter measured in bytes, you can use one of the "
21198 "following suffixes to specify kilobytes, megabytes and larger sizes:"
21199 msgstr ""
21200
21201 #. type: =item
21202 #: ../fish/guestfish.pod:549
21203 msgid "B<k> or B<K> or B<KiB>"
21204 msgstr ""
21205
21206 #. type: textblock
21207 #: ../fish/guestfish.pod:551
21208 msgid "The size in kilobytes (multiplied by 1024)."
21209 msgstr ""
21210
21211 #. type: =item
21212 #: ../fish/guestfish.pod:553
21213 msgid "B<KB>"
21214 msgstr ""
21215
21216 #. type: textblock
21217 #: ../fish/guestfish.pod:555
21218 msgid "The size in SI 1000 byte units."
21219 msgstr ""
21220
21221 #. type: =item
21222 #: ../fish/guestfish.pod:557
21223 msgid "B<M> or B<MiB>"
21224 msgstr ""
21225
21226 #. type: textblock
21227 #: ../fish/guestfish.pod:559
21228 msgid "The size in megabytes (multiplied by 1048576)."
21229 msgstr ""
21230
21231 #. type: =item
21232 #: ../fish/guestfish.pod:561
21233 msgid "B<MB>"
21234 msgstr ""
21235
21236 #. type: textblock
21237 #: ../fish/guestfish.pod:563
21238 msgid "The size in SI 1000000 byte units."
21239 msgstr ""
21240
21241 #. type: =item
21242 #: ../fish/guestfish.pod:565
21243 msgid "B<G> or B<GiB>"
21244 msgstr ""
21245
21246 #. type: textblock
21247 #: ../fish/guestfish.pod:567
21248 msgid "The size in gigabytes (multiplied by 2**30)."
21249 msgstr ""
21250
21251 #. type: =item
21252 #: ../fish/guestfish.pod:569
21253 msgid "B<GB>"
21254 msgstr ""
21255
21256 #. type: textblock
21257 #: ../fish/guestfish.pod:571
21258 msgid "The size in SI 10**9 byte units."
21259 msgstr ""
21260
21261 #. type: =item
21262 #: ../fish/guestfish.pod:573
21263 msgid "B<T> or B<TiB>"
21264 msgstr ""
21265
21266 #. type: textblock
21267 #: ../fish/guestfish.pod:575
21268 msgid "The size in terabytes (multiplied by 2**40)."
21269 msgstr ""
21270
21271 #. type: =item
21272 #: ../fish/guestfish.pod:577
21273 msgid "B<TB>"
21274 msgstr ""
21275
21276 #. type: textblock
21277 #: ../fish/guestfish.pod:579
21278 msgid "The size in SI 10**12 byte units."
21279 msgstr ""
21280
21281 #. type: =item
21282 #: ../fish/guestfish.pod:581
21283 msgid "B<P> or B<PiB>"
21284 msgstr ""
21285
21286 #. type: textblock
21287 #: ../fish/guestfish.pod:583
21288 msgid "The size in petabytes (multiplied by 2**50)."
21289 msgstr ""
21290
21291 #. type: =item
21292 #: ../fish/guestfish.pod:585
21293 msgid "B<PB>"
21294 msgstr ""
21295
21296 #. type: textblock
21297 #: ../fish/guestfish.pod:587
21298 msgid "The size in SI 10**15 byte units."
21299 msgstr ""
21300
21301 #. type: =item
21302 #: ../fish/guestfish.pod:589
21303 msgid "B<E> or B<EiB>"
21304 msgstr ""
21305
21306 #. type: textblock
21307 #: ../fish/guestfish.pod:591
21308 msgid "The size in exabytes (multiplied by 2**60)."
21309 msgstr ""
21310
21311 #. type: =item
21312 #: ../fish/guestfish.pod:593
21313 msgid "B<EB>"
21314 msgstr ""
21315
21316 #. type: textblock
21317 #: ../fish/guestfish.pod:595
21318 msgid "The size in SI 10**18 byte units."
21319 msgstr ""
21320
21321 #. type: =item
21322 #: ../fish/guestfish.pod:597
21323 msgid "B<Z> or B<ZiB>"
21324 msgstr ""
21325
21326 #. type: textblock
21327 #: ../fish/guestfish.pod:599
21328 msgid "The size in zettabytes (multiplied by 2**70)."
21329 msgstr ""
21330
21331 #. type: =item
21332 #: ../fish/guestfish.pod:601
21333 msgid "B<ZB>"
21334 msgstr ""
21335
21336 #. type: textblock
21337 #: ../fish/guestfish.pod:603
21338 msgid "The size in SI 10**21 byte units."
21339 msgstr ""
21340
21341 #. type: =item
21342 #: ../fish/guestfish.pod:605
21343 msgid "B<Y> or B<YiB>"
21344 msgstr ""
21345
21346 #. type: textblock
21347 #: ../fish/guestfish.pod:607
21348 msgid "The size in yottabytes (multiplied by 2**80)."
21349 msgstr ""
21350
21351 #. type: =item
21352 #: ../fish/guestfish.pod:609
21353 msgid "B<YB>"
21354 msgstr ""
21355
21356 #. type: textblock
21357 #: ../fish/guestfish.pod:611
21358 msgid "The size in SI 10**24 byte units."
21359 msgstr ""
21360
21361 #. type: verbatim
21362 #: ../fish/guestfish.pod:617
21363 #, no-wrap
21364 msgid ""
21365 " truncate-size /file 1G\n"
21366 "\n"
21367 msgstr ""
21368
21369 #. type: textblock
21370 #: ../fish/guestfish.pod:619
21371 msgid "would truncate the file to 1 gigabyte."
21372 msgstr ""
21373
21374 #. type: textblock
21375 #: ../fish/guestfish.pod:621
21376 msgid ""
21377 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21378 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21379 "suffix will probably not do what you expect."
21380 msgstr ""
21381
21382 #. type: =head2
21383 #: ../fish/guestfish.pod:625
21384 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21385 msgstr ""
21386
21387 #. type: textblock
21388 #: ../fish/guestfish.pod:627
21389 msgid ""
21390 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21391 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21392 msgstr ""
21393
21394 #. type: verbatim
21395 #: ../fish/guestfish.pod:630
21396 #, no-wrap
21397 msgid ""
21398 " 1234      decimal number 1234\n"
21399 " 02322     octal number, equivalent to decimal 1234\n"
21400 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21401 "\n"
21402 msgstr ""
21403
21404 #. type: textblock
21405 #: ../fish/guestfish.pod:634
21406 msgid ""
21407 "When using the C<chmod> command, you almost always want to specify an octal "
21408 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21409 "L<chmod(1)> program):"
21410 msgstr ""
21411
21412 #. type: verbatim
21413 #: ../fish/guestfish.pod:638
21414 #, no-wrap
21415 msgid ""
21416 " chmod 0777 /public  # OK\n"
21417 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21418 "\n"
21419 msgstr ""
21420
21421 #. type: textblock
21422 #: ../fish/guestfish.pod:641
21423 msgid ""
21424 "Commands that return numbers usually print them in decimal, but some "
21425 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21426 "octal, preceeded by C<0>)."
21427 msgstr ""
21428
21429 #. type: =head1
21430 #: ../fish/guestfish.pod:645
21431 msgid "WILDCARDS AND GLOBBING"
21432 msgstr ""
21433
21434 #. type: textblock
21435 #: ../fish/guestfish.pod:647
21436 msgid ""
21437 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
21438 "(globbing) by default.  So for example the following will not do what you "
21439 "expect:"
21440 msgstr ""
21441
21442 #. type: verbatim
21443 #: ../fish/guestfish.pod:651
21444 #, no-wrap
21445 msgid ""
21446 " rm-rf /home/*\n"
21447 "\n"
21448 msgstr ""
21449
21450 #. type: textblock
21451 #: ../fish/guestfish.pod:653
21452 msgid ""
21453 "Assuming you don't have a directory called literally C</home/*> then the "
21454 "above command will return an error."
21455 msgstr ""
21456
21457 #. type: textblock
21458 #: ../fish/guestfish.pod:656
21459 msgid "To perform wildcard expansion, use the C<glob> command."
21460 msgstr ""
21461
21462 #. type: verbatim
21463 #: ../fish/guestfish.pod:658
21464 #, no-wrap
21465 msgid ""
21466 " glob rm-rf /home/*\n"
21467 "\n"
21468 msgstr ""
21469
21470 #. type: textblock
21471 #: ../fish/guestfish.pod:660
21472 msgid ""
21473 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
21474 "many times), equivalent to:"
21475 msgstr ""
21476
21477 #. type: verbatim
21478 #: ../fish/guestfish.pod:663
21479 #, no-wrap
21480 msgid ""
21481 " rm-rf /home/jim\n"
21482 " rm-rf /home/joe\n"
21483 " rm-rf /home/mary\n"
21484 "\n"
21485 msgstr ""
21486
21487 #. type: textblock
21488 #: ../fish/guestfish.pod:667
21489 msgid "C<glob> only works on simple guest paths and not on device names."
21490 msgstr ""
21491
21492 #. type: textblock
21493 #: ../fish/guestfish.pod:669
21494 msgid ""
21495 "If you have several parameters, each containing a wildcard, then glob will "
21496 "perform a Cartesian product."
21497 msgstr ""
21498
21499 #. type: =head1
21500 #: ../fish/guestfish.pod:672
21501 msgid "COMMENTS"
21502 msgstr ""
21503
21504 #. type: textblock
21505 #: ../fish/guestfish.pod:674
21506 msgid ""
21507 "Any line which starts with a I<#> character is treated as a comment and "
21508 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21509 "a command.  For example:"
21510 msgstr ""
21511
21512 #. type: verbatim
21513 #: ../fish/guestfish.pod:678
21514 #, no-wrap
21515 msgid ""
21516 " # this is a comment\n"
21517 "         # this is a comment\n"
21518 " foo # NOT a comment\n"
21519 "\n"
21520 msgstr ""
21521
21522 #. type: textblock
21523 #: ../fish/guestfish.pod:682
21524 msgid "Blank lines are also ignored."
21525 msgstr ""
21526
21527 #. type: =head1
21528 #: ../fish/guestfish.pod:684
21529 msgid "RUNNING COMMANDS LOCALLY"
21530 msgstr ""
21531
21532 #. type: textblock
21533 #: ../fish/guestfish.pod:686
21534 msgid ""
21535 "Any line which starts with a I<!> character is treated as a command sent to "
21536 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21537 msgstr ""
21538
21539 #. type: verbatim
21540 #: ../fish/guestfish.pod:690
21541 #, no-wrap
21542 msgid ""
21543 " !mkdir local\n"
21544 " tgz-out /remote local/remote-data.tar.gz\n"
21545 "\n"
21546 msgstr ""
21547
21548 #. type: textblock
21549 #: ../fish/guestfish.pod:693
21550 msgid ""
21551 "will create a directory C<local> on the host, and then export the contents "
21552 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21553 "(See C<tgz-out>)."
21554 msgstr ""
21555
21556 #. type: textblock
21557 #: ../fish/guestfish.pod:697
21558 msgid ""
21559 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21560 "effect, due to the way that subprocesses work in Unix."
21561 msgstr ""
21562
21563 #. type: =head2
21564 #: ../fish/guestfish.pod:700
21565 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21566 msgstr ""
21567
21568 #. type: textblock
21569 #: ../fish/guestfish.pod:702
21570 msgid ""
21571 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21572 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21573 "and executed as guestfish commands."
21574 msgstr ""
21575
21576 #. type: textblock
21577 #: ../fish/guestfish.pod:706
21578 msgid ""
21579 "Thus you can use shell script to construct arbitrary guestfish commands "
21580 "which are then parsed by guestfish."
21581 msgstr ""
21582
21583 #. type: textblock
21584 #: ../fish/guestfish.pod:709
21585 msgid ""
21586 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21587 "through C</foo.100>) using guestfish commands alone.  However this is simple "
21588 "if we use a shell script to create the guestfish commands for us:"
21589 msgstr ""
21590
21591 #. type: verbatim
21592 #: ../fish/guestfish.pod:714
21593 #, no-wrap
21594 msgid ""
21595 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21596 "\n"
21597 msgstr ""
21598
21599 #. type: textblock
21600 #: ../fish/guestfish.pod:716
21601 msgid "or with names like C</foo.001>:"
21602 msgstr ""
21603
21604 #. type: verbatim
21605 #: ../fish/guestfish.pod:718
21606 #, no-wrap
21607 msgid ""
21608 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21609 "\n"
21610 msgstr ""
21611
21612 #. type: textblock
21613 #: ../fish/guestfish.pod:720
21614 msgid ""
21615 "When using guestfish interactively it can be helpful to just run the shell "
21616 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21617 "ordinary I<!> local command), see what guestfish commands it would run, and "
21618 "when you are happy with those prepend the C<E<lt>> character to run the "
21619 "guestfish commands for real."
21620 msgstr ""
21621
21622 #. type: =head1
21623 #: ../fish/guestfish.pod:726
21624 msgid "PIPES"
21625 msgstr ""
21626
21627 #. type: textblock
21628 #: ../fish/guestfish.pod:728
21629 msgid ""
21630 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21631 "command (a guestfish command) to the second command (any host command).  For "
21632 "example:"
21633 msgstr ""
21634
21635 #. type: verbatim
21636 #: ../fish/guestfish.pod:732
21637 #, no-wrap
21638 msgid ""
21639 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21640 "\n"
21641 msgstr ""
21642
21643 #. type: textblock
21644 #: ../fish/guestfish.pod:734
21645 msgid ""
21646 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21647 "program).  The above command would list all accounts in the guest filesystem "
21648 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21649 msgstr ""
21650
21651 #. type: verbatim
21652 #: ../fish/guestfish.pod:739
21653 #, no-wrap
21654 msgid ""
21655 " hexdump /bin/ls | head\n"
21656 " list-devices | tail -1\n"
21657 " tgz-out / - | tar ztf -\n"
21658 "\n"
21659 msgstr ""
21660
21661 #. type: textblock
21662 #: ../fish/guestfish.pod:743
21663 msgid ""
21664 "The space before the pipe symbol is required, any space after the pipe "
21665 "symbol is optional.  Everything after the pipe symbol is just passed "
21666 "straight to the host shell, so it can contain redirections, globs and "
21667 "anything else that makes sense on the host side."
21668 msgstr ""
21669
21670 #. type: textblock
21671 #: ../fish/guestfish.pod:748
21672 msgid ""
21673 "To use a literal argument which begins with a pipe symbol, you have to quote "
21674 "it, eg:"
21675 msgstr ""
21676
21677 #. type: verbatim
21678 #: ../fish/guestfish.pod:751
21679 #, no-wrap
21680 msgid ""
21681 " echo \"|\"\n"
21682 "\n"
21683 msgstr ""
21684
21685 #. type: =head1
21686 #: ../fish/guestfish.pod:753
21687 msgid "HOME DIRECTORIES"
21688 msgstr ""
21689
21690 #. type: textblock
21691 #: ../fish/guestfish.pod:755
21692 msgid ""
21693 "If a parameter starts with the character C<~> then the tilde may be expanded "
21694 "as a home directory path (either C<~> for the current user's home directory, "
21695 "or C<~user> for another user)."
21696 msgstr ""
21697
21698 #. type: textblock
21699 #: ../fish/guestfish.pod:759
21700 msgid ""
21701 "Note that home directory expansion happens for users known I<on the host>, "
21702 "not in the guest filesystem."
21703 msgstr ""
21704
21705 #. type: textblock
21706 #: ../fish/guestfish.pod:762
21707 msgid ""
21708 "To use a literal argument which begins with a tilde, you have to quote it, "
21709 "eg:"
21710 msgstr ""
21711
21712 #. type: verbatim
21713 #: ../fish/guestfish.pod:765
21714 #, no-wrap
21715 msgid ""
21716 " echo \"~\"\n"
21717 "\n"
21718 msgstr ""
21719
21720 #. type: textblock
21721 #: ../fish/guestfish.pod:769
21722 msgid ""
21723 "Libguestfs has some support for Linux guests encrypted according to the "
21724 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21725 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21726 "LUKS is supported."
21727 msgstr ""
21728
21729 #. type: textblock
21730 #: ../fish/guestfish.pod:774
21731 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21732 msgstr ""
21733
21734 #. type: verbatim
21735 #: ../fish/guestfish.pod:776
21736 #, no-wrap
21737 msgid ""
21738 " ><fs> vfs-type /dev/sda2\n"
21739 " crypto_LUKS\n"
21740 "\n"
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish.pod:779
21745 msgid ""
21746 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21747 "device called C</dev/mapper/luksdev>."
21748 msgstr ""
21749
21750 #. type: verbatim
21751 #: ../fish/guestfish.pod:782
21752 #, no-wrap
21753 msgid ""
21754 " ><fs> luks-open /dev/sda2 luksdev\n"
21755 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21756 "\n"
21757 msgstr ""
21758
21759 #. type: textblock
21760 #: ../fish/guestfish.pod:785
21761 msgid ""
21762 "Finally you have to tell LVM to scan for volume groups on the newly created "
21763 "mapper device:"
21764 msgstr ""
21765
21766 #. type: verbatim
21767 #: ../fish/guestfish.pod:788
21768 #, no-wrap
21769 msgid ""
21770 " vgscan\n"
21771 " vg-activate-all true\n"
21772 "\n"
21773 msgstr ""
21774
21775 #. type: textblock
21776 #: ../fish/guestfish.pod:791
21777 msgid "The logical volume(s) can now be mounted in the usual way."
21778 msgstr ""
21779
21780 #. type: textblock
21781 #: ../fish/guestfish.pod:793
21782 msgid ""
21783 "Before closing a LUKS device you must unmount any logical volumes on it and "
21784 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21785 "one.  Then you can close the mapper device:"
21786 msgstr ""
21787
21788 #. type: verbatim
21789 #: ../fish/guestfish.pod:797
21790 #, no-wrap
21791 msgid ""
21792 " vg-activate false /dev/VG\n"
21793 " luks-close /dev/mapper/luksdev\n"
21794 "\n"
21795 msgstr ""
21796
21797 #. type: =head1
21798 #: ../fish/guestfish.pod:800
21799 msgid "WINDOWS PATHS"
21800 msgstr ""
21801
21802 #. type: textblock
21803 #: ../fish/guestfish.pod:802
21804 msgid ""
21805 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21806 "letters and paths (with some limitations).  The following commands are "
21807 "equivalent:"
21808 msgstr ""
21809
21810 #. type: verbatim
21811 #: ../fish/guestfish.pod:806
21812 #, no-wrap
21813 msgid ""
21814 " file /WINDOWS/system32/config/system.LOG\n"
21815 "\n"
21816 msgstr ""
21817
21818 #. type: verbatim
21819 #: ../fish/guestfish.pod:808
21820 #, no-wrap
21821 msgid ""
21822 " file win:\\windows\\system32\\config\\system.log\n"
21823 "\n"
21824 msgstr ""
21825
21826 #. type: verbatim
21827 #: ../fish/guestfish.pod:810
21828 #, no-wrap
21829 msgid ""
21830 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21831 "\n"
21832 msgstr ""
21833
21834 #. type: textblock
21835 #: ../fish/guestfish.pod:812
21836 msgid ""
21837 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21838 "where the drive is mounted, prepending that to the path, changing all "
21839 "backslash characters to forward slash, then resolving the result using L</"
21840 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21841 "the parameter might be rewritten like this:"
21842 msgstr ""
21843
21844 #. type: verbatim
21845 #: ../fish/guestfish.pod:818
21846 #, no-wrap
21847 msgid ""
21848 " win:e:\\foo\\bar => /e/FOO/bar\n"
21849 "\n"
21850 msgstr ""
21851
21852 #. type: textblock
21853 #: ../fish/guestfish.pod:820
21854 msgid "This only works in argument positions that expect a path."
21855 msgstr ""
21856
21857 #. type: =head1
21858 #: ../fish/guestfish.pod:822
21859 msgid "UPLOADING AND DOWNLOADING FILES"
21860 msgstr ""
21861
21862 #. type: textblock
21863 #: ../fish/guestfish.pod:824
21864 msgid ""
21865 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21866 "others which upload from or download to a local file, you can use the "
21867 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21868 msgstr ""
21869
21870 #. type: verbatim
21871 #: ../fish/guestfish.pod:828
21872 #, no-wrap
21873 msgid ""
21874 " upload - /foo\n"
21875 "\n"
21876 msgstr ""
21877
21878 #. type: textblock
21879 #: ../fish/guestfish.pod:830
21880 msgid ""
21881 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21882 msgstr ""
21883
21884 #. type: verbatim
21885 #: ../fish/guestfish.pod:833
21886 #, no-wrap
21887 msgid ""
21888 " tar-out /etc - | tar tf -\n"
21889 "\n"
21890 msgstr ""
21891
21892 #. type: textblock
21893 #: ../fish/guestfish.pod:835
21894 msgid ""
21895 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21896 "command (see L</PIPES>)."
21897 msgstr ""
21898
21899 #. type: textblock
21900 #: ../fish/guestfish.pod:838
21901 msgid ""
21902 "When using C<-> to read from stdin, the input is read up to the end of "
21903 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21904 "some arbitrary end marker:"
21905 msgstr ""
21906
21907 #. type: verbatim
21908 #: ../fish/guestfish.pod:842
21909 #, no-wrap
21910 msgid ""
21911 " upload -<<END /foo\n"
21912 " input line 1\n"
21913 " input line 2\n"
21914 " input line 3\n"
21915 " END\n"
21916 "\n"
21917 msgstr ""
21918
21919 #. type: textblock
21920 #: ../fish/guestfish.pod:848
21921 msgid ""
21922 "Any string of characters can be used instead of C<END>.  The end marker must "
21923 "appear on a line of its own, without any preceeding or following characters "
21924 "(not even spaces)."
21925 msgstr ""
21926
21927 #. type: textblock
21928 #: ../fish/guestfish.pod:852
21929 msgid ""
21930 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21931 "upload local files (so-called \"FileIn\" parameters in the generator)."
21932 msgstr ""
21933
21934 #. type: =head1
21935 #: ../fish/guestfish.pod:855
21936 msgid "EXIT ON ERROR BEHAVIOUR"
21937 msgstr ""
21938
21939 #. type: textblock
21940 #: ../fish/guestfish.pod:857
21941 msgid ""
21942 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21943 "taking commands from a human over a tty), and will exit on the first error "
21944 "in non-interactive mode (scripts, commands given on the command line)."
21945 msgstr ""
21946
21947 #. type: textblock
21948 #: ../fish/guestfish.pod:862
21949 msgid ""
21950 "If you prefix a command with a I<-> character, then that command will not "
21951 "cause guestfish to exit, even if that (one) command returns an error."
21952 msgstr ""
21953
21954 #. type: =head1
21955 #: ../fish/guestfish.pod:866
21956 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21957 msgstr ""
21958
21959 #. type: textblock
21960 #: ../fish/guestfish.pod:868
21961 msgid ""
21962 "Guestfish can be remote-controlled over a socket.  This is useful "
21963 "particularly in shell scripts where you want to make several different "
21964 "changes to a filesystem, but you don't want the overhead of starting up a "
21965 "guestfish process each time."
21966 msgstr ""
21967
21968 #. type: textblock
21969 #: ../fish/guestfish.pod:873
21970 msgid "Start a guestfish server process using:"
21971 msgstr ""
21972
21973 #. type: verbatim
21974 #: ../fish/guestfish.pod:875
21975 #, no-wrap
21976 msgid ""
21977 " eval \"`guestfish --listen`\"\n"
21978 "\n"
21979 msgstr ""
21980
21981 #. type: textblock
21982 #: ../fish/guestfish.pod:877
21983 msgid "and then send it commands by doing:"
21984 msgstr ""
21985
21986 #. type: verbatim
21987 #: ../fish/guestfish.pod:879
21988 #, no-wrap
21989 msgid ""
21990 " guestfish --remote cmd [...]\n"
21991 "\n"
21992 msgstr ""
21993
21994 #. type: textblock
21995 #: ../fish/guestfish.pod:881
21996 msgid "To cause the server to exit, send it the exit command:"
21997 msgstr ""
21998
21999 #. type: verbatim
22000 #: ../fish/guestfish.pod:883
22001 #, no-wrap
22002 msgid ""
22003 " guestfish --remote exit\n"
22004 "\n"
22005 msgstr ""
22006
22007 #. type: textblock
22008 #: ../fish/guestfish.pod:885
22009 msgid ""
22010 "Note that the server will normally exit if there is an error in a command.  "
22011 "You can change this in the usual way.  See section L</EXIT ON ERROR "
22012 "BEHAVIOUR>."
22013 msgstr ""
22014
22015 #. type: =head2
22016 #: ../fish/guestfish.pod:889
22017 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
22018 msgstr ""
22019
22020 #. type: textblock
22021 #: ../fish/guestfish.pod:891
22022 msgid ""
22023 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
22024 "is how the I<--remote> option knows where to send the commands.  You can "
22025 "have several guestfish listener processes running using:"
22026 msgstr ""
22027
22028 #. type: verbatim
22029 #: ../fish/guestfish.pod:895
22030 #, no-wrap
22031 msgid ""
22032 " eval \"`guestfish --listen`\"\n"
22033 " pid1=$GUESTFISH_PID\n"
22034 " eval \"`guestfish --listen`\"\n"
22035 " pid2=$GUESTFISH_PID\n"
22036 " ...\n"
22037 " guestfish --remote=$pid1 cmd\n"
22038 " guestfish --remote=$pid2 cmd\n"
22039 "\n"
22040 msgstr ""
22041
22042 #. type: =head2
22043 #: ../fish/guestfish.pod:903
22044 msgid "REMOTE CONTROL AND CSH"
22045 msgstr ""
22046
22047 #. type: textblock
22048 #: ../fish/guestfish.pod:905
22049 msgid ""
22050 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
22051 "option:"
22052 msgstr ""
22053
22054 #. type: verbatim
22055 #: ../fish/guestfish.pod:908
22056 #, no-wrap
22057 msgid ""
22058 " eval \"`guestfish --listen --csh`\"\n"
22059 "\n"
22060 msgstr ""
22061
22062 #. type: =head2
22063 #: ../fish/guestfish.pod:910
22064 msgid "REMOTE CONTROL DETAILS"
22065 msgstr ""
22066
22067 #. type: textblock
22068 #: ../fish/guestfish.pod:912
22069 msgid ""
22070 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
22071 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
22072 "and C<$PID> is the process ID of the server."
22073 msgstr ""
22074
22075 #. type: textblock
22076 #: ../fish/guestfish.pod:916
22077 msgid "Guestfish client and server versions must match exactly."
22078 msgstr ""
22079
22080 #. type: =head1
22081 #: ../fish/guestfish.pod:918
22082 msgid "PREPARED DISK IMAGES"
22083 msgstr ""
22084
22085 #. type: textblock
22086 #: ../fish/guestfish.pod:920
22087 msgid ""
22088 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
22089 "preformatted disk images that guestfish can make for you to save typing.  "
22090 "This is particularly useful for testing purposes.  This option is used "
22091 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
22092 "can be mixed with I<-a>)."
22093 msgstr ""
22094
22095 #. type: textblock
22096 #: ../fish/guestfish.pod:926
22097 msgid ""
22098 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
22099 "the second and so on.  Existing files in the current directory are "
22100 "I<overwritten>."
22101 msgstr ""
22102
22103 #. type: textblock
22104 #: ../fish/guestfish.pod:930
22105 msgid ""
22106 "The type briefly describes how the disk should be sized, partitioned, how "
22107 "filesystem(s) should be created, and how content should be added.  "
22108 "Optionally the type can be followed by extra parameters, separated by C<:> "
22109 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
22110 "allocated disk, containing a single partition, with the partition formatted "
22111 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
22112 "disk instead."
22113 msgstr ""
22114
22115 #. type: textblock
22116 #: ../fish/guestfish.pod:938
22117 msgid "To list the available types and any extra parameters they take, run:"
22118 msgstr ""
22119
22120 #. type: textblock
22121 #: ../fish/guestfish.pod:942
22122 msgid ""
22123 "Note that the prepared filesystem is not mounted.  You would usually have to "
22124 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
22125 msgstr ""
22126
22127 #. type: textblock
22128 #: ../fish/guestfish.pod:946
22129 msgid ""
22130 "If any I<-N> or I<--new> options are given, the guest is automatically "
22131 "launched."
22132 msgstr ""
22133
22134 #. type: textblock
22135 #: ../fish/guestfish.pod:951
22136 msgid "Create a 100MB disk with an ext4-formatted partition:"
22137 msgstr ""
22138
22139 #. type: verbatim
22140 #: ../fish/guestfish.pod:953
22141 #, no-wrap
22142 msgid ""
22143 " guestfish -N fs:ext4\n"
22144 "\n"
22145 msgstr ""
22146
22147 #. type: textblock
22148 #: ../fish/guestfish.pod:955
22149 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
22150 msgstr ""
22151
22152 #. type: verbatim
22153 #: ../fish/guestfish.pod:957
22154 #, no-wrap
22155 msgid ""
22156 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
22157 "\n"
22158 msgstr ""
22159
22160 #. type: textblock
22161 #: ../fish/guestfish.pod:959
22162 msgid "Create a blank 200MB disk:"
22163 msgstr ""
22164
22165 #. type: verbatim
22166 #: ../fish/guestfish.pod:961
22167 #, no-wrap
22168 msgid ""
22169 " guestfish -N disk:200M\n"
22170 "\n"
22171 msgstr ""
22172
22173 #. type: =head1
22174 #: ../fish/guestfish.pod:963
22175 msgid "PROGRESS BARS"
22176 msgstr ""
22177
22178 #. type: textblock
22179 #: ../fish/guestfish.pod:965
22180 msgid ""
22181 "Some (not all) long-running commands send progress notification messages as "
22182 "they are running.  Guestfish turns these messages into progress bars."
22183 msgstr ""
22184
22185 #. type: textblock
22186 #: ../fish/guestfish.pod:969
22187 msgid ""
22188 "When a command that supports progress bars takes longer than two seconds to "
22189 "run, and if progress bars are enabled, then you will see one appearing below "
22190 "the command:"
22191 msgstr ""
22192
22193 #. type: verbatim
22194 #: ../fish/guestfish.pod:973
22195 #, no-wrap
22196 msgid ""
22197 " ><fs> copy-size /large-file /another-file 2048M\n"
22198 " / 10% [#####-----------------------------------------] 00:30\n"
22199 "\n"
22200 msgstr ""
22201
22202 #. type: textblock
22203 #: ../fish/guestfish.pod:976
22204 msgid ""
22205 "The spinner on the left hand side moves round once for every progress "
22206 "notification received from the backend.  This is a (reasonably) golden "
22207 "assurance that the command is \"doing something\" even if the progress bar "
22208 "is not moving, because the command is able to send the progress "
22209 "notifications.  When the bar reaches 100% and the command finishes, the "
22210 "spinner disappears."
22211 msgstr ""
22212
22213 #. type: textblock
22214 #: ../fish/guestfish.pod:983
22215 msgid ""
22216 "Progress bars are enabled by default when guestfish is used interactively.  "
22217 "You can enable them even for non-interactive modes using I<--progress-bars>, "
22218 "and you can disable them completely using I<--no-progress-bars>."
22219 msgstr ""
22220
22221 #. type: =head1
22222 #: ../fish/guestfish.pod:988
22223 msgid "GUESTFISH COMMANDS"
22224 msgstr ""
22225
22226 #. type: textblock
22227 #: ../fish/guestfish.pod:990
22228 msgid ""
22229 "The commands in this section are guestfish convenience commands, in other "
22230 "words, they are not part of the L<guestfs(3)> API."
22231 msgstr ""
22232
22233 #. type: =head2
22234 #: ../fish/guestfish.pod:993
22235 msgid "help"
22236 msgstr ""
22237
22238 #. type: verbatim
22239 #: ../fish/guestfish.pod:995
22240 #, no-wrap
22241 msgid ""
22242 " help\n"
22243 " help cmd\n"
22244 "\n"
22245 msgstr ""
22246
22247 #. type: textblock
22248 #: ../fish/guestfish.pod:998
22249 msgid "Without any parameter, this provides general help."
22250 msgstr ""
22251
22252 #. type: textblock
22253 #: ../fish/guestfish.pod:1000
22254 msgid "With a C<cmd> parameter, this displays detailed help for that command."
22255 msgstr ""
22256
22257 #. type: =head2
22258 #: ../fish/guestfish.pod:1002
22259 msgid "quit | exit"
22260 msgstr ""
22261
22262 #. type: textblock
22263 #: ../fish/guestfish.pod:1004
22264 msgid "This exits guestfish.  You can also use C<^D> key."
22265 msgstr ""
22266
22267 #. type: textblock
22268 #: ../fish/guestfish.pod:1006
22269 msgid "@FISH_COMMANDS@"
22270 msgstr ""
22271
22272 #. type: =head1
22273 #: ../fish/guestfish.pod:1008
22274 msgid "COMMANDS"
22275 msgstr ""
22276
22277 #. type: =head1
22278 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
22279 msgid "EXIT CODE"
22280 msgstr ""
22281
22282 #. type: textblock
22283 #: ../fish/guestfish.pod:1014
22284 msgid ""
22285 "guestfish returns 0 if the commands completed without error, or 1 if there "
22286 "was an error."
22287 msgstr ""
22288
22289 #. type: =item
22290 #: ../fish/guestfish.pod:1021
22291 msgid "EDITOR"
22292 msgstr ""
22293
22294 #. type: textblock
22295 #: ../fish/guestfish.pod:1023
22296 msgid ""
22297 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
22298 "C<vi>."
22299 msgstr ""
22300
22301 #. type: =item
22302 #: ../fish/guestfish.pod:1026
22303 msgid "GUESTFISH_DISPLAY_IMAGE"
22304 msgstr ""
22305
22306 #. type: textblock
22307 #: ../fish/guestfish.pod:1028
22308 msgid ""
22309 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
22310 "If not set, it uses L<display(1)>."
22311 msgstr ""
22312
22313 #. type: =item
22314 #: ../fish/guestfish.pod:1031
22315 msgid "GUESTFISH_PID"
22316 msgstr ""
22317
22318 #. type: textblock
22319 #: ../fish/guestfish.pod:1033
22320 msgid ""
22321 "Used with the I<--remote> option to specify the remote guestfish process to "
22322 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22323 msgstr ""
22324
22325 #. type: =item
22326 #: ../fish/guestfish.pod:1037
22327 msgid "HEXEDITOR"
22328 msgstr ""
22329
22330 #. type: textblock
22331 #: ../fish/guestfish.pod:1039
22332 msgid ""
22333 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22334 "not specified, the external L<hexedit(1)> program is used."
22335 msgstr ""
22336
22337 #. type: =item
22338 #: ../fish/guestfish.pod:1043
22339 msgid "HOME"
22340 msgstr ""
22341
22342 #. type: textblock
22343 #: ../fish/guestfish.pod:1045
22344 msgid ""
22345 "If compiled with GNU readline support, various files in the home directory "
22346 "can be used.  See L</FILES>."
22347 msgstr ""
22348
22349 #. type: textblock
22350 #: ../fish/guestfish.pod:1054
22351 msgid ""
22352 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22353 "effect as using the B<-v> option."
22354 msgstr ""
22355
22356 #. type: textblock
22357 #: ../fish/guestfish.pod:1066
22358 msgid ""
22359 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22360 "the discussion of paths in L<guestfs(3)>."
22361 msgstr ""
22362
22363 #. type: textblock
22364 #: ../fish/guestfish.pod:1077
22365 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22366 msgstr ""
22367
22368 #. type: =item
22369 #: ../fish/guestfish.pod:1079
22370 msgid "PAGER"
22371 msgstr ""
22372
22373 #. type: textblock
22374 #: ../fish/guestfish.pod:1081
22375 msgid ""
22376 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22377 "C<more>."
22378 msgstr ""
22379
22380 #. type: =head1
22381 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
22382 msgid "FILES"
22383 msgstr ""
22384
22385 #. type: =item
22386 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
22387 msgid "$HOME/.libguestfs-tools.rc"
22388 msgstr ""
22389
22390 #. type: =item
22391 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
22392 msgid "/etc/libguestfs-tools.conf"
22393 msgstr ""
22394
22395 #. type: textblock
22396 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
22397 msgid ""
22398 "This configuration file controls the default read-only or read-write mode "
22399 "(I<--ro> or I<--rw>)."
22400 msgstr ""
22401
22402 #. type: textblock
22403 #: ../fish/guestfish.pod:1108
22404 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22405 msgstr ""
22406
22407 #. type: =item
22408 #: ../fish/guestfish.pod:1110
22409 msgid "$HOME/.guestfish"
22410 msgstr ""
22411
22412 #. type: textblock
22413 #: ../fish/guestfish.pod:1112
22414 msgid ""
22415 "If compiled with GNU readline support, then the command history is saved in "
22416 "this file."
22417 msgstr ""
22418
22419 #. type: =item
22420 #: ../fish/guestfish.pod:1115
22421 msgid "$HOME/.inputrc"
22422 msgstr ""
22423
22424 #. type: =item
22425 #: ../fish/guestfish.pod:1117
22426 msgid "/etc/inputrc"
22427 msgstr ""
22428
22429 #. type: textblock
22430 #: ../fish/guestfish.pod:1119
22431 msgid ""
22432 "If compiled with GNU readline support, then these files can be used to "
22433 "configure readline.  For further information, please see L<readline(3)/"
22434 "INITIALIZATION FILE>."
22435 msgstr ""
22436
22437 #. type: textblock
22438 #: ../fish/guestfish.pod:1123
22439 msgid "To write rules which only apply to guestfish, use:"
22440 msgstr ""
22441
22442 #. type: verbatim
22443 #: ../fish/guestfish.pod:1125
22444 #, no-wrap
22445 msgid ""
22446 " $if guestfish\n"
22447 " ...\n"
22448 " $endif\n"
22449 "\n"
22450 msgstr ""
22451
22452 #. type: textblock
22453 #: ../fish/guestfish.pod:1129
22454 msgid ""
22455 "Variables that you can set in inputrc that change the behaviour of guestfish "
22456 "in useful ways include:"
22457 msgstr ""
22458
22459 #. type: =item
22460 #: ../fish/guestfish.pod:1134
22461 msgid "completion-ignore-case (default: on)"
22462 msgstr ""
22463
22464 #. type: textblock
22465 #: ../fish/guestfish.pod:1136
22466 msgid ""
22467 "By default, guestfish will ignore case when tab-completing paths on the "
22468 "disk.  Use:"
22469 msgstr ""
22470
22471 #. type: verbatim
22472 #: ../fish/guestfish.pod:1139
22473 #, no-wrap
22474 msgid ""
22475 " set completion-ignore-case off\n"
22476 "\n"
22477 msgstr ""
22478
22479 #. type: textblock
22480 #: ../fish/guestfish.pod:1141
22481 msgid "to make guestfish case sensitive."
22482 msgstr ""
22483
22484 #. type: =item
22485 #: ../fish/guestfish.pod:1145
22486 msgid "test1.img"
22487 msgstr ""
22488
22489 #. type: =item
22490 #: ../fish/guestfish.pod:1147
22491 msgid "test2.img (etc)"
22492 msgstr ""
22493
22494 #. type: textblock
22495 #: ../fish/guestfish.pod:1149
22496 msgid ""
22497 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22498 "will be created in the file C<test1.img> in the current directory.  The "
22499 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
22500 "the same name will be overwritten."
22501 msgstr ""
22502
22503 #. type: textblock
22504 #: ../fish/guestfish.pod:1158
22505 msgid ""
22506 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
22507 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
22508 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
22509 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
22510 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
22511 ">, L<display(1)>, L<hexedit(1)>."
22512 msgstr ""
22513
22514 #. type: textblock
22515 #: ../fish/guestfish.pod:1189 ../test-tool/libguestfs-test-tool.pod:102
22516 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22517 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22518 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22519 msgid ""
22520 "This program is free software; you can redistribute it and/or modify it "
22521 "under the terms of the GNU General Public License as published by the Free "
22522 "Software Foundation; either version 2 of the License, or (at your option) "
22523 "any later version."
22524 msgstr ""
22525
22526 #. type: textblock
22527 #: ../fish/guestfish.pod:1194 ../test-tool/libguestfs-test-tool.pod:107
22528 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22529 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22530 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22531 msgid ""
22532 "This program is distributed in the hope that it will be useful, but WITHOUT "
22533 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22534 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22535 "more details."
22536 msgstr ""
22537
22538 #. type: textblock
22539 #: ../fish/guestfish.pod:1199 ../test-tool/libguestfs-test-tool.pod:112
22540 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22541 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22542 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22543 msgid ""
22544 "You should have received a copy of the GNU General Public License along with "
22545 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
22546 "Ave, Cambridge, MA 02139, USA."
22547 msgstr ""
22548
22549 #. type: =head2
22550 #: ../fish/guestfish-actions.pod:1
22551 msgid "add-cdrom"
22552 msgstr ""
22553
22554 #. type: verbatim
22555 #: ../fish/guestfish-actions.pod:3
22556 #, no-wrap
22557 msgid ""
22558 " add-cdrom filename\n"
22559 "\n"
22560 msgstr ""
22561
22562 #. type: textblock
22563 #: ../fish/guestfish-actions.pod:15
22564 msgid ""
22565 "This call checks for the existence of C<filename>.  This stops you from "
22566 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22567 "and C<http:> URLs.  To specify those, use the general L</config> call "
22568 "instead."
22569 msgstr ""
22570
22571 #. type: textblock
22572 #: ../fish/guestfish-actions.pod:22
22573 msgid ""
22574 "If you just want to add an ISO file (often you use this as an efficient way "
22575 "to transfer large files into the guest), then you should probably use L</add-"
22576 "drive-ro> instead."
22577 msgstr ""
22578
22579 #. type: =head2
22580 #: ../fish/guestfish-actions.pod:35
22581 msgid "add-domain"
22582 msgstr ""
22583
22584 #. type: =head2
22585 #: ../fish/guestfish-actions.pod:37
22586 msgid "domain"
22587 msgstr ""
22588
22589 #. type: verbatim
22590 #: ../fish/guestfish-actions.pod:39
22591 #, no-wrap
22592 msgid ""
22593 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22594 "\n"
22595 msgstr ""
22596
22597 #. type: textblock
22598 #: ../fish/guestfish-actions.pod:41
22599 msgid ""
22600 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
22601 "It works by connecting to libvirt, requesting the domain and domain XML from "
22602 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
22603 msgstr ""
22604
22605 #. type: textblock
22606 #: ../fish/guestfish-actions.pod:76
22607 msgid ""
22608 "The other optional parameters are passed directly through to L</add-drive-"
22609 "opts>."
22610 msgstr ""
22611
22612 #. type: textblock
22613 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22614 #: ../fish/guestfish-actions.pod:568 ../fish/guestfish-actions.pod:1962
22615 #: ../fish/guestfish-actions.pod:3128 ../fish/guestfish-actions.pod:3301
22616 #: ../fish/guestfish-actions.pod:3436
22617 msgid ""
22618 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
22619 msgstr ""
22620
22621 #. type: =head2
22622 #: ../fish/guestfish-actions.pod:81
22623 msgid "add-drive"
22624 msgstr ""
22625
22626 #. type: verbatim
22627 #: ../fish/guestfish-actions.pod:83
22628 #, no-wrap
22629 msgid ""
22630 " add-drive filename\n"
22631 "\n"
22632 msgstr ""
22633
22634 #. type: textblock
22635 #: ../fish/guestfish-actions.pod:85
22636 msgid ""
22637 "This function is the equivalent of calling L</add-drive-opts> with no "
22638 "optional parameters, so the disk is added writable, with the format being "
22639 "detected automatically."
22640 msgstr ""
22641
22642 #. type: textblock
22643 #: ../fish/guestfish-actions.pod:89
22644 msgid ""
22645 "Automatic detection of the format opens you up to a potential security hole "
22646 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22647 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22648 "you should think about replacing calls to this function with calls to L</add-"
22649 "drive-opts>, and specifying the format."
22650 msgstr ""
22651
22652 #. type: =head2
22653 #: ../fish/guestfish-actions.pod:96
22654 msgid "add-drive-opts"
22655 msgstr ""
22656
22657 #. type: =head2
22658 #: ../fish/guestfish-actions.pod:98
22659 msgid "add"
22660 msgstr ""
22661
22662 #. type: verbatim
22663 #: ../fish/guestfish-actions.pod:100
22664 #, no-wrap
22665 msgid ""
22666 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22667 "\n"
22668 msgstr ""
22669
22670 #. type: textblock
22671 #: ../fish/guestfish-actions.pod:127
22672 msgid ""
22673 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22674 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22675 "include C<raw> and C<qcow2>."
22676 msgstr ""
22677
22678 #. type: textblock
22679 #: ../fish/guestfish-actions.pod:138
22680 msgid ""
22681 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22682 "add-drive-with-if> call (q.v.)"
22683 msgstr ""
22684
22685 #. type: =head2
22686 #: ../fish/guestfish-actions.pod:145
22687 msgid "add-drive-ro"
22688 msgstr ""
22689
22690 #. type: =head2
22691 #: ../fish/guestfish-actions.pod:147
22692 msgid "add-ro"
22693 msgstr ""
22694
22695 #. type: verbatim
22696 #: ../fish/guestfish-actions.pod:149
22697 #, no-wrap
22698 msgid ""
22699 " add-drive-ro filename\n"
22700 "\n"
22701 msgstr ""
22702
22703 #. type: textblock
22704 #: ../fish/guestfish-actions.pod:151
22705 msgid ""
22706 "This function is the equivalent of calling L</add-drive-opts> with the "
22707 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22708 "is added read-only, with the format being detected automatically."
22709 msgstr ""
22710
22711 #. type: =head2
22712 #: ../fish/guestfish-actions.pod:156
22713 msgid "add-drive-ro-with-if"
22714 msgstr ""
22715
22716 #. type: verbatim
22717 #: ../fish/guestfish-actions.pod:158
22718 #, no-wrap
22719 msgid ""
22720 " add-drive-ro-with-if filename iface\n"
22721 "\n"
22722 msgstr ""
22723
22724 #. type: textblock
22725 #: ../fish/guestfish-actions.pod:160
22726 msgid ""
22727 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22728 "interface emulation to use at run time."
22729 msgstr ""
22730
22731 #. type: =head2
22732 #: ../fish/guestfish-actions.pod:170
22733 msgid "add-drive-with-if"
22734 msgstr ""
22735
22736 #. type: verbatim
22737 #: ../fish/guestfish-actions.pod:172
22738 #, no-wrap
22739 msgid ""
22740 " add-drive-with-if filename iface\n"
22741 "\n"
22742 msgstr ""
22743
22744 #. type: textblock
22745 #: ../fish/guestfish-actions.pod:174
22746 msgid ""
22747 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22748 "interface emulation to use at run time."
22749 msgstr ""
22750
22751 #. type: =head2
22752 #: ../fish/guestfish-actions.pod:184
22753 msgid "aug-clear"
22754 msgstr ""
22755
22756 #. type: verbatim
22757 #: ../fish/guestfish-actions.pod:186
22758 #, no-wrap
22759 msgid ""
22760 " aug-clear augpath\n"
22761 "\n"
22762 msgstr ""
22763
22764 #. type: =head2
22765 #: ../fish/guestfish-actions.pod:191
22766 msgid "aug-close"
22767 msgstr ""
22768
22769 #. type: verbatim
22770 #: ../fish/guestfish-actions.pod:193
22771 #, no-wrap
22772 msgid ""
22773 " aug-close\n"
22774 "\n"
22775 msgstr ""
22776
22777 #. type: textblock
22778 #: ../fish/guestfish-actions.pod:195
22779 msgid ""
22780 "Close the current Augeas handle and free up any resources used by it.  After "
22781 "calling this, you have to call L</aug-init> again before you can use any "
22782 "other Augeas functions."
22783 msgstr ""
22784
22785 #. type: =head2
22786 #: ../fish/guestfish-actions.pod:200
22787 msgid "aug-defnode"
22788 msgstr ""
22789
22790 #. type: verbatim
22791 #: ../fish/guestfish-actions.pod:202
22792 #, no-wrap
22793 msgid ""
22794 " aug-defnode name expr val\n"
22795 "\n"
22796 msgstr ""
22797
22798 #. type: textblock
22799 #: ../fish/guestfish-actions.pod:207
22800 msgid ""
22801 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22802 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22803 "containing that single node."
22804 msgstr ""
22805
22806 #. type: =head2
22807 #: ../fish/guestfish-actions.pod:215
22808 msgid "aug-defvar"
22809 msgstr ""
22810
22811 #. type: verbatim
22812 #: ../fish/guestfish-actions.pod:217
22813 #, no-wrap
22814 msgid ""
22815 " aug-defvar name expr\n"
22816 "\n"
22817 msgstr ""
22818
22819 #. type: =head2
22820 #: ../fish/guestfish-actions.pod:226
22821 msgid "aug-get"
22822 msgstr ""
22823
22824 #. type: verbatim
22825 #: ../fish/guestfish-actions.pod:228
22826 #, no-wrap
22827 msgid ""
22828 " aug-get augpath\n"
22829 "\n"
22830 msgstr ""
22831
22832 #. type: =head2
22833 #: ../fish/guestfish-actions.pod:233
22834 msgid "aug-init"
22835 msgstr ""
22836
22837 #. type: verbatim
22838 #: ../fish/guestfish-actions.pod:235
22839 #, no-wrap
22840 msgid ""
22841 " aug-init root flags\n"
22842 "\n"
22843 msgstr ""
22844
22845 #. type: textblock
22846 #: ../fish/guestfish-actions.pod:241
22847 msgid "You must call this before using any other L</aug-*> commands."
22848 msgstr ""
22849
22850 #. type: textblock
22851 #: ../fish/guestfish-actions.pod:276
22852 msgid "Do not load the tree in L</aug-init>."
22853 msgstr ""
22854
22855 #. type: textblock
22856 #: ../fish/guestfish-actions.pod:280
22857 msgid "To close the handle, you can call L</aug-close>."
22858 msgstr ""
22859
22860 #. type: =head2
22861 #: ../fish/guestfish-actions.pod:284
22862 msgid "aug-insert"
22863 msgstr ""
22864
22865 #. type: verbatim
22866 #: ../fish/guestfish-actions.pod:286
22867 #, no-wrap
22868 msgid ""
22869 " aug-insert augpath label true|false\n"
22870 "\n"
22871 msgstr ""
22872
22873 #. type: =head2
22874 #: ../fish/guestfish-actions.pod:296
22875 msgid "aug-load"
22876 msgstr ""
22877
22878 #. type: verbatim
22879 #: ../fish/guestfish-actions.pod:298
22880 #, no-wrap
22881 msgid ""
22882 " aug-load\n"
22883 "\n"
22884 msgstr ""
22885
22886 #. type: =head2
22887 #: ../fish/guestfish-actions.pod:305
22888 msgid "aug-ls"
22889 msgstr ""
22890
22891 #. type: verbatim
22892 #: ../fish/guestfish-actions.pod:307
22893 #, no-wrap
22894 msgid ""
22895 " aug-ls augpath\n"
22896 "\n"
22897 msgstr ""
22898
22899 #. type: textblock
22900 #: ../fish/guestfish-actions.pod:309
22901 msgid ""
22902 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22903 "resulting nodes into alphabetical order."
22904 msgstr ""
22905
22906 #. type: =head2
22907 #: ../fish/guestfish-actions.pod:312
22908 msgid "aug-match"
22909 msgstr ""
22910
22911 #. type: verbatim
22912 #: ../fish/guestfish-actions.pod:314
22913 #, no-wrap
22914 msgid ""
22915 " aug-match augpath\n"
22916 "\n"
22917 msgstr ""
22918
22919 #. type: =head2
22920 #: ../fish/guestfish-actions.pod:320
22921 msgid "aug-mv"
22922 msgstr ""
22923
22924 #. type: verbatim
22925 #: ../fish/guestfish-actions.pod:322
22926 #, no-wrap
22927 msgid ""
22928 " aug-mv src dest\n"
22929 "\n"
22930 msgstr ""
22931
22932 #. type: =head2
22933 #: ../fish/guestfish-actions.pod:327
22934 msgid "aug-rm"
22935 msgstr ""
22936
22937 #. type: verbatim
22938 #: ../fish/guestfish-actions.pod:329
22939 #, no-wrap
22940 msgid ""
22941 " aug-rm augpath\n"
22942 "\n"
22943 msgstr ""
22944
22945 #. type: =head2
22946 #: ../fish/guestfish-actions.pod:335
22947 msgid "aug-save"
22948 msgstr ""
22949
22950 #. type: verbatim
22951 #: ../fish/guestfish-actions.pod:337
22952 #, no-wrap
22953 msgid ""
22954 " aug-save\n"
22955 "\n"
22956 msgstr ""
22957
22958 #. type: textblock
22959 #: ../fish/guestfish-actions.pod:341
22960 msgid ""
22961 "The flags which were passed to L</aug-init> affect exactly how files are "
22962 "saved."
22963 msgstr ""
22964
22965 #. type: =head2
22966 #: ../fish/guestfish-actions.pod:344
22967 msgid "aug-set"
22968 msgstr ""
22969
22970 #. type: verbatim
22971 #: ../fish/guestfish-actions.pod:346
22972 #, no-wrap
22973 msgid ""
22974 " aug-set augpath val\n"
22975 "\n"
22976 msgstr ""
22977
22978 #. type: textblock
22979 #: ../fish/guestfish-actions.pod:350
22980 msgid ""
22981 "In the Augeas API, it is possible to clear a node by setting the value to "
22982 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22983 "this call.  Instead you must use the L</aug-clear> call."
22984 msgstr ""
22985
22986 #. type: =head2
22987 #: ../fish/guestfish-actions.pod:355
22988 msgid "available"
22989 msgstr ""
22990
22991 #. type: verbatim
22992 #: ../fish/guestfish-actions.pod:357
22993 #, no-wrap
22994 msgid ""
22995 " available 'groups ...'\n"
22996 "\n"
22997 msgstr ""
22998
22999 #. type: textblock
23000 #: ../fish/guestfish-actions.pod:363
23001 msgid ""
23002 "The libguestfs groups, and the functions that those groups correspond to, "
23003 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
23004 "runtime by calling L</available-all-groups>."
23005 msgstr ""
23006
23007 #. type: textblock
23008 #: ../fish/guestfish-actions.pod:387
23009 msgid "You must call L</launch> before calling this function."
23010 msgstr ""
23011
23012 #. type: textblock
23013 #: ../fish/guestfish-actions.pod:409
23014 msgid ""
23015 "This call was added in version C<1.0.80>.  In previous versions of "
23016 "libguestfs all you could do would be to speculatively execute a command to "
23017 "find out if the daemon implemented it.  See also L</version>."
23018 msgstr ""
23019
23020 #. type: =head2
23021 #: ../fish/guestfish-actions.pod:416
23022 msgid "available-all-groups"
23023 msgstr ""
23024
23025 #. type: verbatim
23026 #: ../fish/guestfish-actions.pod:418
23027 #, no-wrap
23028 msgid ""
23029 " available-all-groups\n"
23030 "\n"
23031 msgstr ""
23032
23033 #. type: textblock
23034 #: ../fish/guestfish-actions.pod:420
23035 msgid ""
23036 "This command returns a list of all optional groups that this daemon knows "
23037 "about.  Note this returns both supported and unsupported groups.  To find "
23038 "out which ones the daemon can actually support you have to call L</"
23039 "available> on each member of the returned list."
23040 msgstr ""
23041
23042 #. type: textblock
23043 #: ../fish/guestfish-actions.pod:426
23044 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
23045 msgstr ""
23046
23047 #. type: =head2
23048 #: ../fish/guestfish-actions.pod:428
23049 msgid "base64-in"
23050 msgstr ""
23051
23052 #. type: verbatim
23053 #: ../fish/guestfish-actions.pod:430
23054 #, no-wrap
23055 msgid ""
23056 " base64-in (base64file|-) filename\n"
23057 "\n"
23058 msgstr ""
23059
23060 #. type: textblock
23061 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
23062 #: ../fish/guestfish-actions.pod:693 ../fish/guestfish-actions.pod:862
23063 #: ../fish/guestfish-actions.pod:881 ../fish/guestfish-actions.pod:1255
23064 #: ../fish/guestfish-actions.pod:4631 ../fish/guestfish-actions.pod:4643
23065 #: ../fish/guestfish-actions.pod:4654 ../fish/guestfish-actions.pod:4665
23066 #: ../fish/guestfish-actions.pod:4717 ../fish/guestfish-actions.pod:4726
23067 #: ../fish/guestfish-actions.pod:4780 ../fish/guestfish-actions.pod:4803
23068 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
23069 msgstr ""
23070
23071 #. type: =head2
23072 #: ../fish/guestfish-actions.pod:437
23073 msgid "base64-out"
23074 msgstr ""
23075
23076 #. type: verbatim
23077 #: ../fish/guestfish-actions.pod:439
23078 #, no-wrap
23079 msgid ""
23080 " base64-out filename (base64file|-)\n"
23081 "\n"
23082 msgstr ""
23083
23084 #. type: =head2
23085 #: ../fish/guestfish-actions.pod:446
23086 msgid "blockdev-flushbufs"
23087 msgstr ""
23088
23089 #. type: verbatim
23090 #: ../fish/guestfish-actions.pod:448
23091 #, no-wrap
23092 msgid ""
23093 " blockdev-flushbufs device\n"
23094 "\n"
23095 msgstr ""
23096
23097 #. type: =head2
23098 #: ../fish/guestfish-actions.pod:455
23099 msgid "blockdev-getbsz"
23100 msgstr ""
23101
23102 #. type: verbatim
23103 #: ../fish/guestfish-actions.pod:457
23104 #, no-wrap
23105 msgid ""
23106 " blockdev-getbsz device\n"
23107 "\n"
23108 msgstr ""
23109
23110 #. type: =head2
23111 #: ../fish/guestfish-actions.pod:466
23112 msgid "blockdev-getro"
23113 msgstr ""
23114
23115 #. type: verbatim
23116 #: ../fish/guestfish-actions.pod:468
23117 #, no-wrap
23118 msgid ""
23119 " blockdev-getro device\n"
23120 "\n"
23121 msgstr ""
23122
23123 #. type: =head2
23124 #: ../fish/guestfish-actions.pod:475
23125 msgid "blockdev-getsize64"
23126 msgstr ""
23127
23128 #. type: verbatim
23129 #: ../fish/guestfish-actions.pod:477
23130 #, no-wrap
23131 msgid ""
23132 " blockdev-getsize64 device\n"
23133 "\n"
23134 msgstr ""
23135
23136 #. type: textblock
23137 #: ../fish/guestfish-actions.pod:481
23138 msgid "See also L</blockdev-getsz>."
23139 msgstr ""
23140
23141 #. type: =head2
23142 #: ../fish/guestfish-actions.pod:485
23143 msgid "blockdev-getss"
23144 msgstr ""
23145
23146 #. type: verbatim
23147 #: ../fish/guestfish-actions.pod:487
23148 #, no-wrap
23149 msgid ""
23150 " blockdev-getss device\n"
23151 "\n"
23152 msgstr ""
23153
23154 #. type: textblock
23155 #: ../fish/guestfish-actions.pod:492
23156 msgid ""
23157 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
23158 msgstr ""
23159
23160 #. type: =head2
23161 #: ../fish/guestfish-actions.pod:497
23162 msgid "blockdev-getsz"
23163 msgstr ""
23164
23165 #. type: verbatim
23166 #: ../fish/guestfish-actions.pod:499
23167 #, no-wrap
23168 msgid ""
23169 " blockdev-getsz device\n"
23170 "\n"
23171 msgstr ""
23172
23173 #. type: textblock
23174 #: ../fish/guestfish-actions.pod:504
23175 msgid ""
23176 "See also L</blockdev-getss> for the real sector size of the device, and L</"
23177 "blockdev-getsize64> for the more useful I<size in bytes>."
23178 msgstr ""
23179
23180 #. type: =head2
23181 #: ../fish/guestfish-actions.pod:510
23182 msgid "blockdev-rereadpt"
23183 msgstr ""
23184
23185 #. type: verbatim
23186 #: ../fish/guestfish-actions.pod:512
23187 #, no-wrap
23188 msgid ""
23189 " blockdev-rereadpt device\n"
23190 "\n"
23191 msgstr ""
23192
23193 #. type: =head2
23194 #: ../fish/guestfish-actions.pod:518
23195 msgid "blockdev-setbsz"
23196 msgstr ""
23197
23198 #. type: verbatim
23199 #: ../fish/guestfish-actions.pod:520
23200 #, no-wrap
23201 msgid ""
23202 " blockdev-setbsz device blocksize\n"
23203 "\n"
23204 msgstr ""
23205
23206 #. type: =head2
23207 #: ../fish/guestfish-actions.pod:529
23208 msgid "blockdev-setro"
23209 msgstr ""
23210
23211 #. type: verbatim
23212 #: ../fish/guestfish-actions.pod:531
23213 #, no-wrap
23214 msgid ""
23215 " blockdev-setro device\n"
23216 "\n"
23217 msgstr ""
23218
23219 #. type: =head2
23220 #: ../fish/guestfish-actions.pod:537
23221 msgid "blockdev-setrw"
23222 msgstr ""
23223
23224 #. type: verbatim
23225 #: ../fish/guestfish-actions.pod:539
23226 #, no-wrap
23227 msgid ""
23228 " blockdev-setrw device\n"
23229 "\n"
23230 msgstr ""
23231
23232 #. type: =head2
23233 #: ../fish/guestfish-actions.pod:545
23234 msgid "btrfs-filesystem-resize"
23235 msgstr ""
23236
23237 #. type: verbatim
23238 #: ../fish/guestfish-actions.pod:547
23239 #, no-wrap
23240 msgid ""
23241 " btrfs-filesystem-resize mountpoint [size:..]\n"
23242 "\n"
23243 msgstr ""
23244
23245 #. type: =head2
23246 #: ../fish/guestfish-actions.pod:570
23247 msgid "case-sensitive-path"
23248 msgstr ""
23249
23250 #. type: verbatim
23251 #: ../fish/guestfish-actions.pod:572
23252 #, no-wrap
23253 msgid ""
23254 " case-sensitive-path path\n"
23255 "\n"
23256 msgstr ""
23257
23258 #. type: textblock
23259 #: ../fish/guestfish-actions.pod:596
23260 msgid ""
23261 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
23262 "WINDOWS/system32\"> (the exact return value would depend on details of how "
23263 "the directories were originally created under Windows)."
23264 msgstr ""
23265
23266 #. type: textblock
23267 #: ../fish/guestfish-actions.pod:604
23268 msgid "See also L</realpath>."
23269 msgstr ""
23270
23271 #. type: =head2
23272 #: ../fish/guestfish-actions.pod:606
23273 msgid "cat"
23274 msgstr ""
23275
23276 #. type: verbatim
23277 #: ../fish/guestfish-actions.pod:608
23278 #, no-wrap
23279 msgid ""
23280 " cat path\n"
23281 "\n"
23282 msgstr ""
23283
23284 #. type: textblock
23285 #: ../fish/guestfish-actions.pod:612
23286 msgid ""
23287 "Note that this function cannot correctly handle binary files (specifically, "
23288 "files containing C<\\0> character which is treated as end of string).  For "
23289 "those you need to use the L</read-file> or L</download> functions which have "
23290 "a more complex interface."
23291 msgstr ""
23292
23293 #. type: =head2
23294 #: ../fish/guestfish-actions.pod:620
23295 msgid "checksum"
23296 msgstr ""
23297
23298 #. type: verbatim
23299 #: ../fish/guestfish-actions.pod:622
23300 #, no-wrap
23301 msgid ""
23302 " checksum csumtype path\n"
23303 "\n"
23304 msgstr ""
23305
23306 #. type: textblock
23307 #: ../fish/guestfish-actions.pod:665
23308 msgid "To get the checksum for a device, use L</checksum-device>."
23309 msgstr ""
23310
23311 #. type: textblock
23312 #: ../fish/guestfish-actions.pod:667
23313 msgid "To get the checksums for many files, use L</checksums-out>."
23314 msgstr ""
23315
23316 #. type: =head2
23317 #: ../fish/guestfish-actions.pod:669
23318 msgid "checksum-device"
23319 msgstr ""
23320
23321 #. type: verbatim
23322 #: ../fish/guestfish-actions.pod:671
23323 #, no-wrap
23324 msgid ""
23325 " checksum-device csumtype device\n"
23326 "\n"
23327 msgstr ""
23328
23329 #. type: textblock
23330 #: ../fish/guestfish-actions.pod:673
23331 msgid ""
23332 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
23333 "device named C<device>.  For the types of checksums supported see the L</"
23334 "checksum> command."
23335 msgstr ""
23336
23337 #. type: =head2
23338 #: ../fish/guestfish-actions.pod:677
23339 msgid "checksums-out"
23340 msgstr ""
23341
23342 #. type: verbatim
23343 #: ../fish/guestfish-actions.pod:679
23344 #, no-wrap
23345 msgid ""
23346 " checksums-out csumtype directory (sumsfile|-)\n"
23347 "\n"
23348 msgstr ""
23349
23350 #. type: =head2
23351 #: ../fish/guestfish-actions.pod:695
23352 msgid "chmod"
23353 msgstr ""
23354
23355 #. type: verbatim
23356 #: ../fish/guestfish-actions.pod:697
23357 #, no-wrap
23358 msgid ""
23359 " chmod mode path\n"
23360 "\n"
23361 msgstr ""
23362
23363 #. type: =head2
23364 #: ../fish/guestfish-actions.pod:708
23365 msgid "chown"
23366 msgstr ""
23367
23368 #. type: verbatim
23369 #: ../fish/guestfish-actions.pod:710
23370 #, no-wrap
23371 msgid ""
23372 " chown owner group path\n"
23373 "\n"
23374 msgstr ""
23375
23376 #. type: =head2
23377 #: ../fish/guestfish-actions.pod:718
23378 msgid "command"
23379 msgstr ""
23380
23381 #. type: verbatim
23382 #: ../fish/guestfish-actions.pod:720
23383 #, no-wrap
23384 msgid ""
23385 " command 'arguments ...'\n"
23386 "\n"
23387 msgstr ""
23388
23389 #. type: textblock
23390 #: ../fish/guestfish-actions.pod:727
23391 msgid ""
23392 "The single parameter is an argv-style list of arguments.  The first element "
23393 "is the name of the program to run.  Subsequent elements are parameters.  The "
23394 "list must be non-empty (ie. must contain a program name).  Note that the "
23395 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23396 msgstr ""
23397
23398 #. type: =head2
23399 #: ../fish/guestfish-actions.pod:755
23400 msgid "command-lines"
23401 msgstr ""
23402
23403 #. type: verbatim
23404 #: ../fish/guestfish-actions.pod:757
23405 #, no-wrap
23406 msgid ""
23407 " command-lines 'arguments ...'\n"
23408 "\n"
23409 msgstr ""
23410
23411 #. type: textblock
23412 #: ../fish/guestfish-actions.pod:759
23413 msgid ""
23414 "This is the same as L</command>, but splits the result into a list of lines."
23415 msgstr ""
23416
23417 #. type: textblock
23418 #: ../fish/guestfish-actions.pod:762
23419 msgid "See also: L</sh-lines>"
23420 msgstr ""
23421
23422 #. type: =head2
23423 #: ../fish/guestfish-actions.pod:767
23424 msgid "config"
23425 msgstr ""
23426
23427 #. type: verbatim
23428 #: ../fish/guestfish-actions.pod:769
23429 #, no-wrap
23430 msgid ""
23431 " config qemuparam qemuvalue\n"
23432 "\n"
23433 msgstr ""
23434
23435 #. type: =head2
23436 #: ../fish/guestfish-actions.pod:780
23437 msgid "copy-size"
23438 msgstr ""
23439
23440 #. type: verbatim
23441 #: ../fish/guestfish-actions.pod:782
23442 #, no-wrap
23443 msgid ""
23444 " copy-size src dest size\n"
23445 "\n"
23446 msgstr ""
23447
23448 #. type: =head2
23449 #: ../fish/guestfish-actions.pod:790
23450 msgid "cp"
23451 msgstr ""
23452
23453 #. type: verbatim
23454 #: ../fish/guestfish-actions.pod:792
23455 #, no-wrap
23456 msgid ""
23457 " cp src dest\n"
23458 "\n"
23459 msgstr ""
23460
23461 #. type: =head2
23462 #: ../fish/guestfish-actions.pod:797
23463 msgid "cp-a"
23464 msgstr ""
23465
23466 #. type: verbatim
23467 #: ../fish/guestfish-actions.pod:799
23468 #, no-wrap
23469 msgid ""
23470 " cp-a src dest\n"
23471 "\n"
23472 msgstr ""
23473
23474 #. type: =head2
23475 #: ../fish/guestfish-actions.pod:804
23476 msgid "dd"
23477 msgstr ""
23478
23479 #. type: verbatim
23480 #: ../fish/guestfish-actions.pod:806
23481 #, no-wrap
23482 msgid ""
23483 " dd src dest\n"
23484 "\n"
23485 msgstr ""
23486
23487 #. type: textblock
23488 #: ../fish/guestfish-actions.pod:813
23489 msgid ""
23490 "If the destination is a device, it must be as large or larger than the "
23491 "source file or device, otherwise the copy will fail.  This command cannot do "
23492 "partial copies (see L</copy-size>)."
23493 msgstr ""
23494
23495 #. type: =head2
23496 #: ../fish/guestfish-actions.pod:817
23497 msgid "df"
23498 msgstr ""
23499
23500 #. type: verbatim
23501 #: ../fish/guestfish-actions.pod:819
23502 #, no-wrap
23503 msgid ""
23504 " df\n"
23505 "\n"
23506 msgstr ""
23507
23508 #. type: textblock
23509 #: ../fish/guestfish-actions.pod:823 ../fish/guestfish-actions.pod:834
23510 msgid ""
23511 "This command is mostly useful for interactive sessions.  It is I<not> "
23512 "intended that you try to parse the output string.  Use L</statvfs> from "
23513 "programs."
23514 msgstr ""
23515
23516 #. type: =head2
23517 #: ../fish/guestfish-actions.pod:827
23518 msgid "df-h"
23519 msgstr ""
23520
23521 #. type: verbatim
23522 #: ../fish/guestfish-actions.pod:829
23523 #, no-wrap
23524 msgid ""
23525 " df-h\n"
23526 "\n"
23527 msgstr ""
23528
23529 #. type: =head2
23530 #: ../fish/guestfish-actions.pod:838
23531 msgid "dmesg"
23532 msgstr ""
23533
23534 #. type: verbatim
23535 #: ../fish/guestfish-actions.pod:840
23536 #, no-wrap
23537 msgid ""
23538 " dmesg\n"
23539 "\n"
23540 msgstr ""
23541
23542 #. type: textblock
23543 #: ../fish/guestfish-actions.pod:846
23544 msgid ""
23545 "Another way to get the same information is to enable verbose messages with "
23546 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23547 "before running the program."
23548 msgstr ""
23549
23550 #. type: =head2
23551 #: ../fish/guestfish-actions.pod:851
23552 msgid "download"
23553 msgstr ""
23554
23555 #. type: verbatim
23556 #: ../fish/guestfish-actions.pod:853
23557 #, no-wrap
23558 msgid ""
23559 " download remotefilename (filename|-)\n"
23560 "\n"
23561 msgstr ""
23562
23563 #. type: textblock
23564 #: ../fish/guestfish-actions.pod:860
23565 msgid "See also L</upload>, L</cat>."
23566 msgstr ""
23567
23568 #. type: =head2
23569 #: ../fish/guestfish-actions.pod:864
23570 msgid "download-offset"
23571 msgstr ""
23572
23573 #. type: verbatim
23574 #: ../fish/guestfish-actions.pod:866
23575 #, no-wrap
23576 msgid ""
23577 " download-offset remotefilename (filename|-) offset size\n"
23578 "\n"
23579 msgstr ""
23580
23581 #. type: textblock
23582 #: ../fish/guestfish-actions.pod:874
23583 msgid ""
23584 "Note that there is no limit on the amount of data that can be downloaded "
23585 "with this call, unlike with L</pread>, and this call always reads the full "
23586 "amount unless an error occurs."
23587 msgstr ""
23588
23589 #. type: textblock
23590 #: ../fish/guestfish-actions.pod:879
23591 msgid "See also L</download>, L</pread>."
23592 msgstr ""
23593
23594 #. type: =head2
23595 #: ../fish/guestfish-actions.pod:883
23596 msgid "drop-caches"
23597 msgstr ""
23598
23599 #. type: verbatim
23600 #: ../fish/guestfish-actions.pod:885
23601 #, no-wrap
23602 msgid ""
23603 " drop-caches whattodrop\n"
23604 "\n"
23605 msgstr ""
23606
23607 #. type: =head2
23608 #: ../fish/guestfish-actions.pod:897
23609 msgid "du"
23610 msgstr ""
23611
23612 #. type: verbatim
23613 #: ../fish/guestfish-actions.pod:899
23614 #, no-wrap
23615 msgid ""
23616 " du path\n"
23617 "\n"
23618 msgstr ""
23619
23620 #. type: =head2
23621 #: ../fish/guestfish-actions.pod:911
23622 msgid "e2fsck-f"
23623 msgstr ""
23624
23625 #. type: verbatim
23626 #: ../fish/guestfish-actions.pod:913
23627 #, no-wrap
23628 msgid ""
23629 " e2fsck-f device\n"
23630 "\n"
23631 msgstr ""
23632
23633 #. type: textblock
23634 #: ../fish/guestfish-actions.pod:919
23635 msgid ""
23636 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23637 "should use L</fsck>."
23638 msgstr ""
23639
23640 #. type: =head2
23641 #: ../fish/guestfish-actions.pod:922
23642 msgid "echo-daemon"
23643 msgstr ""
23644
23645 #. type: verbatim
23646 #: ../fish/guestfish-actions.pod:924
23647 #, no-wrap
23648 msgid ""
23649 " echo-daemon 'words ...'\n"
23650 "\n"
23651 msgstr ""
23652
23653 #. type: textblock
23654 #: ../fish/guestfish-actions.pod:931
23655 msgid "See also L</ping-daemon>."
23656 msgstr ""
23657
23658 #. type: =head2
23659 #: ../fish/guestfish-actions.pod:933
23660 msgid "egrep"
23661 msgstr ""
23662
23663 #. type: verbatim
23664 #: ../fish/guestfish-actions.pod:935
23665 #, no-wrap
23666 msgid ""
23667 " egrep regex path\n"
23668 "\n"
23669 msgstr ""
23670
23671 #. type: =head2
23672 #: ../fish/guestfish-actions.pod:943
23673 msgid "egrepi"
23674 msgstr ""
23675
23676 #. type: verbatim
23677 #: ../fish/guestfish-actions.pod:945
23678 #, no-wrap
23679 msgid ""
23680 " egrepi regex path\n"
23681 "\n"
23682 msgstr ""
23683
23684 #. type: =head2
23685 #: ../fish/guestfish-actions.pod:953
23686 msgid "equal"
23687 msgstr ""
23688
23689 #. type: verbatim
23690 #: ../fish/guestfish-actions.pod:955
23691 #, no-wrap
23692 msgid ""
23693 " equal file1 file2\n"
23694 "\n"
23695 msgstr ""
23696
23697 #. type: =head2
23698 #: ../fish/guestfish-actions.pod:962
23699 msgid "exists"
23700 msgstr ""
23701
23702 #. type: verbatim
23703 #: ../fish/guestfish-actions.pod:964
23704 #, no-wrap
23705 msgid ""
23706 " exists path\n"
23707 "\n"
23708 msgstr ""
23709
23710 #. type: textblock
23711 #: ../fish/guestfish-actions.pod:969
23712 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23713 msgstr ""
23714
23715 #. type: =head2
23716 #: ../fish/guestfish-actions.pod:971
23717 msgid "fallocate"
23718 msgstr ""
23719
23720 #. type: verbatim
23721 #: ../fish/guestfish-actions.pod:973
23722 #, no-wrap
23723 msgid ""
23724 " fallocate path len\n"
23725 "\n"
23726 msgstr ""
23727
23728 #. type: =head2
23729 #: ../fish/guestfish-actions.pod:990
23730 msgid "fallocate64"
23731 msgstr ""
23732
23733 #. type: verbatim
23734 #: ../fish/guestfish-actions.pod:992
23735 #, no-wrap
23736 msgid ""
23737 " fallocate64 path len\n"
23738 "\n"
23739 msgstr ""
23740
23741 #. type: textblock
23742 #: ../fish/guestfish-actions.pod:998
23743 msgid ""
23744 "Note that this call allocates disk blocks for the file.  To create a sparse "
23745 "file use L</truncate-size> instead."
23746 msgstr ""
23747
23748 #. type: textblock
23749 #: ../fish/guestfish-actions.pod:1001
23750 msgid ""
23751 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23752 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23753 "maximum size of files created through that call to 1GB."
23754 msgstr ""
23755
23756 #. type: =head2
23757 #: ../fish/guestfish-actions.pod:1010
23758 msgid "fgrep"
23759 msgstr ""
23760
23761 #. type: verbatim
23762 #: ../fish/guestfish-actions.pod:1012
23763 #, no-wrap
23764 msgid ""
23765 " fgrep pattern path\n"
23766 "\n"
23767 msgstr ""
23768
23769 #. type: =head2
23770 #: ../fish/guestfish-actions.pod:1020
23771 msgid "fgrepi"
23772 msgstr ""
23773
23774 #. type: verbatim
23775 #: ../fish/guestfish-actions.pod:1022
23776 #, no-wrap
23777 msgid ""
23778 " fgrepi pattern path\n"
23779 "\n"
23780 msgstr ""
23781
23782 #. type: =head2
23783 #: ../fish/guestfish-actions.pod:1030
23784 msgid "file"
23785 msgstr ""
23786
23787 #. type: verbatim
23788 #: ../fish/guestfish-actions.pod:1032
23789 #, no-wrap
23790 msgid ""
23791 " file path\n"
23792 "\n"
23793 msgstr ""
23794
23795 #. type: textblock
23796 #: ../fish/guestfish-actions.pod:1048
23797 msgid ""
23798 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23799 "(etc), L</is-zero>."
23800 msgstr ""
23801
23802 #. type: =head2
23803 #: ../fish/guestfish-actions.pod:1051
23804 msgid "file-architecture"
23805 msgstr ""
23806
23807 #. type: verbatim
23808 #: ../fish/guestfish-actions.pod:1053
23809 #, no-wrap
23810 msgid ""
23811 " file-architecture filename\n"
23812 "\n"
23813 msgstr ""
23814
23815 #. type: =head2
23816 #: ../fish/guestfish-actions.pod:1156
23817 msgid "filesize"
23818 msgstr ""
23819
23820 #. type: verbatim
23821 #: ../fish/guestfish-actions.pod:1158
23822 #, no-wrap
23823 msgid ""
23824 " filesize file\n"
23825 "\n"
23826 msgstr ""
23827
23828 #. type: textblock
23829 #: ../fish/guestfish-actions.pod:1162
23830 msgid ""
23831 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23832 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23833 msgstr ""
23834
23835 #. type: =head2
23836 #: ../fish/guestfish-actions.pod:1166
23837 msgid "fill"
23838 msgstr ""
23839
23840 #. type: verbatim
23841 #: ../fish/guestfish-actions.pod:1168
23842 #, no-wrap
23843 msgid ""
23844 " fill c len path\n"
23845 "\n"
23846 msgstr ""
23847
23848 #. type: textblock
23849 #: ../fish/guestfish-actions.pod:1174
23850 msgid ""
23851 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23852 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23853 "L</fill-pattern>."
23854 msgstr ""
23855
23856 #. type: =head2
23857 #: ../fish/guestfish-actions.pod:1179
23858 msgid "fill-pattern"
23859 msgstr ""
23860
23861 #. type: verbatim
23862 #: ../fish/guestfish-actions.pod:1181
23863 #, no-wrap
23864 msgid ""
23865 " fill-pattern pattern len path\n"
23866 "\n"
23867 msgstr ""
23868
23869 #. type: textblock
23870 #: ../fish/guestfish-actions.pod:1183
23871 msgid ""
23872 "This function is like L</fill> except that it creates a new file of length "
23873 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23874 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23875 "bytes."
23876 msgstr ""
23877
23878 #. type: =head2
23879 #: ../fish/guestfish-actions.pod:1188
23880 msgid "find"
23881 msgstr ""
23882
23883 #. type: verbatim
23884 #: ../fish/guestfish-actions.pod:1190
23885 #, no-wrap
23886 msgid ""
23887 " find directory\n"
23888 "\n"
23889 msgstr ""
23890
23891 #. type: textblock
23892 #: ../fish/guestfish-actions.pod:1204
23893 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23894 msgstr ""
23895
23896 #. type: textblock
23897 #: ../fish/guestfish-actions.pod:1217
23898 msgid "See also L</find0>."
23899 msgstr ""
23900
23901 #. type: =head2
23902 #: ../fish/guestfish-actions.pod:1222
23903 msgid "find0"
23904 msgstr ""
23905
23906 #. type: verbatim
23907 #: ../fish/guestfish-actions.pod:1224
23908 #, no-wrap
23909 msgid ""
23910 " find0 directory (files|-)\n"
23911 "\n"
23912 msgstr ""
23913
23914 #. type: textblock
23915 #: ../fish/guestfish-actions.pod:1230
23916 msgid ""
23917 "This command works the same way as L</find> with the following exceptions:"
23918 msgstr ""
23919
23920 #. type: =head2
23921 #: ../fish/guestfish-actions.pod:1257
23922 msgid "findfs-label"
23923 msgstr ""
23924
23925 #. type: verbatim
23926 #: ../fish/guestfish-actions.pod:1259
23927 #, no-wrap
23928 msgid ""
23929 " findfs-label label\n"
23930 "\n"
23931 msgstr ""
23932
23933 #. type: textblock
23934 #: ../fish/guestfish-actions.pod:1265
23935 msgid "To find the label of a filesystem, use L</vfs-label>."
23936 msgstr ""
23937
23938 #. type: =head2
23939 #: ../fish/guestfish-actions.pod:1267
23940 msgid "findfs-uuid"
23941 msgstr ""
23942
23943 #. type: verbatim
23944 #: ../fish/guestfish-actions.pod:1269
23945 #, no-wrap
23946 msgid ""
23947 " findfs-uuid uuid\n"
23948 "\n"
23949 msgstr ""
23950
23951 #. type: textblock
23952 #: ../fish/guestfish-actions.pod:1275
23953 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23954 msgstr ""
23955
23956 #. type: =head2
23957 #: ../fish/guestfish-actions.pod:1277
23958 msgid "fsck"
23959 msgstr ""
23960
23961 #. type: verbatim
23962 #: ../fish/guestfish-actions.pod:1279
23963 #, no-wrap
23964 msgid ""
23965 " fsck fstype device\n"
23966 "\n"
23967 msgstr ""
23968
23969 #. type: =head2
23970 #: ../fish/guestfish-actions.pod:1309
23971 msgid "get-append"
23972 msgstr ""
23973
23974 #. type: verbatim
23975 #: ../fish/guestfish-actions.pod:1311
23976 #, no-wrap
23977 msgid ""
23978 " get-append\n"
23979 "\n"
23980 msgstr ""
23981
23982 #. type: =head2
23983 #: ../fish/guestfish-actions.pod:1318
23984 msgid "get-attach-method"
23985 msgstr ""
23986
23987 #. type: verbatim
23988 #: ../fish/guestfish-actions.pod:1320
23989 #, no-wrap
23990 msgid ""
23991 " get-attach-method\n"
23992 "\n"
23993 msgstr ""
23994
23995 #. type: textblock
23996 #: ../fish/guestfish-actions.pod:1322
23997 msgid "Return the current attach method.  See L</set-attach-method>."
23998 msgstr ""
23999
24000 #. type: =head2
24001 #: ../fish/guestfish-actions.pod:1324
24002 msgid "get-autosync"
24003 msgstr ""
24004
24005 #. type: verbatim
24006 #: ../fish/guestfish-actions.pod:1326
24007 #, no-wrap
24008 msgid ""
24009 " get-autosync\n"
24010 "\n"
24011 msgstr ""
24012
24013 #. type: =head2
24014 #: ../fish/guestfish-actions.pod:1330
24015 msgid "get-direct"
24016 msgstr ""
24017
24018 #. type: verbatim
24019 #: ../fish/guestfish-actions.pod:1332
24020 #, no-wrap
24021 msgid ""
24022 " get-direct\n"
24023 "\n"
24024 msgstr ""
24025
24026 #. type: =head2
24027 #: ../fish/guestfish-actions.pod:1336
24028 msgid "get-e2label"
24029 msgstr ""
24030
24031 #. type: verbatim
24032 #: ../fish/guestfish-actions.pod:1338
24033 #, no-wrap
24034 msgid ""
24035 " get-e2label device\n"
24036 "\n"
24037 msgstr ""
24038
24039 #. type: =head2
24040 #: ../fish/guestfish-actions.pod:1350
24041 msgid "get-e2uuid"
24042 msgstr ""
24043
24044 #. type: verbatim
24045 #: ../fish/guestfish-actions.pod:1352
24046 #, no-wrap
24047 msgid ""
24048 " get-e2uuid device\n"
24049 "\n"
24050 msgstr ""
24051
24052 #. type: =head2
24053 #: ../fish/guestfish-actions.pod:1364
24054 msgid "get-memsize"
24055 msgstr ""
24056
24057 #. type: verbatim
24058 #: ../fish/guestfish-actions.pod:1366
24059 #, no-wrap
24060 msgid ""
24061 " get-memsize\n"
24062 "\n"
24063 msgstr ""
24064
24065 #. type: textblock
24066 #: ../fish/guestfish-actions.pod:1371
24067 msgid ""
24068 "If L</set-memsize> was not called on this handle, and if "
24069 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
24070 "value for memsize."
24071 msgstr ""
24072
24073 #. type: =head2
24074 #: ../fish/guestfish-actions.pod:1378
24075 msgid "get-network"
24076 msgstr ""
24077
24078 #. type: verbatim
24079 #: ../fish/guestfish-actions.pod:1380
24080 #, no-wrap
24081 msgid ""
24082 " get-network\n"
24083 "\n"
24084 msgstr ""
24085
24086 #. type: =head2
24087 #: ../fish/guestfish-actions.pod:1384
24088 msgid "get-path"
24089 msgstr ""
24090
24091 #. type: verbatim
24092 #: ../fish/guestfish-actions.pod:1386
24093 #, no-wrap
24094 msgid ""
24095 " get-path\n"
24096 "\n"
24097 msgstr ""
24098
24099 #. type: =head2
24100 #: ../fish/guestfish-actions.pod:1393
24101 msgid "get-pid"
24102 msgstr ""
24103
24104 #. type: =head2
24105 #: ../fish/guestfish-actions.pod:1395
24106 msgid "pid"
24107 msgstr ""
24108
24109 #. type: verbatim
24110 #: ../fish/guestfish-actions.pod:1397
24111 #, no-wrap
24112 msgid ""
24113 " get-pid\n"
24114 "\n"
24115 msgstr ""
24116
24117 #. type: =head2
24118 #: ../fish/guestfish-actions.pod:1404
24119 msgid "get-qemu"
24120 msgstr ""
24121
24122 #. type: verbatim
24123 #: ../fish/guestfish-actions.pod:1406
24124 #, no-wrap
24125 msgid ""
24126 " get-qemu\n"
24127 "\n"
24128 msgstr ""
24129
24130 #. type: =head2
24131 #: ../fish/guestfish-actions.pod:1413
24132 msgid "get-recovery-proc"
24133 msgstr ""
24134
24135 #. type: verbatim
24136 #: ../fish/guestfish-actions.pod:1415
24137 #, no-wrap
24138 msgid ""
24139 " get-recovery-proc\n"
24140 "\n"
24141 msgstr ""
24142
24143 #. type: =head2
24144 #: ../fish/guestfish-actions.pod:1419
24145 msgid "get-selinux"
24146 msgstr ""
24147
24148 #. type: verbatim
24149 #: ../fish/guestfish-actions.pod:1421
24150 #, no-wrap
24151 msgid ""
24152 " get-selinux\n"
24153 "\n"
24154 msgstr ""
24155
24156 #. type: textblock
24157 #: ../fish/guestfish-actions.pod:1423
24158 msgid ""
24159 "This returns the current setting of the selinux flag which is passed to the "
24160 "appliance at boot time.  See L</set-selinux>."
24161 msgstr ""
24162
24163 #. type: =head2
24164 #: ../fish/guestfish-actions.pod:1429
24165 msgid "get-state"
24166 msgstr ""
24167
24168 #. type: verbatim
24169 #: ../fish/guestfish-actions.pod:1431
24170 #, no-wrap
24171 msgid ""
24172 " get-state\n"
24173 "\n"
24174 msgstr ""
24175
24176 #. type: =head2
24177 #: ../fish/guestfish-actions.pod:1438
24178 msgid "get-trace"
24179 msgstr ""
24180
24181 #. type: verbatim
24182 #: ../fish/guestfish-actions.pod:1440
24183 #, no-wrap
24184 msgid ""
24185 " get-trace\n"
24186 "\n"
24187 msgstr ""
24188
24189 #. type: =head2
24190 #: ../fish/guestfish-actions.pod:1444
24191 msgid "get-umask"
24192 msgstr ""
24193
24194 #. type: verbatim
24195 #: ../fish/guestfish-actions.pod:1446
24196 #, no-wrap
24197 msgid ""
24198 " get-umask\n"
24199 "\n"
24200 msgstr ""
24201
24202 #. type: textblock
24203 #: ../fish/guestfish-actions.pod:1448
24204 msgid ""
24205 "Return the current umask.  By default the umask is C<022> unless it has been "
24206 "set by calling L</umask>."
24207 msgstr ""
24208
24209 #. type: =head2
24210 #: ../fish/guestfish-actions.pod:1451
24211 msgid "get-verbose"
24212 msgstr ""
24213
24214 #. type: verbatim
24215 #: ../fish/guestfish-actions.pod:1453
24216 #, no-wrap
24217 msgid ""
24218 " get-verbose\n"
24219 "\n"
24220 msgstr ""
24221
24222 #. type: =head2
24223 #: ../fish/guestfish-actions.pod:1457
24224 msgid "getcon"
24225 msgstr ""
24226
24227 #. type: verbatim
24228 #: ../fish/guestfish-actions.pod:1459
24229 #, no-wrap
24230 msgid ""
24231 " getcon\n"
24232 "\n"
24233 msgstr ""
24234
24235 #. type: textblock
24236 #: ../fish/guestfish-actions.pod:1463
24237 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
24238 msgstr ""
24239
24240 #. type: =head2
24241 #: ../fish/guestfish-actions.pod:1466
24242 msgid "getxattr"
24243 msgstr ""
24244
24245 #. type: verbatim
24246 #: ../fish/guestfish-actions.pod:1468
24247 #, no-wrap
24248 msgid ""
24249 " getxattr path name\n"
24250 "\n"
24251 msgstr ""
24252
24253 #. type: textblock
24254 #: ../fish/guestfish-actions.pod:1470
24255 msgid ""
24256 "Get a single extended attribute from file C<path> named C<name>.  This call "
24257 "follows symlinks.  If you want to lookup an extended attribute for the "
24258 "symlink itself, use L</lgetxattr>."
24259 msgstr ""
24260
24261 #. type: textblock
24262 #: ../fish/guestfish-actions.pod:1474 ../fish/guestfish-actions.pod:2501
24263 msgid ""
24264 "Normally it is better to get all extended attributes from a file in one go "
24265 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
24266 "buggy and do not provide a way to list out attributes.  For these "
24267 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
24268 "attributes you want in advance and call this function."
24269 msgstr ""
24270
24271 #. type: textblock
24272 #: ../fish/guestfish-actions.pod:1484
24273 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
24274 msgstr ""
24275
24276 #. type: =head2
24277 #: ../fish/guestfish-actions.pod:1486
24278 msgid "getxattrs"
24279 msgstr ""
24280
24281 #. type: verbatim
24282 #: ../fish/guestfish-actions.pod:1488
24283 #, no-wrap
24284 msgid ""
24285 " getxattrs path\n"
24286 "\n"
24287 msgstr ""
24288
24289 #. type: textblock
24290 #: ../fish/guestfish-actions.pod:1496
24291 msgid "See also: L</lgetxattrs>, L<attr(5)>."
24292 msgstr ""
24293
24294 #. type: =head2
24295 #: ../fish/guestfish-actions.pod:1498
24296 msgid "glob-expand"
24297 msgstr ""
24298
24299 #. type: verbatim
24300 #: ../fish/guestfish-actions.pod:1500
24301 #, no-wrap
24302 msgid ""
24303 " glob-expand pattern\n"
24304 "\n"
24305 msgstr ""
24306
24307 #. type: =head2
24308 #: ../fish/guestfish-actions.pod:1513
24309 msgid "grep"
24310 msgstr ""
24311
24312 #. type: verbatim
24313 #: ../fish/guestfish-actions.pod:1515
24314 #, no-wrap
24315 msgid ""
24316 " grep regex path\n"
24317 "\n"
24318 msgstr ""
24319
24320 #. type: =head2
24321 #: ../fish/guestfish-actions.pod:1523
24322 msgid "grepi"
24323 msgstr ""
24324
24325 #. type: verbatim
24326 #: ../fish/guestfish-actions.pod:1525
24327 #, no-wrap
24328 msgid ""
24329 " grepi regex path\n"
24330 "\n"
24331 msgstr ""
24332
24333 #. type: =head2
24334 #: ../fish/guestfish-actions.pod:1533
24335 msgid "grub-install"
24336 msgstr ""
24337
24338 #. type: verbatim
24339 #: ../fish/guestfish-actions.pod:1535
24340 #, no-wrap
24341 msgid ""
24342 " grub-install root device\n"
24343 "\n"
24344 msgstr ""
24345
24346 #. type: =head2
24347 #: ../fish/guestfish-actions.pod:1551
24348 msgid "head"
24349 msgstr ""
24350
24351 #. type: verbatim
24352 #: ../fish/guestfish-actions.pod:1553
24353 #, no-wrap
24354 msgid ""
24355 " head path\n"
24356 "\n"
24357 msgstr ""
24358
24359 #. type: =head2
24360 #: ../fish/guestfish-actions.pod:1561
24361 msgid "head-n"
24362 msgstr ""
24363
24364 #. type: verbatim
24365 #: ../fish/guestfish-actions.pod:1563
24366 #, no-wrap
24367 msgid ""
24368 " head-n nrlines path\n"
24369 "\n"
24370 msgstr ""
24371
24372 #. type: =head2
24373 #: ../fish/guestfish-actions.pod:1576
24374 msgid "hexdump"
24375 msgstr ""
24376
24377 #. type: verbatim
24378 #: ../fish/guestfish-actions.pod:1578
24379 #, no-wrap
24380 msgid ""
24381 " hexdump path\n"
24382 "\n"
24383 msgstr ""
24384
24385 #. type: =head2
24386 #: ../fish/guestfish-actions.pod:1586
24387 msgid "initrd-cat"
24388 msgstr ""
24389
24390 #. type: verbatim
24391 #: ../fish/guestfish-actions.pod:1588
24392 #, no-wrap
24393 msgid ""
24394 " initrd-cat initrdpath filename\n"
24395 "\n"
24396 msgstr ""
24397
24398 #. type: textblock
24399 #: ../fish/guestfish-actions.pod:1600
24400 msgid "See also L</initrd-list>."
24401 msgstr ""
24402
24403 #. type: =head2
24404 #: ../fish/guestfish-actions.pod:1605
24405 msgid "initrd-list"
24406 msgstr ""
24407
24408 #. type: verbatim
24409 #: ../fish/guestfish-actions.pod:1607
24410 #, no-wrap
24411 msgid ""
24412 " initrd-list path\n"
24413 "\n"
24414 msgstr ""
24415
24416 #. type: =head2
24417 #: ../fish/guestfish-actions.pod:1619
24418 msgid "inotify-add-watch"
24419 msgstr ""
24420
24421 #. type: verbatim
24422 #: ../fish/guestfish-actions.pod:1621
24423 #, no-wrap
24424 msgid ""
24425 " inotify-add-watch path mask\n"
24426 "\n"
24427 msgstr ""
24428
24429 #. type: =head2
24430 #: ../fish/guestfish-actions.pod:1633
24431 msgid "inotify-close"
24432 msgstr ""
24433
24434 #. type: verbatim
24435 #: ../fish/guestfish-actions.pod:1635
24436 #, no-wrap
24437 msgid ""
24438 " inotify-close\n"
24439 "\n"
24440 msgstr ""
24441
24442 #. type: =head2
24443 #: ../fish/guestfish-actions.pod:1641
24444 msgid "inotify-files"
24445 msgstr ""
24446
24447 #. type: verbatim
24448 #: ../fish/guestfish-actions.pod:1643
24449 #, no-wrap
24450 msgid ""
24451 " inotify-files\n"
24452 "\n"
24453 msgstr ""
24454
24455 #. type: textblock
24456 #: ../fish/guestfish-actions.pod:1645
24457 msgid ""
24458 "This function is a helpful wrapper around L</inotify-read> which just "
24459 "returns a list of pathnames of objects that were touched.  The returned "
24460 "pathnames are sorted and deduplicated."
24461 msgstr ""
24462
24463 #. type: =head2
24464 #: ../fish/guestfish-actions.pod:1649
24465 msgid "inotify-init"
24466 msgstr ""
24467
24468 #. type: verbatim
24469 #: ../fish/guestfish-actions.pod:1651
24470 #, no-wrap
24471 msgid ""
24472 " inotify-init maxevents\n"
24473 "\n"
24474 msgstr ""
24475
24476 #. type: textblock
24477 #: ../fish/guestfish-actions.pod:1657
24478 msgid ""
24479 "C<maxevents> is the maximum number of events which will be queued up between "
24480 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
24481 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
24482 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
24483 "but records the fact that it threw them away by setting a flag "
24484 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24485 msgstr ""
24486
24487 #. type: textblock
24488 #: ../fish/guestfish-actions.pod:1667
24489 msgid ""
24490 "Before any events are generated, you have to add some watches to the "
24491 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
24492 "L</inotify-watch-all>."
24493 msgstr ""
24494
24495 #. type: textblock
24496 #: ../fish/guestfish-actions.pod:1673
24497 msgid ""
24498 "Queued up events should be read periodically by calling L</inotify-read> (or "
24499 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
24500 "If you don't read the events out often enough then you risk the internal "
24501 "queue overflowing."
24502 msgstr ""
24503
24504 #. type: textblock
24505 #: ../fish/guestfish-actions.pod:1680
24506 msgid ""
24507 "The handle should be closed after use by calling L</inotify-close>.  This "
24508 "also removes any watches automatically."
24509 msgstr ""
24510
24511 #. type: =head2
24512 #: ../fish/guestfish-actions.pod:1689
24513 msgid "inotify-read"
24514 msgstr ""
24515
24516 #. type: verbatim
24517 #: ../fish/guestfish-actions.pod:1691
24518 #, no-wrap
24519 msgid ""
24520 " inotify-read\n"
24521 "\n"
24522 msgstr ""
24523
24524 #. type: =head2
24525 #: ../fish/guestfish-actions.pod:1704
24526 msgid "inotify-rm-watch"
24527 msgstr ""
24528
24529 #. type: verbatim
24530 #: ../fish/guestfish-actions.pod:1706
24531 #, no-wrap
24532 msgid ""
24533 " inotify-rm-watch wd\n"
24534 "\n"
24535 msgstr ""
24536
24537 #. type: textblock
24538 #: ../fish/guestfish-actions.pod:1708
24539 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24540 msgstr ""
24541
24542 #. type: =head2
24543 #: ../fish/guestfish-actions.pod:1711
24544 msgid "inspect-get-arch"
24545 msgstr ""
24546
24547 #. type: verbatim
24548 #: ../fish/guestfish-actions.pod:1713
24549 #, no-wrap
24550 msgid ""
24551 " inspect-get-arch root\n"
24552 "\n"
24553 msgstr ""
24554
24555 #. type: textblock
24556 #: ../fish/guestfish-actions.pod:1715
24557 msgid ""
24558 "This returns the architecture of the inspected operating system.  The "
24559 "possible return values are listed under L</file-architecture>."
24560 msgstr ""
24561
24562 #. type: =head2
24563 #: ../fish/guestfish-actions.pod:1724
24564 msgid "inspect-get-distro"
24565 msgstr ""
24566
24567 #. type: verbatim
24568 #: ../fish/guestfish-actions.pod:1726
24569 #, no-wrap
24570 msgid ""
24571 " inspect-get-distro root\n"
24572 "\n"
24573 msgstr ""
24574
24575 #. type: =head2
24576 #: ../fish/guestfish-actions.pod:1807
24577 msgid "inspect-get-drive-mappings"
24578 msgstr ""
24579
24580 #. type: verbatim
24581 #: ../fish/guestfish-actions.pod:1809
24582 #, no-wrap
24583 msgid ""
24584 " inspect-get-drive-mappings root\n"
24585 "\n"
24586 msgstr ""
24587
24588 #. type: textblock
24589 #: ../fish/guestfish-actions.pod:1836
24590 msgid ""
24591 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24592 "get-mountpoints>, L</inspect-get-filesystems>."
24593 msgstr ""
24594
24595 #. type: =head2
24596 #: ../fish/guestfish-actions.pod:1840
24597 msgid "inspect-get-filesystems"
24598 msgstr ""
24599
24600 #. type: verbatim
24601 #: ../fish/guestfish-actions.pod:1842
24602 #, no-wrap
24603 msgid ""
24604 " inspect-get-filesystems root\n"
24605 "\n"
24606 msgstr ""
24607
24608 #. type: textblock
24609 #: ../fish/guestfish-actions.pod:1852
24610 msgid ""
24611 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24612 "get-mountpoints>."
24613 msgstr ""
24614
24615 #. type: =head2
24616 #: ../fish/guestfish-actions.pod:1855
24617 msgid "inspect-get-format"
24618 msgstr ""
24619
24620 #. type: verbatim
24621 #: ../fish/guestfish-actions.pod:1857
24622 #, no-wrap
24623 msgid ""
24624 " inspect-get-format root\n"
24625 "\n"
24626 msgstr ""
24627
24628 #. type: =head2
24629 #: ../fish/guestfish-actions.pod:1886
24630 msgid "inspect-get-hostname"
24631 msgstr ""
24632
24633 #. type: verbatim
24634 #: ../fish/guestfish-actions.pod:1888
24635 #, no-wrap
24636 msgid ""
24637 " inspect-get-hostname root\n"
24638 "\n"
24639 msgstr ""
24640
24641 #. type: =head2
24642 #: ../fish/guestfish-actions.pod:1898
24643 msgid "inspect-get-icon"
24644 msgstr ""
24645
24646 #. type: verbatim
24647 #: ../fish/guestfish-actions.pod:1900
24648 #, no-wrap
24649 msgid ""
24650 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24651 "\n"
24652 msgstr ""
24653
24654 #. type: =head2
24655 #: ../fish/guestfish-actions.pod:1964
24656 msgid "inspect-get-major-version"
24657 msgstr ""
24658
24659 #. type: verbatim
24660 #: ../fish/guestfish-actions.pod:1966
24661 #, no-wrap
24662 msgid ""
24663 " inspect-get-major-version root\n"
24664 "\n"
24665 msgstr ""
24666
24667 #. type: =head2
24668 #: ../fish/guestfish-actions.pod:1982
24669 msgid "inspect-get-minor-version"
24670 msgstr ""
24671
24672 #. type: verbatim
24673 #: ../fish/guestfish-actions.pod:1984
24674 #, no-wrap
24675 msgid ""
24676 " inspect-get-minor-version root\n"
24677 "\n"
24678 msgstr ""
24679
24680 #. type: textblock
24681 #: ../fish/guestfish-actions.pod:1991
24682 msgid ""
24683 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24684 "get-major-version>."
24685 msgstr ""
24686
24687 #. type: =head2
24688 #: ../fish/guestfish-actions.pod:1994
24689 msgid "inspect-get-mountpoints"
24690 msgstr ""
24691
24692 #. type: verbatim
24693 #: ../fish/guestfish-actions.pod:1996
24694 #, no-wrap
24695 msgid ""
24696 " inspect-get-mountpoints root\n"
24697 "\n"
24698 msgstr ""
24699
24700 #. type: textblock
24701 #: ../fish/guestfish-actions.pod:2015
24702 msgid ""
24703 "For operating systems like Windows which still use drive letters, this call "
24704 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24705 "information about the mapping of drive letters to partitions, see L</inspect-"
24706 "get-drive-mappings>."
24707 msgstr ""
24708
24709 #. type: textblock
24710 #: ../fish/guestfish-actions.pod:2021
24711 msgid ""
24712 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24713 "get-filesystems>."
24714 msgstr ""
24715
24716 #. type: =head2
24717 #: ../fish/guestfish-actions.pod:2024
24718 msgid "inspect-get-package-format"
24719 msgstr ""
24720
24721 #. type: verbatim
24722 #: ../fish/guestfish-actions.pod:2026
24723 #, no-wrap
24724 msgid ""
24725 " inspect-get-package-format root\n"
24726 "\n"
24727 msgstr ""
24728
24729 #. type: textblock
24730 #: ../fish/guestfish-actions.pod:2028
24731 msgid ""
24732 "This function and L</inspect-get-package-management> return the package "
24733 "format and package management tool used by the inspected operating system.  "
24734 "For example for Fedora these functions would return C<rpm> (package format) "
24735 "and C<yum> (package management)."
24736 msgstr ""
24737
24738 #. type: =head2
24739 #: ../fish/guestfish-actions.pod:2043
24740 msgid "inspect-get-package-management"
24741 msgstr ""
24742
24743 #. type: verbatim
24744 #: ../fish/guestfish-actions.pod:2045
24745 #, no-wrap
24746 msgid ""
24747 " inspect-get-package-management root\n"
24748 "\n"
24749 msgstr ""
24750
24751 #. type: textblock
24752 #: ../fish/guestfish-actions.pod:2047
24753 msgid ""
24754 "L</inspect-get-package-format> and this function return the package format "
24755 "and package management tool used by the inspected operating system.  For "
24756 "example for Fedora these functions would return C<rpm> (package format) and "
24757 "C<yum> (package management)."
24758 msgstr ""
24759
24760 #. type: =head2
24761 #: ../fish/guestfish-actions.pod:2064
24762 msgid "inspect-get-product-name"
24763 msgstr ""
24764
24765 #. type: verbatim
24766 #: ../fish/guestfish-actions.pod:2066
24767 #, no-wrap
24768 msgid ""
24769 " inspect-get-product-name root\n"
24770 "\n"
24771 msgstr ""
24772
24773 #. type: =head2
24774 #: ../fish/guestfish-actions.pod:2078
24775 msgid "inspect-get-product-variant"
24776 msgstr ""
24777
24778 #. type: verbatim
24779 #: ../fish/guestfish-actions.pod:2080
24780 #, no-wrap
24781 msgid ""
24782 " inspect-get-product-variant root\n"
24783 "\n"
24784 msgstr ""
24785
24786 #. type: textblock
24787 #: ../fish/guestfish-actions.pod:2101
24788 msgid ""
24789 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24790 "get-product-name>, L</inspect-get-major-version>."
24791 msgstr ""
24792
24793 #. type: =head2
24794 #: ../fish/guestfish-actions.pod:2105
24795 msgid "inspect-get-roots"
24796 msgstr ""
24797
24798 #. type: verbatim
24799 #: ../fish/guestfish-actions.pod:2107
24800 #, no-wrap
24801 msgid ""
24802 " inspect-get-roots\n"
24803 "\n"
24804 msgstr ""
24805
24806 #. type: textblock
24807 #: ../fish/guestfish-actions.pod:2109
24808 msgid ""
24809 "This function is a convenient way to get the list of root devices, as "
24810 "returned from a previous call to L</inspect-os>, but without redoing the "
24811 "whole inspection process."
24812 msgstr ""
24813
24814 #. type: textblock
24815 #: ../fish/guestfish-actions.pod:2113
24816 msgid ""
24817 "This returns an empty list if either no root devices were found or the "
24818 "caller has not called L</inspect-os>."
24819 msgstr ""
24820
24821 #. type: =head2
24822 #: ../fish/guestfish-actions.pod:2118
24823 msgid "inspect-get-type"
24824 msgstr ""
24825
24826 #. type: verbatim
24827 #: ../fish/guestfish-actions.pod:2120
24828 #, no-wrap
24829 msgid ""
24830 " inspect-get-type root\n"
24831 "\n"
24832 msgstr ""
24833
24834 #. type: =head2
24835 #: ../fish/guestfish-actions.pod:2150
24836 msgid "inspect-get-windows-current-control-set"
24837 msgstr ""
24838
24839 #. type: verbatim
24840 #: ../fish/guestfish-actions.pod:2152
24841 #, no-wrap
24842 msgid ""
24843 " inspect-get-windows-current-control-set root\n"
24844 "\n"
24845 msgstr ""
24846
24847 #. type: =head2
24848 #: ../fish/guestfish-actions.pod:2163
24849 msgid "inspect-get-windows-systemroot"
24850 msgstr ""
24851
24852 #. type: verbatim
24853 #: ../fish/guestfish-actions.pod:2165
24854 #, no-wrap
24855 msgid ""
24856 " inspect-get-windows-systemroot root\n"
24857 "\n"
24858 msgstr ""
24859
24860 #. type: =head2
24861 #: ../fish/guestfish-actions.pod:2176
24862 msgid "inspect-is-live"
24863 msgstr ""
24864
24865 #. type: verbatim
24866 #: ../fish/guestfish-actions.pod:2178
24867 #, no-wrap
24868 msgid ""
24869 " inspect-is-live root\n"
24870 "\n"
24871 msgstr ""
24872
24873 #. type: textblock
24874 #: ../fish/guestfish-actions.pod:2180
24875 msgid ""
24876 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24877 "then this returns true if a live image was detected on the disk."
24878 msgstr ""
24879
24880 #. type: =head2
24881 #: ../fish/guestfish-actions.pod:2186
24882 msgid "inspect-is-multipart"
24883 msgstr ""
24884
24885 #. type: verbatim
24886 #: ../fish/guestfish-actions.pod:2188
24887 #, no-wrap
24888 msgid ""
24889 " inspect-is-multipart root\n"
24890 "\n"
24891 msgstr ""
24892
24893 #. type: textblock
24894 #: ../fish/guestfish-actions.pod:2190
24895 msgid ""
24896 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24897 "then this returns true if the disk is part of a set."
24898 msgstr ""
24899
24900 #. type: =head2
24901 #: ../fish/guestfish-actions.pod:2196
24902 msgid "inspect-is-netinst"
24903 msgstr ""
24904
24905 #. type: verbatim
24906 #: ../fish/guestfish-actions.pod:2198
24907 #, no-wrap
24908 msgid ""
24909 " inspect-is-netinst root\n"
24910 "\n"
24911 msgstr ""
24912
24913 #. type: textblock
24914 #: ../fish/guestfish-actions.pod:2200
24915 msgid ""
24916 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24917 "then this returns true if the disk is a network installer, ie. not a self-"
24918 "contained install CD but one which is likely to require network access to "
24919 "complete the install."
24920 msgstr ""
24921
24922 #. type: =head2
24923 #: ../fish/guestfish-actions.pod:2208
24924 msgid "inspect-list-applications"
24925 msgstr ""
24926
24927 #. type: verbatim
24928 #: ../fish/guestfish-actions.pod:2210
24929 #, no-wrap
24930 msgid ""
24931 " inspect-list-applications root\n"
24932 "\n"
24933 msgstr ""
24934
24935 #. type: textblock
24936 #: ../fish/guestfish-actions.pod:2214
24937 msgid ""
24938 "I<Note:> This call works differently from other parts of the inspection "
24939 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24940 "then mount up the disks, before calling this.  Listing applications is a "
24941 "significantly more difficult operation which requires access to the full "
24942 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24943 "are just returning data cached in the libguestfs handle, this call actually "
24944 "reads parts of the mounted filesystems during the call."
24945 msgstr ""
24946
24947 #. type: =head2
24948 #: ../fish/guestfish-actions.pod:2304
24949 msgid "inspect-os"
24950 msgstr ""
24951
24952 #. type: verbatim
24953 #: ../fish/guestfish-actions.pod:2306
24954 #, no-wrap
24955 msgid ""
24956 " inspect-os\n"
24957 "\n"
24958 msgstr ""
24959
24960 #. type: textblock
24961 #: ../fish/guestfish-actions.pod:2321
24962 msgid ""
24963 "You can pass the root string(s) returned to other L</inspect-get-*> "
24964 "functions in order to query further information about each operating system, "
24965 "such as the name and version."
24966 msgstr ""
24967
24968 #. type: textblock
24969 #: ../fish/guestfish-actions.pod:2326
24970 msgid ""
24971 "This function uses other libguestfs features such as L</mount-ro> and L</"
24972 "umount-all> in order to mount and unmount filesystems and look at the "
24973 "contents.  This should be called with no disks currently mounted.  The "
24974 "function may also use Augeas, so any existing Augeas handle will be closed."
24975 msgstr ""
24976
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:2338 ../fish/guestfish-actions.pod:2536
24979 #: ../fish/guestfish-actions.pod:2595
24980 msgid "See also L</list-filesystems>."
24981 msgstr ""
24982
24983 #. type: =head2
24984 #: ../fish/guestfish-actions.pod:2340
24985 msgid "is-blockdev"
24986 msgstr ""
24987
24988 #. type: verbatim
24989 #: ../fish/guestfish-actions.pod:2342
24990 #, no-wrap
24991 msgid ""
24992 " is-blockdev path\n"
24993 "\n"
24994 msgstr ""
24995
24996 #. type: textblock
24997 #: ../fish/guestfish-actions.pod:2347 ../fish/guestfish-actions.pod:2365
24998 #: ../fish/guestfish-actions.pod:2384 ../fish/guestfish-actions.pod:2393
24999 #: ../fish/guestfish-actions.pod:2403 ../fish/guestfish-actions.pod:2437
25000 #: ../fish/guestfish-actions.pod:2446
25001 msgid "See also L</stat>."
25002 msgstr ""
25003
25004 #. type: =head2
25005 #: ../fish/guestfish-actions.pod:2349
25006 msgid "is-busy"
25007 msgstr ""
25008
25009 #. type: verbatim
25010 #: ../fish/guestfish-actions.pod:2351
25011 #, no-wrap
25012 msgid ""
25013 " is-busy\n"
25014 "\n"
25015 msgstr ""
25016
25017 #. type: =head2
25018 #: ../fish/guestfish-actions.pod:2358
25019 msgid "is-chardev"
25020 msgstr ""
25021
25022 #. type: verbatim
25023 #: ../fish/guestfish-actions.pod:2360
25024 #, no-wrap
25025 msgid ""
25026 " is-chardev path\n"
25027 "\n"
25028 msgstr ""
25029
25030 #. type: =head2
25031 #: ../fish/guestfish-actions.pod:2367
25032 msgid "is-config"
25033 msgstr ""
25034
25035 #. type: verbatim
25036 #: ../fish/guestfish-actions.pod:2369
25037 #, no-wrap
25038 msgid ""
25039 " is-config\n"
25040 "\n"
25041 msgstr ""
25042
25043 #. type: =head2
25044 #: ../fish/guestfish-actions.pod:2376
25045 msgid "is-dir"
25046 msgstr ""
25047
25048 #. type: verbatim
25049 #: ../fish/guestfish-actions.pod:2378
25050 #, no-wrap
25051 msgid ""
25052 " is-dir path\n"
25053 "\n"
25054 msgstr ""
25055
25056 #. type: =head2
25057 #: ../fish/guestfish-actions.pod:2386
25058 msgid "is-fifo"
25059 msgstr ""
25060
25061 #. type: verbatim
25062 #: ../fish/guestfish-actions.pod:2388
25063 #, no-wrap
25064 msgid ""
25065 " is-fifo path\n"
25066 "\n"
25067 msgstr ""
25068
25069 #. type: =head2
25070 #: ../fish/guestfish-actions.pod:2395
25071 msgid "is-file"
25072 msgstr ""
25073
25074 #. type: verbatim
25075 #: ../fish/guestfish-actions.pod:2397
25076 #, no-wrap
25077 msgid ""
25078 " is-file path\n"
25079 "\n"
25080 msgstr ""
25081
25082 #. type: =head2
25083 #: ../fish/guestfish-actions.pod:2405
25084 msgid "is-launching"
25085 msgstr ""
25086
25087 #. type: verbatim
25088 #: ../fish/guestfish-actions.pod:2407
25089 #, no-wrap
25090 msgid ""
25091 " is-launching\n"
25092 "\n"
25093 msgstr ""
25094
25095 #. type: =head2
25096 #: ../fish/guestfish-actions.pod:2414
25097 msgid "is-lv"
25098 msgstr ""
25099
25100 #. type: verbatim
25101 #: ../fish/guestfish-actions.pod:2416
25102 #, no-wrap
25103 msgid ""
25104 " is-lv device\n"
25105 "\n"
25106 msgstr ""
25107
25108 #. type: =head2
25109 #: ../fish/guestfish-actions.pod:2421
25110 msgid "is-ready"
25111 msgstr ""
25112
25113 #. type: verbatim
25114 #: ../fish/guestfish-actions.pod:2423
25115 #, no-wrap
25116 msgid ""
25117 " is-ready\n"
25118 "\n"
25119 msgstr ""
25120
25121 #. type: =head2
25122 #: ../fish/guestfish-actions.pod:2430
25123 msgid "is-socket"
25124 msgstr ""
25125
25126 #. type: verbatim
25127 #: ../fish/guestfish-actions.pod:2432
25128 #, no-wrap
25129 msgid ""
25130 " is-socket path\n"
25131 "\n"
25132 msgstr ""
25133
25134 #. type: =head2
25135 #: ../fish/guestfish-actions.pod:2439
25136 msgid "is-symlink"
25137 msgstr ""
25138
25139 #. type: verbatim
25140 #: ../fish/guestfish-actions.pod:2441
25141 #, no-wrap
25142 msgid ""
25143 " is-symlink path\n"
25144 "\n"
25145 msgstr ""
25146
25147 #. type: =head2
25148 #: ../fish/guestfish-actions.pod:2448
25149 msgid "is-zero"
25150 msgstr ""
25151
25152 #. type: verbatim
25153 #: ../fish/guestfish-actions.pod:2450
25154 #, no-wrap
25155 msgid ""
25156 " is-zero path\n"
25157 "\n"
25158 msgstr ""
25159
25160 #. type: =head2
25161 #: ../fish/guestfish-actions.pod:2455
25162 msgid "is-zero-device"
25163 msgstr ""
25164
25165 #. type: verbatim
25166 #: ../fish/guestfish-actions.pod:2457
25167 #, no-wrap
25168 msgid ""
25169 " is-zero-device device\n"
25170 "\n"
25171 msgstr ""
25172
25173 #. type: =head2
25174 #: ../fish/guestfish-actions.pod:2463
25175 msgid "kill-subprocess"
25176 msgstr ""
25177
25178 #. type: verbatim
25179 #: ../fish/guestfish-actions.pod:2465
25180 #, no-wrap
25181 msgid ""
25182 " kill-subprocess\n"
25183 "\n"
25184 msgstr ""
25185
25186 #. type: =head2
25187 #: ../fish/guestfish-actions.pod:2469
25188 msgid "launch"
25189 msgstr ""
25190
25191 #. type: =head2
25192 #: ../fish/guestfish-actions.pod:2471
25193 msgid "run"
25194 msgstr ""
25195
25196 #. type: verbatim
25197 #: ../fish/guestfish-actions.pod:2473
25198 #, no-wrap
25199 msgid ""
25200 " launch\n"
25201 "\n"
25202 msgstr ""
25203
25204 #. type: =head2
25205 #: ../fish/guestfish-actions.pod:2481
25206 msgid "lchown"
25207 msgstr ""
25208
25209 #. type: verbatim
25210 #: ../fish/guestfish-actions.pod:2483
25211 #, no-wrap
25212 msgid ""
25213 " lchown owner group path\n"
25214 "\n"
25215 msgstr ""
25216
25217 #. type: textblock
25218 #: ../fish/guestfish-actions.pod:2485
25219 msgid ""
25220 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
25221 "chown> but if C<path> is a symlink then the link itself is changed, not the "
25222 "target."
25223 msgstr ""
25224
25225 #. type: =head2
25226 #: ../fish/guestfish-actions.pod:2493
25227 msgid "lgetxattr"
25228 msgstr ""
25229
25230 #. type: verbatim
25231 #: ../fish/guestfish-actions.pod:2495
25232 #, no-wrap
25233 msgid ""
25234 " lgetxattr path name\n"
25235 "\n"
25236 msgstr ""
25237
25238 #. type: textblock
25239 #: ../fish/guestfish-actions.pod:2511
25240 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
25241 msgstr ""
25242
25243 #. type: =head2
25244 #: ../fish/guestfish-actions.pod:2513
25245 msgid "lgetxattrs"
25246 msgstr ""
25247
25248 #. type: verbatim
25249 #: ../fish/guestfish-actions.pod:2515
25250 #, no-wrap
25251 msgid ""
25252 " lgetxattrs path\n"
25253 "\n"
25254 msgstr ""
25255
25256 #. type: textblock
25257 #: ../fish/guestfish-actions.pod:2517
25258 msgid ""
25259 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
25260 "it returns the extended attributes of the link itself."
25261 msgstr ""
25262
25263 #. type: =head2
25264 #: ../fish/guestfish-actions.pod:2521
25265 msgid "list-9p"
25266 msgstr ""
25267
25268 #. type: verbatim
25269 #: ../fish/guestfish-actions.pod:2523
25270 #, no-wrap
25271 msgid ""
25272 " list-9p\n"
25273 "\n"
25274 msgstr ""
25275
25276 #. type: =head2
25277 #: ../fish/guestfish-actions.pod:2528
25278 msgid "list-devices"
25279 msgstr ""
25280
25281 #. type: verbatim
25282 #: ../fish/guestfish-actions.pod:2530
25283 #, no-wrap
25284 msgid ""
25285 " list-devices\n"
25286 "\n"
25287 msgstr ""
25288
25289 #. type: =head2
25290 #: ../fish/guestfish-actions.pod:2538
25291 msgid "list-dm-devices"
25292 msgstr ""
25293
25294 #. type: verbatim
25295 #: ../fish/guestfish-actions.pod:2540
25296 #, no-wrap
25297 msgid ""
25298 " list-dm-devices\n"
25299 "\n"
25300 msgstr ""
25301
25302 #. type: textblock
25303 #: ../fish/guestfish-actions.pod:2544
25304 msgid ""
25305 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
25306 "previous call to L</luks-open>."
25307 msgstr ""
25308
25309 #. type: textblock
25310 #: ../fish/guestfish-actions.pod:2547
25311 msgid ""
25312 "Device mapper devices which correspond to logical volumes are I<not> "
25313 "returned in this list.  Call L</lvs> if you want to list logical volumes."
25314 msgstr ""
25315
25316 #. type: =head2
25317 #: ../fish/guestfish-actions.pod:2551
25318 msgid "list-filesystems"
25319 msgstr ""
25320
25321 #. type: verbatim
25322 #: ../fish/guestfish-actions.pod:2553
25323 #, no-wrap
25324 msgid ""
25325 " list-filesystems\n"
25326 "\n"
25327 msgstr ""
25328
25329 #. type: textblock
25330 #: ../fish/guestfish-actions.pod:2572
25331 msgid ""
25332 "This command runs other libguestfs commands, which might include L</mount> "
25333 "and L</umount>, and therefore you should use this soon after launch and only "
25334 "when nothing is mounted."
25335 msgstr ""
25336
25337 #. type: textblock
25338 #: ../fish/guestfish-actions.pod:2576
25339 msgid ""
25340 "Not all of the filesystems returned will be mountable.  In particular, swap "
25341 "partitions are returned in the list.  Also this command does not check that "
25342 "each filesystem found is valid and mountable, and some filesystems might be "
25343 "mountable but require special options.  Filesystems may not all belong to a "
25344 "single logical operating system (use L</inspect-os> to look for OSes)."
25345 msgstr ""
25346
25347 #. type: =head2
25348 #: ../fish/guestfish-actions.pod:2584
25349 msgid "list-partitions"
25350 msgstr ""
25351
25352 #. type: verbatim
25353 #: ../fish/guestfish-actions.pod:2586
25354 #, no-wrap
25355 msgid ""
25356 " list-partitions\n"
25357 "\n"
25358 msgstr ""
25359
25360 #. type: textblock
25361 #: ../fish/guestfish-actions.pod:2592
25362 msgid ""
25363 "This does not return logical volumes.  For that you will need to call L</"
25364 "lvs>."
25365 msgstr ""
25366
25367 #. type: =head2
25368 #: ../fish/guestfish-actions.pod:2597
25369 msgid "ll"
25370 msgstr ""
25371
25372 #. type: verbatim
25373 #: ../fish/guestfish-actions.pod:2599
25374 #, no-wrap
25375 msgid ""
25376 " ll directory\n"
25377 "\n"
25378 msgstr ""
25379
25380 #. type: =head2
25381 #: ../fish/guestfish-actions.pod:2607
25382 msgid "ln"
25383 msgstr ""
25384
25385 #. type: verbatim
25386 #: ../fish/guestfish-actions.pod:2609
25387 #, no-wrap
25388 msgid ""
25389 " ln target linkname\n"
25390 "\n"
25391 msgstr ""
25392
25393 #. type: =head2
25394 #: ../fish/guestfish-actions.pod:2613
25395 msgid "ln-f"
25396 msgstr ""
25397
25398 #. type: verbatim
25399 #: ../fish/guestfish-actions.pod:2615
25400 #, no-wrap
25401 msgid ""
25402 " ln-f target linkname\n"
25403 "\n"
25404 msgstr ""
25405
25406 #. type: =head2
25407 #: ../fish/guestfish-actions.pod:2620
25408 msgid "ln-s"
25409 msgstr ""
25410
25411 #. type: verbatim
25412 #: ../fish/guestfish-actions.pod:2622
25413 #, no-wrap
25414 msgid ""
25415 " ln-s target linkname\n"
25416 "\n"
25417 msgstr ""
25418
25419 #. type: =head2
25420 #: ../fish/guestfish-actions.pod:2626
25421 msgid "ln-sf"
25422 msgstr ""
25423
25424 #. type: verbatim
25425 #: ../fish/guestfish-actions.pod:2628
25426 #, no-wrap
25427 msgid ""
25428 " ln-sf target linkname\n"
25429 "\n"
25430 msgstr ""
25431
25432 #. type: =head2
25433 #: ../fish/guestfish-actions.pod:2633
25434 msgid "lremovexattr"
25435 msgstr ""
25436
25437 #. type: verbatim
25438 #: ../fish/guestfish-actions.pod:2635
25439 #, no-wrap
25440 msgid ""
25441 " lremovexattr xattr path\n"
25442 "\n"
25443 msgstr ""
25444
25445 #. type: textblock
25446 #: ../fish/guestfish-actions.pod:2637
25447 msgid ""
25448 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
25449 "it removes an extended attribute of the link itself."
25450 msgstr ""
25451
25452 #. type: =head2
25453 #: ../fish/guestfish-actions.pod:2641
25454 msgid "ls"
25455 msgstr ""
25456
25457 #. type: verbatim
25458 #: ../fish/guestfish-actions.pod:2643
25459 #, no-wrap
25460 msgid ""
25461 " ls directory\n"
25462 "\n"
25463 msgstr ""
25464
25465 #. type: textblock
25466 #: ../fish/guestfish-actions.pod:2649
25467 msgid ""
25468 "This command is mostly useful for interactive sessions.  Programs should "
25469 "probably use L</readdir> instead."
25470 msgstr ""
25471
25472 #. type: =head2
25473 #: ../fish/guestfish-actions.pod:2652
25474 msgid "lsetxattr"
25475 msgstr ""
25476
25477 #. type: verbatim
25478 #: ../fish/guestfish-actions.pod:2654
25479 #, no-wrap
25480 msgid ""
25481 " lsetxattr xattr val vallen path\n"
25482 "\n"
25483 msgstr ""
25484
25485 #. type: textblock
25486 #: ../fish/guestfish-actions.pod:2656
25487 msgid ""
25488 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
25489 "sets an extended attribute of the link itself."
25490 msgstr ""
25491
25492 #. type: =head2
25493 #: ../fish/guestfish-actions.pod:2660
25494 msgid "lstat"
25495 msgstr ""
25496
25497 #. type: verbatim
25498 #: ../fish/guestfish-actions.pod:2662
25499 #, no-wrap
25500 msgid ""
25501 " lstat path\n"
25502 "\n"
25503 msgstr ""
25504
25505 #. type: textblock
25506 #: ../fish/guestfish-actions.pod:2666
25507 msgid ""
25508 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
25509 "the link is stat-ed, not the file it refers to."
25510 msgstr ""
25511
25512 #. type: =head2
25513 #: ../fish/guestfish-actions.pod:2672
25514 msgid "lstatlist"
25515 msgstr ""
25516
25517 #. type: verbatim
25518 #: ../fish/guestfish-actions.pod:2674
25519 #, no-wrap
25520 msgid ""
25521 " lstatlist path 'names ...'\n"
25522 "\n"
25523 msgstr ""
25524
25525 #. type: textblock
25526 #: ../fish/guestfish-actions.pod:2676
25527 msgid ""
25528 "This call allows you to perform the L</lstat> operation on multiple files, "
25529 "where all files are in the directory C<path>.  C<names> is the list of files "
25530 "from this directory."
25531 msgstr ""
25532
25533 #. type: textblock
25534 #: ../fish/guestfish-actions.pod:2685
25535 msgid ""
25536 "This call is intended for programs that want to efficiently list a directory "
25537 "contents without making many round-trips.  See also L</lxattrlist> for a "
25538 "similarly efficient call for getting extended attributes.  Very long "
25539 "directory listings might cause the protocol message size to be exceeded, "
25540 "causing this call to fail.  The caller must split up such requests into "
25541 "smaller groups of names."
25542 msgstr ""
25543
25544 #. type: =head2
25545 #: ../fish/guestfish-actions.pod:2693
25546 msgid "luks-add-key"
25547 msgstr ""
25548
25549 #. type: verbatim
25550 #: ../fish/guestfish-actions.pod:2695
25551 #, no-wrap
25552 msgid ""
25553 " luks-add-key device keyslot\n"
25554 "\n"
25555 msgstr ""
25556
25557 #. type: textblock
25558 #: ../fish/guestfish-actions.pod:2702
25559 msgid ""
25560 "Note that if C<keyslot> already contains a key, then this command will "
25561 "fail.  You have to use L</luks-kill-slot> first to remove that key."
25562 msgstr ""
25563
25564 #. type: textblock
25565 #: ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2728
25566 #: ../fish/guestfish-actions.pod:2741 ../fish/guestfish-actions.pod:2755
25567 #: ../fish/guestfish-actions.pod:2781 ../fish/guestfish-actions.pod:2791
25568 msgid ""
25569 "This command has one or more key or passphrase parameters.  Guestfish will "
25570 "prompt for these separately."
25571 msgstr ""
25572
25573 #. type: =head2
25574 #: ../fish/guestfish-actions.pod:2709
25575 msgid "luks-close"
25576 msgstr ""
25577
25578 #. type: verbatim
25579 #: ../fish/guestfish-actions.pod:2711
25580 #, no-wrap
25581 msgid ""
25582 " luks-close device\n"
25583 "\n"
25584 msgstr ""
25585
25586 #. type: textblock
25587 #: ../fish/guestfish-actions.pod:2713
25588 msgid ""
25589 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
25590 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
25591 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
25592 "block device."
25593 msgstr ""
25594
25595 #. type: =head2
25596 #: ../fish/guestfish-actions.pod:2719
25597 msgid "luks-format"
25598 msgstr ""
25599
25600 #. type: verbatim
25601 #: ../fish/guestfish-actions.pod:2721
25602 #, no-wrap
25603 msgid ""
25604 " luks-format device keyslot\n"
25605 "\n"
25606 msgstr ""
25607
25608 #. type: =head2
25609 #: ../fish/guestfish-actions.pod:2734
25610 msgid "luks-format-cipher"
25611 msgstr ""
25612
25613 #. type: verbatim
25614 #: ../fish/guestfish-actions.pod:2736
25615 #, no-wrap
25616 msgid ""
25617 " luks-format-cipher device keyslot cipher\n"
25618 "\n"
25619 msgstr ""
25620
25621 #. type: textblock
25622 #: ../fish/guestfish-actions.pod:2738
25623 msgid ""
25624 "This command is the same as L</luks-format> but it also allows you to set "
25625 "the C<cipher> used."
25626 msgstr ""
25627
25628 #. type: =head2
25629 #: ../fish/guestfish-actions.pod:2747
25630 msgid "luks-kill-slot"
25631 msgstr ""
25632
25633 #. type: verbatim
25634 #: ../fish/guestfish-actions.pod:2749
25635 #, no-wrap
25636 msgid ""
25637 " luks-kill-slot device keyslot\n"
25638 "\n"
25639 msgstr ""
25640
25641 #. type: =head2
25642 #: ../fish/guestfish-actions.pod:2758
25643 msgid "luks-open"
25644 msgstr ""
25645
25646 #. type: verbatim
25647 #: ../fish/guestfish-actions.pod:2760
25648 #, no-wrap
25649 msgid ""
25650 " luks-open device mapname\n"
25651 "\n"
25652 msgstr ""
25653
25654 #. type: textblock
25655 #: ../fish/guestfish-actions.pod:2774
25656 msgid ""
25657 "If this block device contains LVM volume groups, then calling L</vgscan> "
25658 "followed by L</vg-activate-all> will make them visible."
25659 msgstr ""
25660
25661 #. type: textblock
25662 #: ../fish/guestfish-actions.pod:2778
25663 msgid "Use L</list-dm-devices> to list all device mapper devices."
25664 msgstr ""
25665
25666 #. type: =head2
25667 #: ../fish/guestfish-actions.pod:2784
25668 msgid "luks-open-ro"
25669 msgstr ""
25670
25671 #. type: verbatim
25672 #: ../fish/guestfish-actions.pod:2786
25673 #, no-wrap
25674 msgid ""
25675 " luks-open-ro device mapname\n"
25676 "\n"
25677 msgstr ""
25678
25679 #. type: textblock
25680 #: ../fish/guestfish-actions.pod:2788
25681 msgid ""
25682 "This is the same as L</luks-open> except that a read-only mapping is created."
25683 msgstr ""
25684
25685 #. type: =head2
25686 #: ../fish/guestfish-actions.pod:2794
25687 msgid "lvcreate"
25688 msgstr ""
25689
25690 #. type: verbatim
25691 #: ../fish/guestfish-actions.pod:2796
25692 #, no-wrap
25693 msgid ""
25694 " lvcreate logvol volgroup mbytes\n"
25695 "\n"
25696 msgstr ""
25697
25698 #. type: =head2
25699 #: ../fish/guestfish-actions.pod:2801
25700 msgid "lvm-canonical-lv-name"
25701 msgstr ""
25702
25703 #. type: verbatim
25704 #: ../fish/guestfish-actions.pod:2803
25705 #, no-wrap
25706 msgid ""
25707 " lvm-canonical-lv-name lvname\n"
25708 "\n"
25709 msgstr ""
25710
25711 #. type: textblock
25712 #: ../fish/guestfish-actions.pod:2812
25713 msgid "See also L</is-lv>."
25714 msgstr ""
25715
25716 #. type: =head2
25717 #: ../fish/guestfish-actions.pod:2814
25718 msgid "lvm-clear-filter"
25719 msgstr ""
25720
25721 #. type: verbatim
25722 #: ../fish/guestfish-actions.pod:2816
25723 #, no-wrap
25724 msgid ""
25725 " lvm-clear-filter\n"
25726 "\n"
25727 msgstr ""
25728
25729 #. type: textblock
25730 #: ../fish/guestfish-actions.pod:2818
25731 msgid ""
25732 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
25733 "block device."
25734 msgstr ""
25735
25736 #. type: =head2
25737 #: ../fish/guestfish-actions.pod:2824
25738 msgid "lvm-remove-all"
25739 msgstr ""
25740
25741 #. type: verbatim
25742 #: ../fish/guestfish-actions.pod:2826
25743 #, no-wrap
25744 msgid ""
25745 " lvm-remove-all\n"
25746 "\n"
25747 msgstr ""
25748
25749 #. type: =head2
25750 #: ../fish/guestfish-actions.pod:2834
25751 msgid "lvm-set-filter"
25752 msgstr ""
25753
25754 #. type: verbatim
25755 #: ../fish/guestfish-actions.pod:2836
25756 #, no-wrap
25757 msgid ""
25758 " lvm-set-filter 'devices ...'\n"
25759 "\n"
25760 msgstr ""
25761
25762 #. type: =head2
25763 #: ../fish/guestfish-actions.pod:2861
25764 msgid "lvremove"
25765 msgstr ""
25766
25767 #. type: verbatim
25768 #: ../fish/guestfish-actions.pod:2863
25769 #, no-wrap
25770 msgid ""
25771 " lvremove device\n"
25772 "\n"
25773 msgstr ""
25774
25775 #. type: =head2
25776 #: ../fish/guestfish-actions.pod:2871
25777 msgid "lvrename"
25778 msgstr ""
25779
25780 #. type: verbatim
25781 #: ../fish/guestfish-actions.pod:2873
25782 #, no-wrap
25783 msgid ""
25784 " lvrename logvol newlogvol\n"
25785 "\n"
25786 msgstr ""
25787
25788 #. type: =head2
25789 #: ../fish/guestfish-actions.pod:2877
25790 msgid "lvresize"
25791 msgstr ""
25792
25793 #. type: verbatim
25794 #: ../fish/guestfish-actions.pod:2879
25795 #, no-wrap
25796 msgid ""
25797 " lvresize device mbytes\n"
25798 "\n"
25799 msgstr ""
25800
25801 #. type: =head2
25802 #: ../fish/guestfish-actions.pod:2885
25803 msgid "lvresize-free"
25804 msgstr ""
25805
25806 #. type: verbatim
25807 #: ../fish/guestfish-actions.pod:2887
25808 #, no-wrap
25809 msgid ""
25810 " lvresize-free lv percent\n"
25811 "\n"
25812 msgstr ""
25813
25814 #. type: =head2
25815 #: ../fish/guestfish-actions.pod:2895
25816 msgid "lvs"
25817 msgstr ""
25818
25819 #. type: verbatim
25820 #: ../fish/guestfish-actions.pod:2897
25821 #, no-wrap
25822 msgid ""
25823 " lvs\n"
25824 "\n"
25825 msgstr ""
25826
25827 #. type: textblock
25828 #: ../fish/guestfish-actions.pod:2905
25829 msgid "See also L</lvs-full>, L</list-filesystems>."
25830 msgstr ""
25831
25832 #. type: =head2
25833 #: ../fish/guestfish-actions.pod:2907
25834 msgid "lvs-full"
25835 msgstr ""
25836
25837 #. type: verbatim
25838 #: ../fish/guestfish-actions.pod:2909
25839 #, no-wrap
25840 msgid ""
25841 " lvs-full\n"
25842 "\n"
25843 msgstr ""
25844
25845 #. type: =head2
25846 #: ../fish/guestfish-actions.pod:2914
25847 msgid "lvuuid"
25848 msgstr ""
25849
25850 #. type: verbatim
25851 #: ../fish/guestfish-actions.pod:2916
25852 #, no-wrap
25853 msgid ""
25854 " lvuuid device\n"
25855 "\n"
25856 msgstr ""
25857
25858 #. type: =head2
25859 #: ../fish/guestfish-actions.pod:2920
25860 msgid "lxattrlist"
25861 msgstr ""
25862
25863 #. type: verbatim
25864 #: ../fish/guestfish-actions.pod:2922
25865 #, no-wrap
25866 msgid ""
25867 " lxattrlist path 'names ...'\n"
25868 "\n"
25869 msgstr ""
25870
25871 #. type: textblock
25872 #: ../fish/guestfish-actions.pod:2938
25873 msgid ""
25874 "This call is intended for programs that want to efficiently list a directory "
25875 "contents without making many round-trips.  See also L</lstatlist> for a "
25876 "similarly efficient call for getting standard stats.  Very long directory "
25877 "listings might cause the protocol message size to be exceeded, causing this "
25878 "call to fail.  The caller must split up such requests into smaller groups of "
25879 "names."
25880 msgstr ""
25881
25882 #. type: =head2
25883 #: ../fish/guestfish-actions.pod:2946
25884 msgid "mkdir"
25885 msgstr ""
25886
25887 #. type: verbatim
25888 #: ../fish/guestfish-actions.pod:2948
25889 #, no-wrap
25890 msgid ""
25891 " mkdir path\n"
25892 "\n"
25893 msgstr ""
25894
25895 #. type: =head2
25896 #: ../fish/guestfish-actions.pod:2952
25897 msgid "mkdir-mode"
25898 msgstr ""
25899
25900 #. type: verbatim
25901 #: ../fish/guestfish-actions.pod:2954
25902 #, no-wrap
25903 msgid ""
25904 " mkdir-mode path mode\n"
25905 "\n"
25906 msgstr ""
25907
25908 #. type: textblock
25909 #: ../fish/guestfish-actions.pod:2963
25910 msgid "See also L</mkdir>, L</umask>"
25911 msgstr ""
25912
25913 #. type: =head2
25914 #: ../fish/guestfish-actions.pod:2965
25915 msgid "mkdir-p"
25916 msgstr ""
25917
25918 #. type: verbatim
25919 #: ../fish/guestfish-actions.pod:2967
25920 #, no-wrap
25921 msgid ""
25922 " mkdir-p path\n"
25923 "\n"
25924 msgstr ""
25925
25926 #. type: =head2
25927 #: ../fish/guestfish-actions.pod:2972
25928 msgid "mkdtemp"
25929 msgstr ""
25930
25931 #. type: verbatim
25932 #: ../fish/guestfish-actions.pod:2974
25933 #, no-wrap
25934 msgid ""
25935 " mkdtemp template\n"
25936 "\n"
25937 msgstr ""
25938
25939 #. type: =head2
25940 #: ../fish/guestfish-actions.pod:2995
25941 msgid "mke2fs-J"
25942 msgstr ""
25943
25944 #. type: verbatim
25945 #: ../fish/guestfish-actions.pod:2997
25946 #, no-wrap
25947 msgid ""
25948 " mke2fs-J fstype blocksize device journal\n"
25949 "\n"
25950 msgstr ""
25951
25952 #. type: textblock
25953 #: ../fish/guestfish-actions.pod:3005
25954 msgid "See also L</mke2journal>."
25955 msgstr ""
25956
25957 #. type: =head2
25958 #: ../fish/guestfish-actions.pod:3007
25959 msgid "mke2fs-JL"
25960 msgstr ""
25961
25962 #. type: verbatim
25963 #: ../fish/guestfish-actions.pod:3009
25964 #, no-wrap
25965 msgid ""
25966 " mke2fs-JL fstype blocksize device label\n"
25967 "\n"
25968 msgstr ""
25969
25970 #. type: textblock
25971 #: ../fish/guestfish-actions.pod:3014
25972 msgid "See also L</mke2journal-L>."
25973 msgstr ""
25974
25975 #. type: =head2
25976 #: ../fish/guestfish-actions.pod:3016
25977 msgid "mke2fs-JU"
25978 msgstr ""
25979
25980 #. type: verbatim
25981 #: ../fish/guestfish-actions.pod:3018
25982 #, no-wrap
25983 msgid ""
25984 " mke2fs-JU fstype blocksize device uuid\n"
25985 "\n"
25986 msgstr ""
25987
25988 #. type: textblock
25989 #: ../fish/guestfish-actions.pod:3023
25990 msgid "See also L</mke2journal-U>."
25991 msgstr ""
25992
25993 #. type: =head2
25994 #: ../fish/guestfish-actions.pod:3025
25995 msgid "mke2journal"
25996 msgstr ""
25997
25998 #. type: verbatim
25999 #: ../fish/guestfish-actions.pod:3027
26000 #, no-wrap
26001 msgid ""
26002 " mke2journal blocksize device\n"
26003 "\n"
26004 msgstr ""
26005
26006 #. type: =head2
26007 #: ../fish/guestfish-actions.pod:3034
26008 msgid "mke2journal-L"
26009 msgstr ""
26010
26011 #. type: verbatim
26012 #: ../fish/guestfish-actions.pod:3036
26013 #, no-wrap
26014 msgid ""
26015 " mke2journal-L blocksize label device\n"
26016 "\n"
26017 msgstr ""
26018
26019 #. type: =head2
26020 #: ../fish/guestfish-actions.pod:3040
26021 msgid "mke2journal-U"
26022 msgstr ""
26023
26024 #. type: verbatim
26025 #: ../fish/guestfish-actions.pod:3042
26026 #, no-wrap
26027 msgid ""
26028 " mke2journal-U blocksize uuid device\n"
26029 "\n"
26030 msgstr ""
26031
26032 #. type: =head2
26033 #: ../fish/guestfish-actions.pod:3046
26034 msgid "mkfifo"
26035 msgstr ""
26036
26037 #. type: verbatim
26038 #: ../fish/guestfish-actions.pod:3048
26039 #, no-wrap
26040 msgid ""
26041 " mkfifo mode path\n"
26042 "\n"
26043 msgstr ""
26044
26045 #. type: textblock
26046 #: ../fish/guestfish-actions.pod:3050
26047 msgid ""
26048 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
26049 "is just a convenient wrapper around L</mknod>."
26050 msgstr ""
26051
26052 #. type: =head2
26053 #: ../fish/guestfish-actions.pod:3056
26054 msgid "mkfs"
26055 msgstr ""
26056
26057 #. type: verbatim
26058 #: ../fish/guestfish-actions.pod:3058
26059 #, no-wrap
26060 msgid ""
26061 " mkfs fstype device\n"
26062 "\n"
26063 msgstr ""
26064
26065 #. type: =head2
26066 #: ../fish/guestfish-actions.pod:3064
26067 msgid "mkfs-b"
26068 msgstr ""
26069
26070 #. type: verbatim
26071 #: ../fish/guestfish-actions.pod:3066
26072 #, no-wrap
26073 msgid ""
26074 " mkfs-b fstype blocksize device\n"
26075 "\n"
26076 msgstr ""
26077
26078 #. type: textblock
26079 #: ../fish/guestfish-actions.pod:3068
26080 msgid ""
26081 "This call is similar to L</mkfs>, but it allows you to control the block "
26082 "size of the resulting filesystem.  Supported block sizes depend on the "
26083 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
26084 msgstr ""
26085
26086 #. type: =head2
26087 #: ../fish/guestfish-actions.pod:3083
26088 msgid "mkfs-opts"
26089 msgstr ""
26090
26091 #. type: verbatim
26092 #: ../fish/guestfish-actions.pod:3085
26093 #, no-wrap
26094 msgid ""
26095 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] [sectorsize:..]\n"
26096 "\n"
26097 msgstr ""
26098
26099 #. type: =head2
26100 #: ../fish/guestfish-actions.pod:3130
26101 msgid "mkmountpoint"
26102 msgstr ""
26103
26104 #. type: verbatim
26105 #: ../fish/guestfish-actions.pod:3132
26106 #, no-wrap
26107 msgid ""
26108 " mkmountpoint exemptpath\n"
26109 "\n"
26110 msgstr ""
26111
26112 #. type: textblock
26113 #: ../fish/guestfish-actions.pod:3134
26114 msgid ""
26115 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
26116 "to create extra mountpoints before mounting the first filesystem."
26117 msgstr ""
26118
26119 #. type: textblock
26120 #: ../fish/guestfish-actions.pod:3158
26121 msgid ""
26122 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
26123 "unexpected errors if you try to mix these calls.  It is safest to manually "
26124 "unmount filesystems and remove mountpoints after use."
26125 msgstr ""
26126
26127 #. type: textblock
26128 #: ../fish/guestfish-actions.pod:3162
26129 msgid ""
26130 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
26131 "for this to work for manual mountpoints, you must ensure that the innermost "
26132 "mountpoints have the longest pathnames, as in the example code above."
26133 msgstr ""
26134
26135 #. type: textblock
26136 #: ../fish/guestfish-actions.pod:3169
26137 msgid ""
26138 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
26139 "L</umount-all> to be called when the handle is closed which can also trigger "
26140 "these issues."
26141 msgstr ""
26142
26143 #. type: =head2
26144 #: ../fish/guestfish-actions.pod:3173
26145 msgid "mknod"
26146 msgstr ""
26147
26148 #. type: verbatim
26149 #: ../fish/guestfish-actions.pod:3175
26150 #, no-wrap
26151 msgid ""
26152 " mknod mode devmajor devminor path\n"
26153 "\n"
26154 msgstr ""
26155
26156 #. type: textblock
26157 #: ../fish/guestfish-actions.pod:3185
26158 msgid ""
26159 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
26160 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
26161 "regular file).  These constants are available in the standard Linux header "
26162 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
26163 "wrappers around this command which bitwise OR in the appropriate constant "
26164 "for you."
26165 msgstr ""
26166
26167 #. type: =head2
26168 #: ../fish/guestfish-actions.pod:3195
26169 msgid "mknod-b"
26170 msgstr ""
26171
26172 #. type: verbatim
26173 #: ../fish/guestfish-actions.pod:3197
26174 #, no-wrap
26175 msgid ""
26176 " mknod-b mode devmajor devminor path\n"
26177 "\n"
26178 msgstr ""
26179
26180 #. type: textblock
26181 #: ../fish/guestfish-actions.pod:3199
26182 msgid ""
26183 "This call creates a block device node called C<path> with mode C<mode> and "
26184 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26185 "wrapper around L</mknod>."
26186 msgstr ""
26187
26188 #. type: =head2
26189 #: ../fish/guestfish-actions.pod:3205
26190 msgid "mknod-c"
26191 msgstr ""
26192
26193 #. type: verbatim
26194 #: ../fish/guestfish-actions.pod:3207
26195 #, no-wrap
26196 msgid ""
26197 " mknod-c mode devmajor devminor path\n"
26198 "\n"
26199 msgstr ""
26200
26201 #. type: textblock
26202 #: ../fish/guestfish-actions.pod:3209
26203 msgid ""
26204 "This call creates a char device node called C<path> with mode C<mode> and "
26205 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26206 "wrapper around L</mknod>."
26207 msgstr ""
26208
26209 #. type: =head2
26210 #: ../fish/guestfish-actions.pod:3215
26211 msgid "mkswap"
26212 msgstr ""
26213
26214 #. type: verbatim
26215 #: ../fish/guestfish-actions.pod:3217
26216 #, no-wrap
26217 msgid ""
26218 " mkswap device\n"
26219 "\n"
26220 msgstr ""
26221
26222 #. type: =head2
26223 #: ../fish/guestfish-actions.pod:3221
26224 msgid "mkswap-L"
26225 msgstr ""
26226
26227 #. type: verbatim
26228 #: ../fish/guestfish-actions.pod:3223
26229 #, no-wrap
26230 msgid ""
26231 " mkswap-L label device\n"
26232 "\n"
26233 msgstr ""
26234
26235 #. type: =head2
26236 #: ../fish/guestfish-actions.pod:3231
26237 msgid "mkswap-U"
26238 msgstr ""
26239
26240 #. type: verbatim
26241 #: ../fish/guestfish-actions.pod:3233
26242 #, no-wrap
26243 msgid ""
26244 " mkswap-U uuid device\n"
26245 "\n"
26246 msgstr ""
26247
26248 #. type: =head2
26249 #: ../fish/guestfish-actions.pod:3237
26250 msgid "mkswap-file"
26251 msgstr ""
26252
26253 #. type: verbatim
26254 #: ../fish/guestfish-actions.pod:3239
26255 #, no-wrap
26256 msgid ""
26257 " mkswap-file path\n"
26258 "\n"
26259 msgstr ""
26260
26261 #. type: textblock
26262 #: ../fish/guestfish-actions.pod:3243
26263 msgid ""
26264 "This command just writes a swap file signature to an existing file.  To "
26265 "create the file itself, use something like L</fallocate>."
26266 msgstr ""
26267
26268 #. type: =head2
26269 #: ../fish/guestfish-actions.pod:3246
26270 msgid "modprobe"
26271 msgstr ""
26272
26273 #. type: verbatim
26274 #: ../fish/guestfish-actions.pod:3248
26275 #, no-wrap
26276 msgid ""
26277 " modprobe modulename\n"
26278 "\n"
26279 msgstr ""
26280
26281 #. type: =head2
26282 #: ../fish/guestfish-actions.pod:3255
26283 msgid "mount"
26284 msgstr ""
26285
26286 #. type: verbatim
26287 #: ../fish/guestfish-actions.pod:3257
26288 #, no-wrap
26289 msgid ""
26290 " mount device mountpoint\n"
26291 "\n"
26292 msgstr ""
26293
26294 #. type: textblock
26295 #: ../fish/guestfish-actions.pod:3273
26296 msgid ""
26297 "B<Important note:> When you use this call, the filesystem options C<sync> "
26298 "and C<noatime> are set implicitly.  This was originally done because we "
26299 "thought it would improve reliability, but it turns out that I<-o sync> has a "
26300 "very large negative performance impact and negligible effect on "
26301 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
26302 "code that needs performance, and instead use L</mount-options> (use an empty "
26303 "string for the first parameter if you don't want any options)."
26304 msgstr ""
26305
26306 #. type: =head2
26307 #: ../fish/guestfish-actions.pod:3290
26308 msgid "mount-9p"
26309 msgstr ""
26310
26311 #. type: verbatim
26312 #: ../fish/guestfish-actions.pod:3292
26313 #, no-wrap
26314 msgid ""
26315 " mount-9p mounttag mountpoint [options:..]\n"
26316 "\n"
26317 msgstr ""
26318
26319 #. type: =head2
26320 #: ../fish/guestfish-actions.pod:3303
26321 msgid "mount-loop"
26322 msgstr ""
26323
26324 #. type: verbatim
26325 #: ../fish/guestfish-actions.pod:3305
26326 #, no-wrap
26327 msgid ""
26328 " mount-loop file mountpoint\n"
26329 "\n"
26330 msgstr ""
26331
26332 #. type: =head2
26333 #: ../fish/guestfish-actions.pod:3311
26334 msgid "mount-options"
26335 msgstr ""
26336
26337 #. type: verbatim
26338 #: ../fish/guestfish-actions.pod:3313
26339 #, no-wrap
26340 msgid ""
26341 " mount-options options device mountpoint\n"
26342 "\n"
26343 msgstr ""
26344
26345 #. type: textblock
26346 #: ../fish/guestfish-actions.pod:3315
26347 msgid ""
26348 "This is the same as the L</mount> command, but it allows you to set the "
26349 "mount options as for the L<mount(8)> I<-o> flag."
26350 msgstr ""
26351
26352 #. type: =head2
26353 #: ../fish/guestfish-actions.pod:3323
26354 msgid "mount-ro"
26355 msgstr ""
26356
26357 #. type: verbatim
26358 #: ../fish/guestfish-actions.pod:3325
26359 #, no-wrap
26360 msgid ""
26361 " mount-ro device mountpoint\n"
26362 "\n"
26363 msgstr ""
26364
26365 #. type: textblock
26366 #: ../fish/guestfish-actions.pod:3327
26367 msgid ""
26368 "This is the same as the L</mount> command, but it mounts the filesystem with "
26369 "the read-only (I<-o ro>) flag."
26370 msgstr ""
26371
26372 #. type: =head2
26373 #: ../fish/guestfish-actions.pod:3330
26374 msgid "mount-vfs"
26375 msgstr ""
26376
26377 #. type: verbatim
26378 #: ../fish/guestfish-actions.pod:3332
26379 #, no-wrap
26380 msgid ""
26381 " mount-vfs options vfstype device mountpoint\n"
26382 "\n"
26383 msgstr ""
26384
26385 #. type: textblock
26386 #: ../fish/guestfish-actions.pod:3334
26387 msgid ""
26388 "This is the same as the L</mount> command, but it allows you to set both the "
26389 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26390 msgstr ""
26391
26392 #. type: =head2
26393 #: ../fish/guestfish-actions.pod:3338
26394 msgid "mountpoints"
26395 msgstr ""
26396
26397 #. type: verbatim
26398 #: ../fish/guestfish-actions.pod:3340
26399 #, no-wrap
26400 msgid ""
26401 " mountpoints\n"
26402 "\n"
26403 msgstr ""
26404
26405 #. type: textblock
26406 #: ../fish/guestfish-actions.pod:3342
26407 msgid ""
26408 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26409 "This one returns a hash table (map) of device name to directory where the "
26410 "device is mounted."
26411 msgstr ""
26412
26413 #. type: =head2
26414 #: ../fish/guestfish-actions.pod:3346
26415 msgid "mounts"
26416 msgstr ""
26417
26418 #. type: verbatim
26419 #: ../fish/guestfish-actions.pod:3348
26420 #, no-wrap
26421 msgid ""
26422 " mounts\n"
26423 "\n"
26424 msgstr ""
26425
26426 #. type: textblock
26427 #: ../fish/guestfish-actions.pod:3355
26428 msgid "See also: L</mountpoints>"
26429 msgstr ""
26430
26431 #. type: =head2
26432 #: ../fish/guestfish-actions.pod:3357
26433 msgid "mv"
26434 msgstr ""
26435
26436 #. type: verbatim
26437 #: ../fish/guestfish-actions.pod:3359
26438 #, no-wrap
26439 msgid ""
26440 " mv src dest\n"
26441 "\n"
26442 msgstr ""
26443
26444 #. type: =head2
26445 #: ../fish/guestfish-actions.pod:3364
26446 msgid "ntfs-3g-probe"
26447 msgstr ""
26448
26449 #. type: verbatim
26450 #: ../fish/guestfish-actions.pod:3366
26451 #, no-wrap
26452 msgid ""
26453 " ntfs-3g-probe true|false device\n"
26454 "\n"
26455 msgstr ""
26456
26457 #. type: =head2
26458 #: ../fish/guestfish-actions.pod:3380
26459 msgid "ntfsresize"
26460 msgstr ""
26461
26462 #. type: verbatim
26463 #: ../fish/guestfish-actions.pod:3382
26464 #, no-wrap
26465 msgid ""
26466 " ntfsresize device\n"
26467 "\n"
26468 msgstr ""
26469
26470 #. type: =head2
26471 #: ../fish/guestfish-actions.pod:3404
26472 msgid "ntfsresize-opts"
26473 msgstr ""
26474
26475 #. type: verbatim
26476 #: ../fish/guestfish-actions.pod:3406
26477 #, no-wrap
26478 msgid ""
26479 " ntfsresize-opts device [size:..] [force:..]\n"
26480 "\n"
26481 msgstr ""
26482
26483 #. type: textblock
26484 #: ../fish/guestfish-actions.pod:3425
26485 msgid ""
26486 "After the resize operation, the filesystem is always marked as requiring a "
26487 "consistency check (for safety).  You have to boot into Windows to perform "
26488 "this check and clear this condition.  If you I<don't> set the C<force> "
26489 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
26490 "a single filesystem without booting into Windows between each resize."
26491 msgstr ""
26492
26493 #. type: =head2
26494 #: ../fish/guestfish-actions.pod:3438
26495 msgid "ntfsresize-size"
26496 msgstr ""
26497
26498 #. type: verbatim
26499 #: ../fish/guestfish-actions.pod:3440
26500 #, no-wrap
26501 msgid ""
26502 " ntfsresize-size device size\n"
26503 "\n"
26504 msgstr ""
26505
26506 #. type: textblock
26507 #: ../fish/guestfish-actions.pod:3442
26508 msgid ""
26509 "This command is the same as L</ntfsresize> except that it allows you to "
26510 "specify the new size (in bytes) explicitly."
26511 msgstr ""
26512
26513 #. type: =head2
26514 #: ../fish/guestfish-actions.pod:3452
26515 msgid "part-add"
26516 msgstr ""
26517
26518 #. type: verbatim
26519 #: ../fish/guestfish-actions.pod:3454
26520 #, no-wrap
26521 msgid ""
26522 " part-add device prlogex startsect endsect\n"
26523 "\n"
26524 msgstr ""
26525
26526 #. type: textblock
26527 #: ../fish/guestfish-actions.pod:3456
26528 msgid ""
26529 "This command adds a partition to C<device>.  If there is no partition table "
26530 "on the device, call L</part-init> first."
26531 msgstr ""
26532
26533 #. type: textblock
26534 #: ../fish/guestfish-actions.pod:3468
26535 msgid ""
26536 "Creating a partition which covers the whole disk is not so easy.  Use L</"
26537 "part-disk> to do that."
26538 msgstr ""
26539
26540 #. type: =head2
26541 #: ../fish/guestfish-actions.pod:3471
26542 msgid "part-del"
26543 msgstr ""
26544
26545 #. type: verbatim
26546 #: ../fish/guestfish-actions.pod:3473
26547 #, no-wrap
26548 msgid ""
26549 " part-del device partnum\n"
26550 "\n"
26551 msgstr ""
26552
26553 #. type: =head2
26554 #: ../fish/guestfish-actions.pod:3481
26555 msgid "part-disk"
26556 msgstr ""
26557
26558 #. type: verbatim
26559 #: ../fish/guestfish-actions.pod:3483
26560 #, no-wrap
26561 msgid ""
26562 " part-disk device parttype\n"
26563 "\n"
26564 msgstr ""
26565
26566 #. type: textblock
26567 #: ../fish/guestfish-actions.pod:3485
26568 msgid ""
26569 "This command is simply a combination of L</part-init> followed by L</part-"
26570 "add> to create a single primary partition covering the whole disk."
26571 msgstr ""
26572
26573 #. type: textblock
26574 #: ../fish/guestfish-actions.pod:3489
26575 msgid ""
26576 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
26577 "possible values are described in L</part-init>."
26578 msgstr ""
26579
26580 #. type: =head2
26581 #: ../fish/guestfish-actions.pod:3495
26582 msgid "part-get-bootable"
26583 msgstr ""
26584
26585 #. type: verbatim
26586 #: ../fish/guestfish-actions.pod:3497
26587 #, no-wrap
26588 msgid ""
26589 " part-get-bootable device partnum\n"
26590 "\n"
26591 msgstr ""
26592
26593 #. type: textblock
26594 #: ../fish/guestfish-actions.pod:3502
26595 msgid "See also L</part-set-bootable>."
26596 msgstr ""
26597
26598 #. type: =head2
26599 #: ../fish/guestfish-actions.pod:3504
26600 msgid "part-get-mbr-id"
26601 msgstr ""
26602
26603 #. type: verbatim
26604 #: ../fish/guestfish-actions.pod:3506
26605 #, no-wrap
26606 msgid ""
26607 " part-get-mbr-id device partnum\n"
26608 "\n"
26609 msgstr ""
26610
26611 #. type: textblock
26612 #: ../fish/guestfish-actions.pod:3511 ../fish/guestfish-actions.pod:3649
26613 msgid ""
26614 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
26615 "undefined results for other partition table types (see L</part-get-"
26616 "parttype>)."
26617 msgstr ""
26618
26619 #. type: =head2
26620 #: ../fish/guestfish-actions.pod:3515
26621 msgid "part-get-parttype"
26622 msgstr ""
26623
26624 #. type: verbatim
26625 #: ../fish/guestfish-actions.pod:3517
26626 #, no-wrap
26627 msgid ""
26628 " part-get-parttype device\n"
26629 "\n"
26630 msgstr ""
26631
26632 #. type: textblock
26633 #: ../fish/guestfish-actions.pod:3522
26634 msgid ""
26635 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26636 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26637 "possible, although unusual.  See L</part-init> for a full list."
26638 msgstr ""
26639
26640 #. type: =head2
26641 #: ../fish/guestfish-actions.pod:3527
26642 msgid "part-init"
26643 msgstr ""
26644
26645 #. type: verbatim
26646 #: ../fish/guestfish-actions.pod:3529
26647 #, no-wrap
26648 msgid ""
26649 " part-init device parttype\n"
26650 "\n"
26651 msgstr ""
26652
26653 #. type: textblock
26654 #: ../fish/guestfish-actions.pod:3535
26655 msgid ""
26656 "Initially there are no partitions.  Following this, you should call L</part-"
26657 "add> for each partition required."
26658 msgstr ""
26659
26660 #. type: =head2
26661 #: ../fish/guestfish-actions.pod:3598
26662 msgid "part-list"
26663 msgstr ""
26664
26665 #. type: verbatim
26666 #: ../fish/guestfish-actions.pod:3600
26667 #, no-wrap
26668 msgid ""
26669 " part-list device\n"
26670 "\n"
26671 msgstr ""
26672
26673 #. type: textblock
26674 #: ../fish/guestfish-actions.pod:3615
26675 msgid ""
26676 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26677 "the device's sector size, see L</blockdev-getss>."
26678 msgstr ""
26679
26680 #. type: =head2
26681 #: ../fish/guestfish-actions.pod:3628
26682 msgid "part-set-bootable"
26683 msgstr ""
26684
26685 #. type: verbatim
26686 #: ../fish/guestfish-actions.pod:3630
26687 #, no-wrap
26688 msgid ""
26689 " part-set-bootable device partnum true|false\n"
26690 "\n"
26691 msgstr ""
26692
26693 #. type: =head2
26694 #: ../fish/guestfish-actions.pod:3639
26695 msgid "part-set-mbr-id"
26696 msgstr ""
26697
26698 #. type: verbatim
26699 #: ../fish/guestfish-actions.pod:3641
26700 #, no-wrap
26701 msgid ""
26702 " part-set-mbr-id device partnum idbyte\n"
26703 "\n"
26704 msgstr ""
26705
26706 #. type: =head2
26707 #: ../fish/guestfish-actions.pod:3653
26708 msgid "part-set-name"
26709 msgstr ""
26710
26711 #. type: verbatim
26712 #: ../fish/guestfish-actions.pod:3655
26713 #, no-wrap
26714 msgid ""
26715 " part-set-name device partnum name\n"
26716 "\n"
26717 msgstr ""
26718
26719 #. type: =head2
26720 #: ../fish/guestfish-actions.pod:3663
26721 msgid "part-to-dev"
26722 msgstr ""
26723
26724 #. type: verbatim
26725 #: ../fish/guestfish-actions.pod:3665
26726 #, no-wrap
26727 msgid ""
26728 " part-to-dev partition\n"
26729 "\n"
26730 msgstr ""
26731
26732 #. type: textblock
26733 #: ../fish/guestfish-actions.pod:3671
26734 msgid ""
26735 "The named partition must exist, for example as a string returned from L</"
26736 "list-partitions>."
26737 msgstr ""
26738
26739 #. type: =head2
26740 #: ../fish/guestfish-actions.pod:3674
26741 msgid "ping-daemon"
26742 msgstr ""
26743
26744 #. type: verbatim
26745 #: ../fish/guestfish-actions.pod:3676
26746 #, no-wrap
26747 msgid ""
26748 " ping-daemon\n"
26749 "\n"
26750 msgstr ""
26751
26752 #. type: =head2
26753 #: ../fish/guestfish-actions.pod:3683
26754 msgid "pread"
26755 msgstr ""
26756
26757 #. type: verbatim
26758 #: ../fish/guestfish-actions.pod:3685
26759 #, no-wrap
26760 msgid ""
26761 " pread path count offset\n"
26762 "\n"
26763 msgstr ""
26764
26765 #. type: textblock
26766 #: ../fish/guestfish-actions.pod:3693
26767 msgid "See also L</pwrite>, L</pread-device>."
26768 msgstr ""
26769
26770 #. type: =head2
26771 #: ../fish/guestfish-actions.pod:3698
26772 msgid "pread-device"
26773 msgstr ""
26774
26775 #. type: verbatim
26776 #: ../fish/guestfish-actions.pod:3700
26777 #, no-wrap
26778 msgid ""
26779 " pread-device device count offset\n"
26780 "\n"
26781 msgstr ""
26782
26783 #. type: textblock
26784 #: ../fish/guestfish-actions.pod:3708
26785 msgid "See also L</pread>."
26786 msgstr ""
26787
26788 #. type: =head2
26789 #: ../fish/guestfish-actions.pod:3713
26790 msgid "pvcreate"
26791 msgstr ""
26792
26793 #. type: verbatim
26794 #: ../fish/guestfish-actions.pod:3715
26795 #, no-wrap
26796 msgid ""
26797 " pvcreate device\n"
26798 "\n"
26799 msgstr ""
26800
26801 #. type: =head2
26802 #: ../fish/guestfish-actions.pod:3721
26803 msgid "pvremove"
26804 msgstr ""
26805
26806 #. type: verbatim
26807 #: ../fish/guestfish-actions.pod:3723
26808 #, no-wrap
26809 msgid ""
26810 " pvremove device\n"
26811 "\n"
26812 msgstr ""
26813
26814 #. type: =head2
26815 #: ../fish/guestfish-actions.pod:3732
26816 msgid "pvresize"
26817 msgstr ""
26818
26819 #. type: verbatim
26820 #: ../fish/guestfish-actions.pod:3734
26821 #, no-wrap
26822 msgid ""
26823 " pvresize device\n"
26824 "\n"
26825 msgstr ""
26826
26827 #. type: =head2
26828 #: ../fish/guestfish-actions.pod:3739
26829 msgid "pvresize-size"
26830 msgstr ""
26831
26832 #. type: verbatim
26833 #: ../fish/guestfish-actions.pod:3741
26834 #, no-wrap
26835 msgid ""
26836 " pvresize-size device size\n"
26837 "\n"
26838 msgstr ""
26839
26840 #. type: textblock
26841 #: ../fish/guestfish-actions.pod:3743
26842 msgid ""
26843 "This command is the same as L</pvresize> except that it allows you to "
26844 "specify the new size (in bytes) explicitly."
26845 msgstr ""
26846
26847 #. type: =head2
26848 #: ../fish/guestfish-actions.pod:3746
26849 msgid "pvs"
26850 msgstr ""
26851
26852 #. type: verbatim
26853 #: ../fish/guestfish-actions.pod:3748
26854 #, no-wrap
26855 msgid ""
26856 " pvs\n"
26857 "\n"
26858 msgstr ""
26859
26860 #. type: textblock
26861 #: ../fish/guestfish-actions.pod:3756
26862 msgid "See also L</pvs-full>."
26863 msgstr ""
26864
26865 #. type: =head2
26866 #: ../fish/guestfish-actions.pod:3758
26867 msgid "pvs-full"
26868 msgstr ""
26869
26870 #. type: verbatim
26871 #: ../fish/guestfish-actions.pod:3760
26872 #, no-wrap
26873 msgid ""
26874 " pvs-full\n"
26875 "\n"
26876 msgstr ""
26877
26878 #. type: =head2
26879 #: ../fish/guestfish-actions.pod:3765
26880 msgid "pvuuid"
26881 msgstr ""
26882
26883 #. type: verbatim
26884 #: ../fish/guestfish-actions.pod:3767
26885 #, no-wrap
26886 msgid ""
26887 " pvuuid device\n"
26888 "\n"
26889 msgstr ""
26890
26891 #. type: =head2
26892 #: ../fish/guestfish-actions.pod:3771
26893 msgid "pwrite"
26894 msgstr ""
26895
26896 #. type: verbatim
26897 #: ../fish/guestfish-actions.pod:3773
26898 #, no-wrap
26899 msgid ""
26900 " pwrite path content offset\n"
26901 "\n"
26902 msgstr ""
26903
26904 #. type: textblock
26905 #: ../fish/guestfish-actions.pod:3784
26906 msgid "See also L</pread>, L</pwrite-device>."
26907 msgstr ""
26908
26909 #. type: =head2
26910 #: ../fish/guestfish-actions.pod:3789
26911 msgid "pwrite-device"
26912 msgstr ""
26913
26914 #. type: verbatim
26915 #: ../fish/guestfish-actions.pod:3791
26916 #, no-wrap
26917 msgid ""
26918 " pwrite-device device content offset\n"
26919 "\n"
26920 msgstr ""
26921
26922 #. type: textblock
26923 #: ../fish/guestfish-actions.pod:3801
26924 msgid "See also L</pwrite>."
26925 msgstr ""
26926
26927 #. type: =head2
26928 #: ../fish/guestfish-actions.pod:3806
26929 msgid "read-file"
26930 msgstr ""
26931
26932 #. type: verbatim
26933 #: ../fish/guestfish-actions.pod:3808
26934 #, no-wrap
26935 msgid ""
26936 " read-file path\n"
26937 "\n"
26938 msgstr ""
26939
26940 #. type: textblock
26941 #: ../fish/guestfish-actions.pod:3813
26942 msgid ""
26943 "Unlike L</cat>, this function can correctly handle files that contain "
26944 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26945 "is limited in the total size of file that can be handled."
26946 msgstr ""
26947
26948 #. type: =head2
26949 #: ../fish/guestfish-actions.pod:3821
26950 msgid "read-lines"
26951 msgstr ""
26952
26953 #. type: verbatim
26954 #: ../fish/guestfish-actions.pod:3823
26955 #, no-wrap
26956 msgid ""
26957 " read-lines path\n"
26958 "\n"
26959 msgstr ""
26960
26961 #. type: textblock
26962 #: ../fish/guestfish-actions.pod:3830
26963 msgid ""
26964 "Note that this function cannot correctly handle binary files (specifically, "
26965 "files containing C<\\0> character which is treated as end of line).  For "
26966 "those you need to use the L</read-file> function which has a more complex "
26967 "interface."
26968 msgstr ""
26969
26970 #. type: =head2
26971 #: ../fish/guestfish-actions.pod:3835
26972 msgid "readdir"
26973 msgstr ""
26974
26975 #. type: verbatim
26976 #: ../fish/guestfish-actions.pod:3837
26977 #, no-wrap
26978 msgid ""
26979 " readdir dir\n"
26980 "\n"
26981 msgstr ""
26982
26983 #. type: textblock
26984 #: ../fish/guestfish-actions.pod:3889
26985 msgid ""
26986 "This function is primarily intended for use by programs.  To get a simple "
26987 "list of names, use L</ls>.  To get a printable directory for human "
26988 "consumption, use L</ll>."
26989 msgstr ""
26990
26991 #. type: =head2
26992 #: ../fish/guestfish-actions.pod:3893
26993 msgid "readlink"
26994 msgstr ""
26995
26996 #. type: verbatim
26997 #: ../fish/guestfish-actions.pod:3895
26998 #, no-wrap
26999 msgid ""
27000 " readlink path\n"
27001 "\n"
27002 msgstr ""
27003
27004 #. type: =head2
27005 #: ../fish/guestfish-actions.pod:3899
27006 msgid "readlinklist"
27007 msgstr ""
27008
27009 #. type: verbatim
27010 #: ../fish/guestfish-actions.pod:3901
27011 #, no-wrap
27012 msgid ""
27013 " readlinklist path 'names ...'\n"
27014 "\n"
27015 msgstr ""
27016
27017 #. type: =head2
27018 #: ../fish/guestfish-actions.pod:3925
27019 msgid "realpath"
27020 msgstr ""
27021
27022 #. type: verbatim
27023 #: ../fish/guestfish-actions.pod:3927
27024 #, no-wrap
27025 msgid ""
27026 " realpath path\n"
27027 "\n"
27028 msgstr ""
27029
27030 #. type: =head2
27031 #: ../fish/guestfish-actions.pod:3932
27032 msgid "removexattr"
27033 msgstr ""
27034
27035 #. type: verbatim
27036 #: ../fish/guestfish-actions.pod:3934
27037 #, no-wrap
27038 msgid ""
27039 " removexattr xattr path\n"
27040 "\n"
27041 msgstr ""
27042
27043 #. type: textblock
27044 #: ../fish/guestfish-actions.pod:3939
27045 msgid "See also: L</lremovexattr>, L<attr(5)>."
27046 msgstr ""
27047
27048 #. type: =head2
27049 #: ../fish/guestfish-actions.pod:3941
27050 msgid "resize2fs"
27051 msgstr ""
27052
27053 #. type: verbatim
27054 #: ../fish/guestfish-actions.pod:3943
27055 #, no-wrap
27056 msgid ""
27057 " resize2fs device\n"
27058 "\n"
27059 msgstr ""
27060
27061 #. type: textblock
27062 #: ../fish/guestfish-actions.pod:3948
27063 msgid ""
27064 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
27065 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
27066 "gives an error about this and sometimes not.  In any case, it is always safe "
27067 "to call L</e2fsck-f> before calling this function."
27068 msgstr ""
27069
27070 #. type: =head2
27071 #: ../fish/guestfish-actions.pod:3954
27072 msgid "resize2fs-M"
27073 msgstr ""
27074
27075 #. type: verbatim
27076 #: ../fish/guestfish-actions.pod:3956
27077 #, no-wrap
27078 msgid ""
27079 " resize2fs-M device\n"
27080 "\n"
27081 msgstr ""
27082
27083 #. type: textblock
27084 #: ../fish/guestfish-actions.pod:3958
27085 msgid ""
27086 "This command is the same as L</resize2fs>, but the filesystem is resized to "
27087 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
27088 "command."
27089 msgstr ""
27090
27091 #. type: textblock
27092 #: ../fish/guestfish-actions.pod:3962
27093 msgid ""
27094 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
27095 "and read the C<Block size> and C<Block count> values.  These two numbers, "
27096 "multiplied together, give the resulting size of the minimal filesystem in "
27097 "bytes."
27098 msgstr ""
27099
27100 #. type: =head2
27101 #: ../fish/guestfish-actions.pod:3967
27102 msgid "resize2fs-size"
27103 msgstr ""
27104
27105 #. type: verbatim
27106 #: ../fish/guestfish-actions.pod:3969
27107 #, no-wrap
27108 msgid ""
27109 " resize2fs-size device size\n"
27110 "\n"
27111 msgstr ""
27112
27113 #. type: textblock
27114 #: ../fish/guestfish-actions.pod:3971
27115 msgid ""
27116 "This command is the same as L</resize2fs> except that it allows you to "
27117 "specify the new size (in bytes) explicitly."
27118 msgstr ""
27119
27120 #. type: =head2
27121 #: ../fish/guestfish-actions.pod:3974
27122 msgid "rm"
27123 msgstr ""
27124
27125 #. type: verbatim
27126 #: ../fish/guestfish-actions.pod:3976
27127 #, no-wrap
27128 msgid ""
27129 " rm path\n"
27130 "\n"
27131 msgstr ""
27132
27133 #. type: =head2
27134 #: ../fish/guestfish-actions.pod:3980
27135 msgid "rm-rf"
27136 msgstr ""
27137
27138 #. type: verbatim
27139 #: ../fish/guestfish-actions.pod:3982
27140 #, no-wrap
27141 msgid ""
27142 " rm-rf path\n"
27143 "\n"
27144 msgstr ""
27145
27146 #. type: =head2
27147 #: ../fish/guestfish-actions.pod:3988
27148 msgid "rmdir"
27149 msgstr ""
27150
27151 #. type: verbatim
27152 #: ../fish/guestfish-actions.pod:3990
27153 #, no-wrap
27154 msgid ""
27155 " rmdir path\n"
27156 "\n"
27157 msgstr ""
27158
27159 #. type: =head2
27160 #: ../fish/guestfish-actions.pod:3994
27161 msgid "rmmountpoint"
27162 msgstr ""
27163
27164 #. type: verbatim
27165 #: ../fish/guestfish-actions.pod:3996
27166 #, no-wrap
27167 msgid ""
27168 " rmmountpoint exemptpath\n"
27169 "\n"
27170 msgstr ""
27171
27172 #. type: textblock
27173 #: ../fish/guestfish-actions.pod:3998
27174 msgid ""
27175 "This calls removes a mountpoint that was previously created with L</"
27176 "mkmountpoint>.  See L</mkmountpoint> for full details."
27177 msgstr ""
27178
27179 #. type: =head2
27180 #: ../fish/guestfish-actions.pod:4002
27181 msgid "scrub-device"
27182 msgstr ""
27183
27184 #. type: verbatim
27185 #: ../fish/guestfish-actions.pod:4004
27186 #, no-wrap
27187 msgid ""
27188 " scrub-device device\n"
27189 "\n"
27190 msgstr ""
27191
27192 #. type: =head2
27193 #: ../fish/guestfish-actions.pod:4015
27194 msgid "scrub-file"
27195 msgstr ""
27196
27197 #. type: verbatim
27198 #: ../fish/guestfish-actions.pod:4017
27199 #, no-wrap
27200 msgid ""
27201 " scrub-file file\n"
27202 "\n"
27203 msgstr ""
27204
27205 #. type: =head2
27206 #: ../fish/guestfish-actions.pod:4027
27207 msgid "scrub-freespace"
27208 msgstr ""
27209
27210 #. type: verbatim
27211 #: ../fish/guestfish-actions.pod:4029
27212 #, no-wrap
27213 msgid ""
27214 " scrub-freespace dir\n"
27215 "\n"
27216 msgstr ""
27217
27218 #. type: textblock
27219 #: ../fish/guestfish-actions.pod:4031
27220 msgid ""
27221 "This command creates the directory C<dir> and then fills it with files until "
27222 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
27223 "deletes them.  The intention is to scrub any free space on the partition "
27224 "containing C<dir>."
27225 msgstr ""
27226
27227 #. type: =head2
27228 #: ../fish/guestfish-actions.pod:4040
27229 msgid "set-append"
27230 msgstr ""
27231
27232 #. type: =head2
27233 #: ../fish/guestfish-actions.pod:4042
27234 msgid "append"
27235 msgstr ""
27236
27237 #. type: verbatim
27238 #: ../fish/guestfish-actions.pod:4044
27239 #, no-wrap
27240 msgid ""
27241 " set-append append\n"
27242 "\n"
27243 msgstr ""
27244
27245 #. type: =head2
27246 #: ../fish/guestfish-actions.pod:4055
27247 msgid "set-attach-method"
27248 msgstr ""
27249
27250 #. type: =head2
27251 #: ../fish/guestfish-actions.pod:4057
27252 msgid "attach-method"
27253 msgstr ""
27254
27255 #. type: verbatim
27256 #: ../fish/guestfish-actions.pod:4059
27257 #, no-wrap
27258 msgid ""
27259 " set-attach-method attachmethod\n"
27260 "\n"
27261 msgstr ""
27262
27263 #. type: =head2
27264 #: ../fish/guestfish-actions.pod:4081
27265 msgid "set-autosync"
27266 msgstr ""
27267
27268 #. type: =head2
27269 #: ../fish/guestfish-actions.pod:4083
27270 msgid "autosync"
27271 msgstr ""
27272
27273 #. type: verbatim
27274 #: ../fish/guestfish-actions.pod:4085
27275 #, no-wrap
27276 msgid ""
27277 " set-autosync true|false\n"
27278 "\n"
27279 msgstr ""
27280
27281 #. type: =head2
27282 #: ../fish/guestfish-actions.pod:4095
27283 msgid "set-direct"
27284 msgstr ""
27285
27286 #. type: =head2
27287 #: ../fish/guestfish-actions.pod:4097
27288 msgid "direct"
27289 msgstr ""
27290
27291 #. type: verbatim
27292 #: ../fish/guestfish-actions.pod:4099
27293 #, no-wrap
27294 msgid ""
27295 " set-direct true|false\n"
27296 "\n"
27297 msgstr ""
27298
27299 #. type: textblock
27300 #: ../fish/guestfish-actions.pod:4105
27301 msgid ""
27302 "One consequence of this is that log messages aren't caught by the library "
27303 "and handled by L</set-log-message-callback>, but go straight to stdout."
27304 msgstr ""
27305
27306 #. type: =head2
27307 #: ../fish/guestfish-actions.pod:4114
27308 msgid "set-e2label"
27309 msgstr ""
27310
27311 #. type: verbatim
27312 #: ../fish/guestfish-actions.pod:4116
27313 #, no-wrap
27314 msgid ""
27315 " set-e2label device label\n"
27316 "\n"
27317 msgstr ""
27318
27319 #. type: textblock
27320 #: ../fish/guestfish-actions.pod:4122
27321 msgid ""
27322 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
27323 "label on a filesystem."
27324 msgstr ""
27325
27326 #. type: =head2
27327 #: ../fish/guestfish-actions.pod:4125
27328 msgid "set-e2uuid"
27329 msgstr ""
27330
27331 #. type: verbatim
27332 #: ../fish/guestfish-actions.pod:4127
27333 #, no-wrap
27334 msgid ""
27335 " set-e2uuid device uuid\n"
27336 "\n"
27337 msgstr ""
27338
27339 #. type: textblock
27340 #: ../fish/guestfish-actions.pod:4134
27341 msgid ""
27342 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
27343 "UUID of a filesystem."
27344 msgstr ""
27345
27346 #. type: =head2
27347 #: ../fish/guestfish-actions.pod:4137
27348 msgid "set-memsize"
27349 msgstr ""
27350
27351 #. type: =head2
27352 #: ../fish/guestfish-actions.pod:4139
27353 msgid "memsize"
27354 msgstr ""
27355
27356 #. type: verbatim
27357 #: ../fish/guestfish-actions.pod:4141
27358 #, no-wrap
27359 msgid ""
27360 " set-memsize memsize\n"
27361 "\n"
27362 msgstr ""
27363
27364 #. type: textblock
27365 #: ../fish/guestfish-actions.pod:4143
27366 msgid ""
27367 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
27368 "This only has any effect if called before L</launch>."
27369 msgstr ""
27370
27371 #. type: =head2
27372 #: ../fish/guestfish-actions.pod:4154
27373 msgid "set-network"
27374 msgstr ""
27375
27376 #. type: =head2
27377 #: ../fish/guestfish-actions.pod:4156
27378 msgid "network"
27379 msgstr ""
27380
27381 #. type: verbatim
27382 #: ../fish/guestfish-actions.pod:4158
27383 #, no-wrap
27384 msgid ""
27385 " set-network true|false\n"
27386 "\n"
27387 msgstr ""
27388
27389 #. type: textblock
27390 #: ../fish/guestfish-actions.pod:4166
27391 msgid ""
27392 "You must call this before calling L</launch>, otherwise it has no effect."
27393 msgstr ""
27394
27395 #. type: =head2
27396 #: ../fish/guestfish-actions.pod:4169
27397 msgid "set-path"
27398 msgstr ""
27399
27400 #. type: =head2
27401 #: ../fish/guestfish-actions.pod:4171
27402 msgid "path"
27403 msgstr ""
27404
27405 #. type: verbatim
27406 #: ../fish/guestfish-actions.pod:4173
27407 #, no-wrap
27408 msgid ""
27409 " set-path searchpath\n"
27410 "\n"
27411 msgstr ""
27412
27413 #. type: =head2
27414 #: ../fish/guestfish-actions.pod:4182
27415 msgid "set-qemu"
27416 msgstr ""
27417
27418 #. type: =head2
27419 #: ../fish/guestfish-actions.pod:4184
27420 msgid "qemu"
27421 msgstr ""
27422
27423 #. type: verbatim
27424 #: ../fish/guestfish-actions.pod:4186
27425 #, no-wrap
27426 msgid ""
27427 " set-qemu qemu\n"
27428 "\n"
27429 msgstr ""
27430
27431 #. type: =head2
27432 #: ../fish/guestfish-actions.pod:4206
27433 msgid "set-recovery-proc"
27434 msgstr ""
27435
27436 #. type: =head2
27437 #: ../fish/guestfish-actions.pod:4208
27438 msgid "recovery-proc"
27439 msgstr ""
27440
27441 #. type: verbatim
27442 #: ../fish/guestfish-actions.pod:4210
27443 #, no-wrap
27444 msgid ""
27445 " set-recovery-proc true|false\n"
27446 "\n"
27447 msgstr ""
27448
27449 #. type: textblock
27450 #: ../fish/guestfish-actions.pod:4212
27451 msgid ""
27452 "If this is called with the parameter C<false> then L</launch> does not "
27453 "create a recovery process.  The purpose of the recovery process is to stop "
27454 "runaway qemu processes in the case where the main program aborts abruptly."
27455 msgstr ""
27456
27457 #. type: textblock
27458 #: ../fish/guestfish-actions.pod:4217
27459 msgid ""
27460 "This only has any effect if called before L</launch>, and the default is "
27461 "true."
27462 msgstr ""
27463
27464 #. type: =head2
27465 #: ../fish/guestfish-actions.pod:4226
27466 msgid "set-selinux"
27467 msgstr ""
27468
27469 #. type: =head2
27470 #: ../fish/guestfish-actions.pod:4228
27471 msgid "selinux"
27472 msgstr ""
27473
27474 #. type: verbatim
27475 #: ../fish/guestfish-actions.pod:4230
27476 #, no-wrap
27477 msgid ""
27478 " set-selinux true|false\n"
27479 "\n"
27480 msgstr ""
27481
27482 #. type: =head2
27483 #: ../fish/guestfish-actions.pod:4241
27484 msgid "set-trace"
27485 msgstr ""
27486
27487 #. type: =head2
27488 #: ../fish/guestfish-actions.pod:4243
27489 msgid "trace"
27490 msgstr ""
27491
27492 #. type: verbatim
27493 #: ../fish/guestfish-actions.pod:4245
27494 #, no-wrap
27495 msgid ""
27496 " set-trace true|false\n"
27497 "\n"
27498 msgstr ""
27499
27500 #. type: textblock
27501 #: ../fish/guestfish-actions.pod:4257
27502 msgid ""
27503 "Trace messages are normally sent to C<stderr>, unless you register a "
27504 "callback to send them somewhere else (see L</set-event-callback>)."
27505 msgstr ""
27506
27507 #. type: =head2
27508 #: ../fish/guestfish-actions.pod:4261
27509 msgid "set-verbose"
27510 msgstr ""
27511
27512 #. type: =head2
27513 #: ../fish/guestfish-actions.pod:4263
27514 msgid "verbose"
27515 msgstr ""
27516
27517 #. type: verbatim
27518 #: ../fish/guestfish-actions.pod:4265
27519 #, no-wrap
27520 msgid ""
27521 " set-verbose true|false\n"
27522 "\n"
27523 msgstr ""
27524
27525 #. type: textblock
27526 #: ../fish/guestfish-actions.pod:4272
27527 msgid ""
27528 "Verbose messages are normally sent to C<stderr>, unless you register a "
27529 "callback to send them somewhere else (see L</set-event-callback>)."
27530 msgstr ""
27531
27532 #. type: =head2
27533 #: ../fish/guestfish-actions.pod:4276
27534 msgid "setcon"
27535 msgstr ""
27536
27537 #. type: verbatim
27538 #: ../fish/guestfish-actions.pod:4278
27539 #, no-wrap
27540 msgid ""
27541 " setcon context\n"
27542 "\n"
27543 msgstr ""
27544
27545 #. type: =head2
27546 #: ../fish/guestfish-actions.pod:4285
27547 msgid "setxattr"
27548 msgstr ""
27549
27550 #. type: verbatim
27551 #: ../fish/guestfish-actions.pod:4287
27552 #, no-wrap
27553 msgid ""
27554 " setxattr xattr val vallen path\n"
27555 "\n"
27556 msgstr ""
27557
27558 #. type: textblock
27559 #: ../fish/guestfish-actions.pod:4293
27560 msgid "See also: L</lsetxattr>, L<attr(5)>."
27561 msgstr ""
27562
27563 #. type: =head2
27564 #: ../fish/guestfish-actions.pod:4295
27565 msgid "sfdisk"
27566 msgstr ""
27567
27568 #. type: verbatim
27569 #: ../fish/guestfish-actions.pod:4297
27570 #, no-wrap
27571 msgid ""
27572 " sfdisk device cyls heads sectors 'lines ...'\n"
27573 "\n"
27574 msgstr ""
27575
27576 #. type: textblock
27577 #: ../fish/guestfish-actions.pod:4319
27578 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27579 msgstr ""
27580
27581 #. type: =head2
27582 #: ../fish/guestfish-actions.pod:4332
27583 msgid "sfdiskM"
27584 msgstr ""
27585
27586 #. type: verbatim
27587 #: ../fish/guestfish-actions.pod:4334
27588 #, no-wrap
27589 msgid ""
27590 " sfdiskM device 'lines ...'\n"
27591 "\n"
27592 msgstr ""
27593
27594 #. type: textblock
27595 #: ../fish/guestfish-actions.pod:4336
27596 msgid ""
27597 "This is a simplified interface to the L</sfdisk> command, where partition "
27598 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27599 "you don't need to specify the cyls, heads and sectors parameters which were "
27600 "rarely if ever used anyway."
27601 msgstr ""
27602
27603 #. type: textblock
27604 #: ../fish/guestfish-actions.pod:4342
27605 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27606 msgstr ""
27607
27608 #. type: =head2
27609 #: ../fish/guestfish-actions.pod:4355
27610 msgid "sfdisk-N"
27611 msgstr ""
27612
27613 #. type: verbatim
27614 #: ../fish/guestfish-actions.pod:4357
27615 #, no-wrap
27616 msgid ""
27617 " sfdisk-N device partnum cyls heads sectors line\n"
27618 "\n"
27619 msgstr ""
27620
27621 #. type: textblock
27622 #: ../fish/guestfish-actions.pod:4362
27623 msgid ""
27624 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27625 "cyls/heads/sectors parameters."
27626 msgstr ""
27627
27628 #. type: textblock
27629 #: ../fish/guestfish-actions.pod:4365
27630 msgid "See also: L</part-add>"
27631 msgstr ""
27632
27633 #. type: =head2
27634 #: ../fish/guestfish-actions.pod:4377
27635 msgid "sfdisk-disk-geometry"
27636 msgstr ""
27637
27638 #. type: verbatim
27639 #: ../fish/guestfish-actions.pod:4379
27640 #, no-wrap
27641 msgid ""
27642 " sfdisk-disk-geometry device\n"
27643 "\n"
27644 msgstr ""
27645
27646 #. type: textblock
27647 #: ../fish/guestfish-actions.pod:4381
27648 msgid ""
27649 "This displays the disk geometry of C<device> read from the partition table.  "
27650 "Especially in the case where the underlying block device has been resized, "
27651 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
27652 "kernel-geometry>)."
27653 msgstr ""
27654
27655 #. type: =head2
27656 #: ../fish/guestfish-actions.pod:4389
27657 msgid "sfdisk-kernel-geometry"
27658 msgstr ""
27659
27660 #. type: verbatim
27661 #: ../fish/guestfish-actions.pod:4391
27662 #, no-wrap
27663 msgid ""
27664 " sfdisk-kernel-geometry device\n"
27665 "\n"
27666 msgstr ""
27667
27668 #. type: =head2
27669 #: ../fish/guestfish-actions.pod:4398
27670 msgid "sfdisk-l"
27671 msgstr ""
27672
27673 #. type: verbatim
27674 #: ../fish/guestfish-actions.pod:4400
27675 #, no-wrap
27676 msgid ""
27677 " sfdisk-l device\n"
27678 "\n"
27679 msgstr ""
27680
27681 #. type: textblock
27682 #: ../fish/guestfish-actions.pod:4406
27683 msgid "See also: L</part-list>"
27684 msgstr ""
27685
27686 #. type: =head2
27687 #: ../fish/guestfish-actions.pod:4415
27688 msgid "sh"
27689 msgstr ""
27690
27691 #. type: verbatim
27692 #: ../fish/guestfish-actions.pod:4417
27693 #, no-wrap
27694 msgid ""
27695 " sh command\n"
27696 "\n"
27697 msgstr ""
27698
27699 #. type: textblock
27700 #: ../fish/guestfish-actions.pod:4422
27701 msgid "This is like L</command>, but passes the command to:"
27702 msgstr ""
27703
27704 #. type: textblock
27705 #: ../fish/guestfish-actions.pod:4430
27706 msgid "All the provisos about L</command> apply to this call."
27707 msgstr ""
27708
27709 #. type: =head2
27710 #: ../fish/guestfish-actions.pod:4432
27711 msgid "sh-lines"
27712 msgstr ""
27713
27714 #. type: verbatim
27715 #: ../fish/guestfish-actions.pod:4434
27716 #, no-wrap
27717 msgid ""
27718 " sh-lines command\n"
27719 "\n"
27720 msgstr ""
27721
27722 #. type: textblock
27723 #: ../fish/guestfish-actions.pod:4436
27724 msgid "This is the same as L</sh>, but splits the result into a list of lines."
27725 msgstr ""
27726
27727 #. type: textblock
27728 #: ../fish/guestfish-actions.pod:4439
27729 msgid "See also: L</command-lines>"
27730 msgstr ""
27731
27732 #. type: =head2
27733 #: ../fish/guestfish-actions.pod:4441
27734 msgid "sleep"
27735 msgstr ""
27736
27737 #. type: verbatim
27738 #: ../fish/guestfish-actions.pod:4443
27739 #, no-wrap
27740 msgid ""
27741 " sleep secs\n"
27742 "\n"
27743 msgstr ""
27744
27745 #. type: =head2
27746 #: ../fish/guestfish-actions.pod:4447
27747 msgid "stat"
27748 msgstr ""
27749
27750 #. type: verbatim
27751 #: ../fish/guestfish-actions.pod:4449
27752 #, no-wrap
27753 msgid ""
27754 " stat path\n"
27755 "\n"
27756 msgstr ""
27757
27758 #. type: =head2
27759 #: ../fish/guestfish-actions.pod:4455
27760 msgid "statvfs"
27761 msgstr ""
27762
27763 #. type: verbatim
27764 #: ../fish/guestfish-actions.pod:4457
27765 #, no-wrap
27766 msgid ""
27767 " statvfs path\n"
27768 "\n"
27769 msgstr ""
27770
27771 #. type: =head2
27772 #: ../fish/guestfish-actions.pod:4465
27773 msgid "strings"
27774 msgstr ""
27775
27776 #. type: verbatim
27777 #: ../fish/guestfish-actions.pod:4467
27778 #, no-wrap
27779 msgid ""
27780 " strings path\n"
27781 "\n"
27782 msgstr ""
27783
27784 #. type: =head2
27785 #: ../fish/guestfish-actions.pod:4475
27786 msgid "strings-e"
27787 msgstr ""
27788
27789 #. type: verbatim
27790 #: ../fish/guestfish-actions.pod:4477
27791 #, no-wrap
27792 msgid ""
27793 " strings-e encoding path\n"
27794 "\n"
27795 msgstr ""
27796
27797 #. type: textblock
27798 #: ../fish/guestfish-actions.pod:4479
27799 msgid ""
27800 "This is like the L</strings> command, but allows you to specify the encoding "
27801 "of strings that are looked for in the source file C<path>."
27802 msgstr ""
27803
27804 #. type: textblock
27805 #: ../fish/guestfish-actions.pod:4489
27806 msgid ""
27807 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27808 "ISO-8859-X (this is what L</strings> uses)."
27809 msgstr ""
27810
27811 #. type: =head2
27812 #: ../fish/guestfish-actions.pod:4521
27813 msgid "swapoff-device"
27814 msgstr ""
27815
27816 #. type: verbatim
27817 #: ../fish/guestfish-actions.pod:4523
27818 #, no-wrap
27819 msgid ""
27820 " swapoff-device device\n"
27821 "\n"
27822 msgstr ""
27823
27824 #. type: textblock
27825 #: ../fish/guestfish-actions.pod:4525
27826 msgid ""
27827 "This command disables the libguestfs appliance swap device or partition "
27828 "named C<device>.  See L</swapon-device>."
27829 msgstr ""
27830
27831 #. type: =head2
27832 #: ../fish/guestfish-actions.pod:4529
27833 msgid "swapoff-file"
27834 msgstr ""
27835
27836 #. type: verbatim
27837 #: ../fish/guestfish-actions.pod:4531
27838 #, no-wrap
27839 msgid ""
27840 " swapoff-file file\n"
27841 "\n"
27842 msgstr ""
27843
27844 #. type: =head2
27845 #: ../fish/guestfish-actions.pod:4535
27846 msgid "swapoff-label"
27847 msgstr ""
27848
27849 #. type: verbatim
27850 #: ../fish/guestfish-actions.pod:4537
27851 #, no-wrap
27852 msgid ""
27853 " swapoff-label label\n"
27854 "\n"
27855 msgstr ""
27856
27857 #. type: =head2
27858 #: ../fish/guestfish-actions.pod:4542
27859 msgid "swapoff-uuid"
27860 msgstr ""
27861
27862 #. type: verbatim
27863 #: ../fish/guestfish-actions.pod:4544
27864 #, no-wrap
27865 msgid ""
27866 " swapoff-uuid uuid\n"
27867 "\n"
27868 msgstr ""
27869
27870 #. type: =head2
27871 #: ../fish/guestfish-actions.pod:4549
27872 msgid "swapon-device"
27873 msgstr ""
27874
27875 #. type: verbatim
27876 #: ../fish/guestfish-actions.pod:4551
27877 #, no-wrap
27878 msgid ""
27879 " swapon-device device\n"
27880 "\n"
27881 msgstr ""
27882
27883 #. type: textblock
27884 #: ../fish/guestfish-actions.pod:4553
27885 msgid ""
27886 "This command enables the libguestfs appliance to use the swap device or "
27887 "partition named C<device>.  The increased memory is made available for all "
27888 "commands, for example those run using L</command> or L</sh>."
27889 msgstr ""
27890
27891 #. type: =head2
27892 #: ../fish/guestfish-actions.pod:4565
27893 msgid "swapon-file"
27894 msgstr ""
27895
27896 #. type: verbatim
27897 #: ../fish/guestfish-actions.pod:4567
27898 #, no-wrap
27899 msgid ""
27900 " swapon-file file\n"
27901 "\n"
27902 msgstr ""
27903
27904 #. type: textblock
27905 #: ../fish/guestfish-actions.pod:4569
27906 msgid ""
27907 "This command enables swap to a file.  See L</swapon-device> for other notes."
27908 msgstr ""
27909
27910 #. type: =head2
27911 #: ../fish/guestfish-actions.pod:4572
27912 msgid "swapon-label"
27913 msgstr ""
27914
27915 #. type: verbatim
27916 #: ../fish/guestfish-actions.pod:4574
27917 #, no-wrap
27918 msgid ""
27919 " swapon-label label\n"
27920 "\n"
27921 msgstr ""
27922
27923 #. type: textblock
27924 #: ../fish/guestfish-actions.pod:4576
27925 msgid ""
27926 "This command enables swap to a labeled swap partition.  See L</swapon-"
27927 "device> for other notes."
27928 msgstr ""
27929
27930 #. type: =head2
27931 #: ../fish/guestfish-actions.pod:4579
27932 msgid "swapon-uuid"
27933 msgstr ""
27934
27935 #. type: verbatim
27936 #: ../fish/guestfish-actions.pod:4581
27937 #, no-wrap
27938 msgid ""
27939 " swapon-uuid uuid\n"
27940 "\n"
27941 msgstr ""
27942
27943 #. type: textblock
27944 #: ../fish/guestfish-actions.pod:4583
27945 msgid ""
27946 "This command enables swap to a swap partition with the given UUID.  See L</"
27947 "swapon-device> for other notes."
27948 msgstr ""
27949
27950 #. type: =head2
27951 #: ../fish/guestfish-actions.pod:4586
27952 msgid "sync"
27953 msgstr ""
27954
27955 #. type: verbatim
27956 #: ../fish/guestfish-actions.pod:4588
27957 #, no-wrap
27958 msgid ""
27959 " sync\n"
27960 "\n"
27961 msgstr ""
27962
27963 #. type: =head2
27964 #: ../fish/guestfish-actions.pod:4596
27965 msgid "tail"
27966 msgstr ""
27967
27968 #. type: verbatim
27969 #: ../fish/guestfish-actions.pod:4598
27970 #, no-wrap
27971 msgid ""
27972 " tail path\n"
27973 "\n"
27974 msgstr ""
27975
27976 #. type: =head2
27977 #: ../fish/guestfish-actions.pod:4606
27978 msgid "tail-n"
27979 msgstr ""
27980
27981 #. type: verbatim
27982 #: ../fish/guestfish-actions.pod:4608
27983 #, no-wrap
27984 msgid ""
27985 " tail-n nrlines path\n"
27986 "\n"
27987 msgstr ""
27988
27989 #. type: =head2
27990 #: ../fish/guestfish-actions.pod:4621
27991 msgid "tar-in"
27992 msgstr ""
27993
27994 #. type: verbatim
27995 #: ../fish/guestfish-actions.pod:4623
27996 #, no-wrap
27997 msgid ""
27998 " tar-in (tarfile|-) directory\n"
27999 "\n"
28000 msgstr ""
28001
28002 #. type: textblock
28003 #: ../fish/guestfish-actions.pod:4628
28004 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
28005 msgstr ""
28006
28007 #. type: =head2
28008 #: ../fish/guestfish-actions.pod:4633
28009 msgid "tar-out"
28010 msgstr ""
28011
28012 #. type: verbatim
28013 #: ../fish/guestfish-actions.pod:4635
28014 #, no-wrap
28015 msgid ""
28016 " tar-out directory (tarfile|-)\n"
28017 "\n"
28018 msgstr ""
28019
28020 #. type: textblock
28021 #: ../fish/guestfish-actions.pod:4640
28022 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
28023 msgstr ""
28024
28025 #. type: =head2
28026 #: ../fish/guestfish-actions.pod:4645
28027 msgid "tgz-in"
28028 msgstr ""
28029
28030 #. type: verbatim
28031 #: ../fish/guestfish-actions.pod:4647
28032 #, no-wrap
28033 msgid ""
28034 " tgz-in (tarball|-) directory\n"
28035 "\n"
28036 msgstr ""
28037
28038 #. type: textblock
28039 #: ../fish/guestfish-actions.pod:4652
28040 msgid "To upload an uncompressed tarball, use L</tar-in>."
28041 msgstr ""
28042
28043 #. type: =head2
28044 #: ../fish/guestfish-actions.pod:4656
28045 msgid "tgz-out"
28046 msgstr ""
28047
28048 #. type: verbatim
28049 #: ../fish/guestfish-actions.pod:4658
28050 #, no-wrap
28051 msgid ""
28052 " tgz-out directory (tarball|-)\n"
28053 "\n"
28054 msgstr ""
28055
28056 #. type: textblock
28057 #: ../fish/guestfish-actions.pod:4663
28058 msgid "To download an uncompressed tarball, use L</tar-out>."
28059 msgstr ""
28060
28061 #. type: =head2
28062 #: ../fish/guestfish-actions.pod:4667
28063 msgid "touch"
28064 msgstr ""
28065
28066 #. type: verbatim
28067 #: ../fish/guestfish-actions.pod:4669
28068 #, no-wrap
28069 msgid ""
28070 " touch path\n"
28071 "\n"
28072 msgstr ""
28073
28074 #. type: =head2
28075 #: ../fish/guestfish-actions.pod:4678
28076 msgid "truncate"
28077 msgstr ""
28078
28079 #. type: verbatim
28080 #: ../fish/guestfish-actions.pod:4680
28081 #, no-wrap
28082 msgid ""
28083 " truncate path\n"
28084 "\n"
28085 msgstr ""
28086
28087 #. type: =head2
28088 #: ../fish/guestfish-actions.pod:4685
28089 msgid "truncate-size"
28090 msgstr ""
28091
28092 #. type: verbatim
28093 #: ../fish/guestfish-actions.pod:4687
28094 #, no-wrap
28095 msgid ""
28096 " truncate-size path size\n"
28097 "\n"
28098 msgstr ""
28099
28100 #. type: textblock
28101 #: ../fish/guestfish-actions.pod:4692
28102 msgid ""
28103 "If the current file size is less than C<size> then the file is extended to "
28104 "the required size with zero bytes.  This creates a sparse file (ie. disk "
28105 "blocks are not allocated for the file until you write to it).  To create a "
28106 "non-sparse file of zeroes, use L</fallocate64> instead."
28107 msgstr ""
28108
28109 #. type: =head2
28110 #: ../fish/guestfish-actions.pod:4698
28111 msgid "tune2fs-l"
28112 msgstr ""
28113
28114 #. type: verbatim
28115 #: ../fish/guestfish-actions.pod:4700
28116 #, no-wrap
28117 msgid ""
28118 " tune2fs-l device\n"
28119 "\n"
28120 msgstr ""
28121
28122 #. type: =head2
28123 #: ../fish/guestfish-actions.pod:4710
28124 msgid "txz-in"
28125 msgstr ""
28126
28127 #. type: verbatim
28128 #: ../fish/guestfish-actions.pod:4712
28129 #, no-wrap
28130 msgid ""
28131 " txz-in (tarball|-) directory\n"
28132 "\n"
28133 msgstr ""
28134
28135 #. type: =head2
28136 #: ../fish/guestfish-actions.pod:4719
28137 msgid "txz-out"
28138 msgstr ""
28139
28140 #. type: verbatim
28141 #: ../fish/guestfish-actions.pod:4721
28142 #, no-wrap
28143 msgid ""
28144 " txz-out directory (tarball|-)\n"
28145 "\n"
28146 msgstr ""
28147
28148 #. type: =head2
28149 #: ../fish/guestfish-actions.pod:4728
28150 msgid "umask"
28151 msgstr ""
28152
28153 #. type: verbatim
28154 #: ../fish/guestfish-actions.pod:4730
28155 #, no-wrap
28156 msgid ""
28157 " umask mask\n"
28158 "\n"
28159 msgstr ""
28160
28161 #. type: textblock
28162 #: ../fish/guestfish-actions.pod:4744
28163 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
28164 msgstr ""
28165
28166 #. type: =head2
28167 #: ../fish/guestfish-actions.pod:4749
28168 msgid "umount"
28169 msgstr ""
28170
28171 #. type: =head2
28172 #: ../fish/guestfish-actions.pod:4751
28173 msgid "unmount"
28174 msgstr ""
28175
28176 #. type: verbatim
28177 #: ../fish/guestfish-actions.pod:4753
28178 #, no-wrap
28179 msgid ""
28180 " umount pathordevice\n"
28181 "\n"
28182 msgstr ""
28183
28184 #. type: =head2
28185 #: ../fish/guestfish-actions.pod:4759
28186 msgid "umount-all"
28187 msgstr ""
28188
28189 #. type: =head2
28190 #: ../fish/guestfish-actions.pod:4761
28191 msgid "unmount-all"
28192 msgstr ""
28193
28194 #. type: verbatim
28195 #: ../fish/guestfish-actions.pod:4763
28196 #, no-wrap
28197 msgid ""
28198 " umount-all\n"
28199 "\n"
28200 msgstr ""
28201
28202 #. type: =head2
28203 #: ../fish/guestfish-actions.pod:4769
28204 msgid "upload"
28205 msgstr ""
28206
28207 #. type: verbatim
28208 #: ../fish/guestfish-actions.pod:4771
28209 #, no-wrap
28210 msgid ""
28211 " upload (filename|-) remotefilename\n"
28212 "\n"
28213 msgstr ""
28214
28215 #. type: textblock
28216 #: ../fish/guestfish-actions.pod:4778
28217 msgid "See also L</download>."
28218 msgstr ""
28219
28220 #. type: =head2
28221 #: ../fish/guestfish-actions.pod:4782
28222 msgid "upload-offset"
28223 msgstr ""
28224
28225 #. type: verbatim
28226 #: ../fish/guestfish-actions.pod:4784
28227 #, no-wrap
28228 msgid ""
28229 " upload-offset (filename|-) remotefilename offset\n"
28230 "\n"
28231 msgstr ""
28232
28233 #. type: textblock
28234 #: ../fish/guestfish-actions.pod:4796
28235 msgid ""
28236 "Note that there is no limit on the amount of data that can be uploaded with "
28237 "this call, unlike with L</pwrite>, and this call always writes the full "
28238 "amount unless an error occurs."
28239 msgstr ""
28240
28241 #. type: textblock
28242 #: ../fish/guestfish-actions.pod:4801
28243 msgid "See also L</upload>, L</pwrite>."
28244 msgstr ""
28245
28246 #. type: =head2
28247 #: ../fish/guestfish-actions.pod:4805
28248 msgid "utimens"
28249 msgstr ""
28250
28251 #. type: verbatim
28252 #: ../fish/guestfish-actions.pod:4807
28253 #, no-wrap
28254 msgid ""
28255 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
28256 "\n"
28257 msgstr ""
28258
28259 #. type: =head2
28260 #: ../fish/guestfish-actions.pod:4826
28261 msgid "version"
28262 msgstr ""
28263
28264 #. type: verbatim
28265 #: ../fish/guestfish-actions.pod:4828
28266 #, no-wrap
28267 msgid ""
28268 " version\n"
28269 "\n"
28270 msgstr ""
28271
28272 #. type: textblock
28273 #: ../fish/guestfish-actions.pod:4855
28274 msgid ""
28275 "I<Note:> Don't use this call to test for availability of features.  In "
28276 "enterprise distributions we backport features from later versions into "
28277 "earlier versions, making this an unreliable way to test for features.  Use "
28278 "L</available> instead."
28279 msgstr ""
28280
28281 #. type: =head2
28282 #: ../fish/guestfish-actions.pod:4861
28283 msgid "vfs-label"
28284 msgstr ""
28285
28286 #. type: verbatim
28287 #: ../fish/guestfish-actions.pod:4863
28288 #, no-wrap
28289 msgid ""
28290 " vfs-label device\n"
28291 "\n"
28292 msgstr ""
28293
28294 #. type: textblock
28295 #: ../fish/guestfish-actions.pod:4870
28296 msgid "To find a filesystem from the label, use L</findfs-label>."
28297 msgstr ""
28298
28299 #. type: =head2
28300 #: ../fish/guestfish-actions.pod:4872
28301 msgid "vfs-type"
28302 msgstr ""
28303
28304 #. type: verbatim
28305 #: ../fish/guestfish-actions.pod:4874
28306 #, no-wrap
28307 msgid ""
28308 " vfs-type device\n"
28309 "\n"
28310 msgstr ""
28311
28312 #. type: =head2
28313 #: ../fish/guestfish-actions.pod:4884
28314 msgid "vfs-uuid"
28315 msgstr ""
28316
28317 #. type: verbatim
28318 #: ../fish/guestfish-actions.pod:4886
28319 #, no-wrap
28320 msgid ""
28321 " vfs-uuid device\n"
28322 "\n"
28323 msgstr ""
28324
28325 #. type: textblock
28326 #: ../fish/guestfish-actions.pod:4893
28327 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
28328 msgstr ""
28329
28330 #. type: =head2
28331 #: ../fish/guestfish-actions.pod:4895
28332 msgid "vg-activate"
28333 msgstr ""
28334
28335 #. type: verbatim
28336 #: ../fish/guestfish-actions.pod:4897
28337 #, no-wrap
28338 msgid ""
28339 " vg-activate true|false 'volgroups ...'\n"
28340 "\n"
28341 msgstr ""
28342
28343 #. type: =head2
28344 #: ../fish/guestfish-actions.pod:4907
28345 msgid "vg-activate-all"
28346 msgstr ""
28347
28348 #. type: verbatim
28349 #: ../fish/guestfish-actions.pod:4909
28350 #, no-wrap
28351 msgid ""
28352 " vg-activate-all true|false\n"
28353 "\n"
28354 msgstr ""
28355
28356 #. type: =head2
28357 #: ../fish/guestfish-actions.pod:4916
28358 msgid "vgcreate"
28359 msgstr ""
28360
28361 #. type: verbatim
28362 #: ../fish/guestfish-actions.pod:4918
28363 #, no-wrap
28364 msgid ""
28365 " vgcreate volgroup 'physvols ...'\n"
28366 "\n"
28367 msgstr ""
28368
28369 #. type: =head2
28370 #: ../fish/guestfish-actions.pod:4923
28371 msgid "vglvuuids"
28372 msgstr ""
28373
28374 #. type: verbatim
28375 #: ../fish/guestfish-actions.pod:4925
28376 #, no-wrap
28377 msgid ""
28378 " vglvuuids vgname\n"
28379 "\n"
28380 msgstr ""
28381
28382 #. type: textblock
28383 #: ../fish/guestfish-actions.pod:4930
28384 msgid ""
28385 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
28386 "logical volumes and volume groups."
28387 msgstr ""
28388
28389 #. type: textblock
28390 #: ../fish/guestfish-actions.pod:4933
28391 msgid "See also L</vgpvuuids>."
28392 msgstr ""
28393
28394 #. type: =head2
28395 #: ../fish/guestfish-actions.pod:4935
28396 msgid "vgpvuuids"
28397 msgstr ""
28398
28399 #. type: verbatim
28400 #: ../fish/guestfish-actions.pod:4937
28401 #, no-wrap
28402 msgid ""
28403 " vgpvuuids vgname\n"
28404 "\n"
28405 msgstr ""
28406
28407 #. type: textblock
28408 #: ../fish/guestfish-actions.pod:4942
28409 msgid ""
28410 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28411 "physical volumes and volume groups."
28412 msgstr ""
28413
28414 #. type: textblock
28415 #: ../fish/guestfish-actions.pod:4945
28416 msgid "See also L</vglvuuids>."
28417 msgstr ""
28418
28419 #. type: =head2
28420 #: ../fish/guestfish-actions.pod:4947
28421 msgid "vgremove"
28422 msgstr ""
28423
28424 #. type: verbatim
28425 #: ../fish/guestfish-actions.pod:4949
28426 #, no-wrap
28427 msgid ""
28428 " vgremove vgname\n"
28429 "\n"
28430 msgstr ""
28431
28432 #. type: =head2
28433 #: ../fish/guestfish-actions.pod:4956
28434 msgid "vgrename"
28435 msgstr ""
28436
28437 #. type: verbatim
28438 #: ../fish/guestfish-actions.pod:4958
28439 #, no-wrap
28440 msgid ""
28441 " vgrename volgroup newvolgroup\n"
28442 "\n"
28443 msgstr ""
28444
28445 #. type: =head2
28446 #: ../fish/guestfish-actions.pod:4962
28447 msgid "vgs"
28448 msgstr ""
28449
28450 #. type: verbatim
28451 #: ../fish/guestfish-actions.pod:4964
28452 #, no-wrap
28453 msgid ""
28454 " vgs\n"
28455 "\n"
28456 msgstr ""
28457
28458 #. type: textblock
28459 #: ../fish/guestfish-actions.pod:4972
28460 msgid "See also L</vgs-full>."
28461 msgstr ""
28462
28463 #. type: =head2
28464 #: ../fish/guestfish-actions.pod:4974
28465 msgid "vgs-full"
28466 msgstr ""
28467
28468 #. type: verbatim
28469 #: ../fish/guestfish-actions.pod:4976
28470 #, no-wrap
28471 msgid ""
28472 " vgs-full\n"
28473 "\n"
28474 msgstr ""
28475
28476 #. type: =head2
28477 #: ../fish/guestfish-actions.pod:4981
28478 msgid "vgscan"
28479 msgstr ""
28480
28481 #. type: verbatim
28482 #: ../fish/guestfish-actions.pod:4983
28483 #, no-wrap
28484 msgid ""
28485 " vgscan\n"
28486 "\n"
28487 msgstr ""
28488
28489 #. type: =head2
28490 #: ../fish/guestfish-actions.pod:4988
28491 msgid "vguuid"
28492 msgstr ""
28493
28494 #. type: verbatim
28495 #: ../fish/guestfish-actions.pod:4990
28496 #, no-wrap
28497 msgid ""
28498 " vguuid vgname\n"
28499 "\n"
28500 msgstr ""
28501
28502 #. type: =head2
28503 #: ../fish/guestfish-actions.pod:4994
28504 msgid "wc-c"
28505 msgstr ""
28506
28507 #. type: verbatim
28508 #: ../fish/guestfish-actions.pod:4996
28509 #, no-wrap
28510 msgid ""
28511 " wc-c path\n"
28512 "\n"
28513 msgstr ""
28514
28515 #. type: =head2
28516 #: ../fish/guestfish-actions.pod:5001
28517 msgid "wc-l"
28518 msgstr ""
28519
28520 #. type: verbatim
28521 #: ../fish/guestfish-actions.pod:5003
28522 #, no-wrap
28523 msgid ""
28524 " wc-l path\n"
28525 "\n"
28526 msgstr ""
28527
28528 #. type: =head2
28529 #: ../fish/guestfish-actions.pod:5008
28530 msgid "wc-w"
28531 msgstr ""
28532
28533 #. type: verbatim
28534 #: ../fish/guestfish-actions.pod:5010
28535 #, no-wrap
28536 msgid ""
28537 " wc-w path\n"
28538 "\n"
28539 msgstr ""
28540
28541 #. type: =head2
28542 #: ../fish/guestfish-actions.pod:5015
28543 msgid "write"
28544 msgstr ""
28545
28546 #. type: verbatim
28547 #: ../fish/guestfish-actions.pod:5017
28548 #, no-wrap
28549 msgid ""
28550 " write path content\n"
28551 "\n"
28552 msgstr ""
28553
28554 #. type: =head2
28555 #: ../fish/guestfish-actions.pod:5025
28556 msgid "write-file"
28557 msgstr ""
28558
28559 #. type: verbatim
28560 #: ../fish/guestfish-actions.pod:5027
28561 #, no-wrap
28562 msgid ""
28563 " write-file path content size\n"
28564 "\n"
28565 msgstr ""
28566
28567 #. type: =head2
28568 #: ../fish/guestfish-actions.pod:5050
28569 msgid "zegrep"
28570 msgstr ""
28571
28572 #. type: verbatim
28573 #: ../fish/guestfish-actions.pod:5052
28574 #, no-wrap
28575 msgid ""
28576 " zegrep regex path\n"
28577 "\n"
28578 msgstr ""
28579
28580 #. type: =head2
28581 #: ../fish/guestfish-actions.pod:5060
28582 msgid "zegrepi"
28583 msgstr ""
28584
28585 #. type: verbatim
28586 #: ../fish/guestfish-actions.pod:5062
28587 #, no-wrap
28588 msgid ""
28589 " zegrepi regex path\n"
28590 "\n"
28591 msgstr ""
28592
28593 #. type: =head2
28594 #: ../fish/guestfish-actions.pod:5070
28595 msgid "zero"
28596 msgstr ""
28597
28598 #. type: verbatim
28599 #: ../fish/guestfish-actions.pod:5072
28600 #, no-wrap
28601 msgid ""
28602 " zero device\n"
28603 "\n"
28604 msgstr ""
28605
28606 #. type: textblock
28607 #: ../fish/guestfish-actions.pod:5080
28608 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28609 msgstr ""
28610
28611 #. type: =head2
28612 #: ../fish/guestfish-actions.pod:5083
28613 msgid "zero-device"
28614 msgstr ""
28615
28616 #. type: verbatim
28617 #: ../fish/guestfish-actions.pod:5085
28618 #, no-wrap
28619 msgid ""
28620 " zero-device device\n"
28621 "\n"
28622 msgstr ""
28623
28624 #. type: textblock
28625 #: ../fish/guestfish-actions.pod:5087
28626 msgid ""
28627 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
28628 "which just zeroes the first few blocks of a device."
28629 msgstr ""
28630
28631 #. type: =head2
28632 #: ../fish/guestfish-actions.pod:5094
28633 msgid "zerofree"
28634 msgstr ""
28635
28636 #. type: verbatim
28637 #: ../fish/guestfish-actions.pod:5096
28638 #, no-wrap
28639 msgid ""
28640 " zerofree device\n"
28641 "\n"
28642 msgstr ""
28643
28644 #. type: =head2
28645 #: ../fish/guestfish-actions.pod:5109
28646 msgid "zfgrep"
28647 msgstr ""
28648
28649 #. type: verbatim
28650 #: ../fish/guestfish-actions.pod:5111
28651 #, no-wrap
28652 msgid ""
28653 " zfgrep pattern path\n"
28654 "\n"
28655 msgstr ""
28656
28657 #. type: =head2
28658 #: ../fish/guestfish-actions.pod:5119
28659 msgid "zfgrepi"
28660 msgstr ""
28661
28662 #. type: verbatim
28663 #: ../fish/guestfish-actions.pod:5121
28664 #, no-wrap
28665 msgid ""
28666 " zfgrepi pattern path\n"
28667 "\n"
28668 msgstr ""
28669
28670 #. type: =head2
28671 #: ../fish/guestfish-actions.pod:5129
28672 msgid "zfile"
28673 msgstr ""
28674
28675 #. type: verbatim
28676 #: ../fish/guestfish-actions.pod:5131
28677 #, no-wrap
28678 msgid ""
28679 " zfile meth path\n"
28680 "\n"
28681 msgstr ""
28682
28683 #. type: textblock
28684 #: ../fish/guestfish-actions.pod:5138
28685 msgid ""
28686 "Since 1.0.63, use L</file> instead which can now process compressed files."
28687 msgstr ""
28688
28689 #. type: =head2
28690 #: ../fish/guestfish-actions.pod:5148
28691 msgid "zgrep"
28692 msgstr ""
28693
28694 #. type: verbatim
28695 #: ../fish/guestfish-actions.pod:5150
28696 #, no-wrap
28697 msgid ""
28698 " zgrep regex path\n"
28699 "\n"
28700 msgstr ""
28701
28702 #. type: =head2
28703 #: ../fish/guestfish-actions.pod:5158
28704 msgid "zgrepi"
28705 msgstr ""
28706
28707 #. type: verbatim
28708 #: ../fish/guestfish-actions.pod:5160
28709 #, no-wrap
28710 msgid ""
28711 " zgrepi regex path\n"
28712 "\n"
28713 msgstr ""
28714
28715 #. type: =head2
28716 #: ../fish/guestfish-commands.pod:1
28717 msgid "alloc"
28718 msgstr ""
28719
28720 #. type: =head2
28721 #: ../fish/guestfish-commands.pod:3
28722 msgid "allocate"
28723 msgstr ""
28724
28725 #. type: verbatim
28726 #: ../fish/guestfish-commands.pod:5
28727 #, no-wrap
28728 msgid ""
28729 " alloc filename size\n"
28730 "\n"
28731 msgstr ""
28732
28733 #. type: textblock
28734 #: ../fish/guestfish-commands.pod:7
28735 msgid ""
28736 "This creates an empty (zeroed) file of the given size, and then adds so it "
28737 "can be further examined."
28738 msgstr ""
28739
28740 #. type: textblock
28741 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
28742 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
28743 msgstr ""
28744
28745 #. type: textblock
28746 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
28747 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28748 msgstr ""
28749
28750 #. type: textblock
28751 #: ../fish/guestfish-commands.pod:14
28752 msgid ""
28753 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28754 "image, see L</PREPARED DISK IMAGES>."
28755 msgstr ""
28756
28757 #. type: =head2
28758 #: ../fish/guestfish-commands.pod:17
28759 msgid "copy-in"
28760 msgstr ""
28761
28762 #. type: verbatim
28763 #: ../fish/guestfish-commands.pod:19
28764 #, no-wrap
28765 msgid ""
28766 " copy-in local [local ...] /remotedir\n"
28767 "\n"
28768 msgstr ""
28769
28770 #. type: textblock
28771 #: ../fish/guestfish-commands.pod:21
28772 msgid ""
28773 "C<copy-in> copies local files or directories recursively into the disk "
28774 "image, placing them in the directory called C</remotedir> (which must "
28775 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28776 "other commands as necessary."
28777 msgstr ""
28778
28779 #. type: textblock
28780 #: ../fish/guestfish-commands.pod:26
28781 msgid ""
28782 "Multiple local files and directories can be specified, but the last "
28783 "parameter must always be a remote directory.  Wildcards cannot be used."
28784 msgstr ""
28785
28786 #. type: =head2
28787 #: ../fish/guestfish-commands.pod:30
28788 msgid "copy-out"
28789 msgstr ""
28790
28791 #. type: verbatim
28792 #: ../fish/guestfish-commands.pod:32
28793 #, no-wrap
28794 msgid ""
28795 " copy-out remote [remote ...] localdir\n"
28796 "\n"
28797 msgstr ""
28798
28799 #. type: textblock
28800 #: ../fish/guestfish-commands.pod:34
28801 msgid ""
28802 "C<copy-out> copies remote files or directories recursively out of the disk "
28803 "image, placing them on the host disk in a local directory called C<localdir> "
28804 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28805 "download>, L</tar-out> and other commands as necessary."
28806 msgstr ""
28807
28808 #. type: textblock
28809 #: ../fish/guestfish-commands.pod:40
28810 msgid ""
28811 "Multiple remote files and directories can be specified, but the last "
28812 "parameter must always be a local directory.  To download to the current "
28813 "directory, use C<.> as in:"
28814 msgstr ""
28815
28816 #. type: verbatim
28817 #: ../fish/guestfish-commands.pod:44
28818 #, no-wrap
28819 msgid ""
28820 " copy-out /home .\n"
28821 "\n"
28822 msgstr ""
28823
28824 #. type: textblock
28825 #: ../fish/guestfish-commands.pod:46
28826 msgid ""
28827 "Wildcards cannot be used in the ordinary command, but you can use them with "
28828 "the help of L</glob> like this:"
28829 msgstr ""
28830
28831 #. type: verbatim
28832 #: ../fish/guestfish-commands.pod:49
28833 #, no-wrap
28834 msgid ""
28835 " glob copy-out /home/* .\n"
28836 "\n"
28837 msgstr ""
28838
28839 #. type: =head2
28840 #: ../fish/guestfish-commands.pod:51
28841 msgid "display"
28842 msgstr ""
28843
28844 #. type: verbatim
28845 #: ../fish/guestfish-commands.pod:53
28846 #, no-wrap
28847 msgid ""
28848 " display filename\n"
28849 "\n"
28850 msgstr ""
28851
28852 #. type: textblock
28853 #: ../fish/guestfish-commands.pod:55
28854 msgid ""
28855 "Use C<display> (a graphical display program) to display an image file.  It "
28856 "downloads the file, and runs C<display> on it."
28857 msgstr ""
28858
28859 #. type: textblock
28860 #: ../fish/guestfish-commands.pod:58
28861 msgid ""
28862 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28863 "environment variable.  For example to use the GNOME display program:"
28864 msgstr ""
28865
28866 #. type: verbatim
28867 #: ../fish/guestfish-commands.pod:61
28868 #, no-wrap
28869 msgid ""
28870 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28871 "\n"
28872 msgstr ""
28873
28874 #. type: textblock
28875 #: ../fish/guestfish-commands.pod:63
28876 #, fuzzy
28877 #| msgid "See L<guestfish(1)>."
28878 msgid "See also L<display(1)>."
28879 msgstr "Див. L<guestfish(1)>."
28880
28881 #. type: =head2
28882 #: ../fish/guestfish-commands.pod:65
28883 msgid "echo"
28884 msgstr ""
28885
28886 #. type: verbatim
28887 #: ../fish/guestfish-commands.pod:67
28888 #, no-wrap
28889 msgid ""
28890 " echo [params ...]\n"
28891 "\n"
28892 msgstr ""
28893
28894 #. type: textblock
28895 #: ../fish/guestfish-commands.pod:69
28896 msgid "This echos the parameters to the terminal."
28897 msgstr ""
28898
28899 #. type: =head2
28900 #: ../fish/guestfish-commands.pod:71
28901 msgid "edit"
28902 msgstr ""
28903
28904 #. type: =head2
28905 #: ../fish/guestfish-commands.pod:73
28906 msgid "vi"
28907 msgstr ""
28908
28909 #. type: =head2
28910 #: ../fish/guestfish-commands.pod:75
28911 msgid "emacs"
28912 msgstr ""
28913
28914 #. type: verbatim
28915 #: ../fish/guestfish-commands.pod:77
28916 #, no-wrap
28917 msgid ""
28918 " edit filename\n"
28919 "\n"
28920 msgstr ""
28921
28922 #. type: textblock
28923 #: ../fish/guestfish-commands.pod:79
28924 msgid ""
28925 "This is used to edit a file.  It downloads the file, edits it locally using "
28926 "your editor, then uploads the result."
28927 msgstr ""
28928
28929 #. type: textblock
28930 #: ../fish/guestfish-commands.pod:82
28931 msgid ""
28932 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28933 "or C<emacs> you will get those corresponding editors."
28934 msgstr ""
28935
28936 #. type: =head2
28937 #: ../fish/guestfish-commands.pod:86
28938 msgid "glob"
28939 msgstr ""
28940
28941 #. type: verbatim
28942 #: ../fish/guestfish-commands.pod:88
28943 #, no-wrap
28944 msgid ""
28945 " glob command args...\n"
28946 "\n"
28947 msgstr ""
28948
28949 #. type: textblock
28950 #: ../fish/guestfish-commands.pod:90
28951 msgid ""
28952 "Expand wildcards in any paths in the args list, and run C<command> "
28953 "repeatedly on each matching path."
28954 msgstr ""
28955
28956 #. type: textblock
28957 #: ../fish/guestfish-commands.pod:93
28958 msgid "See L</WILDCARDS AND GLOBBING>."
28959 msgstr ""
28960
28961 #. type: =head2
28962 #: ../fish/guestfish-commands.pod:95
28963 msgid "hexedit"
28964 msgstr ""
28965
28966 #. type: verbatim
28967 #: ../fish/guestfish-commands.pod:97
28968 #, no-wrap
28969 msgid ""
28970 " hexedit <filename|device>\n"
28971 " hexedit <filename|device> <max>\n"
28972 " hexedit <filename|device> <start> <max>\n"
28973 "\n"
28974 msgstr ""
28975
28976 #. type: textblock
28977 #: ../fish/guestfish-commands.pod:101
28978 msgid ""
28979 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28980 "device."
28981 msgstr ""
28982
28983 #. type: textblock
28984 #: ../fish/guestfish-commands.pod:104
28985 msgid ""
28986 "This command works by downloading potentially the whole file or device, "
28987 "editing it locally, then uploading it.  If the file or device is large, you "
28988 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28989 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28990 "usual modifiers allowed such as C<1M> (1 megabyte)."
28991 msgstr ""
28992
28993 #. type: textblock
28994 #: ../fish/guestfish-commands.pod:111
28995 msgid "For example to edit the first few sectors of a disk you might do:"
28996 msgstr ""
28997
28998 #. type: verbatim
28999 #: ../fish/guestfish-commands.pod:114
29000 #, no-wrap
29001 msgid ""
29002 " hexedit /dev/sda 1M\n"
29003 "\n"
29004 msgstr ""
29005
29006 #. type: textblock
29007 #: ../fish/guestfish-commands.pod:116
29008 msgid ""
29009 "which would allow you to edit anywhere within the first megabyte of the disk."
29010 msgstr ""
29011
29012 #. type: textblock
29013 #: ../fish/guestfish-commands.pod:119
29014 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
29015 msgstr ""
29016
29017 #. type: verbatim
29018 #: ../fish/guestfish-commands.pod:121
29019 #, no-wrap
29020 msgid ""
29021 " hexedit /dev/sda1 0x400 0x400\n"
29022 "\n"
29023 msgstr ""
29024
29025 #. type: textblock
29026 #: ../fish/guestfish-commands.pod:123
29027 msgid "(assuming the superblock is in the standard location)."
29028 msgstr ""
29029
29030 #. type: textblock
29031 #: ../fish/guestfish-commands.pod:125
29032 msgid ""
29033 "This command requires the external L<hexedit(1)> program.  You can specify "
29034 "another program to use by setting the C<HEXEDITOR> environment variable."
29035 msgstr ""
29036
29037 #. type: textblock
29038 #: ../fish/guestfish-commands.pod:129
29039 msgid "See also L</hexdump>."
29040 msgstr ""
29041
29042 #. type: =head2
29043 #: ../fish/guestfish-commands.pod:131
29044 msgid "lcd"
29045 msgstr ""
29046
29047 #. type: verbatim
29048 #: ../fish/guestfish-commands.pod:133
29049 #, no-wrap
29050 msgid ""
29051 " lcd directory\n"
29052 "\n"
29053 msgstr ""
29054
29055 #. type: textblock
29056 #: ../fish/guestfish-commands.pod:135
29057 msgid ""
29058 "Change the local directory, ie. the current directory of guestfish itself."
29059 msgstr ""
29060
29061 #. type: textblock
29062 #: ../fish/guestfish-commands.pod:138
29063 msgid "Note that C<!cd> won't do what you might expect."
29064 msgstr ""
29065
29066 #. type: =head2
29067 #: ../fish/guestfish-commands.pod:140
29068 msgid "man"
29069 msgstr ""
29070
29071 #. type: =head2
29072 #: ../fish/guestfish-commands.pod:142
29073 msgid "manual"
29074 msgstr ""
29075
29076 #. type: verbatim
29077 #: ../fish/guestfish-commands.pod:144
29078 #, no-wrap
29079 msgid ""
29080 "  man\n"
29081 "\n"
29082 msgstr ""
29083
29084 #. type: textblock
29085 #: ../fish/guestfish-commands.pod:146
29086 msgid "Opens the manual page for guestfish."
29087 msgstr ""
29088
29089 #. type: =head2
29090 #: ../fish/guestfish-commands.pod:148
29091 msgid "more"
29092 msgstr ""
29093
29094 #. type: =head2
29095 #: ../fish/guestfish-commands.pod:150
29096 msgid "less"
29097 msgstr ""
29098
29099 #. type: verbatim
29100 #: ../fish/guestfish-commands.pod:152
29101 #, no-wrap
29102 msgid ""
29103 " more filename\n"
29104 "\n"
29105 msgstr ""
29106
29107 #. type: verbatim
29108 #: ../fish/guestfish-commands.pod:154
29109 #, no-wrap
29110 msgid ""
29111 " less filename\n"
29112 "\n"
29113 msgstr ""
29114
29115 #. type: textblock
29116 #: ../fish/guestfish-commands.pod:156
29117 msgid "This is used to view a file."
29118 msgstr ""
29119
29120 #. type: textblock
29121 #: ../fish/guestfish-commands.pod:158
29122 msgid ""
29123 "The default viewer is C<$PAGER>.  However if you use the alternate command "
29124 "C<less> you will get the C<less> command specifically."
29125 msgstr ""
29126
29127 #. type: =head2
29128 #: ../fish/guestfish-commands.pod:161
29129 msgid "reopen"
29130 msgstr ""
29131
29132 #. type: verbatim
29133 #: ../fish/guestfish-commands.pod:163
29134 #, no-wrap
29135 msgid ""
29136 "  reopen\n"
29137 "\n"
29138 msgstr ""
29139
29140 #. type: textblock
29141 #: ../fish/guestfish-commands.pod:165
29142 msgid ""
29143 "Close and reopen the libguestfs handle.  It is not necessary to use this "
29144 "normally, because the handle is closed properly when guestfish exits.  "
29145 "However this is occasionally useful for testing."
29146 msgstr ""
29147
29148 #. type: =head2
29149 #: ../fish/guestfish-commands.pod:169
29150 msgid "sparse"
29151 msgstr ""
29152
29153 #. type: verbatim
29154 #: ../fish/guestfish-commands.pod:171
29155 #, no-wrap
29156 msgid ""
29157 " sparse filename size\n"
29158 "\n"
29159 msgstr ""
29160
29161 #. type: textblock
29162 #: ../fish/guestfish-commands.pod:173
29163 msgid ""
29164 "This creates an empty sparse file of the given size, and then adds so it can "
29165 "be further examined."
29166 msgstr ""
29167
29168 #. type: textblock
29169 #: ../fish/guestfish-commands.pod:176
29170 msgid ""
29171 "In all respects it works the same as the L</alloc> command, except that the "
29172 "image file is allocated sparsely, which means that disk blocks are not "
29173 "assigned to the file until they are needed.  Sparse disk files only use "
29174 "space when written to, but they are slower and there is a danger you could "
29175 "run out of real disk space during a write operation."
29176 msgstr ""
29177
29178 #. type: =head2
29179 #: ../fish/guestfish-commands.pod:186
29180 msgid "supported"
29181 msgstr ""
29182
29183 #. type: verbatim
29184 #: ../fish/guestfish-commands.pod:188
29185 #, no-wrap
29186 msgid ""
29187 " supported\n"
29188 "\n"
29189 msgstr ""
29190
29191 #. type: textblock
29192 #: ../fish/guestfish-commands.pod:190
29193 msgid ""
29194 "This command returns a list of the optional groups known to the daemon, and "
29195 "indicates which ones are supported by this build of the libguestfs appliance."
29196 msgstr ""
29197
29198 #. type: textblock
29199 #: ../fish/guestfish-commands.pod:194
29200 msgid "See also L<guestfs(3)/AVAILABILITY>."
29201 msgstr ""
29202
29203 #. type: =head2
29204 #: ../fish/guestfish-commands.pod:196
29205 msgid "time"
29206 msgstr ""
29207
29208 #. type: verbatim
29209 #: ../fish/guestfish-commands.pod:198
29210 #, no-wrap
29211 msgid ""
29212 " time command args...\n"
29213 "\n"
29214 msgstr ""
29215
29216 #. type: textblock
29217 #: ../fish/guestfish-commands.pod:200
29218 msgid ""
29219 "Run the command as usual, but print the elapsed time afterwards.  This can "
29220 "be useful for benchmarking operations."
29221 msgstr ""
29222
29223 #. type: textblock
29224 #: ../test-tool/libguestfs-test-tool.pod:5
29225 msgid "libguestfs-test-tool - End user tests for libguestfs"
29226 msgstr ""
29227
29228 #. type: verbatim
29229 #: ../test-tool/libguestfs-test-tool.pod:9
29230 #, no-wrap
29231 msgid ""
29232 " libguestfs-test-tool [--options]\n"
29233 "\n"
29234 msgstr ""
29235
29236 #. type: textblock
29237 #: ../test-tool/libguestfs-test-tool.pod:13
29238 msgid ""
29239 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
29240 "and developers, to allow them to check basic libguestfs functionality is "
29241 "working.  This is needed because libguestfs occasionally breaks for reasons "
29242 "beyond our control: usually because of changes in the underlying qemu or "
29243 "kernel packages, or the host environment."
29244 msgstr ""
29245
29246 #. type: textblock
29247 #: ../test-tool/libguestfs-test-tool.pod:20
29248 msgid "If you suspect a problem in libguestfs, then just run:"
29249 msgstr ""
29250
29251 #. type: verbatim
29252 #: ../test-tool/libguestfs-test-tool.pod:22
29253 #, no-wrap
29254 msgid ""
29255 " libguestfs-test-tool\n"
29256 "\n"
29257 msgstr ""
29258
29259 #. type: textblock
29260 #: ../test-tool/libguestfs-test-tool.pod:24
29261 msgid "It will print lots of diagnostic messages."
29262 msgstr ""
29263
29264 #. type: textblock
29265 #: ../test-tool/libguestfs-test-tool.pod:26
29266 msgid "If it runs to completion successfully, you will see this near the end:"
29267 msgstr ""
29268
29269 #. type: verbatim
29270 #: ../test-tool/libguestfs-test-tool.pod:28
29271 #, no-wrap
29272 msgid ""
29273 " ===== TEST FINISHED OK =====\n"
29274 "\n"
29275 msgstr ""
29276
29277 #. type: textblock
29278 #: ../test-tool/libguestfs-test-tool.pod:30
29279 msgid "and the test tool will exit with code 0."
29280 msgstr ""
29281
29282 #. type: textblock
29283 #: ../test-tool/libguestfs-test-tool.pod:32
29284 msgid ""
29285 "If it fails (and/or exits with non-zero error code), please paste the "
29286 "B<complete, unedited> output of the test tool into a bug report.  More "
29287 "information about reporting bugs can be found on the L<http://libguestfs.org/"
29288 "> website."
29289 msgstr ""
29290
29291 #. type: =item
29292 #: ../test-tool/libguestfs-test-tool.pod:41
29293 msgid "I<--help>"
29294 msgstr ""
29295
29296 #. type: textblock
29297 #: ../test-tool/libguestfs-test-tool.pod:43
29298 msgid "Display short usage information and exit."
29299 msgstr ""
29300
29301 #. type: =item
29302 #: ../test-tool/libguestfs-test-tool.pod:45
29303 msgid "I<--qemu qemu_binary>"
29304 msgstr ""
29305
29306 #. type: textblock
29307 #: ../test-tool/libguestfs-test-tool.pod:47
29308 msgid ""
29309 "If you have downloaded another qemu binary, point this option at the full "
29310 "path of the binary to try it."
29311 msgstr ""
29312
29313 #. type: =item
29314 #: ../test-tool/libguestfs-test-tool.pod:50
29315 msgid "I<--qemudir qemu_source_dir>"
29316 msgstr ""
29317
29318 #. type: textblock
29319 #: ../test-tool/libguestfs-test-tool.pod:52
29320 msgid ""
29321 "If you have compiled qemu from source, point this option at the source "
29322 "directory to try it."
29323 msgstr ""
29324
29325 #. type: =item
29326 #: ../test-tool/libguestfs-test-tool.pod:55
29327 msgid "I<--timeout N>"
29328 msgstr ""
29329
29330 #. type: textblock
29331 #: ../test-tool/libguestfs-test-tool.pod:57
29332 msgid ""
29333 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
29334 "does not usually need to be adjusted unless your machine is very slow."
29335 msgstr ""
29336
29337 #. type: =head1
29338 #: ../test-tool/libguestfs-test-tool.pod:63
29339 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
29340 msgstr ""
29341
29342 #. type: textblock
29343 #: ../test-tool/libguestfs-test-tool.pod:65
29344 msgid ""
29345 "If you have compiled another version of qemu from source and would like to "
29346 "try that, then you can use the I<--qemudir> option to point to the qemu "
29347 "source directory."
29348 msgstr ""
29349
29350 #. type: textblock
29351 #: ../test-tool/libguestfs-test-tool.pod:69
29352 msgid ""
29353 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
29354 "option to point to the binary."
29355 msgstr ""
29356
29357 #. type: textblock
29358 #: ../test-tool/libguestfs-test-tool.pod:72
29359 msgid ""
29360 "When using an alternate qemu with libguestfs, usually you would need to "
29361 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
29362 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
29363 "use either of the I<--qemudir> or I<--qemu> options."
29364 msgstr ""
29365
29366 #. type: textblock
29367 #: ../test-tool/libguestfs-test-tool.pod:79
29368 msgid ""
29369 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
29370 "I<1> if there was an error."
29371 msgstr ""
29372
29373 #. type: textblock
29374 #: ../test-tool/libguestfs-test-tool.pod:84
29375 msgid ""
29376 "For the full list of environment variables which may affect libguestfs, "
29377 "please see the L<guestfs(3)> manual page."
29378 msgstr ""
29379
29380 #. type: textblock
29381 #: ../test-tool/libguestfs-test-tool.pod:89
29382 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
29383 msgstr ""
29384
29385 #. type: textblock
29386 #: ../fuse/guestmount.pod:5
29387 msgid ""
29388 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
29389 msgstr ""
29390
29391 #. type: verbatim
29392 #: ../fuse/guestmount.pod:9
29393 #, no-wrap
29394 msgid ""
29395 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29396 "\n"
29397 msgstr ""
29398
29399 #. type: verbatim
29400 #: ../fuse/guestmount.pod:11
29401 #, no-wrap
29402 msgid ""
29403 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29404 "\n"
29405 msgstr ""
29406
29407 #. type: verbatim
29408 #: ../fuse/guestmount.pod:13
29409 #, no-wrap
29410 msgid ""
29411 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29412 "\n"
29413 msgstr ""
29414
29415 #. type: textblock
29416 #: ../fuse/guestmount.pod:17
29417 msgid ""
29418 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29419 "machines.  If you do this, you risk disk corruption in the VM."
29420 msgstr ""
29421
29422 #. type: textblock
29423 #: ../fuse/guestmount.pod:22
29424 msgid ""
29425 "The guestmount program can be used to mount virtual machine filesystems and "
29426 "other disk images on the host.  It uses libguestfs for access to the guest "
29427 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29428 "a mountable device."
29429 msgstr ""
29430
29431 #. type: textblock
29432 #: ../fuse/guestmount.pod:27
29433 msgid ""
29434 "Along with other options, you have to give at least one device (I<-a> "
29435 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
29436 "option) or use the I<-i> inspection option.  How this works is better "
29437 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29438 "below."
29439 msgstr ""
29440
29441 #. type: textblock
29442 #: ../fuse/guestmount.pod:33
29443 msgid ""
29444 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29445 "by you, and the filesystem will not be visible to any other users unless you "
29446 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
29447 "the filesystem, use the C<fusermount -u> command."
29448 msgstr ""
29449
29450 #. type: textblock
29451 #: ../fuse/guestmount.pod:41
29452 msgid ""
29453 "For a typical Windows guest which has its main filesystem on the first "
29454 "partition:"
29455 msgstr ""
29456
29457 #. type: verbatim
29458 #: ../fuse/guestmount.pod:44
29459 #, no-wrap
29460 msgid ""
29461 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29462 "\n"
29463 msgstr ""
29464
29465 #. type: textblock
29466 #: ../fuse/guestmount.pod:46
29467 msgid ""
29468 "For a typical Linux guest which has a /boot filesystem on the first "
29469 "partition, and the root filesystem on a logical volume:"
29470 msgstr ""
29471
29472 #. type: verbatim
29473 #: ../fuse/guestmount.pod:49
29474 #, no-wrap
29475 msgid ""
29476 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29477 "\n"
29478 msgstr ""
29479
29480 #. type: textblock
29481 #: ../fuse/guestmount.pod:51
29482 msgid "To get libguestfs to detect guest mountpoints for you:"
29483 msgstr ""
29484
29485 #. type: verbatim
29486 #: ../fuse/guestmount.pod:53
29487 #, no-wrap
29488 msgid ""
29489 " guestmount -a guest.img -i --ro /mnt\n"
29490 "\n"
29491 msgstr ""
29492
29493 #. type: textblock
29494 #: ../fuse/guestmount.pod:55
29495 msgid "For a libvirt guest called \"Guest\" you could do:"
29496 msgstr ""
29497
29498 #. type: verbatim
29499 #: ../fuse/guestmount.pod:57
29500 #, no-wrap
29501 msgid ""
29502 " guestmount -d Guest -i --ro /mnt\n"
29503 "\n"
29504 msgstr ""
29505
29506 #. type: textblock
29507 #: ../fuse/guestmount.pod:59
29508 msgid ""
29509 "If you don't know what filesystems are contained in a guest or disk image, "
29510 "use L<virt-filesystems(1)> first:"
29511 msgstr ""
29512
29513 #. type: verbatim
29514 #: ../fuse/guestmount.pod:62
29515 #, no-wrap
29516 msgid ""
29517 " virt-filesystems MyGuest\n"
29518 "\n"
29519 msgstr ""
29520
29521 #. type: textblock
29522 #: ../fuse/guestmount.pod:64
29523 msgid ""
29524 "If you want to trace the libguestfs calls but without excessive debugging "
29525 "information, we recommend:"
29526 msgstr ""
29527
29528 #. type: verbatim
29529 #: ../fuse/guestmount.pod:67
29530 #, no-wrap
29531 msgid ""
29532 " guestmount [...] --trace /mnt\n"
29533 "\n"
29534 msgstr ""
29535
29536 #. type: textblock
29537 #: ../fuse/guestmount.pod:69
29538 msgid "If you want to debug the program, we recommend:"
29539 msgstr ""
29540
29541 #. type: verbatim
29542 #: ../fuse/guestmount.pod:71
29543 #, no-wrap
29544 msgid ""
29545 " guestmount [...] --trace --verbose /mnt\n"
29546 "\n"
29547 msgstr ""
29548
29549 #. type: =head1
29550 #: ../fuse/guestmount.pod:73
29551 msgid "NOTES"
29552 msgstr ""
29553
29554 #. type: =head2
29555 #: ../fuse/guestmount.pod:75
29556 msgid "Other users cannot see the filesystem by default"
29557 msgstr ""
29558
29559 #. type: textblock
29560 #: ../fuse/guestmount.pod:77
29561 msgid ""
29562 "If you mount a filesystem as one user (eg. root), then other users will not "
29563 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29564 "option when mounting:"
29565 msgstr ""
29566
29567 #. type: verbatim
29568 #: ../fuse/guestmount.pod:81
29569 #, no-wrap
29570 msgid ""
29571 " sudo guestmount [...] -o allow_other /mnt\n"
29572 "\n"
29573 msgstr ""
29574
29575 #. type: =item
29576 #: ../fuse/guestmount.pod:87
29577 msgid "B<-a image> | B<--add image>"
29578 msgstr ""
29579
29580 #. type: textblock
29581 #: ../fuse/guestmount.pod:89
29582 msgid "Add a block device or virtual machine image."
29583 msgstr ""
29584
29585 #. type: =item
29586 #: ../fuse/guestmount.pod:94
29587 msgid "B<-c URI> | B<--connect URI>"
29588 msgstr ""
29589
29590 #. type: =item
29591 #: ../fuse/guestmount.pod:100
29592 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29593 msgstr ""
29594
29595 #. type: =item
29596 #: ../fuse/guestmount.pod:108
29597 msgid "B<--dir-cache-timeout N>"
29598 msgstr ""
29599
29600 #. type: textblock
29601 #: ../fuse/guestmount.pod:110
29602 msgid ""
29603 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
29604 "seconds.  The readdir cache [actually, there are several semi-independent "
29605 "caches] is populated after a readdir(2) call with the stat and extended "
29606 "attributes of the files in the directory, in anticipation that they will be "
29607 "requested soon after."
29608 msgstr ""
29609
29610 #. type: textblock
29611 #: ../fuse/guestmount.pod:116
29612 msgid ""
29613 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29614 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29615 "requests, only cache existing ones."
29616 msgstr ""
29617
29618 #. type: =item
29619 #: ../fuse/guestmount.pod:127
29620 msgid "B<--format=raw|qcow2|..> | B<--format>"
29621 msgstr ""
29622
29623 #. type: textblock
29624 #: ../fuse/guestmount.pod:134
29625 msgid ""
29626 "If you have untrusted raw-format guest disk images, you should use this "
29627 "option to specify the disk format.  This avoids a possible security problem "
29628 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
29629 "guestfs_add_drive_opts>."
29630 msgstr ""
29631
29632 #. type: =item
29633 #: ../fuse/guestmount.pod:139
29634 msgid "B<--fuse-help>"
29635 msgstr ""
29636
29637 #. type: textblock
29638 #: ../fuse/guestmount.pod:141
29639 msgid "Display help on special FUSE options (see I<-o> below)."
29640 msgstr ""
29641
29642 #. type: textblock
29643 #: ../fuse/guestmount.pod:145
29644 msgid "Display brief help and exit."
29645 msgstr ""
29646
29647 #. type: =item
29648 #: ../fuse/guestmount.pod:147
29649 msgid "B<-i> | B<--inspector>"
29650 msgstr ""
29651
29652 #. type: textblock
29653 #: ../fuse/guestmount.pod:167
29654 msgid ""
29655 "Mount the named partition or logical volume on the given mountpoint B<in the "
29656 "guest> (this has nothing to do with mountpoints in the host)."
29657 msgstr ""
29658
29659 #. type: textblock
29660 #: ../fuse/guestmount.pod:170
29661 msgid ""
29662 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
29663 "something on C</>."
29664 msgstr ""
29665
29666 #. type: =item
29667 #: ../fuse/guestmount.pod:183
29668 msgid "B<-n> | B<--no-sync>"
29669 msgstr ""
29670
29671 #. type: textblock
29672 #: ../fuse/guestmount.pod:185
29673 msgid ""
29674 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
29675 "unmounted.  If you specify this option, then we don't attempt to sync the "
29676 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
29677 msgstr ""
29678
29679 #. type: =item
29680 #: ../fuse/guestmount.pod:190
29681 msgid "B<-o option> | B<--option option>"
29682 msgstr ""
29683
29684 #. type: textblock
29685 #: ../fuse/guestmount.pod:192
29686 msgid "Pass extra options to FUSE."
29687 msgstr ""
29688
29689 #. type: textblock
29690 #: ../fuse/guestmount.pod:194
29691 msgid ""
29692 "To get a list of all the extra options supported by FUSE, use the command "
29693 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
29694 "of them are a good idea."
29695 msgstr ""
29696
29697 #. type: verbatim
29698 #: ../fuse/guestmount.pod:198
29699 #, no-wrap
29700 msgid ""
29701 " guestmount --fuse-help\n"
29702 "\n"
29703 msgstr ""
29704
29705 #. type: textblock
29706 #: ../fuse/guestmount.pod:200
29707 msgid "Some potentially useful FUSE options:"
29708 msgstr ""
29709
29710 #. type: =item
29711 #: ../fuse/guestmount.pod:204
29712 msgid "B<-o allow_other>"
29713 msgstr ""
29714
29715 #. type: textblock
29716 #: ../fuse/guestmount.pod:206
29717 msgid "Allow other users to see the filesystem."
29718 msgstr ""
29719
29720 #. type: =item
29721 #: ../fuse/guestmount.pod:208
29722 msgid "B<-o attr_timeout=N>"
29723 msgstr ""
29724
29725 #. type: textblock
29726 #: ../fuse/guestmount.pod:210
29727 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
29728 msgstr ""
29729
29730 #. type: =item
29731 #: ../fuse/guestmount.pod:212
29732 msgid "B<-o kernel_cache>"
29733 msgstr ""
29734
29735 #. type: textblock
29736 #: ../fuse/guestmount.pod:214
29737 msgid ""
29738 "Allow the kernel to cache files (reduces the number of reads that have to go "
29739 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
29740 "afford the extra memory usage."
29741 msgstr ""
29742
29743 #. type: =item
29744 #: ../fuse/guestmount.pod:218
29745 msgid "B<-o uid=N> B<-o gid=N>"
29746 msgstr ""
29747
29748 #. type: textblock
29749 #: ../fuse/guestmount.pod:220
29750 msgid ""
29751 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29752 "the chosen values."
29753 msgstr ""
29754
29755 #. type: =item
29756 #: ../fuse/guestmount.pod:225
29757 msgid "B<-r> | B<--ro>"
29758 msgstr ""
29759
29760 #. type: textblock
29761 #: ../fuse/guestmount.pod:227
29762 msgid ""
29763 "Add devices and mount everything read-only.  Also disallow writes and make "
29764 "the disk appear read-only to FUSE."
29765 msgstr ""
29766
29767 #. type: textblock
29768 #: ../fuse/guestmount.pod:230
29769 msgid ""
29770 "This is highly recommended if you are not going to edit the guest disk.  If "
29771 "the guest is running and this option is I<not> supplied, then there is a "
29772 "strong risk of disk corruption in the guest.  We try to prevent this from "
29773 "happening, but it is not always possible."
29774 msgstr ""
29775
29776 #. type: textblock
29777 #: ../fuse/guestmount.pod:235
29778 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29779 msgstr ""
29780
29781 #. type: textblock
29782 #: ../fuse/guestmount.pod:239
29783 msgid "Enable SELinux support for the guest."
29784 msgstr ""
29785
29786 #. type: =item
29787 #: ../fuse/guestmount.pod:241
29788 msgid "B<-v> | B<--verbose>"
29789 msgstr ""
29790
29791 #. type: textblock
29792 #: ../fuse/guestmount.pod:243
29793 msgid "Enable verbose messages from underlying libguestfs."
29794 msgstr ""
29795
29796 #. type: =item
29797 #: ../fuse/guestmount.pod:245
29798 msgid "B<-V> | B<--version>"
29799 msgstr ""
29800
29801 #. type: textblock
29802 #: ../fuse/guestmount.pod:247
29803 msgid "Display the program version and exit."
29804 msgstr ""
29805
29806 #. type: =item
29807 #: ../fuse/guestmount.pod:249
29808 msgid "B<-w> | B<--rw>"
29809 msgstr ""
29810
29811 #. type: textblock
29812 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29813 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29814 msgstr ""
29815
29816 #. type: =item
29817 #: ../fuse/guestmount.pod:256
29818 msgid "B<-x> | B<--trace>"
29819 msgstr ""
29820
29821 #. type: textblock
29822 #: ../fuse/guestmount.pod:258
29823 msgid "Trace libguestfs calls and entry into each FUSE function."
29824 msgstr ""
29825
29826 #. type: textblock
29827 #: ../fuse/guestmount.pod:260
29828 msgid "This also stops the daemon from forking into the background."
29829 msgstr ""
29830
29831 #. type: textblock
29832 #: ../fuse/guestmount.pod:281
29833 msgid ""
29834 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29835 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29836 "net/>."
29837 msgstr ""
29838
29839 #. type: textblock
29840 #: ../fuse/guestmount.pod:296
29841 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29842 msgstr ""
29843
29844 #. type: textblock
29845 #: ../tools/virt-win-reg.pl:37
29846 msgid ""
29847 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29848 msgstr ""
29849
29850 #. type: verbatim
29851 #: ../tools/virt-win-reg.pl:41
29852 #, no-wrap
29853 msgid ""
29854 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29855 "\n"
29856 msgstr ""
29857
29858 #. type: verbatim
29859 #: ../tools/virt-win-reg.pl:43
29860 #, no-wrap
29861 msgid ""
29862 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29863 "\n"
29864 msgstr ""
29865
29866 #. type: verbatim
29867 #: ../tools/virt-win-reg.pl:45
29868 #, no-wrap
29869 msgid ""
29870 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29871 "\n"
29872 msgstr ""
29873
29874 #. type: verbatim
29875 #: ../tools/virt-win-reg.pl:47
29876 #, no-wrap
29877 msgid ""
29878 " virt-win-reg --merge domname [input.reg ...]\n"
29879 "\n"
29880 msgstr ""
29881
29882 #. type: verbatim
29883 #: ../tools/virt-win-reg.pl:49
29884 #, no-wrap
29885 msgid ""
29886 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29887 "\n"
29888 msgstr ""
29889
29890 #. type: textblock
29891 #: ../tools/virt-win-reg.pl:53
29892 msgid ""
29893 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29894 "virtual machines.  If you do this, you I<will> get irreversible disk "
29895 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29896 "but doesn't catch all cases."
29897 msgstr ""
29898
29899 #. type: textblock
29900 #: ../tools/virt-win-reg.pl:58
29901 msgid ""
29902 "Modifying the Windows Registry is an inherently risky operation.  The format "
29903 "is deliberately obscure and undocumented, and Registry changes can leave the "
29904 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29905 "you have a reliable backup first."
29906 msgstr ""
29907
29908 #. type: textblock
29909 #: ../tools/virt-win-reg.pl:65
29910 msgid ""
29911 "This program can export and merge Windows Registry entries from a Windows "
29912 "guest."
29913 msgstr ""
29914
29915 #. type: textblock
29916 #: ../tools/virt-win-reg.pl:68
29917 msgid ""
29918 "The first parameter is the libvirt guest name or the raw disk image of a "
29919 "Windows guest."
29920 msgstr ""
29921
29922 #. type: textblock
29923 #: ../tools/virt-win-reg.pl:71
29924 msgid ""
29925 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29926 "exported (recursively).  For example:"
29927 msgstr ""
29928
29929 #. type: verbatim
29930 #: ../tools/virt-win-reg.pl:74
29931 #, no-wrap
29932 msgid ""
29933 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29934 "\n"
29935 msgstr ""
29936
29937 #. type: textblock
29938 #: ../tools/virt-win-reg.pl:76
29939 msgid ""
29940 "You can also display single values from within registry keys, for example:"
29941 msgstr ""
29942
29943 #. type: verbatim
29944 #: ../tools/virt-win-reg.pl:79
29945 #, no-wrap
29946 msgid ""
29947 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29948 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29949 " Windows 7 Enterprise\n"
29950 "\n"
29951 msgstr ""
29952
29953 #. type: textblock
29954 #: ../tools/virt-win-reg.pl:83
29955 msgid ""
29956 "With I<--merge>, you can merge a textual regedit file into the Windows "
29957 "Registry:"
29958 msgstr ""
29959
29960 #. type: verbatim
29961 #: ../tools/virt-win-reg.pl:86
29962 #, no-wrap
29963 msgid ""
29964 " $ virt-win-reg --merge Windows7 changes.reg\n"
29965 "\n"
29966 msgstr ""
29967
29968 #. type: =head1
29969 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29970 msgid "NOTE"
29971 msgstr ""
29972
29973 #. type: textblock
29974 #: ../tools/virt-win-reg.pl:90
29975 msgid ""
29976 "This program is only meant for simple access to the registry.  If you want "
29977 "to do complicated things with the registry, we suggest you download the "
29978 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29979 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29980 "L<hivexregedit(1)>."
29981 msgstr ""
29982
29983 #. type: textblock
29984 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
29985 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
29986 #: ../tools/virt-list-partitions.pl:64
29987 msgid "Display brief help."
29988 msgstr ""
29989
29990 #. type: textblock
29991 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
29992 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
29993 #: ../tools/virt-list-partitions.pl:72
29994 msgid "Display version number and exit."
29995 msgstr ""
29996
29997 #. type: =item
29998 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29999 msgid "B<--debug>"
30000 msgstr ""
30001
30002 #. type: textblock
30003 #: ../tools/virt-win-reg.pl:122
30004 msgid "Enable debugging messages."
30005 msgstr ""
30006
30007 #. type: =item
30008 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
30009 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
30010 msgid "B<--connect URI> | B<-c URI>"
30011 msgstr ""
30012
30013 #. type: textblock
30014 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
30015 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
30016 msgid ""
30017 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
30018 "to the default libvirt hypervisor."
30019 msgstr ""
30020
30021 #. type: textblock
30022 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
30023 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
30024 msgid ""
30025 "If you specify guest block devices directly, then libvirt is not used at all."
30026 msgstr ""
30027
30028 #. type: =item
30029 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
30030 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
30031 msgid "B<--format> raw"
30032 msgstr ""
30033
30034 #. type: textblock
30035 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
30036 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
30037 msgid ""
30038 "Specify the format of disk images given on the command line.  If this is "
30039 "omitted then the format is autodetected from the content of the disk image."
30040 msgstr ""
30041
30042 #. type: textblock
30043 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
30044 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
30045 msgid ""
30046 "If disk images are requested from libvirt, then this program asks libvirt "
30047 "for this information.  In this case, the value of the format parameter is "
30048 "ignored."
30049 msgstr ""
30050
30051 #. type: textblock
30052 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
30053 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
30054 msgid ""
30055 "If working with untrusted raw-format guest disk images, you should ensure "
30056 "the format is always specified."
30057 msgstr ""
30058
30059 #. type: =item
30060 #: ../tools/virt-win-reg.pl:157
30061 msgid "B<--merge>"
30062 msgstr ""
30063
30064 #. type: textblock
30065 #: ../tools/virt-win-reg.pl:159
30066 msgid ""
30067 "In merge mode, this merges a textual regedit file into the Windows Registry "
30068 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
30069 "displays or exports Registry entries instead."
30070 msgstr ""
30071
30072 #. type: textblock
30073 #: ../tools/virt-win-reg.pl:163
30074 msgid ""
30075 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
30076 "result in disk corruption.  However exporting (without this flag)  is always "
30077 "safe."
30078 msgstr ""
30079
30080 #. type: =item
30081 #: ../tools/virt-win-reg.pl:171
30082 msgid "B<--encoding> UTF-16LE|ASCII"
30083 msgstr ""
30084
30085 #. type: textblock
30086 #: ../tools/virt-win-reg.pl:173
30087 msgid ""
30088 "When merging (only), you may need to specify the encoding for strings to be "
30089 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
30090 "(3)/ENCODING STRINGS>."
30091 msgstr ""
30092
30093 #. type: textblock
30094 #: ../tools/virt-win-reg.pl:177
30095 msgid ""
30096 "The default is to use UTF-16LE, which should work with recent versions of "
30097 "Windows."
30098 msgstr ""
30099
30100 #. type: =item
30101 #: ../tools/virt-win-reg.pl:184
30102 msgid "B<--unsafe-printable-strings>"
30103 msgstr ""
30104
30105 #. type: textblock
30106 #: ../tools/virt-win-reg.pl:186
30107 msgid ""
30108 "When exporting (only), assume strings are UTF-16LE and print them as strings "
30109 "instead of hex sequences.  Remove the final zero codepoint from strings if "
30110 "present."
30111 msgstr ""
30112
30113 #. type: textblock
30114 #: ../tools/virt-win-reg.pl:190
30115 msgid ""
30116 "This is unsafe and does not preserve the fidelity of strings in the original "
30117 "Registry for various reasons:"
30118 msgstr ""
30119
30120 #. type: textblock
30121 #: ../tools/virt-win-reg.pl:197
30122 msgid ""
30123 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
30124 "other encodings will be corrupted by this transformation."
30125 msgstr ""
30126
30127 #. type: textblock
30128 #: ../tools/virt-win-reg.pl:202
30129 msgid ""
30130 "Assumes that everything which has type 1 or 2 is really a string and that "
30131 "everything else is not a string, but the type field in real Registries is "
30132 "not reliable."
30133 msgstr ""
30134
30135 #. type: textblock
30136 #: ../tools/virt-win-reg.pl:208
30137 msgid ""
30138 "Loses information about whether a zero codepoint followed the string in the "
30139 "Registry or not."
30140 msgstr ""
30141
30142 #. type: textblock
30143 #: ../tools/virt-win-reg.pl:213
30144 msgid ""
30145 "This all happens because the Registry itself contains no information about "
30146 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
30147 msgstr ""
30148
30149 #. type: textblock
30150 #: ../tools/virt-win-reg.pl:217
30151 msgid ""
30152 "You should only use this option for quick hacking and debugging of the "
30153 "Registry contents, and I<never> use it if the output is going to be passed "
30154 "into another program or stored in another Registry."
30155 msgstr ""
30156
30157 #. type: =head1
30158 #: ../tools/virt-win-reg.pl:554
30159 msgid "SUPPORTED SYSTEMS"
30160 msgstr ""
30161
30162 #. type: textblock
30163 #: ../tools/virt-win-reg.pl:556
30164 msgid ""
30165 "The program currently supports Windows NT-derived guests starting with "
30166 "Windows XP through to at least Windows 7."
30167 msgstr ""
30168
30169 #. type: textblock
30170 #: ../tools/virt-win-reg.pl:559
30171 msgid "The following Registry keys are supported:"
30172 msgstr ""
30173
30174 #. type: =item
30175 #: ../tools/virt-win-reg.pl:563
30176 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
30177 msgstr ""
30178
30179 #. type: =item
30180 #: ../tools/virt-win-reg.pl:565
30181 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
30182 msgstr ""
30183
30184 #. type: =item
30185 #: ../tools/virt-win-reg.pl:567
30186 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
30187 msgstr ""
30188
30189 #. type: =item
30190 #: ../tools/virt-win-reg.pl:569
30191 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
30192 msgstr ""
30193
30194 #. type: =item
30195 #: ../tools/virt-win-reg.pl:571
30196 msgid "C<HKEY_USERS\\.DEFAULT>"
30197 msgstr ""
30198
30199 #. type: =item
30200 #: ../tools/virt-win-reg.pl:573
30201 msgid "C<HKEY_USERS\\I<SID>>"
30202 msgstr ""
30203
30204 #. type: textblock
30205 #: ../tools/virt-win-reg.pl:575
30206 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
30207 msgstr ""
30208
30209 #. type: =item
30210 #: ../tools/virt-win-reg.pl:577
30211 msgid "C<HKEY_USERS\\I<username>>"
30212 msgstr ""
30213
30214 #. type: textblock
30215 #: ../tools/virt-win-reg.pl:579
30216 msgid ""
30217 "where I<username> is a local user name (this is a libguestfs extension)."
30218 msgstr ""
30219
30220 #. type: textblock
30221 #: ../tools/virt-win-reg.pl:583
30222 msgid ""
30223 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
30224 "C<HKEY_USERS>."
30225 msgstr ""
30226
30227 #. type: textblock
30228 #: ../tools/virt-win-reg.pl:586
30229 msgid ""
30230 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
30231 "supported (there is no \"current user\")."
30232 msgstr ""
30233
30234 #. type: =head1
30235 #: ../tools/virt-win-reg.pl:589
30236 msgid "ENCODING"
30237 msgstr ""
30238
30239 #. type: textblock
30240 #: ../tools/virt-win-reg.pl:591
30241 msgid ""
30242 "C<virt-win-reg> expects that regedit files have already been reencoded in "
30243 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
30244 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
30245 "Windows-style line endings, you may need to reencode the whole file before "
30246 "or after processing."
30247 msgstr ""
30248
30249 #. type: textblock
30250 #: ../tools/virt-win-reg.pl:597
30251 msgid ""
30252 "To reencode a file from Windows format to Linux (before processing it with "
30253 "the I<--merge> option), you would do something like this:"
30254 msgstr ""
30255
30256 #. type: verbatim
30257 #: ../tools/virt-win-reg.pl:600
30258 #, no-wrap
30259 msgid ""
30260 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30261 "\n"
30262 msgstr ""
30263
30264 #. type: textblock
30265 #: ../tools/virt-win-reg.pl:602
30266 msgid ""
30267 "To go in the opposite direction, after exporting and before sending the file "
30268 "to a Windows user, do something like this:"
30269 msgstr ""
30270
30271 #. type: verbatim
30272 #: ../tools/virt-win-reg.pl:605
30273 #, no-wrap
30274 msgid ""
30275 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30276 "\n"
30277 msgstr ""
30278
30279 #. type: textblock
30280 #: ../tools/virt-win-reg.pl:607
30281 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30282 msgstr ""
30283
30284 #. type: textblock
30285 #: ../tools/virt-win-reg.pl:609
30286 msgid ""
30287 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30288 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30289 "style (CRLF) line endings, like this:"
30290 msgstr ""
30291
30292 #. type: verbatim
30293 #: ../tools/virt-win-reg.pl:613
30294 #, no-wrap
30295 msgid ""
30296 " $ file software.reg\n"
30297 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30298 " with CRLF line terminators\n"
30299 "\n"
30300 msgstr ""
30301
30302 #. type: textblock
30303 #: ../tools/virt-win-reg.pl:617
30304 msgid "This file would need conversion before you could I<--merge> it."
30305 msgstr ""
30306
30307 #. type: =head1
30308 #: ../tools/virt-win-reg.pl:619
30309 msgid "CurrentControlSet etc."
30310 msgstr ""
30311
30312 #. type: textblock
30313 #: ../tools/virt-win-reg.pl:621
30314 msgid ""
30315 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30316 "Registry at the level of the hive file, and therefore you cannot modify "
30317 "these."
30318 msgstr ""
30319
30320 #. type: textblock
30321 #: ../tools/virt-win-reg.pl:625
30322 msgid ""
30323 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30324 "circumstances it might refer to another control set.  The way to find out is "
30325 "to look at the C<HKLM\\SYSTEM\\Select> key:"
30326 msgstr ""
30327
30328 #. type: verbatim
30329 #: ../tools/virt-win-reg.pl:629
30330 #, no-wrap
30331 msgid ""
30332 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30333 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30334 " \"Current\"=dword:00000001\n"
30335 " \"Default\"=dword:00000001\n"
30336 " \"Failed\"=dword:00000000\n"
30337 " \"LastKnownGood\"=dword:00000002\n"
30338 "\n"
30339 msgstr ""
30340
30341 #. type: textblock
30342 #: ../tools/virt-win-reg.pl:636
30343 msgid "\"Current\" is the one which Windows will choose when it boots."
30344 msgstr ""
30345
30346 #. type: textblock
30347 #: ../tools/virt-win-reg.pl:638
30348 msgid ""
30349 "Similarly, other C<Current...> keys in the path may need to be replaced."
30350 msgstr ""
30351
30352 #. type: =head1
30353 #: ../tools/virt-win-reg.pl:641
30354 msgid "WINDOWS TIPS"
30355 msgstr ""
30356
30357 #. type: textblock
30358 #: ../tools/virt-win-reg.pl:643
30359 msgid ""
30360 "Note that some of these tips modify the guest disk image.  The guest I<must> "
30361 "be shut off, else you will get disk corruption."
30362 msgstr ""
30363
30364 #. type: =head2
30365 #: ../tools/virt-win-reg.pl:646
30366 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30367 msgstr ""
30368
30369 #. type: textblock
30370 #: ../tools/virt-win-reg.pl:648
30371 msgid ""
30372 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30373 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30374 "is uploaded into C<C:\\>:"
30375 msgstr ""
30376
30377 #. type: verbatim
30378 #: ../tools/virt-win-reg.pl:652
30379 #, no-wrap
30380 msgid ""
30381 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30382 "\n"
30383 msgstr ""
30384
30385 #. type: textblock
30386 #: ../tools/virt-win-reg.pl:654
30387 msgid "Prepare a regedit file containing the registry change:"
30388 msgstr ""
30389
30390 #. type: verbatim
30391 #: ../tools/virt-win-reg.pl:656
30392 #, no-wrap
30393 msgid ""
30394 " cat > test.reg <<'EOF'\n"
30395 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30396 " \"Test\"=\"c:\\\\test.bat\"\n"
30397 " EOF\n"
30398 "\n"
30399 msgstr ""
30400
30401 #. type: textblock
30402 #: ../tools/virt-win-reg.pl:661
30403 msgid ""
30404 "In this example we use the key C<RunOnce> which means that the script will "
30405 "run precisely once when the first user logs in.  If you want it to run every "
30406 "time a user logs in, replace C<RunOnce> with C<Run>."
30407 msgstr ""
30408
30409 #. type: textblock
30410 #: ../tools/virt-win-reg.pl:665
30411 msgid "Now update the registry:"
30412 msgstr ""
30413
30414 #. type: verbatim
30415 #: ../tools/virt-win-reg.pl:667
30416 #, no-wrap
30417 msgid ""
30418 " virt-win-reg --merge WindowsGuest test.reg\n"
30419 "\n"
30420 msgstr ""
30421
30422 #. type: =head2
30423 #: ../tools/virt-win-reg.pl:669
30424 msgid "INSTALLING A SERVICE"
30425 msgstr ""
30426
30427 #. type: textblock
30428 #: ../tools/virt-win-reg.pl:671
30429 msgid ""
30430 "This section assumes you are familiar with Windows services, and you either "
30431 "have a program which handles the Windows Service Control Protocol directly "
30432 "or you want to run any program using a service wrapper like SrvAny or the "
30433 "free RHSrvAny."
30434 msgstr ""
30435
30436 #. type: textblock
30437 #: ../tools/virt-win-reg.pl:676
30438 msgid ""
30439 "First upload the program and optionally the service wrapper.  In this case "
30440 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30441 msgstr ""
30442
30443 #. type: verbatim
30444 #: ../tools/virt-win-reg.pl:680
30445 #, no-wrap
30446 msgid ""
30447 " guestfish -i -d WindowsGuest <<EOF\n"
30448 "   upload rhsrvany.exe /rhsrvany.exe\n"
30449 "   upload test.exe /test.exe\n"
30450 " EOF\n"
30451 "\n"
30452 msgstr ""
30453
30454 #. type: textblock
30455 #: ../tools/virt-win-reg.pl:685
30456 msgid ""
30457 "Prepare a regedit file containing the registry changes.  In this example, "
30458 "the first registry change is needed for the service itself or the service "
30459 "wrapper (if used).  The second registry change is only needed because I am "
30460 "using the RHSrvAny service wrapper."
30461 msgstr ""
30462
30463 #. type: verbatim
30464 #: ../tools/virt-win-reg.pl:690
30465 #, no-wrap
30466 msgid ""
30467 " cat > service.reg <<'EOF'\n"
30468 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30469 " \"Type\"=dword:00000010\n"
30470 " \"Start\"=dword:00000002\n"
30471 " \"ErrorControl\"=dword:00000001\n"
30472 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30473 " \"DisplayName\"=\"RHSrvAny\"\n"
30474 " \"ObjectName\"=\"NetworkService\"\n"
30475 " \n"
30476 msgstr ""
30477
30478 #. type: verbatim
30479 #: ../tools/virt-win-reg.pl:699
30480 #, no-wrap
30481 msgid ""
30482 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30483 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30484 " \"PWD\"=\"c:\\\\Temp\"\n"
30485 " EOF\n"
30486 "\n"
30487 msgstr ""
30488
30489 #. type: textblock
30490 #: ../tools/virt-win-reg.pl:710
30491 msgid ""
30492 "For use of C<ControlSet001> see the section above in this manual page.  You "
30493 "may need to adjust this according to the control set that is in use by the "
30494 "guest."
30495 msgstr ""
30496
30497 #. type: textblock
30498 #: ../tools/virt-win-reg.pl:716
30499 msgid ""
30500 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30501 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30502 "privileged account."
30503 msgstr ""
30504
30505 #. type: textblock
30506 #: ../tools/virt-win-reg.pl:722
30507 msgid ""
30508 "For the meaning of the magic numbers, see this Microsoft KB article: "
30509 "L<http://support.microsoft.com/kb/103000>."
30510 msgstr ""
30511
30512 #. type: textblock
30513 #: ../tools/virt-win-reg.pl:727
30514 msgid "Update the registry:"
30515 msgstr ""
30516
30517 #. type: verbatim
30518 #: ../tools/virt-win-reg.pl:729
30519 #, no-wrap
30520 msgid ""
30521 " virt-win-reg --merge WindowsGuest service.reg\n"
30522 "\n"
30523 msgstr ""
30524
30525 #. type: =head1
30526 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30527 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30528 #: ../tools/virt-list-partitions.pl:250
30529 msgid "SHELL QUOTING"
30530 msgstr ""
30531
30532 #. type: textblock
30533 #: ../tools/virt-win-reg.pl:733
30534 msgid ""
30535 "Be careful when passing parameters containing C<\\> (backslash) in the "
30536 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30537 "(but not both) to protect them from the shell."
30538 msgstr ""
30539
30540 #. type: textblock
30541 #: ../tools/virt-win-reg.pl:737
30542 msgid "Paths and value names are case-insensitive."
30543 msgstr ""
30544
30545 #. type: textblock
30546 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30547 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30548 #: ../tools/virt-list-partitions.pl:252
30549 msgid ""
30550 "Libvirt guest names can contain arbitrary characters, some of which have "
30551 "meaning to the shell such as C<#> and space.  You may need to quote or "
30552 "escape these characters on the command line.  See the shell manual page L<sh"
30553 "(1)> for details."
30554 msgstr ""
30555
30556 #. type: textblock
30557 #: ../tools/virt-win-reg.pl:746
30558 msgid ""
30559 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30560 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30561 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30562 msgstr ""
30563
30564 #. type: textblock
30565 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30566 msgid ""
30567 "When reporting bugs, please enable debugging and capture the I<complete> "
30568 "output:"
30569 msgstr ""
30570
30571 #. type: verbatim
30572 #: ../tools/virt-win-reg.pl:764
30573 #, no-wrap
30574 msgid ""
30575 " export LIBGUESTFS_DEBUG=1\n"
30576 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30577 "\n"
30578 msgstr ""
30579
30580 #. type: textblock
30581 #: ../tools/virt-win-reg.pl:767
30582 msgid ""
30583 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30584 "redhat.com/>"
30585 msgstr ""
30586
30587 #. type: =head1
30588 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30589 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30590 #: ../tools/virt-list-partitions.pl:269
30591 msgid "AUTHOR"
30592 msgstr ""
30593
30594 #. type: textblock
30595 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30596 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30597 #: ../tools/virt-list-partitions.pl:271
30598 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30599 msgstr ""
30600
30601 #. type: textblock
30602 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30603 msgid "Copyright (C) 2010 Red Hat Inc."
30604 msgstr ""
30605
30606 #. type: textblock
30607 #: ../tools/virt-list-filesystems.pl:32
30608 msgid ""
30609 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30610 msgstr ""
30611
30612 #. type: verbatim
30613 #: ../tools/virt-list-filesystems.pl:36
30614 #, no-wrap
30615 msgid ""
30616 " virt-list-filesystems [--options] domname\n"
30617 "\n"
30618 msgstr ""
30619
30620 #. type: verbatim
30621 #: ../tools/virt-list-filesystems.pl:38
30622 #, no-wrap
30623 msgid ""
30624 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30625 "\n"
30626 msgstr ""
30627
30628 #. type: textblock
30629 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30630 msgid ""
30631 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30632 "replacement."
30633 msgstr ""
30634
30635 #. type: textblock
30636 #: ../tools/virt-list-filesystems.pl:45
30637 msgid ""
30638 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30639 "are contained in a virtual machine or disk image."
30640 msgstr ""
30641
30642 #. type: textblock
30643 #: ../tools/virt-list-filesystems.pl:49
30644 msgid ""
30645 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30646 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30647 "> tool."
30648 msgstr ""
30649
30650 #. type: =item
30651 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30652 msgid "B<-l> | B<--long>"
30653 msgstr ""
30654
30655 #. type: textblock
30656 #: ../tools/virt-list-filesystems.pl:108
30657 msgid ""
30658 "With this option, C<virt-list-filesystems> displays the type of each "
30659 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30660 msgstr ""
30661
30662 #. type: =item
30663 #: ../tools/virt-list-filesystems.pl:115
30664 msgid "B<-a> | B<--all>"
30665 msgstr ""
30666
30667 #. type: textblock
30668 #: ../tools/virt-list-filesystems.pl:117
30669 msgid ""
30670 "Normally we only show mountable filesystems.  If this option is given then "
30671 "swap devices are shown too."
30672 msgstr ""
30673
30674 #. type: textblock
30675 #: ../tools/virt-list-filesystems.pl:191
30676 msgid ""
30677 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30678 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30679 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30680 msgstr ""
30681
30682 #. type: textblock
30683 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30684 msgid "Copyright (C) 2009 Red Hat Inc."
30685 msgstr ""
30686
30687 #. type: textblock
30688 #: ../tools/virt-tar.pl:33
30689 msgid "virt-tar - Extract or upload files to a virtual machine"
30690 msgstr ""
30691
30692 #. type: verbatim
30693 #: ../tools/virt-tar.pl:37
30694 #, no-wrap
30695 msgid ""
30696 " virt-tar [--options] -x domname directory tarball\n"
30697 "\n"
30698 msgstr ""
30699
30700 #. type: verbatim
30701 #: ../tools/virt-tar.pl:39
30702 #, no-wrap
30703 msgid ""
30704 " virt-tar [--options] -u domname tarball directory\n"
30705 "\n"
30706 msgstr ""
30707
30708 #. type: verbatim
30709 #: ../tools/virt-tar.pl:41
30710 #, no-wrap
30711 msgid ""
30712 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30713 "\n"
30714 msgstr ""
30715
30716 #. type: verbatim
30717 #: ../tools/virt-tar.pl:43
30718 #, no-wrap
30719 msgid ""
30720 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30721 "\n"
30722 msgstr ""
30723
30724 #. type: textblock
30725 #: ../tools/virt-tar.pl:47
30726 msgid ""
30727 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30728 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30729 msgstr ""
30730
30731 #. type: textblock
30732 #: ../tools/virt-tar.pl:52
30733 msgid "Download C</home> from the VM into a local tarball:"
30734 msgstr ""
30735
30736 #. type: verbatim
30737 #: ../tools/virt-tar.pl:54
30738 #, no-wrap
30739 msgid ""
30740 " virt-tar -x domname /home home.tar\n"
30741 "\n"
30742 msgstr ""
30743
30744 #. type: verbatim
30745 #: ../tools/virt-tar.pl:56
30746 #, no-wrap
30747 msgid ""
30748 " virt-tar -zx domname /home home.tar.gz\n"
30749 "\n"
30750 msgstr ""
30751
30752 #. type: textblock
30753 #: ../tools/virt-tar.pl:58
30754 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30755 msgstr ""
30756
30757 #. type: verbatim
30758 #: ../tools/virt-tar.pl:60
30759 #, no-wrap
30760 msgid ""
30761 " virt-tar -u domname uploadstuff.tar /tmp\n"
30762 "\n"
30763 msgstr ""
30764
30765 #. type: verbatim
30766 #: ../tools/virt-tar.pl:62
30767 #, no-wrap
30768 msgid ""
30769 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30770 "\n"
30771 msgstr ""
30772
30773 #. type: textblock
30774 #: ../tools/virt-tar.pl:66
30775 msgid ""
30776 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30777 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30778 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30779 msgstr ""
30780
30781 #. type: textblock
30782 #: ../tools/virt-tar.pl:71
30783 msgid ""
30784 "You can use I<-x> (extract) on live virtual machines, but you might get "
30785 "inconsistent results or errors if there is filesystem activity inside the "
30786 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30787 "work, but the only way to guarantee consistent results is if the virtual "
30788 "machine is shut down."
30789 msgstr ""
30790
30791 #. type: textblock
30792 #: ../tools/virt-tar.pl:79
30793 msgid ""
30794 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30795 "parts of a guest filesystem.  There are many possibilities: making backups, "
30796 "uploading data files, snooping on guest activity, fixing or customizing "
30797 "guests, etc."
30798 msgstr ""
30799
30800 #. type: textblock
30801 #: ../tools/virt-tar.pl:84
30802 msgid ""
30803 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30804 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30805 "should look at the L<guestfish(1)> tool."
30806 msgstr ""
30807
30808 #. type: textblock
30809 #: ../tools/virt-tar.pl:88
30810 msgid ""
30811 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30812 "its contents (recursively) from the virtual machine into a local tarball.  "
30813 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30814 "virtual machine.  You cannot use these two options together."
30815 msgstr ""
30816
30817 #. type: textblock
30818 #: ../tools/virt-tar.pl:94
30819 msgid ""
30820 "In addition, you may need to use the I<-z> (gZip) option to enable "
30821 "compression.  When uploading, you have to specify I<-z> if the upload file "
30822 "is compressed because virt-tar won't detect this on its own."
30823 msgstr ""
30824
30825 #. type: textblock
30826 #: ../tools/virt-tar.pl:98
30827 msgid ""
30828 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30829 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30830 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30831 "the L<libguestfs(3)> API)."
30832 msgstr ""
30833
30834 #. type: =item
30835 #: ../tools/virt-tar.pl:156
30836 msgid "B<-x> | B<--extract> | B<--download>"
30837 msgstr ""
30838
30839 #. type: =item
30840 #: ../tools/virt-tar.pl:158
30841 msgid "B<-u> | B<--upload>"
30842 msgstr ""
30843
30844 #. type: textblock
30845 #: ../tools/virt-tar.pl:160
30846 msgid ""
30847 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30848 "local tarball."
30849 msgstr ""
30850
30851 #. type: textblock
30852 #: ../tools/virt-tar.pl:163
30853 msgid ""
30854 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30855 "Please read the L</WARNING> section above before using this option."
30856 msgstr ""
30857
30858 #. type: textblock
30859 #: ../tools/virt-tar.pl:167
30860 msgid "You must specify exactly one of these options."
30861 msgstr ""
30862
30863 #. type: =item
30864 #: ../tools/virt-tar.pl:173
30865 msgid "B<-z> | B<--gzip>"
30866 msgstr ""
30867
30868 #. type: textblock
30869 #: ../tools/virt-tar.pl:175
30870 msgid "Specify that the input or output tarball is gzip-compressed."
30871 msgstr ""
30872
30873 #. type: textblock
30874 #: ../tools/virt-tar.pl:288
30875 msgid ""
30876 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30877 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30878 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30879 "org/>."
30880 msgstr ""
30881
30882 #. type: textblock
30883 #: ../tools/virt-make-fs.pl:37
30884 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30885 msgstr ""
30886
30887 #. type: verbatim
30888 #: ../tools/virt-make-fs.pl:41
30889 #, no-wrap
30890 msgid ""
30891 " virt-make-fs [--options] input.tar output.img\n"
30892 "\n"
30893 msgstr ""
30894
30895 #. type: verbatim
30896 #: ../tools/virt-make-fs.pl:43
30897 #, no-wrap
30898 msgid ""
30899 " virt-make-fs [--options] input.tar.gz output.img\n"
30900 "\n"
30901 msgstr ""
30902
30903 #. type: verbatim
30904 #: ../tools/virt-make-fs.pl:45
30905 #, no-wrap
30906 msgid ""
30907 " virt-make-fs [--options] directory output.img\n"
30908 "\n"
30909 msgstr ""
30910
30911 #. type: textblock
30912 #: ../tools/virt-make-fs.pl:49
30913 msgid ""
30914 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30915 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30916 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30917 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30918 "you want to attach these filesystems to existing virtual machines (eg. to "
30919 "import large amounts of read-only data to a VM)."
30920 msgstr ""
30921
30922 #. type: textblock
30923 #: ../tools/virt-make-fs.pl:57
30924 msgid "Basic usage is:"
30925 msgstr ""
30926
30927 #. type: verbatim
30928 #: ../tools/virt-make-fs.pl:59
30929 #, no-wrap
30930 msgid ""
30931 " virt-make-fs input output\n"
30932 "\n"
30933 msgstr ""
30934
30935 #. type: textblock
30936 #: ../tools/virt-make-fs.pl:61
30937 msgid ""
30938 "where C<input> is either a directory containing files that you want to add, "
30939 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30940 "C<output> is a disk image.  The input type is detected automatically.  The "
30941 "output disk image defaults to a raw ext2 image unless you specify extra "
30942 "flags (see L</OPTIONS> below)."
30943 msgstr ""
30944
30945 #. type: =head2
30946 #: ../tools/virt-make-fs.pl:67
30947 msgid "EXTRA SPACE"
30948 msgstr ""
30949
30950 #. type: textblock
30951 #: ../tools/virt-make-fs.pl:69
30952 msgid ""
30953 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30954 "the files that it contains, but might have extra space.  Depending on how "
30955 "you are going to use the output, you might think this extra space is wasted "
30956 "and want to minimize it, or you might want to leave space so that more files "
30957 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30958 "but you can use the I<--size> flag to leave space in the filesystem if you "
30959 "want it."
30960 msgstr ""
30961
30962 #. type: textblock
30963 #: ../tools/virt-make-fs.pl:77
30964 msgid ""
30965 "An alternative way to leave extra space but not make the output image any "
30966 "bigger is to use an alternative disk image format (instead of the default "
30967 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30968 "image format (check your hypervisor supports this before using it).  This "
30969 "allows you to choose a large I<--size> but the extra space won't actually be "
30970 "allocated in the image until you try to store something in it."
30971 msgstr ""
30972
30973 #. type: textblock
30974 #: ../tools/virt-make-fs.pl:85
30975 msgid ""
30976 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30977 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30978 "to build another image from scratch."
30979 msgstr ""
30980
30981 #. type: =head3
30982 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30983 #: ../tools/virt-make-fs.pl:142
30984 msgid "EXAMPLE"
30985 msgstr ""
30986
30987 #. type: verbatim
30988 #: ../tools/virt-make-fs.pl:91
30989 #, no-wrap
30990 msgid ""
30991 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30992 "\n"
30993 msgstr ""
30994
30995 #. type: =head2
30996 #: ../tools/virt-make-fs.pl:93
30997 msgid "FILESYSTEM TYPE"
30998 msgstr ""
30999
31000 #. type: textblock
31001 #: ../tools/virt-make-fs.pl:95
31002 msgid ""
31003 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
31004 "libguestfs supports can be used (but I<not> read-only formats like "
31005 "ISO9660).  Here are some of the more common choices:"
31006 msgstr ""
31007
31008 #. type: =item
31009 #: ../tools/virt-make-fs.pl:101
31010 msgid "I<ext3>"
31011 msgstr ""
31012
31013 #. type: textblock
31014 #: ../tools/virt-make-fs.pl:103
31015 msgid ""
31016 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
31017 "you are not going to use the filesystem in a way that requires the journal, "
31018 "then this is just wasted overhead."
31019 msgstr ""
31020
31021 #. type: =item
31022 #: ../tools/virt-make-fs.pl:107
31023 msgid "I<ntfs> or I<vfat>"
31024 msgstr ""
31025
31026 #. type: textblock
31027 #: ../tools/virt-make-fs.pl:109
31028 msgid "Useful if exporting data to a Windows guest."
31029 msgstr ""
31030
31031 #. type: textblock
31032 #: ../tools/virt-make-fs.pl:111
31033 msgid ""
31034 "I<Note for vfat>: The tar archive or local directory must only contain files "
31035 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
31036 "program running within libguestfs is unable to change the ownership of non-"
31037 "root files, since vfat itself does not support this."
31038 msgstr ""
31039
31040 #. type: =item
31041 #: ../tools/virt-make-fs.pl:116
31042 msgid "I<minix>"
31043 msgstr ""
31044
31045 #. type: textblock
31046 #: ../tools/virt-make-fs.pl:118
31047 msgid ""
31048 "Lower overhead than C<ext2>, but certain limitations on filename length and "
31049 "total filesystem size."
31050 msgstr ""
31051
31052 #. type: verbatim
31053 #: ../tools/virt-make-fs.pl:125
31054 #, no-wrap
31055 msgid ""
31056 " virt-make-fs --type=minix input minixfs.img\n"
31057 "\n"
31058 msgstr ""
31059
31060 #. type: =head2
31061 #: ../tools/virt-make-fs.pl:127
31062 msgid "TO PARTITION OR NOT TO PARTITION"
31063 msgstr ""
31064
31065 #. type: textblock
31066 #: ../tools/virt-make-fs.pl:129
31067 msgid "Optionally virt-make-fs can add a partition table to the output disk."
31068 msgstr ""
31069
31070 #. type: textblock
31071 #: ../tools/virt-make-fs.pl:131
31072 msgid ""
31073 "Adding a partition can make the disk image more compatible with certain "
31074 "virtualized operating systems which don't expect to see a filesystem "
31075 "directly located on a block device (Linux doesn't care and will happily "
31076 "handle both types)."
31077 msgstr ""
31078
31079 #. type: textblock
31080 #: ../tools/virt-make-fs.pl:136
31081 msgid ""
31082 "On the other hand, if you have a partition table then the output image is no "
31083 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
31084 "directly on a partitioned disk image.  (However libguestfs tools such as "
31085 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
31086 msgstr ""
31087
31088 #. type: textblock
31089 #: ../tools/virt-make-fs.pl:144
31090 msgid "Add an MBR partition:"
31091 msgstr ""
31092
31093 #. type: verbatim
31094 #: ../tools/virt-make-fs.pl:146
31095 #, no-wrap
31096 msgid ""
31097 " virt-make-fs --partition -- input disk.img\n"
31098 "\n"
31099 msgstr ""
31100
31101 #. type: textblock
31102 #: ../tools/virt-make-fs.pl:148
31103 msgid ""
31104 "If the output disk image could be terabyte-sized or larger, it's better to "
31105 "use an EFI/GPT-compatible partition table:"
31106 msgstr ""
31107
31108 #. type: verbatim
31109 #: ../tools/virt-make-fs.pl:151
31110 #, no-wrap
31111 msgid ""
31112 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
31113 "\n"
31114 msgstr ""
31115
31116 #. type: textblock
31117 #: ../tools/virt-make-fs.pl:179
31118 msgid "Enable debugging information."
31119 msgstr ""
31120
31121 #. type: =item
31122 #: ../tools/virt-make-fs.pl:185
31123 msgid "B<--size=E<lt>NE<gt>>"
31124 msgstr ""
31125
31126 #. type: =item
31127 #: ../tools/virt-make-fs.pl:187
31128 msgid "B<--size=+E<lt>NE<gt>>"
31129 msgstr ""
31130
31131 #. type: =item
31132 #: ../tools/virt-make-fs.pl:189
31133 msgid "B<-s E<lt>NE<gt>>"
31134 msgstr ""
31135
31136 #. type: =item
31137 #: ../tools/virt-make-fs.pl:191
31138 msgid "B<-s +E<lt>NE<gt>>"
31139 msgstr ""
31140
31141 #. type: textblock
31142 #: ../tools/virt-make-fs.pl:193
31143 msgid ""
31144 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
31145 msgstr ""
31146
31147 #. type: textblock
31148 #: ../tools/virt-make-fs.pl:196
31149 msgid ""
31150 "If this option is I<not> given, then the output image will be just large "
31151 "enough to contain all the files, with not much wasted space."
31152 msgstr ""
31153
31154 #. type: textblock
31155 #: ../tools/virt-make-fs.pl:199
31156 msgid ""
31157 "To choose a fixed size output disk, specify an absolute number followed by b/"
31158 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31159 "Petabytes or Exabytes.  This must be large enough to contain all the input "
31160 "files, else you will get an error."
31161 msgstr ""
31162
31163 #. type: textblock
31164 #: ../tools/virt-make-fs.pl:204
31165 msgid ""
31166 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
31167 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31168 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
31169 "the input files, and (approximately) an extra 200 MB free space."
31170 msgstr ""
31171
31172 #. type: textblock
31173 #: ../tools/virt-make-fs.pl:210
31174 msgid ""
31175 "Note that virt-make-fs estimates free space, and therefore will not produce "
31176 "filesystems containing precisely the free space requested.  (It is much more "
31177 "expensive and time-consuming to produce a filesystem which has precisely the "
31178 "desired free space)."
31179 msgstr ""
31180
31181 #. type: =item
31182 #: ../tools/virt-make-fs.pl:219
31183 msgid "B<--format=E<lt>fmtE<gt>>"
31184 msgstr ""
31185
31186 #. type: =item
31187 #: ../tools/virt-make-fs.pl:221
31188 msgid "B<-F E<lt>fmtE<gt>>"
31189 msgstr ""
31190
31191 #. type: textblock
31192 #: ../tools/virt-make-fs.pl:223
31193 msgid "Choose the output disk image format."
31194 msgstr ""
31195
31196 #. type: textblock
31197 #: ../tools/virt-make-fs.pl:225
31198 msgid "The default is C<raw> (raw disk image)."
31199 msgstr ""
31200
31201 #. type: textblock
31202 #: ../tools/virt-make-fs.pl:227
31203 msgid ""
31204 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
31205 "that would really make sense here is C<qcow2>."
31206 msgstr ""
31207
31208 #. type: =item
31209 #: ../tools/virt-make-fs.pl:234
31210 msgid "B<--type=E<lt>fsE<gt>>"
31211 msgstr ""
31212
31213 #. type: =item
31214 #: ../tools/virt-make-fs.pl:236
31215 msgid "B<-t E<lt>fsE<gt>>"
31216 msgstr ""
31217
31218 #. type: textblock
31219 #: ../tools/virt-make-fs.pl:238
31220 msgid "Choose the output filesystem type."
31221 msgstr ""
31222
31223 #. type: textblock
31224 #: ../tools/virt-make-fs.pl:240
31225 msgid "The default is C<ext2>."
31226 msgstr ""
31227
31228 #. type: textblock
31229 #: ../tools/virt-make-fs.pl:242
31230 msgid ""
31231 "Any filesystem which is supported read-write by libguestfs can be used here."
31232 msgstr ""
31233
31234 #. type: =item
31235 #: ../tools/virt-make-fs.pl:249
31236 msgid "B<--partition>"
31237 msgstr ""
31238
31239 #. type: =item
31240 #: ../tools/virt-make-fs.pl:251
31241 msgid "B<--partition=E<lt>parttypeE<gt>>"
31242 msgstr ""
31243
31244 #. type: textblock
31245 #: ../tools/virt-make-fs.pl:253
31246 msgid ""
31247 "If specified, this flag adds an MBR partition table to the output disk image."
31248 msgstr ""
31249
31250 #. type: textblock
31251 #: ../tools/virt-make-fs.pl:256
31252 msgid ""
31253 "You can change the partition table type, eg. I<--partition=gpt> for large "
31254 "disks."
31255 msgstr ""
31256
31257 #. type: textblock
31258 #: ../tools/virt-make-fs.pl:259
31259 msgid ""
31260 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
31261 "might consider the next parameter to be the partition type.  For example:"
31262 msgstr ""
31263
31264 #. type: verbatim
31265 #: ../tools/virt-make-fs.pl:263
31266 #, no-wrap
31267 msgid ""
31268 " virt-make-fs --partition input.tar ...\n"
31269 "\n"
31270 msgstr ""
31271
31272 #. type: textblock
31273 #: ../tools/virt-make-fs.pl:265
31274 msgid ""
31275 "would cause virt-make-fs to think you wanted to use a partition type of "
31276 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
31277 "dash) between options and the input file argument:"
31278 msgstr ""
31279
31280 #. type: verbatim
31281 #: ../tools/virt-make-fs.pl:269
31282 #, no-wrap
31283 msgid ""
31284 " virt-make-fs --partition -- input.tar ...\n"
31285 "\n"
31286 msgstr ""
31287
31288 #. type: textblock
31289 #: ../tools/virt-make-fs.pl:541
31290 msgid ""
31291 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31292 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
31293 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31294 msgstr ""
31295
31296 #. type: verbatim
31297 #: ../tools/virt-make-fs.pl:558
31298 #, no-wrap
31299 msgid ""
31300 " export LIBGUESTFS_DEBUG=1\n"
31301 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31302 "\n"
31303 msgstr ""
31304
31305 #. type: textblock
31306 #: ../tools/virt-make-fs.pl:561
31307 msgid ""
31308 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
31309 "redhat.com/>"
31310 msgstr ""
31311
31312 #. type: textblock
31313 #: ../tools/virt-list-partitions.pl:32
31314 msgid ""
31315 "virt-list-partitions - List partitions in a virtual machine or disk image"
31316 msgstr ""
31317
31318 #. type: verbatim
31319 #: ../tools/virt-list-partitions.pl:36
31320 #, no-wrap
31321 msgid ""
31322 " virt-list-partitions [--options] domname\n"
31323 "\n"
31324 msgstr ""
31325
31326 #. type: verbatim
31327 #: ../tools/virt-list-partitions.pl:38
31328 #, no-wrap
31329 msgid ""
31330 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31331 "\n"
31332 msgstr ""
31333
31334 #. type: textblock
31335 #: ../tools/virt-list-partitions.pl:45
31336 msgid ""
31337 "C<virt-list-partitions> is a command line tool to list the partitions that "
31338 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31339 "first step to using L<virt-resize(1)>."
31340 msgstr ""
31341
31342 #. type: textblock
31343 #: ../tools/virt-list-partitions.pl:50
31344 msgid ""
31345 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31346 "functionality.  For more complex cases you should look at the L<guestfish(1)"
31347 "> tool."
31348 msgstr ""
31349
31350 #. type: =item
31351 #: ../tools/virt-list-partitions.pl:107
31352 msgid "B<-h> | B<--human-readable>"
31353 msgstr ""
31354
31355 #. type: textblock
31356 #: ../tools/virt-list-partitions.pl:109
31357 msgid "Show sizes in human-readable form (eg. \"1G\")."
31358 msgstr ""
31359
31360 #. type: textblock
31361 #: ../tools/virt-list-partitions.pl:117
31362 msgid ""
31363 "With this option, C<virt-list-partitions> displays the type and size of each "
31364 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31365 msgstr ""
31366
31367 #. type: =item
31368 #: ../tools/virt-list-partitions.pl:124
31369 msgid "B<-t> | B<--total>"
31370 msgstr ""
31371
31372 #. type: textblock
31373 #: ../tools/virt-list-partitions.pl:126
31374 msgid ""
31375 "Display the total size of each block device (as a separate row or rows)."
31376 msgstr ""
31377
31378 #. type: textblock
31379 #: ../tools/virt-list-partitions.pl:259
31380 msgid ""
31381 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31382 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
31383 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31384 msgstr ""
31385
31386 #. type: textblock
31387 #: ../tools/virt-list-partitions.pl:275
31388 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31389 msgstr ""